From b4f76924365fdb3850109ee02576eb9ed7c6c5bc Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 6 Dec 2021 13:13:36 +0100 Subject: [PATCH] Support for lts-build-constraints.yaml generation --- etc/lts-constraints/LICENSE | 30 + etc/lts-constraints/README.md | 1 + etc/lts-constraints/Setup.hs | 2 + etc/lts-constraints/cabal.project | 6 + etc/lts-constraints/lts-constraints.cabal | 34 + etc/lts-constraints/src/Main.hs | 174 + etc/lts-constraints/stack.yaml | 4 + etc/lts-constraints/stack.yaml.lock | 13 + lts-build-constraints.yaml | 8028 +++++++++++++++++++++ 9 files changed, 8292 insertions(+) create mode 100644 etc/lts-constraints/LICENSE create mode 100644 etc/lts-constraints/README.md create mode 100644 etc/lts-constraints/Setup.hs create mode 100644 etc/lts-constraints/cabal.project create mode 100644 etc/lts-constraints/lts-constraints.cabal create mode 100644 etc/lts-constraints/src/Main.hs create mode 100644 etc/lts-constraints/stack.yaml create mode 100644 etc/lts-constraints/stack.yaml.lock create mode 100644 lts-build-constraints.yaml diff --git a/etc/lts-constraints/LICENSE b/etc/lts-constraints/LICENSE new file mode 100644 index 00000000..bc59db9e --- /dev/null +++ b/etc/lts-constraints/LICENSE @@ -0,0 +1,30 @@ +Copyright Author name here (c) 2021 + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * Neither the name of Author name here nor the names of other + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/etc/lts-constraints/README.md b/etc/lts-constraints/README.md new file mode 100644 index 00000000..09e127e2 --- /dev/null +++ b/etc/lts-constraints/README.md @@ -0,0 +1 @@ +# lts-constraints diff --git a/etc/lts-constraints/Setup.hs b/etc/lts-constraints/Setup.hs new file mode 100644 index 00000000..9a994af6 --- /dev/null +++ b/etc/lts-constraints/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/etc/lts-constraints/cabal.project b/etc/lts-constraints/cabal.project new file mode 100644 index 00000000..a432e71c --- /dev/null +++ b/etc/lts-constraints/cabal.project @@ -0,0 +1,6 @@ +source-repository-package + type: git + location: git://github.com/commercialhaskell/pantry.git + +packages: ./lts-constraints.cabal +with-compiler: ghc-8.10.7 diff --git a/etc/lts-constraints/lts-constraints.cabal b/etc/lts-constraints/lts-constraints.cabal new file mode 100644 index 00000000..9af3b1d0 --- /dev/null +++ b/etc/lts-constraints/lts-constraints.cabal @@ -0,0 +1,34 @@ +name: lts-constraints +version: 0.1.0.0 +-- synopsis: +-- description: +homepage: https://github.com/githubuser/lts-constraints#readme +license: BSD3 +license-file: LICENSE +author: Author name here +maintainer: example@example.com +copyright: 2021 Author name here +category: Web +build-type: Simple +cabal-version: >=1.10 +extra-source-files: README.md + +executable lts-constraints + ghc-options: -Wall + hs-source-dirs: src + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + , pantry + , Cabal + , rio + , containers + , parsec + , mtl + , aeson + , yaml + , split + , string-conversions + , safe + , mtl + , transformers diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs new file mode 100644 index 00000000..2c54fb28 --- /dev/null +++ b/etc/lts-constraints/src/Main.hs @@ -0,0 +1,174 @@ +{-# LANGUAGE TypeApplications #-} +{-# LANGUAGE DeriveAnyClass #-} +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE NamedFieldPuns #-} +{-# LANGUAGE TupleSections #-} +{-# OPTIONS -Wno-name-shadowing #-} +module Main where + +import Control.Arrow +import Control.Monad +import Control.Monad.State +import Data.Aeson +import Data.Char +import Data.List +import Data.List.Split +import Data.Maybe +import Data.String.Conversions +import Distribution.Text (display, simpleParse) +import Distribution.Types.VersionRange (VersionRange, normaliseVersionRange, anyVersion, intersectVersionRanges, majorBoundVersion, earlierVersion) +import GHC.Generics +import RIO () +import RIO.Map (Map) +import System.IO +import qualified Data.Yaml as Y +import qualified Distribution.Types.PackageName as C (PackageName, mkPackageName) +import qualified Distribution.Types.Version as C (Version, mkVersion) +import qualified RIO.Map as M + +src :: String +src = "../../build-constraints.yaml" + +target :: String +target = "../../lts-build-constraints.yaml" + +newtype PackageName = PackageName { unPackageName :: C.PackageName } + deriving (Eq, Generic, Ord, FromJSONKey, Show) + +instance FromJSON PackageName where + parseJSON = fmap (PackageName . C.mkPackageName) . parseJSON + +newtype Version = Version { unVersion :: C.Version } + deriving (Generic, Show) + +instance FromJSON Version where + parseJSON v = do + s <- parseJSON @ String v + case simpleParse s of + Nothing -> fail "Invalid Version" + Just v -> pure $ Version v + + +data PackageDecl = PackageDecl + { prefix :: String + , package :: PackageName + , range :: VersionRange + , suffix :: String + } + +takeDropWhile :: (Char -> Bool) -> String -> Maybe (String, String) +takeDropWhile p s = if null a then Nothing else Just (a, b) + where + (a, b) = takeDropWhile_ p s + +takeDropWhile_ :: (Char -> Bool) -> String -> (String, String) +takeDropWhile_ p s = (takeWhile p s, dropWhile p s) + +takePrefix :: String -> String -> Maybe (String, String) +takePrefix p s = + if p `isPrefixOf` s + then Just (p, drop (length p) s) + else Nothing + +takePackageName :: String -> Maybe (PackageName, String) +takePackageName = fmap (first (PackageName . C.mkPackageName)) . takeDropWhile (/= ' ') + +maybeTakeVersionRange :: String -> (Maybe VersionRange, String) +maybeTakeVersionRange s = (simpleParse range, comment) + where + (range, comment) = takeDropWhile_ (/= '#') s + +p_packageDecl :: String -> Maybe PackageDecl +p_packageDecl s = do + (prefix, s') <- takePrefix " - " s + (package, s'') <- takePackageName s' + let (range, s''') = maybeTakeVersionRange s'' + pure PackageDecl { prefix, package, range = fromMaybe anyVersion range, suffix = s''' } + +handlePackage :: Map PackageName Version -> PackageDecl -> String +handlePackage snap PackageDecl { prefix, package, range, suffix } = + prefix ++ display (unPackageName package) ++ rng ++ suff + where + suff = if null suffix then suffix else (' ': suffix) + + + rng = case intersect (majorBoundVersion . unVersion <$> snapshotVersion) range of + Just rngI | rngI == anyVersion -> "" + Nothing -> "" + Just rngI -> (' ' :) . (\(a,b) -> a <> " " <> b) . takeDropWhile_ (not . isDigit) $ display rngI + snapshotVersion = M.lookup package snap + + intersect Nothing _ = Just . earlierVersion $ C.mkVersion [0] -- package not in snapshot + intersect (Just a) b = + if b == anyVersion -- drop `&& -any` + then Just a + else Just $ normaliseVersionRange (intersectVersionRanges a b) + + +data Snapshot = Snapshot + { packages :: [SnapshotPackage] + } deriving (FromJSON, Generic, Show) + +data SnapshotPackage = SnapshotPackage + { hackage :: PackageVersion + } deriving (FromJSON, Generic, Show) + +data PackageVersion = PackageVersion + { pvPackage :: PackageName + , pvVersion :: Version + } deriving Show + +instance FromJSON PackageVersion where + parseJSON s0 = do + s1 <- parseJSON @ String s0 + let s2 = takeWhile (/= '@') s1 + let xs = splitOn "-" s2 + pvPackage <- parseJSON $ String $ cs $ intercalate "-" (init xs) + pvVersion <- parseJSON $ String $ cs $ last xs + pure PackageVersion { pvPackage, pvVersion } + + +snapshotMap :: Snapshot -> Map PackageName Version +snapshotMap = M.fromList . map ((pvPackage &&& pvVersion) . hackage) . packages + +loadSnapshot :: FilePath -> IO (Either Y.ParseException Snapshot) +loadSnapshot f = Y.decodeFileEither f + +data State + = LookingForLibBounds + | ProcessingLibBounds + | Done + +io :: MonadIO m => IO a -> m a +io = liftIO + +main :: IO () +main = do + snapshot_ <- loadSnapshot "../../nightly-2012-12-11.yaml" + let snapshot = case snapshot_ of + Left err -> error $ show err + Right r -> r + let map = snapshotMap snapshot + output <- openFile target WriteMode + let putLine = io . hPutStrLn output + lines <- lines <$> readFile src + void $ flip runStateT LookingForLibBounds $ do + forM_ lines $ \line -> do + st <- get + case st of + LookingForLibBounds -> do + when (line == "packages:") $ + put ProcessingLibBounds + putLine line + ProcessingLibBounds -> + if line == "# end of packages" + then do + put Done + putLine line + else + case p_packageDecl line of + Just p -> putLine $ handlePackage map p + Nothing -> putLine line + Done -> putLine line + hFlush output + hClose output diff --git a/etc/lts-constraints/stack.yaml b/etc/lts-constraints/stack.yaml new file mode 100644 index 00000000..ef03d7c0 --- /dev/null +++ b/etc/lts-constraints/stack.yaml @@ -0,0 +1,4 @@ +resolver: + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml +packages: +- . diff --git a/etc/lts-constraints/stack.yaml.lock b/etc/lts-constraints/stack.yaml.lock new file mode 100644 index 00000000..cc26a008 --- /dev/null +++ b/etc/lts-constraints/stack.yaml.lock @@ -0,0 +1,13 @@ +# This file was autogenerated by Stack. +# You should not edit this file by hand. +# For more information, please see the documentation at: +# https://docs.haskellstack.org/en/stable/lock_files + +packages: [] +snapshots: +- completed: + size: 586296 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml + sha256: 63539429076b7ebbab6daa7656cfb079393bf644971156dc349d7c0453694ac2 + original: + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml new file mode 100644 index 00000000..81161b6e --- /dev/null +++ b/lts-build-constraints.yaml @@ -0,0 +1,8028 @@ +ghc-major-version: "9.0" +# new curator is supposed to use exact GHC version +ghc-version: "9.0.1" + +# This affects which version of the Cabal file format we allow. We +# should ensure that this is always no greater than the version +# supported by the most recent cabal-install and Stack releases. +cabal-format-version: "3.0" + +# Constraints for brand new builds +packages: + + "Lukas Epple @sternenseemann": + - socket + - spacecookie + - gopher-proxy + - filepath-bytestring < 1.4.2.1.10 # https://github.com/commercialhaskell/stackage/issues/6355 + - download-curl + - cabal2nix + - distribution-nixpkgs + - hackage-db + - language-nix + - jailbreak-cabal + + "Profpatsch @Profpatsch": + - error + - yarn-lock + + "James Sully @sullyj3": + - buttplug-hs-core + + "Manuel Schneckenreither @schnecki": + - experimenter + - api-maker + - easy-logger + + "Kamil Dworakowski @luntain": + - error-or + - error-or-utils + - inbox + - mock-time + + "Liang-Ting Chen @L-TChen": + - geniplate-mirror + + "Andreas Abel @andreasabel": + - BNFC + - Sit + - STMonadTrans + - Agda + - agda2lagda + - cabal-clean + - ListLike + - haskell-src + - fix-whitespace + - hs-tags + - goldplate + - hasktags + - regex-base + - regex-compat + - regex-pcre + - regex-posix + - regex-posix-clib + - regex-tdfa + - java-adt + - tasty-silver + + "Diogo Biazus ": + - hasql-notifications + + "David James @davjam": + - MapWith + + "Bernie Pope @bjpop": + - language-python + + "Nils Alex @nilsalex": + - safe-tensor + + "Artur Gajowy @ArturGajowy": + - ghc-clippy-plugin + + "Daniel Rolls @danielrolls": + - byte-count-reader + + "Allan Lukwago @epicallan": + - servant-errors + + "Christian Charukiewicz @charukiewicz": + - isbn + + "Koz Ross @kozross": + - medea + + "Marcin Rzeźnicki @marcin-rzeznicki": + - hspec-tables + - stackcollapse-ghc + - libjwt-typed + + "Mauricio Fierro @mauriciofierrom": + - dialogflow-fulfillment + + "Mihai Giurgeanu @mihaigiurgeanu": + - sqlcli + - sqlcli-odbc + # not a maintainer + - logging + + "Sasha Bogicevic @v0d1ch": + - plaid + + "Geoffrey Mainland @mainland": + - exception-mtl + - exception-transformers + - mainland-pretty + - ref-fd + - ref-tf + - srcloc + - symbol + + "Patrick Bahr ": + - equivalence + - compdata + - Rattus + + "Rob Stewart @robstewart57": + - gitlab-haskell + + "Callan McGill @callanmcgill": + - perfect-vector-shuffle + + "Luke Clifton @luke-clifton": + - generic-monoid + + "Tobias Reinhart @TobiReinhart": + - sparse-tensor + + "Stephan Schiffels @stschiff": + - sequence-formats + - pipes-ordered-zip + - sequenceTools + + "YongJoon Joe @QuietJoon": + - doldol + - ENIG + + "Chris Penner @ChrisPenner": + - eve + - lens-regex-pcre + - lens-csv + - selections + - slick + - unipatterns + + "Emily Pillmore @topos": + - base16 + - base16-lens + - base32 + - base32-lens + - base64 + - base64-lens + - lens-process + - microlens-process + - nonempty-vector + - smash + - smash-aeson + - smash-microlens + - smash-lens + - strict-tuple + - strict-tuple-lens + + "Matthieu Monsch @mtth": + - flags-applicative + - more-containers + - tracing + + "Robert Vollmert @robx": + - configurator-pg + - postgrest + + "Sandy Maguire @isovector": + - ecstasy + - interpolatedstring-qq2 + - prospect + - do-notation + - unagi-chan + - type-errors + + "Matej Niznik @TheMatten": + - polysemy + - polysemy-plugin + - polysemy-zoo + - loopbreaker + + "William Yao @williamyaoh": + - string-interpolate + + "Roel van Dijk @roelvandijk": + - terminal-progress-bar + + "Marek Fajkus @turboMaCk": + - wai-enforce-https + - aeson-combinators + + "Fernando Freire @dogonthehorizon": + [] + # - hal # #4288/closed + + "Nathan Fairhurst @iamfromspace": + - hal + + "Daniel Taskoff @dtaskoff": + - hlibcpuid + - skip-var + - system-info + + "Dzianis Kabanau @kobargh": + - template-toolkit + + "Christopher Davenport @ChristopherDavenport": + - nonemptymap + - hinfo + + "Joerg Winter @clojj": + - rosezipper + + "Edward Wastell @edwardwas": + - TotalMap + - sized-grid + + "Antonio Alonso Dominguez @alonsodomin": + - hschema + - hschema-aeson + - hschema-prettyprinter + - hschema-quickcheck + + "Preetham Gujjula @pgujjula": + - modular + - list-predicate + + "Guillaume Bouchard @guibou": + - krank + - pretty-terminal + - PyF + + "Erik Schnetter @eschnett": + - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal + + "Yang Bo @Atry": + - control-dsl + + "Laurent P. René de Cotret @LaurentRDC": + - pandoc-plot + + "Andrew Newman @andrewfnewman": + - geojson + + "Mateusz Karbowy @obszczymucha": + - parsec-numbers + + "Joshua Grosso @jgrosso": + - axel + + "Varun Gandhi @theindigamer": + - edit + + "Luka Hadžiegrić @reygoch": + - valor + + "Scott N. Walck @walck": + - cyclotomic + - learn-physics + - TypeCompose + + # @ghorn + - not-gloss + - spatial-math + + "Phil de Joux @philderbeast": + - siggy-chardust + - detour-via-sci + - hpack-dhall + + "Matthew Ahrens @mpahrens": + - forkable-monad + - butter + + "Iris Ward @AdituV": + - typenums + + "Jude Taylor @pikajude": + - th-printf + + "Christian Marie @christian-marie": + - git-vogue + + "Manuel Bärenz @turion": + - dunai + - rhine + - rhine-gloss + - finite-typelits + - essence-of-live-coding + - essence-of-live-coding-gloss + - essence-of-live-coding-pulse + - essence-of-live-coding-quickcheck + - pulse-simple + - simple-affine-space + + "Paul Johnson @PaulJohnson": + - geodetics + - Ranged-sets + + "Travis Athougies @tathougies": + - beam-core + - beam-migrate + - beam-mysql + - beam-postgres + - beam-sqlite + + "Fraser Murray @yusent": + - yesod-auth-bcryptdb + + "Johannes Gerer ": + - buchhaltung + + "Tom McLaughlin @thomasjm": + - aeson-typescript + - fsnotify + - sandwich + - sandwich-quickcheck + - sandwich-slack + - sandwich-webdriver + - slack-progressbar + + "Paulo Tanaka @paulot": + # on behalf of Bryan O'Sullivan @bos: + - zstd + + "Jacek Galowicz @tfc": + - hamtsolo + + "Ferdinand van Walree @Ferdinand-vW": + - tuple-sop + - sessiontypes + - sessiontypes-distributed + + "Jacob Thomas Errington @tsani": + - servant-github-webhook + - pushbullet-types + + "Theodore Lief Gannon @tejon": + - aeson-yak + - safe-foldable + + "Jaro Reinders @Noughtmare": + - haskell-lsp-client + + "Florian Knupfer @knupfer": + - type-of-html + - type-of-html-static + - chronos-bench + + "Mikolaj Konarski @Mikolaj": + - sdl2-ttf + - enummapset + - assert-failure + - minimorph + - miniutter + - LambdaHack + - Allure + + "Jürgen Keck @j-keck": + - wreq-stringless + + "Olaf Chitil @OlafChitil": + - FPretty + + "Maarten Faddegon @MaartenFaddegon": + - libgraph + - Hoed + + "Agustin Camino @acamino": + - state-codes + + "Sebastian Mihai Ardelean @ardeleanasm": + - qchas + + "Patrick Pelletier @ppelleti": + - mercury-api + - normalization-insensitive + + "Jacob Stanley @jacobstanley": + - hedgehog + - hedgehog-quickcheck + - transformers-bifunctors + - unix-compat + + "Walter Schulze @awalterschulze": + - katydid + + "Nobutada Matsubara @matsubara0507": + - chatwork + - rakuten + - servant-kotlin + + "Pavol Klacansky @pavolzetor": + - openexr-write + + "Pasqualino Assini @tittoassini": + # - zm + - flat + - model + + "Jose Iborra @pepeiborra": + # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 + - haskell-src-exts-util + - hexml-lens + - hp2pretty + - floatshow + - ghc-check + + "Roman Gonzalez @roman": + - componentm + - componentm-devel + - teardown + - etc + - capataz + + "Richard Cook @rcook": + - hidden-char + - oset + - req-url-extra + - sexpr-parser + + "Vanessa McHale @vmchale": + - bz2 + + "Henning Thielemann @thielema": + - accelerate-arithmetic + - accelerate-fftw + - accelerate-fourier + - accelerate-utility + - align-audio + - alsa-core + - alsa-pcm + - alsa-seq + - apportionment + - audacity + - battleship-combinatorics + - bibtex + - board-games + - buffer-pipe + - cabal-flatpak + - calendar-recycling + - checksum + - combinatorial + - comfort-graph + - comfort-array + - comfort-array-shape + - comfort-fftw + - concurrent-split + - cutter + - data-accessor + - data-accessor-mtl + - data-accessor-template + - data-accessor-transformers + - data-ref + - doctest-exitcode-stdio + - doctest-extract + - doctest-lib + - dsp + - enumset + - equal-files + - event-list + - explicit-exception + - fixed-length + - fftw-ffi + - gnuplot + - group-by-date + - guarded-allocation + - iff + - interpolation + - jack + - latex + - lazyio + - markov-chain + - midi + - midi-alsa + - midi-music-box + - mbox-utility + - med-module + - monoid-transformer + - non-empty + - non-negative + - numeric-prelude + - numeric-quest + - pathtype + - pooled-io + - probability + - quickcheck-transformer + - sample-frame + - sample-frame-np + - set-cover + - shell-utility + - sound-collage + - sox + - soxlib + - split-record + - spreadsheet + - stm-split + - storable-record + - storable-tuple + - storablevector + - synthesizer-core + - synthesizer-dimensional + - synthesizer-alsa + - synthesizer-midi + - tagchup + - tfp + - unicode + - unique-logic + - unique-logic-tf + - unsafe + - utility-ht + - xml-basic + - youtube + - prelude-compat + - fft + - carray + - lapack-ffi-tools + - netlib-ffi + - blas-ffi + - lapack-ffi + - netlib-carray + - blas-carray + - lapack-carray + - netlib-comfort-array + - blas-comfort-array + - lapack-comfort-array + - lapack + - lapack-hmatrix + - hmm-lapack + - magico + - resistor-cube + - linear-circuit + # Not a maintainer + - cabal-plan + - topograph + - ix-shapable + - hsshellscript + - hyper + - storable-endian + + "Jeremy Barisch-Rooney @barischrooneyj": + - threepenny-gui-flexbox + + "Romain Edelmann @redelmann": + - distribution + + "Nikita Tchayka @nickseagull": + - ramus + - require + - tintin + # - aws-lambda-haskell-runtime # https://github.com/commercialhaskell/stackage/pull/4299 + + "Simon Jakobi @sjakobi": + - threepenny-gui + - newtype-generics + - bsb-http-chunked + - hspec-parsec + - checkers + - unordered-containers + - prettyprinter + - prettyprinter-ansi-terminal + - prettyprinter-compat-wl-pprint + - prettyprinter-compat-ansi-wl-pprint + - prettyprinter-compat-annotated-wl-pprint + - prettyprinter-convert-ansi-wl-pprint + + "Joe M @joe9": + - logger-thread + - text-generic-pretty + + "Li-yao Xia @Lysxia": + - ap-normalize + - boltzmann-samplers + - first-class-families + - generic-data + - generic-data-surgery + - generic-functor + - generic-random + - scanf + - show-combinators + - type-map + - quickcheck-higherorder + - test-fun + + "Tobias Dammers @tdammers": + - ginger + - yeshql + + "Yair Chuchem @yairchu": + - generic-constraints + - List + - ListTree + + "Marco Zocca @ocramz": + - ad-delcont + - sparse-linear-algebra + - depq + - matrix-market-attoparsec + - splitmix-distributions + - rp-tree + - xeno + - bytestring-mmap # required by xeno + - datasets + - lucid-extras + - mnist-idx-conduit + - rigel-viz + + "Joseph Canero @caneroj1": + - sqlite-simple-errors + - median-stream + - stm-supply + - filter-logger + - tile + - mbtiles + + "James M.C. Haver II @mchaver": + - quickcheck-arbitrary-adt + - hspec-golden-aeson + - quickcheck-arbitrary-template + + "Winter Han @winterland1989": + - if + - tcp-streams + - tcp-streams-openssl + - wire-streams + - binary-parsers + - binary-ieee754 + - word24 + - mysql-haskell + - mysql-haskell-openssl + - data-has + - unboxed-ref + + "Harendra Kumar @harendra-kumar": + - bench-show + - monad-recorder + - packcheck + - streamly + - unicode-transforms < 0.4 # https://github.com/commercialhaskell/stackage/issues/6337 + - xls + + "Pranay Sashank @pranaysashank": + - fusion-plugin-types + - fusion-plugin + + "Adithya Kumar @adithyaov": + - unicode-data + + "Aleksey Uimanov @s9gf4ult": + # - postgresql-query # build errors + - hreader + - hset + - base58-bytestring + + "Aaron Taylor @hamsterdam": + - kawhi + + "Schell Scivally @schell": + - renderable + - varying + + "Nicolas Mattia @nmattia": + - makefile + + "Siddharth Bhat @bollu": + - symengine + + "alpheccar @alpheccar": + - HPDF + + "Dmitry Bogatov @iu-guest": + - once + - mbug + + "David Johnson @dmjio": + - miso + - envy + - s3-signer + - google-translate + - hackernews + - ses-html + - stripe-haskell + - stripe-http-client + - stripe-core + - stripe-tests + + "Piotr Mlodawski @pmlodawski": + - error-util < 0 # MonadFail + - signal + + "Michael Snoyman michael@snoyman.com @snoyberg": + - bzlib-conduit + - case-insensitive + - classy-prelude-yesod + - conduit-combinators + - conduit-extra + - hebrew-time + - markdown + - mime-mail + - mime-mail-ses + - mime-types + - network-conduit-tls + - persistent + - persistent-mysql + - persistent-postgresql + - persistent-sqlite + - persistent-template + - persistent-test + - store + - wai-extra + - wai-websockets + - warp-tls + - yesod + - authenticate + - html-conduit + - yesod-auth + - authenticate-oauth + - yesod-bin + - yesod-eventsource + - yesod-gitrepo + - yesod-newsfeed + - yesod-sitemap + - yesod-static + - yesod-test + - yesod-websockets + - cereal-conduit + - binary-conduit + - lzma-conduit + - mutable-containers + - hpc-coveralls + - monad-unlift + - monad-unlift-ref + - yaml + - servius + - cryptonite-conduit + - streaming-commons + + - alex + - async + - base16-bytestring + - csv-conduit + - executable-hash + - executable-path + - foreign-store + - formatting + - gtk2hs-buildtools + - happy + - hybrid-vectors + - indents + - language-c + - persistent-mongoDB + - pretty-class + - th-expand-syns + - th-lift + - quickcheck-assertions + + - wai-middleware-crowd + - monad-logger-json + - safe-exceptions + - fsnotify-conduit + - pid1 + - typed-process + - say + - unliftio-core + - unliftio + + - hinotify + - hfsevents + - Win32-notify + - windns + + - mono-traversable + - http-client + - http-conduit + - githash + + - time-manager + - pantry + - mega-sdist + - http-download + - hi-file-parser + - rio-prettyprint + - packdeps + + "Brandon Barker @bbarker": + - unexceptionalio + - unexceptionalio-trans + - zio + + "Omari Norman @massysett": + - rainbow + - rainbox + - multiarg + - ofx + - accuerr + - timelens + - squeather + + "Neil Mitchell @ndmitchell": + - hlint + - hoogle + - shake + - tagsoup + - cmdargs + - safe + - uniplate + - nsis + - js-jquery + - js-flot + - js-dgtable + - extra + - ghcid + - hexml + - profiterole + - record-dot-preprocessor + - filepattern + - record-hasfield + - rattle + - hie-bios + - fuzzy + + "Digital Asset ": + - ghc-lib + - ghc-lib-parser + + "Shayne Fletcher ": + - ghc-lib-parser-ex + + "Karl Ostmo @kostmo": + - perfect-hash-generator + + "Alan Zimmerman @alanz": + - ghc-exactprint < 1.1 # needs GHC 9.2 #6177/closed + - haskell-lsp + - hjsmin + - language-javascript + - Strafunski-StrategyLib + + "Luke Lau @bubba": + - lsp-test + + "Alfredo Di Napoli @adinapoli": + - mandrill + + "Jon Schoning @jonschoning": + - pinboard + - swagger-petstore + + "Jasper Van der Jeugt @jaspervdj": + - blaze-html + - blaze-markup + - stylish-haskell + - profiteur + - psqueues + - websockets + - websockets-snap + + "Jasper Van der Jeugt @jaspervdj & Alexander Batischev @Minoru": + - hakyll + + "Sibi Prabakaran @psibi": + - download + - textlocal + - shell-conduit + - tldr + - fb + - yesod-fb + - yesod-auth-fb + - hourglass-orphans + - wai-slack-middleware + - sysinfo + - xmonad-extras + - shelly + - persistent-redis + - fakedata + - fakedata-parser + - fakedata-quickcheck + - streamly-bytestring + + "haskell-openal": + - OpenAL + - ALUT + + "haskell-opengl": + - OpenGL + - GLURaw + - GLUT + - OpenGLRaw + - StateVar + - ObjectName + + "Antoine Latter @aslatter": + - byteorder + - uuid + + "Philipp Middendorf @pmiddend": + - clock + + "Stefan Wehr @skogsbaer": + - HTF + - xmlgen + - stm-stats + - large-hashable + + "Bart Massey @BartMassey": + - parseargs + + "Vincent Hanquez @vincenthz": + - basement + - bytedump + - cipher-aes + - cipher-rc4 + - connection + - cprng-aes + - cpu + - cryptocipher + - cryptohash + - cryptonite + - cryptonite-openssl + - crypto-pubkey-types + - crypto-random-api + - foundation + - gauge + - git < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - hit + - memory + - language-java + - libgit + - pem + - siphash + - socks + - tasty-kat + - tls + - tls-debug + - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - xenstore < 0 # sClose not in scope + + "Chris Done @chrisdone": + - labels + - ace + - check-email + - freenect + - frisby + - gd + - hostname-validate + - ini + - lucid + - pdfinfo + - pure-io + - sourcemap + - hindent + - descriptive + - wrap + - path + - weigh + - odbc + - structured-haskell-mode + - casa-client + - casa-types + + "Alberto G. Corona @agocorona": + - RefSerialize + - TCache + - Workflow + - MFlow + - transient + - transient-universe + - axiom + + "Edward Kmett @ekmett": + - ad + - adjunctions + - algebra + - ansi-wl-pprint + - approximate + - bifunctors + - bits + - bound + - bytes + - charset + - comonad + - compensated + - compressed + - concurrent-supply + - constraints + - contravariant + - distributive + - discrimination + - either + - eq + - ersatz + - fixed + - folds + - free + - gl + - graphs + - half + - heaps + - hybrid-vectors + - hyperloglog + - hyphenation + - indexed-traversable + - integration + - intern + - intervals + - kan-extensions + - keys + - lca + - lens + - lens-action + - lens-aeson + - lens-properties + - linear + - linear-accelerate + - log-domain + - machines + - monadic-arrays + - monad-products + - monad-st + # - mtl take the one that ships with GHC + - nats + - numeric-extras + - parsers + - pointed + - profunctors + - promises + - rcu + - reducers + - reflection + - semigroupoid-extras + - semigroupoids + - semigroups + - speculation + - streams + - structs + - tagged + - tagged-transformer + - transformers-compat <0.7 # https://github.com/commercialhaskell/stackage/issues/6137 + - trifecta + - unique + - vector-instances + - void + - wl-pprint-extras + - wreq + - wl-pprint-terminfo + - zippers + - zlib-lens + + "Andrew Farmer @xich": + - scotty + - wai-middleware-static + + "Simon Hengel @sol": + - hspec + - hspec-core + - hspec-discover + - hspec-wai + - hspec-wai-json + - aeson-qq + - interpolate + - doctest + - base-compat + + "Mario Blazevic @blamario": + - monad-parallel + - monad-coroutine + - monoid-subclasses + - rank2classes + - input-parsers + - incremental-parser + - construct + + "Brent Yorgey @byorgey": + - active + - diagrams + - diagrams-builder + - diagrams-cairo + - diagrams-canvas + - diagrams-contrib + - diagrams-core + - diagrams-gtk + - diagrams-html5 + - diagrams-lib + - diagrams-postscript + - diagrams-rasterific + - diagrams-solve + - diagrams-svg + - force-layout + - SVGFonts + - haxr + - MonadRandom + - monoid-extras + + "Vincent Berthoux @Twinside": + - JuicyPixels + - FontyFruity + - Rasterific + - svg-tree + - rasterific-svg + - asciidiagram + + "Patrick Brisbin @pbrisbin": + - bugsnag-haskell + - gravatar + - load-env + - yesod-auth-oauth2 + - yesod-markdown + - yesod-paginator + + "Freckle Engineering @pbrisbin @mjgpy3 @stevenxl": + - bcp47 + - bcp47-orphans + - faktory + - graphula + - hspec-expectations-json + - yesod-page-cursor + - yesod-routes-flow + - nonempty-zipper + - sendgrid-v3 + - yesod-auth-oauth2 + - hspec-junit-formatter < 1.1 # https://github.com/freckle/freckle-app/issues/43 + - aws-xray-client + - aws-xray-client-wai + - freckle-app + + "Felipe Lessa @meteficha": + - fb + - nonce + - serversession + - serversession-backend-persistent + - serversession-backend-redis + - serversession-frontend-wai + # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 + # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 + - yesod-auth-fb + - yesod-fb + + "Alexander Altman @pthariensflame": + # Maintaining on behalf of @roelvandijk: + - base-unicode-symbols + - containers-unicode-symbols + # My own packages: + - ChannelT + + "Trevor L. McDonell @tmcdonell": + - accelerate + - accelerate-bignum + - accelerate-blas + - accelerate-fft + - accelerate-io + - accelerate-llvm + - accelerate-llvm-native + - accelerate-llvm-ptx + - accelerate-examples + - repa + - repa-algorithms + - repa-io + - gloss + - gloss-rendering + - gloss-algorithms + - gloss-examples + - gloss-raster + - gloss-accelerate + - gloss-raster-accelerate + - colour-accelerate + - lens-accelerate + - mwc-random-accelerate + - cuda + - cufft + - cublas + - cusparse + - cusolver + - nvvm + - wide-word # @erikd + + "Dan Burton @DanBurton": + - ANum + - basic-prelude + - composition + - haskell-src-meta + - io-memoize + - lens-family-th + - numbers + - rev-state + - runmemo + - tardis + - yesod-gitrev + # @mr's packages + - ftp-client + - ftp-client-conduit + # other: real maintainers pls steal these back + - text-format # needed by liquid-fixpoint + - liquid-fixpoint + + "Daniel Casanueva @Daniel-Diaz": + - bimap-server + - binary-list + - byteset + - Clipboard + - gmail-simple + - grouped-list + - haskintex + - HaTeX + - include-file + - matrix + - pcre-light + - phantom-state + - post-mess-age + - sorted-list + + "Gabriella Gonzalez @Gabriel439": + - optparse-generic + - pipes + - pipes-extras + - pipes-http + - pipes-parse + - pipes-concurrency + - pipes-safe + - turtle + - foldl + - bench + - dhall + - dhall-bash + - dhall-json + - dhall-lsp-server + - dhall-yaml + - aeson-yaml # req'd by dhall-json + - dhall-nix + - nix-derivation + - list-transformer + + "Andrew Thaddeus Martin @andrewthad": + - colonnade + - blaze-colonnade + - dot + + "Chris Allen @bitemyapp": + - machines-directory + - machines-io + - bloodhound + + "Adam Bergmark @bergmark": + - aeson + - HUnit + - attoparsec-iso8601 + - feed + - time-compat + - through-text + # Not my packages + - HStringTemplate + - language-ecmascript + - spoon + - tagshare + + "Benedict Aas @Shou": + - boolean-like + - type-operators + + "Sebastiaan Visser @sebastiaanvisser": + - clay + - fclabels + + "Robert Klotzner @eskimor": + - purescript-bridge + - servant-purescript < 0 # #6091/closed + - servant-subscriber + + "Rodrigo Setti @rodrigosetti": + - messagepack + - messagepack-rpc + + "Boris Lykah @lykahb": + - groundhog + - groundhog-inspector + - groundhog-mysql + - groundhog-postgresql + - groundhog-sqlite + - groundhog-th + + "Janne Hellsten @nurpax": + - sqlite-simple + + "Michal J. Gajda @mgajda": + - iterable + - FenwickTree + - json-autotype + + "Dom De Re @domdere": + - cassava-conduit + + "Dominic Steinitz @idontgetoutmuch": + - monad-bayes + - random-fu + + "Ben Gamari @bgamari": + - vector-fftw + - cborg-json + - language-dot + + "Roman Cheplyaka @feuerbach": + - action-permutations + - amqp + - heredoc + - immortal + - regex-applicative + - lexer-applicative + - tasty + - tasty-golden + - tasty-hunit + - tasty-quickcheck + - tasty-smallcheck + - tasty-html + - time-lens + - timezone-olson + - timezone-series + - traverse-with-class + - tuples-homogenous-h98 + + "George Giorgidze @giorgidze": + - YampaSynth + - set-monad + + "Phil Hargett @hargettp": + - courier + + "Aycan iRiCAN @aycanirican": + - hdaemonize + - hweblib + + "Joachim Breitner @nomeata": + - circle-packing + - haskell-spacegoo + - tasty-expected-failure + + "Aditya Bhargava @egonSchiele": + - HandsomeSoup + + "Clint Adams @clinty": + - hOpenPGP + - openpgp-asciiarmor + - MusicBrainz + - DAV + - hopenpgp-tools + - opensource + - debian + - cabal-debian + # dependencies: + - monad-chronicle + + "Piyush P Kurur @piyush-kurur": + - raaz + - naqsha + + "Joey Hess @joeyh": + - git-annex + - concurrent-output + - mountpoints + - disk-free-space + + "Colin Woodbury @fosskers": + - aur + - aura + - bounded-queue + - kanji + - language-bash + - microlens-aeson + - pipes-random + - servant-xml + - streaming-attoparsec + - versions + - vectortiles + + "Ketil Malde @ketil-malde": + - biocore + - biofasta + - biofastq + - blastxml + - bioace + - biopsl + - seqloc + - bioalign + - BlastHTTP + + "Florian Eggenhofer @eggzilla": + - ClustalParser + - EntrezHTTP + - Genbank + - RNAlien + - biocore + - bimaps + - BiobaseBlast + - BiobaseENA + - BiobaseEnsembl + - BiobaseFasta + - BiobaseHTTP + - BiobaseTypes + - BiobaseXNA + - DPutils + - ForestStructures + - OrderedBits + - PrimitiveArray + - SciBaseTypes + - Taxonomy + - ViennaRNAParser + - either-unwrap + + "Silk ": + - aeson-utils + - arrow-list + - attoparsec-expr + - code-builder + - generic-xmlpickler + - hxt-pickle-utils + - imagesize-conduit + - json-schema + - multipart + - rest-client + - rest-core + - rest-gen + - rest-happstack + - rest-snap + - rest-stringmap + - rest-types + - rest-wai + - tostring + - uri-encode + + "Simon Michael @simonmichael": + - quickbench + - regex-compat-tdfa + - shelltestrunner + # The hledger project aims to keep the latest release of the core + # "hledger-lib" and "hledger" packages in stackage nightly at all times. + # When other hledger-* packages (or minor non-hledger packages) have + # incompatible bounds, we would prefer they be disabled temporarily, + # rather than disabling the latest hledger-lib and hledger. + # (#3494/closed, #5779/closed) + - hledger + - hledger-lib + - hledger-ui + - hledger-web + + "Mihai Maruseac @mihaimaruseac": + - io-manager + + "Dimitri Sabadie @phaazon": + - al + - event + - hid + - monad-journal + - smoothie + - wavefront + - zero + + "Thomas Schilling @nominolo": + - ghc-syb-utils + + "Boris Buliga @d12frosted": + - io-choice + + "Yann Esposito yogsototh @yogsototh": + - human-readable-duration + - holy-project + - wai-middleware-caching + - wai-middleware-caching-lru + - wai-middleware-caching-redis + + "Paul Rouse @paul-rouse": + - mysql + - mysql-simple + - sphinx < 0 # Could not find module Network + - xmlhtml + - yesod-auth-hashdb + + "Toralf Wittner @twittner": + - bytestring-conversion + - cql + - cql-io + - redis-resp + - redis-io + - swagger + - tinylog + - wai-predicates + - wai-routing + - zeromq4-haskell + + "Alejandro Serrano @serras": + - djinn-lib + - djinn-ghc + - generics-mrsop < 0 # MonadFail + - kind-apply + - kind-generics + - kind-generics-th + - simplistic-generics + - wl-pprint + - AC-Angle + - language-protobuf + - generic-aeson + - parameterized + - tracing-control + - primitive-unlifted + - stm-lifted + - monad-primitive + - mwc-random-monad + + "Flavio Corpa @kutyel": + - language-avro + + "Matvey Aksenov @supki": + - terminal-size + - envparse + + "Luis G. Torres @giogadi": + - kdt + + "Pavel Krajcevski @Mokosha": + - netwire + - netwire-input + - netwire-input-glfw + - yoga + - freetype2 + - HCodecs + - netcode-io + - reliable-io + + "Emanuel Borsboom @borsboom": + - BoundedChan + - broadcast-chan + - fuzzcheck + - here + - hlibgit2 + - gitlib-libgit2 + - interpolatedstring-perl6 + - iproute + - missing-foreign + - MissingH + - multimap + - parallel-io + - text-binary + - Chart-cairo + - ghc-events + - monad-extras + - optparse-simple + - hpack + - bindings-uname + - stack < 9.9.9 # see #3563/closed + + "Michael Sloan @mgsloan": + - store + - store-core + - store-streaming + - th-orphans + - th-reify-many + - th-utilities + + "Nikita Volkov @nikita-volkov": + - acc + - attoparsec-data + - attoparsec-time + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - deferred-folds + - deque + - domain + - domain-core + - domain-optics + - focus + - hasql + - hasql-optparse-applicative + - hasql-pool + - hasql-th < 0 # 0.4.0.9 TH compile error + - hasql-transaction + - headed-megaparsec < 0.2.0.2 # https://github.com/commercialhaskell/stackage/issues/6348 + - jsonifier + - list-t + - mtl-prelude + - neat-interpolation + - optima + - partial-handler + - postgresql-binary + - postgresql-syntax + - primitive-extras + - ptr-poker + - rebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - rerebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - slave-thread + - stm-containers + - stm-hamt + - template-haskell-compat-v0208 + - text-builder + - th-lego + - vector-builder + - yaml-unscrambler < 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 + - xml-parser + + "Iustin Pop @iustin": + - prefix-units + + "Alexander Thiemann @agrafix": + - Spock + - Spock-core + - Spock-api + - Spock-api-server + - Spock-worker + - graph-core + - hvect + - reroute + - users + - users-persistent + - users-postgresql-simple + - users-test + - validate-input + - ignore < 0 # compile fail https://github.com/agrafix/ignore/issues/5 + - blaze-bootstrap + - dataurl + - psql-helpers + - superbuffer + - timespan + - distance < 0 # compile fail (GHC 8.4) + - async-extra + - format-numbers + - highjson + - highjson-swagger + - highjson-th + - fileplow + + "Joey Eremondi @JoeyEremondi": + - digest + - elm-core-sources + - language-glsl + - prettyclass + - QuasiText + - union-find + - zip-archive + + "Arthur Fayzrakhmanov @geraldus": + - yesod-form-richtext + - ghcjs-perch + + "Tom Ellis @tomjaguarpaw": + - opaleye + - product-profunctors + - strict-wrapper + + "Samplecount stefan@samplecount.com @kaoskorobase": + - shake-language-c + + "David Turner @davecturner": + - alarmclock + - bank-holidays-england + + "Haskell Servant ": + - servant + - servant-blaze + - servant-cassava + - servant-client + - servant-client-core + - servant-conduit + - servant-docs + - servant-foreign + - servant-http-streams + - servant-js + - servant-lucid + - servant-machines + - servant-mock + - servant-multipart + - servant-multipart-api + - servant-pipes + - servant-server + - servant-swagger + - servant-swagger-ui + - servant-swagger-ui-core + + "Optics ": + - indexed-profunctors + - optics + - optics-core + - optics-extra + - optics-th + - optics-vl + + "Alexandr Ruchkin @mvoidex": + - hformat + - simple-log + - text-region + - haskell-names + - hsdev + + "Aleksey Kliger @lambdageek": + - unbound-generics + - indentation-core + - indentation-parsec + - clang-compilation-database + + "Alois Cochard @aloiscochard": + - machines-binary + # on behalf of Bryan O'Sullivan @bos: + - wreq + + "Andraz Bajt @edofic": + - effect-handlers + - koofr-client + - snowflake + + "Leza M. Lutonda @lemol": + - HaskellNet + - HaskellNet-SSL + + "Tristan de Cacqueray @tristanC": + - linux-capabilities + + "Jens Petersen @juhp": + - bugzilla-redhat + - cabal-file + - cabal-rpm + - cached-json-file + - dl-fedora + - fedora-dists + - fedora-haskell-tools + - hkgr + - http-directory < 0.1.9 # https://github.com/juhp/dl-fedora/issues/2 + - http-query + - koji + - pagure-cli + - pkgtreediff + - rhbzquery + - rpm-nvr + - rpmbuild-order + - simple-cabal + - simple-cmd + - simple-cmd-args + - HaXml + + - async-pool + - darcs + - idris + - libffi + - cairo + - glib + - gio + - pango + - gtk3 + - ghcjs-codemirror + - ghcjs-dom + - jsaddle + - vado + - vcswrapper + - ShellCheck + - binary-shared + - xdg-userdirs + # please take these + - cryptohash-md5 + - cryptohash-sha1 + + "Renzo Carbonara @k0001": + - df1 + - di + - di-core + - di-df1 + - di-handle + - di-monad + - exinst + - flay + - network-simple + - network-simple-tls + - pipes-aeson + - pipes-attoparsec + - pipes-binary + - pipes-network + - pipes-network-tls + - safe-money + - vector-bytes-instances + - xmlbf-xeno + - xmlbf-xmlhtml + - xmlbf + + "Tomas Carnecky @wereHamster": + - avers + - avers-api + - avers-server + - css-syntax + - etcd + - github-types + - github-webhook-handler + - github-webhook-handler-snap + - google-cloud + - kraken + - libinfluxdb + - mole + - publicsuffix + - rethinkdb-client-driver + - snap-blaze + + "Alexandr Kurilin @alex_kurilin": + - bcrypt + + "Jeffrey Rosenbluth @jeffreyrosenbluth": + - palette + - diagrams-canvas + - svg-builder + + "Gabríel Arthúr Pétursson @polarina": + - sdl2 + + "Leon Mergen @solatis": + - base32string + - base58string + - bitcoin-api + - bitcoin-api-extra + - bitcoin-block + - bitcoin-script + - bitcoin-tx + - bitcoin-types + - hexstring + - network-attoparsec < 0 # MonadFail + - network-anonymous-i2p < 0 + - network-anonymous-tor + + "Timothy Jones @zmthy": + - http-media + + "Greg V @myfreeweb": + - pcre-heavy + - http-link-header + - microformats2-parser + - hspec-expectations-pretty-diff + - wai-cli + - magicbane + + "Francesco Mazzoli @bitonic": + - language-c-quote + + "Sönke Hahn @soenkehahn": + - generics-eot + - getopt-generics + - graph-wrapper + - string-conversions + - hspec-checkers + - FindBin + + "Jan Stolarek @jstolarek": + - tasty-program + + "Abhinav Gupta @abhinav": + - farmhash + - pinch + - sandman < 0 # compilation failure (Cabal 3) + + "Adam C. Foltzer @acfoltzer": + - gitrev + - persistent-refs + + "Luke Taylor @tekul": + - jose-jwt + + "Brendan Hay @brendanhay": + - amazonka + - amazonka-core + - amazonka-test + - amazonka-apigateway + - amazonka-application-autoscaling + - amazonka-appstream + - amazonka-athena + - amazonka-autoscaling + - amazonka-budgets + - amazonka-certificatemanager + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch + - amazonka-cloudsearch-domains + - amazonka-cloudtrail + - amazonka-cloudwatch + - amazonka-cloudwatch-events + - amazonka-cloudwatch-logs + - amazonka-codebuild + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-idp + - amazonka-cognito-sync + - amazonka-config + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-discovery + - amazonka-dms + - amazonka-ds + - amazonka-dynamodb + - amazonka-dynamodb-streams + - amazonka-ec2 < 0 # takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 + - amazonka-ecr + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elasticsearch + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-elbv2 + - amazonka-emr + - amazonka-gamelift + - amazonka-glacier + - amazonka-glue + - amazonka-health + - amazonka-iam + - amazonka-importexport + - amazonka-inspector + - amazonka-iot + - amazonka-iot-dataplane + - amazonka-kinesis + - amazonka-kinesis-analytics + - amazonka-kinesis-firehose + - amazonka-kms + - amazonka-lambda + - amazonka-lightsail + - amazonka-marketplace-analytics + - amazonka-marketplace-metering + - amazonka-ml + - amazonka-opsworks + - amazonka-opsworks-cm + - amazonka-pinpoint + - amazonka-polly + - amazonka-rds + - amazonka-redshift + - amazonka-rekognition + - amazonka-route53 + - amazonka-route53-domains + - amazonka-s3 + - amazonka-sdb + - amazonka-servicecatalog + - amazonka-ses + - amazonka-shield + - amazonka-sms + - amazonka-snowball + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-stepfunctions + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-waf + - amazonka-workspaces + - amazonka-xray + # gogol-* disabled due to `gogol-core` due to `servant`: #6089/closed + # gogol + # gogol-core + # gogol-adexchange-buyer + # gogol-adexchange-seller + # gogol-admin-datatransfer + # gogol-admin-directory + # gogol-admin-emailmigration + # gogol-admin-reports + # gogol-adsense + # gogol-adsense-host + # gogol-affiliates + # gogol-analytics + # gogol-android-enterprise + # gogol-android-publisher + # gogol-appengine + # gogol-apps-activity + # gogol-apps-calendar + # gogol-apps-licensing + # gogol-apps-reseller + # gogol-apps-tasks + # gogol-appstate + # gogol-autoscaler + # gogol-bigquery + # gogol-billing + # gogol-blogger + # gogol-books + # gogol-civicinfo + # gogol-classroom + # gogol-cloudmonitoring + # gogol-cloudtrace + # gogol-compute + # gogol-container + # gogol-customsearch + # gogol-dataflow + # gogol-dataproc + # gogol-datastore + # gogol-debugger + # gogol-deploymentmanager + # gogol-dfareporting + # gogol-discovery + # gogol-dns + # gogol-doubleclick-bids + # gogol-doubleclick-search + # gogol-drive + # gogol-firebase-rules + # 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-identity-toolkit + # gogol-kgsearch + # gogol-latencytest + # gogol-logging + # gogol-maps-coordinate + # gogol-maps-engine + # gogol-mirror + # gogol-monitoring + # gogol-oauth2 + # gogol-pagespeed + # gogol-partners + # gogol-people + # gogol-play-moviespartner + # gogol-plus + # gogol-plus-domains + # gogol-prediction + # gogol-proximitybeacon + # gogol-pubsub + # gogol-qpxexpress + # gogol-replicapool + # gogol-replicapool-updater + # gogol-resourcemanager + # gogol-resourceviews + # gogol-script + # gogol-sheets + # gogol-shopping-content + # gogol-siteverification + # gogol-spectrum + # gogol-sqladmin + # gogol-storage + # gogol-storage-transfer + # gogol-tagmanager + # gogol-taskqueue + # gogol-translate + # gogol-urlshortener + # gogol-useraccounts + # gogol-vision + # gogol-webmaster-tools + # gogol-youtube + # gogol-youtube-analytics + # gogol-youtube-reporting + - ede + - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 + - semver + - text-manipulate + + "Nick Partridge @nkpart": + - cabal-file-th + + "Gershom Bazerman @gbaz": + - jmacro + - jmacro-rpc + - jmacro-rpc-snap + - jmacro-rpc-happstack + + - mbox + - kmeans + - boolsimplifier + - cubicspline + - maximal-cliques + + "Alexander Bondarenko @dpwiz": + - hedn + - soap + - soap-tls + - soap-openssl + + "Andres Löh @kosmikus": + - generics-sop + - records-sop + - sop-core + + "Vivian McPhail @amcphail": + - hmatrix-gsl-stats + - hsignal + - hstatistics + - plot + - vector-buffer + - hmatrix-repa + + "Noam Lewis @sinelaw": + - xml-to-json + - xml-to-json-fast + - wl-pprint + # not a maintainer + - hxt-curl + - hxt-expat + - hxt-tagsoup + - hexpat + - digits + - logict + - leveldb-haskell + - system-argv0 + - markdown-unlit + + "Brian McKenna @puffnfresh": + - jwt < 0.11 # https://github.com/commercialhaskell/stackage/issues/6356 + + "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": + - setlocale + + "Taylor Fausak @tfausak": + - autoexporter + - burrito + - derulo + - flow + - github-release + - json-feed + - lackey + - list-singleton + - rampart + - ratel + - ratel-wai + - rattletrap + - salve + - splint + - strive + - witch + - wuss + + - bmp # @benl23x5 + - gpolyline # @fegu + + "Marios Titas @redneb": + - HsOpenSSL-x509-system + - adler32 + - btrfs + - disk-free-space + - hxt-css + - islink + - linux-file-extents + - linux-namespaces + + "Will Coster @fimad": + - prometheus-client + - prometheus-metrics-ghc + - scalpel + - scalpel-core + - wai-middleware-prometheus + + "William Casarin @jb55": + - bson-lens + - cased + - elm-export + - elm-export-persistent + - pipes-csv + - pipes-mongodb + - servant-elm + - servant-streaming + - servant-streaming-client + - servant-streaming-server + - skeletons + + "David Raymond Christiansen @david-christiansen": + - annotated-wl-pprint + + "Yitz Gale @ygale": + - boolean-normal-forms + - strict-concurrency + - timezone-series + - timezone-olson + + "Harry Garrood @hdgarrood": + - aeson-better-errors + + "Mitchell Rosen @mitchellwrosen": + - ki + - tasty-hspec + - termbox + - text-ansi + - timer-wheel + + "QBayLogic B.V. @martijnbastiaan": + - ghc-tcplugins-extra + - ghc-typelits-extra + - ghc-typelits-knownnat + - ghc-typelits-natnormalise + - clash-prelude + - clash-lib + - clash-ghc + + "Martijn Bastiaan @martijnbastiaan": + - aeson-pretty + + "Athan Clark @athanclark": + - aeson-attoparsec + - alternative-vector + - almost-fix + - attoparsec-base64 + - attoparsec-path + # - attoparsec-ip # Deprecated in favor of ip + # - attoparsec-uri + - chan + - commutative + - composition-extra + - every + - extractable-singleton + - follow-file + - HSet < 0 # compilation failure, duplicate Hashable instance + - markup + - monad-control-aligned + - monadoid + - n-tuple + - path-extra + - pred-set + - pred-trie + - path-extra + - poly-arity + - quickcheck-combinators + - rose-trees + - sets + - since + - timemap + - tmapchan + - tmapmvar + - tries + - unit-constraint + - unfoldable-restricted + - urlpath + - wai-transformers + - websockets-rpc + - websockets-simple + - webpage + - ws + + "Fumiaki Kinoshita @fumieval": + - boundingboxes + - control-bool + - drinkery + - monad-skeleton + - xml-lens + - witherable + - deriving-aeson + + "Peter Harpending @pharpend": + - editor-open + - exceptional < 0 # MonadFail + - pager + - semiring-simple + + "Philipp Hausmann @phile314": + - language-thrift + + "Michael Thompson @michaelt": + - pipes-text + - lens-simple + - lens-family-core + - lens-family + + "Justin Le @mstksg": + - advent-of-code-api + - auto + - backprop + - bins + - conduino + - configurator-export + - decidable + - emd + - functor-products < 0 # compilation failure https://github.com/mstksg/functor-products/issues/1 + - hamilton + - hmatrix-backprop + - hmatrix-vector-sized + - lens-typelevel + - list-witnesses + - nonempty-containers + - one-liner-instances < 0 # compile failure (random 1.2) + - prompt + - servant-cli + - tagged-binary + - type-combinators-singletons + - typelits-witnesses + - uncertain + - vector-sized + + "Ian Duncan @iand675": + - feature-flags + - metrics + - pipes-wai + - serf + - uri-templater + - data-sketches + - data-sketches-core + + "Michael Xavier @MichaelXavier": + - uri-bytestring + - cron + - tasty-tap + - tasty-fail-fast + - drifter + - drifter-postgresql + - drifter-sqlite + + "Lars Kuhtz @larskuhtz": + - wai-cors + - configuration-tools + - random-bytestring + + "Sam Rijs @srijs": + - ndjson-conduit + - operational-class + - result + + "Daniel Patterson @dbp": + - hworker + - fn + + "Mathieu Boespflug @mboes": + - choice + - distributed-closure + - inline-java + - inline-r + - jni < 0 # compilation failure + - jvm + - jvm-streaming + - H + - sparkle + - th-lift + + "Christopher Reichert @creichert": + - bencode + - hsebaysdk + - dockerfile + - wai-middleware-throttle + - yesod-auth-basic + + "Hirotomo Moriwaki @philopon": + - barrier + + "Kai Zhang @kaizhang": + - matrices + - haskell-igraph < 0 # compile failure ghc 8.10.1 #5440/closed + + "Michel Boucey @MichelBoucey": + - IPv6Addr + - ip6addr + - cayley-client + - Spintax + - glabrous + - google-oauth2-jwt + - IPv6DB + - gothic + - NanoID + + "koral koral@mailoo.org @k0ral": + - atom-conduit + - conduit-parse + - dublincore-xml-conduit + - euler-tour-tree + - opml-conduit + - rss-conduit + - timerep + - xml-conduit-parse + + "Daniel Cartwright @chessai": + - streaming + - streaming-bytestring + - country + - semirings + - torsor + - chronos + - refined + - these-skinny + - hedgehog-classes + + "Kostiantyn Rybnikov @k-bx": + - SHA + - currency + - data-ordlist + - digits + - dns + - friday + - friday-juicypixels + - hbeanstalk + - hedis + - hprotoc + - hsyslog-udp + - iso3166-country-codes + - iso639 + - monoidal-containers + - murmur-hash + - protocol-buffers + - protocol-buffers-descriptor + - regex-pcre + - string-class + - string-combinators + + "Rob O'Callahan ropoctl@gmail.com @rcallahan": + - pipes-fastx + - seqalign + + "John Lenz @wuzzeb": + - yesod-static-angular + - hspec-webdriver + - webdriver-angular + + "Sven Heyll @sheyll": + - b9 + - type-spec + - pretty-types + - function-builder + - bytestring-to-vector + + "Jakub Fijałkowski @jakubfijalkowski": + - hlibsass + - hsass + + "Robert Massaioli @robertmassaioli": + - range + + "Vladislav Zavialov @int-index": + - transformers-lift + - union + - named + - inj + - shower + + "Stack Builders stackage@stackbuilders.com @stackbuilders": + - atomic-write + - dbcleaner + - dotenv + - hapistrano + - hspec-golden + - inflections + - stache + - scalendar + + "Sergey Alirzaev @l29ah": + - monad-peel + - NineP + - Network-NineP + + "Antoni Silvestre @asilvestre": + # Test suite needs a running neo4j server with auth disabled + # unfortunately the cabal package name and the github repo don't have the exact same name + # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client + - haskell-neo4j-client < 0 # build failure with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 + + "Anton Kholomiov ": + - data-fix + + "Alexey Khudyakov @Shimuuar": + - histogram-fill + - fixed-vector + - fixed-vector-hetero + - type-level-numbers + + "Ryan Scott @RyanGlScott": + - abstract-deque + - abstract-deque-tests + - abstract-par + - atomic-primops + - base-compat-batteries + - base-orphans + - chaselev-deque + - code-page + - constraint-tuples + - criterion + - criterion-measurement + - data-reify + - deriving-compat + - dotgen + - echo + - eliminators + - generic-deriving + - ghc-bignum-orphans + - hashmap + - indexed-traversable-instances + - invariant + - keycode + - lift-generics + - mintty + - monad-par + - monad-par-extras + - mtl-compat + - ordered-containers + - proxied + - rdtsc + - singleton-nats + - singletons-base + - singletons-th + - text-show + - text-show-instances + - th-abstraction + - th-compat + - thread-local-storage + - type-equality + + "Kirill Zaborsky @qrilka": + - xlsx + + "Matt Parsons @parsonsmatt": + - monad-logger-prefix + - monad-metrics + - prairie + - ekg-cloudwatch + - smtp-mail + - liboath-hs + - servant-quickcheck + - esqueleto + - hedgehog-fakedata + - persistent-discover + - persistent-documentation + - persistent-typed-db + - persistent-qq + - persistent-pagination + - hspec-hedgehog + - exception-via + - record-wrangler + - lift-type + - some-dict-of + - discover-instances + + "Matthew Pickering @mpickering": + - refact + + "Andrew Gibiansky @gibiansky": + - ipython-kernel + + "James Cook @mokus0": + - dependent-map + - dependent-sum + - dependent-sum-template + - dice + - hstatsd + - misfortune + + "Timo von Holtz @tvh": + - ekg-wai + - haxl-amazonka + - hasql-migration + - servant-JuicyPixels + + "Artyom Kazak @neongreen": + - microlens + - microlens-platform + - microlens-mtl + - microlens-th + - microlens-ghc + - microlens-contra + - cheapskate-highlight + - cheapskate-lucid + - cmark-lucid + - cmark-highlight + - Spock-lucid + - charsetdetect-ae + - text-all + + "Takano Akio tak@anoak.io @takano-akio": + - fast-builder + - filelock + + "Brian Lewis brian@lorf.org @bsl": + - bindings-GLFW + - GLFW-b + + "Niklas Hambüchen mail@nh2.me @nh2": + - conduit-concurrent-map + - hidapi + - iso8601-time + - loop + - lz4-frame-conduit + - netpbm + - network-house < 0 # compilation failure MonadFail + - reinterpret-cast + - shared-memory + - posix-paths + # As dependencies of packages above + - attoparsec-binary + + "Michael Walker @barrucadu": + - both + - concurrency + - dejafu + - hunit-dejafu + - tasty-dejafu + - irc-ctcp + - irc-conduit + - irc-client + + "Rudy Matela @rudymatela": + - leancheck + - leancheck-instances + - fitspec + - express + - speculate + - extrapolate + - code-conjure + - percent-format + - tasty-leancheck + - hspec-leancheck + - test-framework-leancheck + + "Trevor Elliott @elliottt": + - irc + + "Dennis Gosnell @cdepillabout": + - envelope + - from-sum + - natural-transformation + - password + - password-instances + - password-types + - pretty-simple + - print-console-colors + - read-env-var + - servant-checked-exceptions + - servant-checked-exceptions-core + - servant-rawm + - servant-static-th + - termonad + - world-peace + - xml-html-qq + - xml-indexed-cursor + + "Franklin Chen @FranklinChen": + - Ebnf2ps + + "Tobias Bexelius @tobbebex": + - GPipe + + "Jonas Carpay @jonascarpay": + - apecs + - apecs-gloss + - apecs-physics + - aeson-commit + - js-chart + - tasty-focus + + "Spencer Janssen @spencerjanssen": + - Xauth + + "Sebastian de Bellefon @Helkafen": + - wai-middleware-metrics + + "Gregory Collins @gregorycollins": + - hashtables + - io-streams + - openssl-streams + + "Andrew Cowie @istathar": + - chronologique + - http-common + - http-streams + - locators + - core-data + - core-program + - core-telemetry + - core-text + + "Sean Hunt @ivan-m": + - fgl + - graphviz + - wl-pprint-text + - servant-pandoc + + "Sharif Olorin @olorin": + - quickcheck-text + - nagios-check + + "Peter Simons @peti": + - cabal2nix + - cabal2spec + - cgi + - distribution-nixpkgs + - distribution-opensuse + - flexible-defaults + - funcmp + - hackage-db + - hledger-interest + - hopenssl + - hsdns + - hsemail + - hsyslog + - jailbreak-cabal + - lambdabot-core + - lambdabot-irc-plugins + - language-nix + - logging-facade-syslog + - MonadPrompt + - nix-paths + - parsec-class + - prim-uniq + - random-fu < 0 + - random-source + - rvar + - SafeSemaphore + - streamproc + - stringsearch # for cgi + - titlecase + + "Mark Fine @markfine": + - postgresql-schema + - sbp + + "Jinjing Wang @nfjinjing": + - moesocks + + "Gregory W. Schwartz @GregorySchwartz": + - diversity + - fasta + - modify-fasta + - tree-fun + - random-tree + - clumpiness + - find-clumpiness + - blosum + - rank-product + + "Simon Marechal @bartavelle": + - compactmap + - stateWriter + - filecache + - pcre-utils + - strict-base-types + - withdependencies + - hruby + - language-puppet + - tar-conduit + + "Mark Karpov @mrkkrp": + - JuicyPixels-extra + - cue-sheet + - flac + - flac-picture + - forma + - ghc-syntax-highlighter + - hspec-megaparsec + - htaglib + - html-entity-map + - identicon + - lame + - megaparsec + - megaparsec-tests + - mmark + - mmark-cli + - mmark-ext + - modern-uri + - ormolu + - pagination + - parser-combinators + - parser-combinators-tests + - path + - path-io + - req + - req-conduit + - stache + - tagged-identity + - text-metrics + - wave + - zip + + "Emmanuel Touzery @emmanueltouzery": + - app-settings + - hsexif + - slack-web + + "Nickolay Kudasov @fizruk": + - http-api-data + - swagger2 + - telegram-bot-simple + + "Jared Tobin @jtobin": + - mwc-probability + - mcmc-types + - mighty-metropolis + - speedy-slice + - hasty-hamiltonian + - declarative + - sampling + - flat-mcmc + - urbit-hob + - hnock + + "Facundo Domínguez @facundominguez": + - distributed-process + - distributed-process-simplelocalnet + - distributed-process-tests + - distributed-static + - inline-c + - jvm-batching + - network-transport + - network-transport-tests + - network-transport-tcp + - network-transport-inmemory + - network-transport-composed + - pthread + - rank1dynamic + + "Dave Tapley @dukedave": + - inline-c-cpp + + "Takahiro Himura @himura": + - lens-regex + # - twitter-conduit # twitter-types + # - twitter-types # MonadFail + # - twitter-types-lens # + + "Robbin C. @robbinch": + - zim-parser + + "David Wiltshire @dave77": + # on behalf of Alexey Karakulov @w3rs + - hashable-time + + "Yuras Shumovich @Yuras": + - pdf-toolbox-content + - pdf-toolbox-core + - pdf-toolbox-document + - io-region + - scanner + + "Stanislav Chernichkin @schernichkin": + - partial-isomorphisms + + "Christoph Breitkopf @bokesan": + - IntervalMap + + "Michele Lacchia @rubik": + - pathwalk + + "John Galt @centromere": + - cacophony + - blake2 + - nfc + + + "Michael Schröder @mcschroeder": + - ctrie + - ttrie + + "Stefan Kersten @kaoskorobase": + - hsndfile + - hsndfile-vector + + "yihuang @yihuang": + - tagstream-conduit + + "Johannes Hilden @laserpants": + - hashids + - fuzzyset + + "Will Sewell @willsewell": + - benchpress + - pusher-http-haskell + + "Yorick Laupa yo.eight@gmail.com @YoEight": + - eventstore + - dotnet-timespan + - eventsource-api + - eventsource-geteventstore-store + - eventsource-store-specs + - eventsource-stub-store + + "Sebastian Dröge slomo@coaxion.net @sdroege": + - conduit-iconv < 0 # MonadFail + - conduit-connection + + "Andrew Rademacher @AndrewRademacher": + - aeson-casing + - graylog < 0 # Couldn't find module Network.BSD + - parsec-numeric + - mallard + - gdax + + "Callum Rogers @CRogers": + - should-not-typecheck + + "Mihaly Barasz klao@nilcons.com @klao": + - lens-datetime + - tz + - tzdata + + "Timothy Klim @TimothyKlim": + - pkcs10 + + "David Luposchainsky @quchen": + - pgp-wordlist + - show-prettyprint + + "Jeremy Shaw @stepcut": + - boomerang + - happstack-hsp + - happstack-jmacro + - happstack-server + - happstack-server-tls + - hsx-jmacro + - ixset + - reform + - reform-blaze + - reform-hamlet + - reform-happstack + - reform-hsp + - userid + - web-plugins + - web-routes + - web-routes-boomerang + - web-routes-happstack + - web-routes-hsp + - web-routes-th + - web-routes-wai + - hsx2hs + + "Pedro Tacla Yamada @yamadapc": + - ascii-progress + - drawille + - file-modules + - frontmatter + - read-editor + - list-prompt < 0 # compile failure https://github.com/yamadapc/list-prompt/issues/3 + - package-description-remote < 0 # compile failure + - projectroot + - questioner + - language-dockerfile < 0 # compile failure https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 + + "Pascal Hartig @passy": + - giphy-api + - optparse-text + + "rightfold @rightfold": + - open-browser + + "Denis Redozubov @dredozubov": + - hreader-lens + - schematic + + "Yuji Yamamoto @igrep": + - yes-precure5-command + - th-strict-compat + - main-tester + - skews + - wss-client + - network-messagepack-rpc + - network-messagepack-rpc-websocket + - unicode-show + - deriveJsonNoPrefix + - fakefs + - fakepull + + "Hans-Christian Esperer @hce": + - avwx + - saltine < 0.2.0.0 # https://github.com/tel/saltine/issues/58 + - wai-session-postgresql + + "Haisheng Wu @freizl": + - hoauth2 + + "Falko Peters @informatikr": + - scrypt + + "Jakub Waszczuk @kawu": + - dawg-ord + + "Amit Levy @alevy": + - simple + - simple-templates + - simple-session + - postgresql-orm + + "Sergey Astanin @astanin": + # Stackage server uses Ubuntu 16.04 which ships libzip-1.0.1. + # Haskell packages should match major.minor versions of the C library. + - bindings-libzip >= 1.0 + - LibZip >= 1.0 + + "Anthony Cowley @acowley": + - vinyl + - Frames + - hpp + + "Takayuki Muranushi @nushio3": + - binary-search + + "Jason Shipman @jship": + - logging-effect-extra + - logging-effect-extra-file + - logging-effect-extra-handler + - overhang + - tao + - tao-example + + "Suhail Shergill @suhailshergill": + - extensible-effects + + "Justus Adam @JustusAdam": + - marvin + - marvin-interpolate + - mustache + - exit-codes >= 1.0.0 + + "Cindy Wang @CindyLinz": + - NoTrace + - linked-list-with-iterator + + "Jean-Philippe Bernardy @jyp": + - polynomials-bernstein + - typography-geometry + + "John MacFarlane @jgm": + - hsb2hs + - cmark + - texmath + - highlighting-kate + - skylighting + - skylighting-core + - pandoc-types + - zip-archive + - doclayout + - doctemplates + - emojis + - pandoc + - citeproc + - commonmark + - commonmark-extensions + - commonmark-pandoc + - unicode-collation + - HsYAML-aeson + - ipynb + + "Karun Ramakrishnan @karun012": + - doctest-discover + + "Elie Genard @elaye": + - turtle-options + + "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": + - string-conv + - rng-utils + - ua-parser + - hs-GeoIP + - retry + - katip + - katip-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/6341 + + "Sid Kapur sidharthkapur1@gmail.com @sid-kap": + - tuple + - OneTuple + + "Aaron Levin @aaronmblevin": + - free-vl + + "Kazuo Koga @kkazuo": + - xlsx-tabular + + "Mikhail Glushenkov @23Skidoo": + # - Cabal # take the one that ships with GHC + - cabal-install + - pointful + + "Lennart Kolmodin @kolmodin": + - binary-bits + + "Alex McLean @yaxu": + - tidal + - hosc + + "Kei Hibino @khibino": + - th-data-compat + - th-reify-compat + - relational-query + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record + - text-ldap + - debian-build + - aeson-generic-compat + - json-rpc-generic + - protocol-radius + - protocol-radius-test + - th-bang-compat + - th-constraint-compat + - persistable-record + + "wren romano @wrengr": + - bytestring-lexing + - bytestring-trie + - data-or + - exact-combinatorics + - logfloat + - pointless-fun + - prelude-safeenum + - stm-chans + - unification-fd + - unix-bytestring + + "Fraser Tweedale @frasertweedale": + - concise + - dyre + - jose + + "Yoshikuni Jujo @YoshikuniJujo": + - zot + - yjtools + - io-machine + - yjsvg + - x11-xim + - X11-xft + - Imlib + - xturtle + - gluturtle + - papillon + - zasni-gerna + - exception-hierarchy + - simplest-sqlite + - warp-tls-uid + - nowdoc + - typecheck-plugin-nat-simple + - ranged-list + - c-enum + - c-struct + - union-angle + + "Jan Gerlinger @JanGe": + - irc-dcc + + "Alexey Raga @AlexeyRaga": + - hw-kafka-client + + "John Ky newhoggy@gmail.com @newhoggy": + - aeson-lens + - antiope-core + - antiope-dynamodb + - antiope-messages + - antiope-s3 + - antiope-sns + - antiope-sqs + - arbor-lru-cache + - arbor-postgres + - asif + - avro + - bits-extra + - hw-balancedparens + - hw-bits + - hw-conduit + - hw-conduit-merges + - hw-diagnostics + - hw-dsv + - hw-eliasfano + - hw-excess + - hw-fingertree + - hw-fingertree-strict + - hw-hedgehog + - hw-hspec-hedgehog + - hw-int + - hw-ip + - hw-json + - hw-json-simple-cursor + - hw-json-standard-cursor + - hw-mquery + - hw-packed-vector + - hw-parser + - hw-prim + - hw-rankselect + - hw-rankselect-base + - hw-simd + - hw-streams + - hw-succinct + - hw-xml + - tasty-discover + + "George Wilson @gwils": + - hedgehog-fn + - sv + - sv-cassava + - sv-core + - tasty-hedgehog + + "Ismail Mustafa @ismailmustafa": + - handwriting + + "Stephen Diehl @sdiehl": + - llvm-hs-pretty + - protolude + - repline + - picosat + - aos-signature + - bulletproofs + - pedersen-commitment + - merkle-tree + - oblivious-transfer + - pairing + - libraft + - galois-field + + "Daishi Nakajima @nakaji-dayo": + - api-field-json-th + + "Patrick Thomson @helium": + - postgresql-transactional + + "Tom Murphy ": + - gingersnap + - microspec + - midair + - nano-erl + - rando + - vivid + - vivid-osc + - vivid-supercollider + + "Toshio Ito @debug-ito": + - fold-debounce + - fold-debounce-conduit + - stopwatch + - wikicfp-scraper + - wild-bind + - wild-bind-x11 + - greskell + - greskell-core + - greskell-websocket + - hspec-need-env + + "Cies Breijs @cies": + - htoml + + "Martijn Rijkeboer @mrijkeboer": + - protobuf-simple + + "David Reaver @jdreaver": + - eventful-core + - eventful-dynamodb + - eventful-memory + - eventful-postgresql + - eventful-sql-common + - eventful-sqlite + - eventful-test-helpers + - stratosphere + - sum-type-boilerplate + + "Iñaki García Etxebarria @garetxe": + - haskell-gi + - haskell-gi-base + - gi-atk + - gi-cairo + - gi-dbusmenu + - gi-dbusmenugtk3 + - gi-gdk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gdkpixbuf + - gi-gdkx11 == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gio + - gi-glib + - gi-gobject + - gi-graphene + - gi-gtk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gtk-hs + - gi-gmodule + - gi-pango + - gi-xlib + - gi-harfbuzz + - gi-gsk + - gi-gtksource + - gi-javascriptcore + - gi-vte + - gi-webkit2 + + "Brandon Simmons @jberryman": + - directory-tree + + "Ian Grant Jeffries @seagreen": + - hjsonpointer + + "Drew Hess @dhess": + - hpio + + "Richard Eisenberg @goldfirere": + - th-desugar + - singletons + - HUnit-approx + - units-parser + + "Doug McClean @dmcclean": + - dimensional + - exact-pi + - numtype-dk + + "Bjorn Buckwalter @bjornbm": + - leapseconds-announced + + "Pavel Ryzhov @paulrzcz": + - hquantlib + - hquantlib-time + - HSvm + + "Henri Verroken @hverr": + - bordacount + - cache + - haskey + - haskey-btree + - haskey-mtl + - intset-imperative + - lxd-client + - lxd-client-config + - xxhash-ffi + - zeromq4-patterns + + "Cliff Harvey @BlackBrane": + - ansigraph + - microsoft-translator + + "Tebello Thejane @tebello-thejane": + - bitx-bitcoin < 0 # compilation error + + "Andrew Lelechenko @Bodigrim": + - exp-pairs + - fast-digits < 0 # https://github.com/commercialhaskell/stackage/issues/6167 + - chimera + - quadratic-irrational + - primitive-addr + - quickcheck-classes + - quickcheck-classes-base + - arithmoi + - bitvec + - poly + - extended-reals + - ChasingBottoms + - data-interval + - vector-rotcev + - mod + - tasty-rerun + - integer-roots + - smallcheck + - quote-quot + - tasty-bench + - tasty-inspection-testing + + "Ashley Yakeley @AshleyYakeley": + - countable + - witness + - open-witness + + "Victor Denisov @VictorDenisov": + - mongoDB + - bson + + "Alexis King @lexi-lambda": + - freer-simple + - monad-mock + - test-fixture + - text-conversions + - th-to-exp + - type-assertions + + "Patrick Chilton @chpatrick": + - webrtc-vad + - clang-pure < 0 # missing system libraries #3810/closed + - codec + + "Michal Konecny @michalkonecny": + - hmpfr + - collect-errors + - mixed-types-num + - cdar-mBound + - aern2-mp + - aern2-real + + "Bartosz Nitka @niteria": + - oeis + + "Gergely Patai @cobbpg": + - elerea + + "Christopher Wells @ExcalburZero": + - pixelated-avatar-generator + + "Dominic Orchard @dorchard": + - array-memoize + - codo-notation < 0 # MonadFail + - fortran-src + + "Cheng Shao @TerrorJack": + - binaryen + - cabal-toolkit + - direct-rocksdb + + "Anton Gushcha @ncrashed": + - aeson-injector + - JuicyPixels-blp + + "Al Zohali @zohl": + - servant-auth-cookie + - dictionaries + - cereal-time + + "Joachim Fasting @joachifm": + - libmpd + + "Moritz Kiefer @cocreature": + - lrucaching + - llvm-hs + - llvm-hs-pure + + "Thierry Bourrillon @tbourrillon": + - heatshrink + - hocilib + + "Daniel Mendler @minad": + - quickcheck-special + - writer-cps-mtl + - writer-cps-transformers + - writer-cps-morph < 0 # https://github.com/louispan/writer-cps-morph/issues/2 + - writer-cps-lens + - writer-cps-full + - writer-cps-exceptions + - wl-pprint-annotated + - wl-pprint-console + - console-style + - unlit + - intro + - tasty-stats + - colorful-monoids + - ihs + - paripari + - persist + + "Taras Serduke @tserduke": + - do-list + + "Travis Whitaker ": + - cpuinfo + - lmdb + - rdf + - data-compat + - deepseq-instances + + "Michael Swan @michael-swan": + - pcf-font < 0 # MonadFail + - pcf-font-embed + + "Iago Abal ": + - bv + + "Juan Pedro Villa Isaza @jpvillaisaza": + - licensor + + "Florian Hofmann fho@f12n.de @fhaust": + - vector-split + - vector-mmap + + "Ondrej Palkovsky @ondrap": + - json-stream + + "Philipp Balzarek ": + - xml-picklers + + "Lennart Spitzner @lspitzner": + - multistate + - pqueue + - butcher + - czipwith + - data-tree-print + - brittany + + "Ryan Mulligan @ryantm": + - HDBC-mysql + + "Tony Morris @tonymorris": + - validation + + "Tony Day @tonyday567": + - numhask + - numhask-array + - numhask-prelude + - numhask-space + - perf + + "Iphigenia Df @iphydf": + - data-msgpack + - network-msgpack-rpc + + "Dino Morelli @dino-": + - epub-metadata + - hsinstall + - tce-conf + + "Jonathan Fischoff @jfischoff": + - clock-extras + - postgres-options + - tmp-postgres + - pg-transact + - port-utils + - postgresql-libpq-notify + - hasql-queue + + "Jonathan Knowles @jonathanknowles": + - bech32 + - bech32-th + - cardano-coin-selection + - quiet + - roc-id + + "Mahdi Dibaiee @mdibaiee": + - picedit + - mathexpr + - termcolor + + "XT @xtendo-org": + - rawfilepath + + "Konstantin Zudov @zudov": + - html-email-validate + + "Carl Baatz @cbaatz": + - atom-basic + + "Reuben D'Netto ": + - glob-posix + + "Kadzuya Okamoto @arowM": + - type-level-kv-list + - heterocephalus + - bookkeeping + - ochintin-daicho + - transaction + - tonaparser + - tonalude + - tonatona + - tonatona-logger + - tonatona-servant + - tonatona-persistent-sqlite + - tonatona-persistent-postgresql + + "Marcin Tolysz @tolysz": + - rawstring-qm + + "Daniel YU ": + - salak + - salak-yaml + - salak-toml + - tensors + - menshen + - crc32c + - boots + + "Tom Nielsen @glutamate": + - plotlyhs + - inliterate + + "Hyunje Jun @noraesae": + - line + + "Hannes Saffrich @m0rphism": + [] + # - printcess # lens 4.16 + + "Alexey Kuleshevich @lehins": + - wai-middleware-auth + - hip + - massiv + - massiv-io + - massiv-test + - massiv-serialise + - massiv-persist + - scheduler + - Color + - safe-decimal + - flush-queue + - pvar + + "Hans-Peter Deifel @hpdeifel": + - hledger-iadd + + "Roy Levien @orome": + - crypto-enigma + + "Boldizsár Németh @nboldi": + - instance-control + - references < 0 # compilation failure + - classyplate + - haskell-tools-ast + - haskell-tools-backend-ghc + - haskell-tools-prettyprint + - haskell-tools-refactor + - haskell-tools-rewrite + - haskell-tools-demo + - haskell-tools-cli + - haskell-tools-daemon + - haskell-tools-debug + + "David Fisher @ddfisher": + - socket-activation + + "aiya000 @aiya000": + - character-cases + - throwable-exceptions + + "Mitsutoshi Aoe @maoe": + - influxdb + - sensu-run + - viewprof + + "Dylan Simon @dylex": + - postgresql-typed + - invertible + - ztail + - zip-stream + + "Louis Pan @louispan": + - alternators + - arrow-extras + - data-diverse + - data-diverse-lens < 0 # compile fail (lens) + - ghcjs-base-stub + - glaze + - glazier < 0 # compile fail (lens) + - glazier-react + - glazier-react-widget + - javascript-extras + - lens-misc + - l10n + - pipes-category + - pipes-fluid + - pipes-misc + - stm-extras + + "Siniša Biđin @sbidin": + - sdl2-image + - sdl2-mixer + - sdl2-gfx + + "Aditya Manthramurthy @donatello": + - minio-hs + - webby + + "ncaq @ncaq": + - debug-trace-var + - haskell-import-graph + - string-transform + - uniq-deep + - yesod-form-bootstrap4 + - yesod-recaptcha2 + + "Andrei Barbu @abarbu": + - nondeterminism + - csp + - matplotlib + + "mackeyrms @mackeyrms": + - tsv2csv + + "Thomas Sutton @thsutton": + - aeson-diff + - edit-distance-vector + + "Kyle Van Berendonck @donkeybonks": + - rot13 + - dvorak + + "Cuedo Business Solutions @cuedo": + - github-webhooks + + "Pavel Yakovlev @zmactep": + - hasbolt + - uniprot-kb + - mmtf < 0 # MonadFail + + "Christopher A. Gorski @cgorski": + - general-games + + "Cristian Adrián Ontivero @contivero": + - hasmin + - hopfli + + "Peter Trško @trskop": + - between + - connection-pool + - verbosity + + "Devon Hollowood @devonhollowood": + - search-algorithms + + "Chris Dornan @cdornan": + - sort + - regex + - regex-pcre-text + - regex-with-pcre + - possibly + - enum-text + - rg + - columnar + - no-value + - optparse-enum + - fmt + + "Elliot Cameron @3noch": + - ziptastic-client + - ziptastic-core + + "Hardy Jones @joneshf": + - katip-rollbar + - rollbar-hs + - servant-ruby + - wai-middleware-rollbar + + "Andrey Mokhov @snowleopard": + - algebraic-graphs + + "Albert Krewinkel @tarleb": + - hslua + - hslua-classes + - hslua-core + - hslua-marshalling + - hslua-module-doclayout + - hslua-module-path + - hslua-module-system + - hslua-module-text + - hslua-module-version + - hslua-objectorientation + - hslua-packaging + - jira-wiki-markup + - lpeg + - lua + - lua-arbitrary + - pandoc-lua-marshal + - tasty-hslua + - tasty-lua + + "Judah Jacobson @judah": + - proto-lens-protobuf-types + - proto-lens-protoc + - proto-lens-runtime + - proto-lens-setup + - proto-lens + - proto-lens-arbitrary + - proto-lens-optparse + - tensorflow-test + - pier-core + - pier + - haskeline + - ghc-source-gen # tests disabled due to QuickCheck < 2.14 + + "Christof Schramm ": + - mnist-idx + + "Naushadh @naushadh": + - persistent-mysql-haskell + + "Moritz Schulte @mtesseract": + - async-refresh + - async-refresh-tokens + - type-level-integers + - partial-order + - async-timer + - nakadi-client + - throttle-io-stream + - conduit-throttle + + "Simon Hafner @reactormonk": + - uri-bytestring-aeson + - katip-scalyr-scribe + + "Sebastian Witte @saep": + - nvim-hs + - nvim-hs-contrib + - nvim-hs-ghcid + + "Sam Protas @SamProtas": + - triplesec + - composable-associations + - composable-associations-aeson + - JuicyPixels-blurhash + + "Anton Ekblad @valderman": + - selda + - selda-sqlite + - selda-postgresql + - selda-json + + "Luis Pedro Coelho @luispedro": + - safeio + - conduit-algorithms < 0 # compile fail + - conduit-zstd + + "Alex Biehl @alexbiehl": + - haddock-library + - http-client-openssl + + "Steven Vandevelde @icidasset": + - shikensu + + "George Pollard @Porges": + - email-validate + + "Alexander Ignatyev @aligusnet": + - astro + - mltool + - hmatrix-morpheus + + "Matt Noonan @matt-noonan": + - justified-containers + - roles >= 0.2 + - lawful + - gdp + + "Levent Erkok @LeventErkok": + - sbv + - crackNum + + "János Tapolczai @jtapolczai": + - listsafe + + "Serokell @serokell": + - importify + - log-warper + - o-clock + - tasty-hunit-compat + - universum + - with-utf8 + - uncaught-exception + + "Holmusk @arbus": + - elm-street + + "Noel Kwan @kwannoel": + - servant-docs-simple + + "Lorenz Moesenlechner @moesenle": + - servant-websockets + + "Daniel Campoverde @alx741": + - currencies + - alerts + - yesod-alerts + - graphite + + "José Lorenzo Rodríguez @lorenzo": + - wrecker + - language-docker + - docker-build-cacher + - mysql-haskell-nem + - hadolint + + "Phil Ruffwind @Rufflewind": + - blas-hs + + "Eitan Chatav @echatav": + - free-categories + - squeal-postgresql + + "Sam Quinn @Lazersmoke": + - ghost-buster + + "typeable.io ": + - dom-parser + - xml-isogen + + "Jeremy Huffman @jeremyjh": + - higher-leveldb + - distributed-process-lifted + - distributed-process-monad-control + + "Adam Curtis @kallisti-dev": + - webdriver + - cond + + "Naoto Shimazaki @nshimaza": + - thread-hierarchy + - thread-supervisor + - bitset-word8 + - webex-teams-api + - webex-teams-conduit + - webex-teams-pipes + + "Deni Bertovic @denibertovic & James Parker @jprider63": + - docker + + "Hexirp @Hexirp": + - doctest-driver-gen + + "Václav Haisman @wilx": + - hs-bibutils + + "Christian Kjær Laustsen @tehnix": + - ghc-core + - colorize-haskell + + "Chris Martin @chris-martin": + - data-forest + - loc + - partial-semigroup + - path-text-utf8 + + "Type Classes @argumatronic @chris-martin": + - ascii + - ascii-case + - ascii-char + - ascii-group + - ascii-predicates + - ascii-superset + - ascii-th + - aws-cloudfront-signed-cookies + - d10 + - hex-text + - stripe-concepts + - stripe-signature + - stripe-scotty + - stripe-wreq + + "Viacheslav Lotsmanov @unclechu": + - place-cursor-at + - qm-interpolated-string + + "Douglas Burke @DougBurke": + - swish + - hvega + - ihaskell-hvega + + "Adam Flott @adamflott": + - milena < 0 # compilation failures + + "Csongor Kiss @kcsongor": + - generic-lens + - generic-optics + - generic-lens-core + + "Bogdan Neterebskii @ozzzzz": + - cast + - aeson-picker + + "Warlock @A1-Triard": + - errors-ext + - binary-ext + + "Bob Long @bobjflong": + - yesod-csp + + "Alexander Vershilov @qnikst": + - stm-conduit + - co-log-concurrent + - HaskellNet + + "Tung Dao @tungd": + - time-locale-vietnamese + + "Tim McGilchrist @tmcgilchrist": + - riak + - riak-protobuf + - airship + - hedgehog-corpus + + "Tom Sydney Kerckhove @NorfairKing": + - autodocodec + - autodocodec-openapi3 + - autodocodec-schema + - autodocodec-yaml + - cursor + - cursor-brick + - cursor-fuzzy-time + - cursor-gen + - fuzzy-time + - genvalidity + - genvalidity-aeson + - genvalidity-bytestring + - genvalidity-containers + - genvalidity-criterion + - genvalidity-hspec + - genvalidity-hspec-aeson + - genvalidity-hspec-binary + - genvalidity-hspec-cereal + - genvalidity-hspec-hashable + - genvalidity-hspec-optics + - genvalidity-hspec-persistent + - genvalidity-mergeful + - genvalidity-mergeless + - genvalidity-path + - genvalidity-persistent + - genvalidity-property + - genvalidity-scientific + - genvalidity-sydtest + - genvalidity-sydtest-aeson + - genvalidity-sydtest-hashable + - genvalidity-sydtest-lens + - genvalidity-sydtest-persistent + - genvalidity-text + - genvalidity-time + - genvalidity-typed-uuid + - genvalidity-unordered-containers + - genvalidity-uuid + - genvalidity-vector + - mergeful + - mergeless + - pretty-relative-time + - safe-coloured-text + - safe-coloured-text-terminfo + - sydtest + - sydtest-discover + - sydtest-persistent + - sydtest-persistent-sqlite + - sydtest-servant + - sydtest-wai + - sydtest-yesod + - typed-uuid + - validity + - validity-aeson + - validity-bytestring + - validity-containers + - validity-path + - validity-persistent + - validity-primitive + - validity-scientific + - validity-text + - validity-time + - validity-unordered-containers + - validity-uuid + - validity-vector + - yamlparse-applicative + + + "Henry Laxen @HenryLaxen": + - bbdb + + "Stevan Andjelkovic @stevana": + - quickcheck-state-machine + + "Sebastian Nagel @ch1bo": + - hdevtools < 0 # compilation failure + - servant-exceptions + - servant-exceptions-server + + "Vaibhav Sagar @vaibhavsagar": + - ihaskell + - ghc-parser + + "Alexis Williams @typedrat": + - stb-image-redux + + "Alexandre Peyroux @apeyroux": + - HSlippyMap + - google-isbn + - nuxeo + + "Andrey Sverdlichenko @rblaze": + - credential-store + - dbus + - re2 + + "Bardur Arantsson @BardurArantsson": + - peregrin + - pg-harness-client + - pg-harness-server + - unliftio-pool + - unliftio-streams + + "Sebastian Graf @sgraf812": + - pomaps + + "Alexey Kotlyarov @koterpillar": + - appendmap + - serverless-haskell + + "Guru Devanla @gdevanla": + - pptable + - cassava-records < 0 # compilation failure MonadFail + - pandoc-markdown-ghci-filter # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 + + "Lucas David Traverso @ludat": + - map-syntax + - heist + - snap + - conferer + - conferer-snap + - conferer-warp + - conferer-hspec + - conferer-aeson + + "Tim Humphries @thumphries": + - transformers-either + - transformers-fix + + "Dan Firth @locallycompact": + - aeson-with + - binary-instances + - comonad-extras + - compact + - composite-aeson + - composite-aeson-path + - composite-aeson-refined + - composite-aeson-throw + - composite-base + - composite-binary + - composite-ekg + - composite-hashable + - composite-tuple + - composite-xstep + - ixset-typed-binary-instance + - ixset-typed-conversions + - ixset-typed-hashable-instance + - lucid-cdn + - natural-arithmetic + - pandoc-dhall-decoder + - pandoc-throw + - path-binary-instance + - path-dhall-instance + - path-extensions + - path-formatting + - path-like + - path-utils + - polysemy-extra + - polysemy-fs + - polysemy-fskvstore + - polysemy-kvstore-jsonfile + - polysemy-kvstore + - polysemy-methodology + - polysemy-path + - polysemy-several + - polysemy-socket + - polysemy-uncontrolled + - polysemy-video + - polysemy-vinyl + - primitive-offset + - shake-plus + - shake-plus-extended + - simple-media-timestamp + - simple-media-timestamp-formatting + - simple-media-timestamp-attoparsec + - srt + - srt-attoparsec + - srt-dhall + - srt-formatting + - tuples + - unliftio-path + - variable-media-field + - variable-media-field-dhall + - variable-media-field-optics + - vinyl-loeb + - within + - zipper-extra + + "Domen Kozar @domenkozar": + - elm2nix + - mixpanel-client + - netrc + - pretty-sop + - servant-auth + - servant-auth-server + - servant-auth-client + - servant-auth-swagger + - servant-auth-docs + - servant-elm + - systemd + + "Andre Van Der Merwe @andrevdm": + - bhoogle + - hyraxAbif + - postgresql-migration + + "David Millar-Durrant @DavidM-D": + - indexed-list-literals + + "Dmitry Dzhus @dzhus": + - csg + - simple-vec3 + - static-text + - th-env + - th-nowq + + "Dan Fithian @dfithian": + - oauthenticated + - datadog + - interpolator + - file-path-th + + "Raghu Kaippully @rkaippully": + - webgear-server + + "Alex Washburn @recursion-ninja": + - bv-little + - mono-traversable-keys + + "Avi Press @aviaviavi": + - curl-runnings + - cryptocompare + + "Jack Kiefer @JackKiefer": + - herms + + "Sergey Vinokurov @sergv": + - bencoding + - emacs-module < 0 # compilation failure ghc 8.10.1 #5436/closed + - tasty-ant-xml + + "Eugene Smolanka @esmolanka": + - sexp-grammar + - invertible-grammar + + "Maximilian Tagher @MaxGabriel": + - aeson-iproute + - persistent-iproute + + "Damian Nadales @capitanbatata": + - hierarchy + + "Kofi Gumbs @hkgumbs": + - codec-beam + + "Chris Parks @cdparks": + - closed + + "Chris Coffey @ChrisCoffey": + - servant-tracing + - cuckoo-filter + - confcrypt + + "Rick Owens @owensmurray": + - om-elm + + "ALeX Kazik @alexkazik": + - exomizer + - qnap-decrypt + - qrcode-core + - qrcode-juicypixels + + "Reed Oei @ReedOei": + - fuzzy-dates + + "Matthew Farkas-Dyck @strake": + - Fin + - alg + - category + - constraint + - dual + - either-both + - filtrable + - foldable1 + - hs-functors + - lenz + - natural-induction + - peano + - unconstrained + - util + + "Ben Sima @bensima": + - yesod-text-markdown + + "Alexander Krupenkin @akru": + - web3 + + "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": + - can-i-haz + - enum-subset-generate + + "Trevis Elser @telser": + - sendfile + + "Kristen Kozak @grayjay": + - json-rpc-server + - json-rpc-client + + "Magnus Therning @magthe": + - hsini + + "Baojun Wang @wangbj": + - elf + + "Tom Oram @tomphp": + - cfenv + + "Owen Lynch @olynch": + - natural-sort + + "John Biesnecker @biesnecker": + - async-pool + + "Zoltan Kelemen @kelemzol": + - fswatch + + "Matthew Wraith @wraithm": + - prometheus + - prometheus-wai-middleware + - hgrev + - seqid + - seqid-streams + + "Daniel Gorin @jcpetruzza": + - barbies + - data-hash + + "Eduard Sergeev @EduardSergeev": + - monad-memo + + "Wanja Chresta @wchresta": + - matrix-static + + "Jean-Pierre Rupp @xenog": + - json-rpc + - rfc1751 + - murmur3 + - nqe + - secp256k1-haskell + - rocksdb-haskell + - rocksdb-haskell-jprupp + - rocksdb-query + - haskoin-core + - haskoin-node + - haskoin-store + + "asakamirai @asakamirai": + - kazura-queue + + "Eric Torreborre @etorreborre": + - registry + + "Ryota Kameoka @ryota-ka": + - duration + + "Takenobu Tani @takenobu-hs": + - ghci-hexcalc + + "Nikos Karagianndis @nkarag": + - DBFunctor + + "Marat Khafizov @xafizoff": + - n2o + - n2o-nitro + - n2o-protocols + - n2o-web + + "David Smith @shmish111": + - bazel-runfiles + + "Rob Rix @robrix": + - fused-effects + + "Josef Thorne @Grendel-Grendel-Grendel": + - focuslist + + "Pavan Rikhi @prikhi": + - hs-php-session + - wordpress-auth + - servant-auth-wordpress + - ca-province-codes + - mx-state-codes + - sitemap-gen + - tasty-wai + - stack-templatizer + - immortal-queue + - wai-middleware-clacks + - hledger-stockquotes + - bnb-staking-csvs + - solana-staking-csvs + - cointracking-imports + + "David Baynard @dbaynard": + - time-qq + - ucam-webauth + - ucam-webauth-types + + "Erick Gonzalez @codemonkeylabs-de": + - eap + - failable + - ttl-hashtables + - radius + - structured-cli + + "Jan Path @janpath": + - smallcheck-series + + "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": + - oeis2 + + "David Himmelstrup @lemmih": + - chiphunk + - reanimate-svg + - reanimate + - earcut + - vector-circular + # required by reanimate as of 0.4.2.0 + - hgeometry >= 0.12.0.2 + - hgeometry-combinatorial + - approximate-equality # required by hgeometry-combinatorial + - type-level-natural-number # required by approximate-equality + + "Vitaly Bragilevsky @bravit": + - Chart + - Chart-diagrams + + "Juri Chomé @2mol": + - msgpack + - msgpack-rpc + - msgpack-idl + - msgpack-aeson + - int-cast + + "Akihito Kirisaki @kirisaki": + - caster + + "Felix Paulusma @Vlix": + - safe-json + + "Olle Fredriksson @ollef": + - rope-utf16-splay + + "Venkateswara Rao Mandela @vmandela": + - pandoc-csv2table + + "Elben Shira @elben": + - pencil + + "Ivan Malison @IvanMalison": + - ConfigFile + - dbus-hslogger + - gi-cairo-connector + - gi-cairo-render + - gtk-sni-tray + - gtk-strut + - rate-limit + - status-notifier-item + - taffybar + - time-units + - xml-helpers + - xdg-desktop-entry + + "ARATA Mizuki @minoki": + - unboxing-vector + + "Brandon Chinn @brandon-leapyear": + - aeson-schemas + - github-rest + - graphql-client + - hpc-lcov + - th-test-utils + + "Brandon Chinn @brandonchinn178": + - persistent-mtl + - fourmolu + + "Akshay Mankar @akshaymankar": + - jsonpath + + "James Brock @jamesdbrock": + - replace-megaparsec + - replace-attoparsec + + "Robbie McMichael @robbiemcmichael": + - http-client-overrides + + "Ian Graves @igraves": + - monad-resumption + + "Marius Ghita @mhitza": + - minimal-configuration + + "Davit Nalchevanidze @nalchevanidze": + - morpheus-graphql + - morpheus-graphql-core + - morpheus-graphql-client + - morpheus-graphql-subscriptions + - morpheus-graphql-app + + "Satoshi Egi @egisatoshi": + - backtracking + - egison + - mini-egison + - sweet-egison + - egison-pattern-src + - egison-pattern-src-th-mode + + "Travis Cardwell @TravisCardwell": + - literatex + - ttc + + "Jasper Woudenberg @jwoudenberg": + - bugsnag-hs + - junit-xml + - wai-feature-flags + - tasty-test-reporter + - pretty-diff + + "Eric Conlon @ejconlon": + - blanks + - climb + - linenoise + - little-rio + - little-logger + # Maintainership with @23Skidoo + - ekg + - ekg-core + - ekg-json + - ekg-statsd + + "Jorah Gao @gqk007": + - aeson-default + - vformat + - vformat-time + - vformat-aeson + - hkd-default + + "Shintaro Sakata @chemirea": + - utf8-conversions + + "Alessandro Marrella @amarrella": + - kubernetes-webhook-haskell + + "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": + - hpc-codecov + + "Hiromi Ishii @konn": + - equational-reasoning + - ghc-typelits-presburger + - singletons-presburger + - type-natural + - subcategories + - sized + + "Frank Doepper @woffs": + - amqp-utils + - magic + + "Ziyang Liu @zliu41": + - apply-refact + - hadoop-streaming + - indexed-containers + - math-extras + - min-max-pqueue + - multi-containers + + "Vaclav Svejcar @vaclavsvejcar": + - headroom < 0 # https://github.com/commercialhaskell/stackage/issues/6342 + - vcs-ignore + + "Adrian Sieber @ad-si": + - ulid + + "Rickey Visinski @rickeyski": + - slack-api + + "Dobromir Nikolov @dnikolovv": + - it-has + + "Gabriele Sales @gbrsales": + - cabal-appimage + + "Dominik Schrempf @dschrempf": + - circular + - covariance + - dirichlet + - elynx + - elynx-markov + - elynx-nexus + - elynx-seq + - elynx-tools + - elynx-tree + - glasso + - mcmc + - pava + - slynx + - tlynx + + "Eric Rochester @erochest": + - text-regex-replace + + "Masahiro Honma @hiratara": + - string-random + + "Michael B. Gale @mbg": + - c14n + - katip-logstash + - logstash + - monad-logger-logstash + - moss + - wai-rate-limit + - wai-rate-limit-redis + - wai-saml2 + + "Jun Narumi @narumij": + - matrix-as-xyz + - hall-symbols + - symmetry-operations-symbols + + "Hideaki Kawai @kayhide": + - wakame + + "Michael Williams @mlcfp": + - zenacy-html + - zenacy-unicode + + "Maxim Koltsov @maksbotan": + - openapi3 + - servant-openapi3 + + "Song Zhang @HaskellZhangSong": + - derive-topdown + + "NoRedInk ": + - nri-env-parser + - nri-http + - nri-kafka + - nri-observability + - nri-prelude + - nri-postgresql + - nri-redis + - nri-test-encoding + + "Behrang Norouzinia @behrang": + - jalaali + + "Alexander Batischev @Minoru": + - hakyll-convert + + "Edward Nerd @nerded1337": + - zydiskell + + "Alejandro Peralta Bazas @aleperaltabazas": + - hocon + + "Joshua Booth @jnbooth": + - bitwise-enum + + "Shlomo Shuck @sjshuck": + - pcre2 + + "Emil Axelsson <78emil@gmail.com> @emax": + - tree-view + + "Samuel Gélineau @gelisam": + - haskell-awk + - hint + - recursion-schemes + + "Kyriakos Papachrysanthou @3kyro": + - keep-alive + + "Brooklyn Zelenka @expede": + - rescue + + "Artem Pelenitsyn @ulysses4ever": + - alex-meta + - happy-meta + - BNFC-meta + + "Tomasz Maciosowski @t4ccer": + - wai-session-redis + + "Rory Tyler Hayford @ngua": + - ipa + + "Andreas Herrmann @aherrmann": + - capability + + "Dustin Sallings @dustin": + - net-mqtt < 0 # compile fail attoparsec 0.14 + - net-mqtt-lens + + "David A Roberts @davidar": + - streamt + + "Martin Sosic @Martinsos": + - strong-path + + "Arnaud Spiwack @aspiwack": + - linear-base + + "Ollie Charles @ocharles": + - rel8 + + "Grzegorz Milka @gregorias": + - trimdent + + "xmonad ": + - X11 + - xmonad + - xmonad-contrib + + "Marcellus Siegburg @marcellussiegburg": + - call-alloy + + "Rickard Andersson @GoNZooo": + - gotyno-hs + - reddit-scrape + + "James Cranch @jcranch": + - tophat + + "Jan Synacek @jsynacek": + - hpqtypes + - hpqtypes-extras + - fields-json + - log-base + - unjson + + "Daan Leijen @daanx": + - isocline + + "Chase @TotallyNotChase": + - valida + - valida-base + + "Andrew Miller @A1kmm": + - polysemy-webserver + + "Simon Shine @sshine": + - evm-opcodes + + "Francesco Ariis @ffaf1": + - ansi-terminal-game + - lentil + - linebreak + - timers-tick + - unidecode + + "Chris Smith ": + - HMock + - explainable-predicates + + "Tim Emiola @adetokunbo": + - hspec-tmp-proc + - tmp-proc + - wai-middleware-delegate + + "Francisco Vallarino @fjvallarino": + - monomer + - nanovg + + "Grandfathered dependencies": + - snappy + - quicklz + - Boolean + - Decimal + - Diff + - FloatingHex + - GenericPretty + - Glob + - HDBC + - HDBC-session + - HTTP + - HasBigDecimal + - HsOpenSSL + - HsYAML + - JuicyPixels-scale-dct + - MemoTrie + - NumInstances + - Only + - ParsecTools + - QuickCheck + - RSA + - Stream + - aeson-compat + - aeson-extra + - aeson-optics + - alsa-mixer + - ansi-terminal + - appar + - arrows + - asn1-encoding + - asn1-parse + - asn1-types + - assoc + - attoparsec + - auto-update + - base-noprelude + - base64-bytestring + - base64-bytestring-type + - base64-string + - bimap + - bin # req'd by boring + - binary-orphans + - binary-parser + - binary-tagged + - bindings-DSL + - bitarray + - blaze-builder + - blaze-svg + - blaze-textual + - boring + - brick + - buffer-builder + - byte-order + - byteable + - bytestring-builder + - bzlib + - c2hs + - ca-province-codes + - cabal-doctest + - call-stack + - casing + - cassava-megaparsec + - cborg + - cereal + - cereal-text + - cereal-vector + - chunked-data + - cipher-aes128 + - cipher-camellia + - cipher-des + - classy-prelude + - classy-prelude-conduit + - clientsession + - cmark-gfm + - colour + - concurrent-extra + - conduit + - config-ini + - configurator + - constraints-extras + - contravariant-extras + - control-monad-free + - control-monad-omega + - convertible + - cookie + - cpphs + - crypt-sha512 + - crypto-api + - crypto-api-tests + - crypto-cipher-tests + - crypto-cipher-types + - crypto-numbers + - crypto-pubkey + - crypto-random + - cryptohash-cryptoapi + - cryptohash-sha256 + - cryptohash-sha512 + - css-text + - csv + - cubicbezier + - data-binary-ieee754 + - data-bword + - data-checked + - data-clist + - data-default + - data-default-class + - data-default-instances-containers + - data-default-instances-dlist + - data-default-instances-old-locale + - data-dword + - data-endian + - data-inttrie + - data-lens-light + - data-memocombinators + - data-msgpack-types + - data-serializer + - data-textual + - dec + - deepseq-generics + - deferred-folds + - dense-linear-algebra + - deque + - dictionary-sharing + - direct-sqlite + - discount + - dlist + - dlist-instances + - dlist-nonempty + - double-conversion + - dual-tree + - easy-file + - easytest + - ed25519 + - edit-distance + - elm-bridge + - enclosed-exceptions + - entropy + - erf + - errors + - expiring-cache-map + - extensible-exceptions + - fail + - fast-logger + - fast-math + - fib + - file-embed + - file-embed-lzma + - filemanip + - fin + - fingertree + - fmlist + - friendly-time + - functor-classes-compat + - functor-combinators + - generic-arbitrary + - generics-sop-lens + - ghc-byteorder + - ghc-compact + - ghc-paths + - ghc-prof + - github + - groom + - groups + - hackage-security + - hashable + - haskell-gi-overloading + - haskell-lexer + - haskell-lsp-types + - haskell-src-exts + - haxl + - heap + - hex + - hmatrix + - hmatrix-gsl + - hostname + - hourglass + - hsc2hs + - hscolour + - hslogger + - hsp + - hspec-attoparsec + - hspec-contrib + - hspec-expectations + - hspec-expectations-lifted + - hspec-meta + - hspec-smallcheck + - html + - html-entities + - http-client-tls + - http-date + - http-reverse-proxy + - http-types + - http2 + - httpd-shed + - hw-json-simd + - hw-string-parse + - hxt + - hxt-charproperties + - hxt-http + - hxt-regex-xmlschema + - hxt-unicode + - iconv + - ieee754 + - indexed + - infer-license + - insert-ordered-containers + - inspection-testing + - integer-logarithms + - io-streams-haproxy + - ixset-typed + - json + - json-alt + - kleene + - language-haskell-extract + - largeword + - lattices + - lazy-csv + - lazysmallcheck + - libBF + - libyaml + - lifted-async + - lifted-base + - loch-th + - lockfree-queue + - log-base + - logging-facade + - lrucache + - lsp + - lsp-types + - lukko + - lz4 + - lzma + - lzma-clib + - managed + - math-functions + - mersenne-random + - mersenne-random-pure64 + - mfsolve + - microstache + - mmap + - mmorph + - mockery + - monad-control + - monad-logger + - monad-loops + - monad-time + - monads-tf + - mono-traversable-instances + - mono-traversable-keys + - multiset + - mwc-random + - names-th + - nanospec + - nettle + - network + - network-bsd + - network-byte-order + - network-info + - network-ip + - network-run + - network-uri < 2.7.0.0 || > 2.7.0.0 # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. + - newtype + - nicify-lib + - old-locale + - old-time + - one-liner + - operational + - optional-args + - options + - optparse-applicative + - parallel + - path-pieces + - pcg-random + - pipes-bytestring + - pipes-group + - placeholders + - poll + - polyparse + - postgresql-libpq + - postgresql-simple + - postgresql-simple-url + - pretty-hex + - pretty-show + - prettyprinter-convert-ansi-wl-pprint + - primes + - primitive + - primitive-unaligned + - process-extras + - product-isomorphic + - project-template + - protobuf + - pureMD5 + - quickcheck-instances + - quickcheck-io + - quickcheck-simple + - quickcheck-unicode + - ral # req'd by boring + - random + - random-shuffle + - range-set-list + - raw-strings-qq + - readable + - regex-applicative-text + - regex-pcre-builtin + - regex-tdfa-text + - relapse + - relational-schemas + - resolv + - resource-pool + - resourcet + - rfc5051 + - rio + - rio-orphans + - safecopy + - scientific + - securemem + - selective + - semialign + - semialign-indexed + - semialign-optics + - serialise + - servant-client-core + - servant-multipart-client + - servant-swagger-ui + - servant-swagger-ui-core + - servant-swagger-ui-redoc + - servant-yaml + - setenv + - shakespeare + - shell-escape + - silently + - simple-reflect + - simple-sendfile + - singleton-bool + - size-based + - skein + - snap-core + - some + - special-values + - splice + - split + - splitmix + - sql-words + - stateref + - statistics + - step-function + - stm-delay + - storable-complex + - streaming-cassava + - strict + - strict-list + - string-qq + - stringbuilder + - structured + - sundown + - syb + - system-fileio + - system-filepath + - tabular + - tar + - tasty-lua + - tasty-th + - tdigest + - template-haskell-compat-v0208 + - temporary + - temporary-rc + - temporary-resourcet + - test-framework + - test-framework-hunit + - test-framework-quickcheck2 + - test-framework-smallcheck + - test-framework-th + - testing-feat + - testing-type-modifiers + - text-icu + - text-latin1 + - text-postgresql + - text-printer + - text-short + - text-zipper + - tf-random + - th-extras + - th-lift-instances + - th-utilities + - these + - these-lens < 1.0.1 || > 1.0.1 + - these-optics < 1.0.1 || > 1.0.1 + - threads + - thyme + - time-locale-compat + - time-parsers + - timeit + - tls-session-manager + - token-bucket + - tonatona + - transformers-base + - tree-diff + - trivial-constraint + - true-name + - tuple-th + - type-fun + - type-hint + - uglymemo + - unbounded-delays + - unicode-collation + - universe + - universe-base + - universe-dependent-sum + - universe-instances-base + - universe-instances-extended + - universe-instances-trans + - universe-reverse-instances + - universe-some + - unix-time + - url + - utf8-light + - utf8-string + - uuid-types + - vault + - vec + - vector + - vector-algorithms + - vector-binary-instances + - vector-space + - vector-th-unbox + - vty + - wai + - wai-app-static + - wai-conduit + - wai-eventsource + - wai-handler-launch + - wai-logger + - wai-session + - warp + - wcwidth + - with-location + - wizards + - word-wrap + - word8 + - x509 + - x509-store + - x509-system + - x509-validation + - xml + - xml-conduit + - xml-conduit-writer + - xml-hamlet + - xml-types + - xss-sanitize + - yeshql-core + - yeshql-hdbc + - yesod-core + - yesod-form + - yesod-persistent + - zlib + - zlib-bindings + + # If you stop maintaining a package (either just on stackage, or + # completely),you can move it here. It will be disabled if it + # starts causing problems. + # + # See #1056/closed + # + # When disabling one of these packages, move it to "Removed packages". + "Abandoned packages": + - Earley + - bower-json + - boxes + - cassava + - coercible-utils # 6271 + - curl + - first-class-patterns # #5965/closed + - hashing # 6271 + - hnix-store-core # 6271 + - ilist # #5965/closed + - monadlist # 6271 + - non-empty-sequence + - path # 6271 + - pattern-arrows + - relude # #5965/closed + - shellmet # #5965/closed + - slist # #5965/closed + - type-errors-pretty # #5965/closed + - typerep-map # #5965/closed + - validation-selective # #5965/closed + + # moved from ethercrow (#6326) + - charsetdetect-ae + - compiler-warnings + - docopt + - dynamic-state + - io-storage + - oo-prototypes + - opentelemetry + - opentelemetry-extra + - opentelemetry-wai + - opentelemetry-lightstep + - planb-token-introspection + - pointedlist + - unordered-intmap + - word-trie + - xdg-basedir + - yi-rope + # needed for opentelemetry + - ghc-trace-events # @maoe + - numeric-limits # Lennart Augustsson + + # Packages without maintainers that cause issues, + # this is to prevent us from including them by accident. They can + # be removed from this list if they are fixed. + "Unmaintained packages with compilation failures": [] + + # If you want to make sure a package is removed from stackage, + # place it here with a `< 0` constraint and send a pull + # request. This will tell us if other packages would be + # affected. Packages will be kept in this list indefinitely so + # that new packages depending on it will be flagged as well. + "Removed packages": + - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) + - Unique < 0 # GHC 8.4 via base-4.11.0.0 + - cli < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - co-log-core < 0 # #5965/closed + - co-log-polysemy < 0 # #5965/closed + - fingertree-psqueue < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - hastache < 0 # GHC 8.4 via base-4.11.0.0 + - heart-core < 0 # deprecated + - hnix < 0 # 6271 + - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 + - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - membrain < 0 # #5965/closed + - preprocessor-tools < 0 # build failure with GHC 8.4 + - present < 0 # 6271 + - prim-array < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - shortcut-links < 0 # #5965/closed + - snap-server < 0 # 6271 + - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 + - tinytemplate < 0 # build failure with GHC 8.4 + - tomland < 0 # #5965/closed + - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 + - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - xxhash < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - universe-instances-base < 0 # deprecated + - universe-instances-trans < 0 # deprecated + + "GHC upper bounds": + # Need to always match the version shipped with GHC + - Win32 == 2.10.0.0 + + # Section for packages that have been mass-disabled due to + # compilation failures, e.g. after we upgrade GHC. Every package + # should have a `< 0` constraint. + # + # These constraints can (should?) be moved under the maintainers + # name, but please add a "compile fail" comment to them there so + # it's clear that they must be built if we want to confirm that + # they are working. + "Compilation failures": + - Fin < 0 # `@' not in scope + - HDBC-mysql < 0 + - Spock-core < 0 + - Workflow < 0 + - accuerr < 0 + - aeson-lens < 0 # 0.5.0.0 + - arrow-list < 0 # 0.7.1 + - auto < 0 + - aws-xray-client < 0 + - backprop < 0 + - bencoding < 0 + - binary-ext < 0 + - bins < 0 + - bitcoin-script < 0 + - btrfs < 0 + - bv-little < 0 + - cabal-debian < 0 + - cabal-toolkit < 0 + - chaselev-deque < 0 + - compdata < 0 + - courier < 0 + - cql < 0 + - crypto-numbers < 0 + - cuckoo-filter < 0 # 0.2.0.2 benchmarks are an exe + - derive-topdown < 0 # 0.0.2.2 + - distributed-closure < 0 # 0.4.2.0 + - djinn-ghc < 0 # 0.0.2.3 + - drinkery < 0 # 0.4 + - elm-bridge < 0 # 0.6.1 + - elynx-seq < 0 + - elynx-tools < 0 + - enum-subset-generate < 0 + - essence-of-live-coding-quickcheck < 0 + - etcd < 0 # 1.0.5 + - farmhash < 0 # 0.1.0.5 + - eve < 0 # 0.1.9.0 + - eventsource-store-specs < 0 + - exinst < 0 + - ftp-client-conduit < 0 # 0.5.0.5 + - ginger < 0 # 0.10.2.0 + - giphy-api < 0 # https://github.com/passy/giphy-api/pull/19 + - groundhog-th < 0 # 0.11 + - gluturtle < 0 # 0.0.58.1 + - haskell-import-graph < 0 + - haskell-spacegoo < 0 + - haskoin-node < 0 + - haxl < 0 + - hbeanstalk < 0 + - heterocephalus < 0 + - hexml-lens < 0 + - hexstring < 0 + - hs-functors < 0 + - hschema < 0 + - hstatsd < 0 + - inline-r < 0 + - interpolator < 0 + - io-choice < 0 + - katydid < 0 # 0.4.0.2 MonadFail + - kdt < 0 # 0.2.4 https://github.com/giogadi/kdt/issues/5 + - lens-typelevel < 0 + - llvm-hs < 0 + - llvm-hs-pretty < 0 + - machines-binary < 0 + - machines-io < 0 + - marvin-interpolate < 0 + - mixed-types-num < 0 + - mltool < 0 + - moesocks < 0 + - monad-recorder < 0 + - monad-unlift < 0 + - morpheus-graphql < 0 + - morpheus-graphql-app < 0 + - morpheus-graphql-client < 0 + - morpheus-graphql-core < 0 + - morpheus-graphql-subscriptions < 0 + - murmur < 0 + - n2o-protocols < 0 + - nonempty-containers < 0 + - nvim-hs-contrib < 0 # 2.0.0.0 + - odbc < 0 + - open-witness < 0 + - operational < 0 + - pandoc-markdown-ghci-filter < 0 + - partial-isomorphisms < 0 + - pencil < 0 + - pipes-aeson < 0 + - pipes-binary < 0 + - pipes-network < 0 + - pipes-text < 0 + - pkcs10 < 0 + - planb-token-introspection < 0 + - postgresql-transactional < 0 + - raaz < 0 + - regex-compat-tdfa < 0 + - rhine < 0 + - rose-trees < 0 # compilation seems to hang? + - safe-money < 0 + - sdl2-gfx < 0 + - sdl2-image < 0 + - sdl2-mixer < 0 + - sequence-formats < 0 + - sessiontypes < 0 + - simplistic-generics < 0 + - slack-api < 0 + - squeal-postgresql < 0 + - stm-stats < 0 + - strive < 0 + - sydtest-persistent-sqlite < 0 + - text-region < 0 + - th-data-compat < 0 + - throttle-io-stream < 0 + - throwable-exceptions < 0 + - thyme < 0 + - time-qq < 0 + - timemap < 0 # https://github.com/athanclark/timemap/issues/1 + - tintin < 0 + - tracing-control < 0 + - traverse-with-class < 0 + - turtle-options < 0 + - type-assertions < 0 + - type-map < 0 + - typecheck-plugin-nat-simple < 0 + - ulid < 0 + - uncertain < 0 + - unordered-intmap < 0 + - users-persistent < 0 + - wai-middleware-auth < 0 + - wai-predicates < 0 + - webdriver < 0 + - webex-teams-pipes < 0 + - websockets-rpc < 0 + - word24 < 0 + - xls < 0 + - xml-conduit-parse < 0 + - xml-lens < 0 + - xturtle < 0 + - yeshql-hdbc < 0 + - yesod-auth < 0 # 1.6.10.3 + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # This section is meant for libraries and executables that have + # bene disabled due to bounds issues, there is a separate section + # for compilation failures as we need to build those packages to + # verify if they have been fixeq. + "Library and exe bounds failures": + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* does not support: network-3.1.2.5 + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* does not support: network-3.1.2.5 + - Chart < 0 # tried Chart-1.9.3, but its *library* requires the disabled package: operational + - Chart-cairo < 0 # tried Chart-cairo-1.9.3, but its *library* requires the disabled package: operational + - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* does not support: SVGFonts-1.8.0.1 + - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* requires the disabled package: operational + - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: biocore + - FPretty < 0 # tried FPretty-1.1, but its *library* does not support: base-4.15.0.0 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* does not support: linear-1.21.8 + - Genbank < 0 # tried Genbank-1.0.3, but its *library* requires the disabled package: biocore + - H < 0 # tried H-0.9.0.1, but its *executable* requires the disabled package: inline-r + - HaskellNet < 0 # tried HaskellNet-0.6, but its *library* does not support: base-4.15.0.0 + - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: HaskellNet + - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: optparse-applicative-0.16.1.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: IPv6Addr-2.0.3 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: aeson-1.5.6.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: attoparsec-0.14.1 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: hedis-0.15.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: unordered-containers-0.2.15.0 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: attoparsec-0.14.1 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: text-show-3.9.3 + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: Workflow + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: monadloc + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: pwstore-fast + - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - Network-NineP < 0 # tried Network-NineP-0.4.7.1, but its *library* requires the disabled package: mstate + - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* does not support: base-4.15.0.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseBlast-0.3.3.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseFasta-0.4.0.1 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseHTTP-1.2.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseTypes-0.2.1.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: aeson-1.5.6.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: network-3.1.2.5 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: hierarchical-clustering + - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core + - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core + - Spock-lucid < 0 # tried Spock-lucid-0.4.0.1, but its *library* requires the disabled package: Spock + - Spock-worker < 0 # tried Spock-worker-0.3.1.0, but its *library* requires the disabled package: Spock + - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* does not support: base-4.15.0.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: lens-5.0.1 + - YampaSynth < 0 # tried YampaSynth-0.2, but its *executable* requires the disabled package: Yampa + - accelerate < 0 # tried accelerate-1.3.0.0, but its *library* does not support: base-4.15.0.0 + - accelerate-arithmetic < 0 # tried accelerate-arithmetic-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-bmp + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-repa + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-vector + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: normaldistribution + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: lens-accelerate + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-io-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: containers-0.6.4.1 + - accelerate-io < 0 # tried accelerate-io-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-llvm < 0 # tried accelerate-llvm-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-llvm-ptx < 0 # tried accelerate-llvm-ptx-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-utility < 0 # tried accelerate-utility-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - aern2-mp < 0 # tried aern2-mp-0.2.8.0, but its *library* requires the disabled package: mixed-types-num + - aern2-real < 0 # tried aern2-real-0.2.8.0, but its *library* requires the disabled package: mixed-types-num + - aeson-diff < 0 # tried aeson-diff-1.1.0.9, but its *library* does not support: base-4.15.0.0 + - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: lens-5.0.1 + - aeson-picker < 0 # tried aeson-picker-0.1.0.5, but its *library* does not support: lens-5.0.1 + - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: aeson-1.5.6.0 + - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: attoparsec-0.14.1 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: base64-bytestring-1.2.1.0 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: bytestring-trie-0.2.6 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: semigroups-0.19.2 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-3.2.3 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-extra-3.1.7 + - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: unliftio-core-0.2.0.1 + - amazonka-apigateway < 0 # tried amazonka-apigateway-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-appstream < 0 # tried amazonka-appstream-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-athena < 0 # tried amazonka-athena-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-autoscaling < 0 # tried amazonka-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-budgets < 0 # tried amazonka-budgets-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-certificatemanager < 0 # tried amazonka-certificatemanager-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudformation < 0 # tried amazonka-cloudformation-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudfront < 0 # tried amazonka-cloudfront-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudhsm < 0 # tried amazonka-cloudhsm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudsearch < 0 # tried amazonka-cloudsearch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudsearch-domains < 0 # tried amazonka-cloudsearch-domains-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudtrail < 0 # tried amazonka-cloudtrail-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch < 0 # tried amazonka-cloudwatch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch-events < 0 # tried amazonka-cloudwatch-events-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch-logs < 0 # tried amazonka-cloudwatch-logs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codebuild < 0 # tried amazonka-codebuild-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codecommit < 0 # tried amazonka-codecommit-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codedeploy < 0 # tried amazonka-codedeploy-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codepipeline < 0 # tried amazonka-codepipeline-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-identity < 0 # tried amazonka-cognito-identity-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-idp < 0 # tried amazonka-cognito-idp-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-config < 0 # tried amazonka-config-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka-datapipeline < 0 # tried amazonka-datapipeline-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-devicefarm < 0 # tried amazonka-devicefarm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-directconnect < 0 # tried amazonka-directconnect-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-discovery < 0 # tried amazonka-discovery-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dms < 0 # tried amazonka-dms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ds < 0 # tried amazonka-ds-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dynamodb < 0 # tried amazonka-dynamodb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ecr < 0 # tried amazonka-ecr-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ecs < 0 # tried amazonka-ecs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-efs < 0 # tried amazonka-efs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticache < 0 # tried amazonka-elasticache-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticbeanstalk < 0 # tried amazonka-elasticbeanstalk-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticsearch < 0 # tried amazonka-elasticsearch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elastictranscoder < 0 # tried amazonka-elastictranscoder-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elb < 0 # tried amazonka-elb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elbv2 < 0 # tried amazonka-elbv2-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-emr < 0 # tried amazonka-emr-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-gamelift < 0 # tried amazonka-gamelift-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-glacier < 0 # tried amazonka-glacier-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-glue < 0 # tried amazonka-glue-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-health < 0 # tried amazonka-health-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iam < 0 # tried amazonka-iam-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-importexport < 0 # tried amazonka-importexport-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-inspector < 0 # tried amazonka-inspector-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iot < 0 # tried amazonka-iot-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iot-dataplane < 0 # tried amazonka-iot-dataplane-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis < 0 # tried amazonka-kinesis-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis-analytics < 0 # tried amazonka-kinesis-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis-firehose < 0 # tried amazonka-kinesis-firehose-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kms < 0 # tried amazonka-kms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-lambda < 0 # tried amazonka-lambda-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-lightsail < 0 # tried amazonka-lightsail-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-marketplace-analytics < 0 # tried amazonka-marketplace-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-marketplace-metering < 0 # tried amazonka-marketplace-metering-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ml < 0 # tried amazonka-ml-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-opsworks < 0 # tried amazonka-opsworks-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-opsworks-cm < 0 # tried amazonka-opsworks-cm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-pinpoint < 0 # tried amazonka-pinpoint-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-polly < 0 # tried amazonka-polly-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-rds < 0 # tried amazonka-rds-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-redshift < 0 # tried amazonka-redshift-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-rekognition < 0 # tried amazonka-rekognition-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-route53 < 0 # tried amazonka-route53-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-route53-domains < 0 # tried amazonka-route53-domains-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-s3 < 0 # tried amazonka-s3-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sdb < 0 # tried amazonka-sdb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-servicecatalog < 0 # tried amazonka-servicecatalog-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ses < 0 # tried amazonka-ses-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-shield < 0 # tried amazonka-shield-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sms < 0 # tried amazonka-sms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-snowball < 0 # tried amazonka-snowball-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sns < 0 # tried amazonka-sns-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sqs < 0 # tried amazonka-sqs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ssm < 0 # tried amazonka-ssm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-stepfunctions < 0 # tried amazonka-stepfunctions-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-storagegateway < 0 # tried amazonka-storagegateway-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sts < 0 # tried amazonka-sts-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-support < 0 # tried amazonka-support-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-swf < 0 # tried amazonka-swf-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-test < 0 # tried amazonka-test-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-waf < 0 # tried amazonka-waf-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-workspaces < 0 # tried amazonka-workspaces-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-xray < 0 # tried amazonka-xray-1.6.1, but its *library* requires the disabled package: amazonka-core + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: ansi-terminal-0.11.1 + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: base-4.15.0.0 + - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka-core + - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: protolude + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: lens-5.0.1 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: optparse-applicative-0.16.1.0 + - asif < 0 # tried asif-6.0.4, but its *library* requires the disabled package: thyme + - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* does not support: unliftio-core-0.2.0.1 + - atom-conduit < 0 # tried atom-conduit-0.9.0.1, but its *library* requires the disabled package: refined + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: attoparsec-0.14.1 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: base-4.15.0.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: cryptonite-0.29 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: memory-0.16.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: template-haskell-2.17.0.0 + - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: avers + - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: avers + - avwx < 0 # tried avwx-0.3.0.3, but its *library* does not support: lens-5.0.1 + - aws-xray-client-wai < 0 # tried aws-xray-client-wai-0.1.0.1, but its *library* requires the disabled package: aws-xray-client + - axel < 0 # tried axel-0.0.12, but its *library* does not support: base-4.15.0.0 + - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient-universe + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: aeson-1.5.6.0 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: hspec-2.8.5 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: lens-5.0.1 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: shake-0.19.6 + - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: posix-pty + - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: template + - base-noprelude < 0 # tried base-noprelude-4.13.0.0, but its *library* does not support: base-4.15.0.0 + - bcp47 < 0 # tried bcp47-0.2.0.4, but its *library* requires the disabled package: country + - bcp47-orphans < 0 # tried bcp47-orphans-0.1.0.4, but its *library* requires the disabled package: bcp47 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: dlist-1.0 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: ghc-prim-0.7.0 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: vector-sized-1.5.0 + - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: ghc-prim-0.7.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: aeson-1.5.6.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: beam-core-0.9.1.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: hashable-1.3.5.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: mysql-0.2.1 + - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 + - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 + - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: dlist-1.0 + - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart + - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart-diagrams + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: brick-0.65 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: bytestring-0.10.12.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: directory-1.3.6.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: filepath-1.4.2.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: lens-5.0.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: process-1.6.11.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: protolude-0.3.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: text-1.2.4.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: time-1.9.3 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: typed-process-0.2.8.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vector-0.12.3.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vty-5.33 + - binary-bits < 0 # tried binary-bits-0.5, but its *library* does not support: base-4.15.0.0 + - bioace < 0 # tried bioace-0.0.1, but its *library* requires the disabled package: biocore + - bioalign < 0 # tried bioalign-0.0.5, but its *library* requires the disabled package: biocore + - biocore < 0 # tried biocore-0.3.1, but its *library* does not support: base-4.15.0.0 + - biocore < 0 # tried biocore-0.3.1, but its *library* requires the disabled package: stringable + - biofasta < 0 # tried biofasta-0.0.3, but its *library* requires the disabled package: biocore + - biofastq < 0 # tried biofastq-0.1, but its *library* requires the disabled package: biocore + - biopsl < 0 # tried biopsl-0.4, but its *library* requires the disabled package: biocore + - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: bitcoin-script + - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: hexstring + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-api + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-block + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-tx + - bitcoin-block < 0 # tried bitcoin-block-0.13.1, but its *library* requires the disabled package: hexstring + - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: bitcoin-script + - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: hexstring + - bitcoin-types < 0 # tried bitcoin-types-0.9.2, but its *library* requires the disabled package: hexstring + - blastxml < 0 # tried blastxml-0.3.2, but its *library* requires the disabled package: biocore + - blosum < 0 # tried blosum-0.1.1.4, but its *executable* requires the disabled package: pipes-text + - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* does not support: base-4.15.0.0 + - boundingboxes < 0 # tried boundingboxes-0.2.3, but its *library* does not support: lens-5.0.1 + - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: aeson-1.5.6.0 + - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: text-1.2.4.1 + - broadcast-chan < 0 # tried broadcast-chan-0.2.1.1, but its *library* does not support: base-4.15.0.0 + - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: regex-tdfa-text + - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: elliptic-curve + - butcher < 0 # tried butcher-1.3.3.2, but its *library* does not support: base-4.15.0.0 + - cabal-file < 0 # tried cabal-file-0.1.1, but its *library* requires the disabled package: hackage-security + - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: Cabal-3.4.0.0 + - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: base-4.15.0.0 + - cairo < 0 # tried cairo-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* does not support: time-1.9.3 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-1.5.6.0 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-casing-0.2.0.0 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: connection-0.3.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-api-data-0.4.3 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-client-0.7.9 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: req-3.9.2 + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytebuild + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: byteslice + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytesmith + - chronos-bench < 0 # tried chronos-bench-0.2.0.2, but its *library* requires the disabled package: chronos + - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: base-4.15.0.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: template-haskell-2.17.0.0 + - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* does not support: clock-0.8.2 + - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* does not support: cmark-0.6 + - co-log-concurrent < 0 # tried co-log-concurrent-0.5.1.0, but its *library* requires the disabled package: co-log-core + - code-builder < 0 # tried code-builder-0.1.3, but its *library* does not support: containers-0.6.4.1 + - codec < 0 # tried codec-0.2.1, but its *library* requires the disabled package: binary-bits + - colour-accelerate < 0 # tried colour-accelerate-0.4.0.0, but its *library* requires the disabled package: accelerate + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: generic-deriving-1.14.1 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: profunctors-5.6.2 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 + - composite-aeson-path < 0 # tried composite-aeson-path-0.7.5.0, but its *library* does not support: path-0.9.1 + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: composite-aeson + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: refined + - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: composite-aeson + - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: profunctors-5.6.2 + - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 + - composite-binary < 0 # tried composite-binary-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: ekg-core + - composite-hashable < 0 # tried composite-hashable-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-tuple < 0 # tried composite-tuple-0.1.2.0, but its *library* requires the disabled package: composite-base + - composite-xstep < 0 # tried composite-xstep-0.1.0.0, but its *library* requires the disabled package: composite-base + - compressed < 0 # tried compressed-3.11, but its *library* does not support: containers-0.6.4.1 + - compressed < 0 # tried compressed-3.11, but its *library* does not support: hashable-1.3.5.0 + - conduit-throttle < 0 # tried conduit-throttle-0.3.1.0, but its *library* requires the disabled package: throttle-io-stream + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: optparse-applicative-0.16.1.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires the disabled package: crypto-pubkey-openssh + - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* does not support: hspec-core-2.8.5 + - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* does not support: conferer-1.1.0.0 + - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires the disabled package: snap-server + - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: base-4.15.0.0 + - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: megaparsec-9.2.0 + - country < 0 # tried country-0.2.1, but its *library* does not support: attoparsec-0.14.1 + - country < 0 # tried country-0.2.1, but its *library* does not support: base-4.15.0.0 + - cql-io < 0 # tried cql-io-1.1.1, but its *library* requires the disabled package: cql + - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-numbers + - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-blowfish + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: QuickCheck-2.14.2 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: attoparsec-0.14.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: simple-vec3-0.6.0.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: strict-0.4.0.1 + - css-syntax < 0 # tried css-syntax-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: Cabal-3.4.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: attoparsec-0.14.1 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: base-4.15.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: constraints-0.13.2 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: cryptonite-0.29 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: memory-0.16.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* requires the disabled package: regex-compat-tdfa + - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* does not support: template-haskell-2.17.0.0 + - data-compat < 0 # tried data-compat-0.1.0.3, but its *library* does not support: base-4.15.0.0 + - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - decidable < 0 # tried decidable-0.3.0.0, but its *library* requires the disabled package: functor-products + - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - dependent-map < 0 # tried dependent-map-0.4.0.0, but its *library* requires the disabled package: dependent-sum + - dependent-sum < 0 # tried dependent-sum-0.7.1.0, but its *library* does not support: some-1.0.3 + - dependent-sum-template < 0 # tried dependent-sum-template-0.1.1.1, but its *library* requires the disabled package: dependent-sum + - detour-via-sci < 0 # tried detour-via-sci-1.0.0, but its *library* requires the disabled package: newtype + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.0.17, but its *library* requires the disabled package: haskell-lsp + - dhall-nix < 0 # tried dhall-nix-1.1.23, but its *library* requires the disabled package: hnix + - diagrams-builder < 0 # tried diagrams-builder-0.8.0.5, but its *library* requires the disabled package: haskell-src-exts-simple + - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* requires the disabled package: statestack + - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: blank-canvas + - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: statestack + - diagrams-gtk < 0 # tried diagrams-gtk-1.4, but its *library* requires the disabled package: gtk + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: base-4.15.0.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: containers-0.6.4.1 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: diagrams-core-1.5.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: lens-5.0.1 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: optparse-applicative-0.16.1.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: statestack + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: static-canvas + - diagrams-postscript < 0 # tried diagrams-postscript-1.5, but its *library* requires the disabled package: statestack + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: base-4.15.0.0 + - dice < 0 # tried dice-0.1.0.1, but its *library* requires the disabled package: random-fu + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* does not support: criterion-1.5.11.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: attoparsec-0.14.1 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: base-4.15.0.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: containers-0.6.4.1 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: exceptions-0.10.4 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: time-1.9.3 + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* does not support: Cabal-3.4.0.0 + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: containers-0.6.4.1 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: hashable-1.3.5.0 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: random-1.2.1 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: stm-2.5.0.0 + - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires the disabled package: distributed-process + - distributed-process-monad-control < 0 # tried distributed-process-monad-control-0.5.1.3, but its *library* requires the disabled package: distributed-process + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: containers-0.6.4.1 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-3.1.2.5 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-transport-tcp-0.8.0 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* requires the disabled package: network-multicast + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: network-3.1.2.5 + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: random-1.2.1 + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* requires the disabled package: rematch + - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: containers-0.6.4.1 + - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: random-1.2.1 + - diversity < 0 # tried diversity-0.8.1.0, but its *library* requires the disabled package: fasta + - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: unliftio-core-0.2.0.1 + - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* does not support: language-docker-10.4.0 + - dom-parser < 0 # tried dom-parser-3.1.0, but its *library* requires the disabled package: xml-lens + - drawille < 0 # tried drawille-0.1.2.0, but its *library* does not support: containers-0.6.4.1 + - earcut < 0 # tried earcut-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - easytest < 0 # tried easytest-0.3, but its *library* does not support: hedgehog-1.0.5 + - ed25519 < 0 # tried ed25519-0.0.5.0, but its *library* does not support: ghc-prim-0.7.0 + - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: QuickCheck-2.14.2 + - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - effect-handlers < 0 # tried effect-handlers-0.1.0.8, but its *library* does not support: free-5.1.7 + - egison < 0 # tried egison-4.1.2, but its *library* requires the disabled package: sweet-egison + - egison-pattern-src < 0 # tried egison-pattern-src-0.2.1.2, but its *library* does not support: parser-combinators-1.3.0 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* does not support: template-haskell-2.17.0.0 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* does not support: base-4.15.0.0 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires the disabled package: snap-server + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka-core + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: ekg-core + - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: base-4.15.0.0 + - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: ghc-prim-0.7.0 + - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* does not support: base-4.15.0.0 + - ekg-wai < 0 # tried ekg-wai-0.1.0.3, but its *library* does not support: time-1.9.3 + - elm-street < 0 # tried elm-street-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - elynx < 0 # tried elynx-0.6.1.0, but its *executable* requires the disabled package: elynx-tools + - elynx-markov < 0 # tried elynx-markov-0.6.1.0, but its *library* requires the disabled package: elynx-seq + - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: typelits-witnesses + - epub-metadata < 0 # tried epub-metadata-4.5, but its *library* requires the disabled package: regex-compat-tdfa + - euler-tour-tree < 0 # tried euler-tour-tree-0.1.1.0, but its *library* requires the disabled package: Unique + - event < 0 # tried event-0.1.4, but its *library* does not support: containers-0.6.4.1 + - event < 0 # tried event-0.1.4, but its *library* does not support: semigroups-0.19.2 + - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: amazonka + - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-sql-common + - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* does not support: persistent-template-2.12.0.0 + - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-sql-common + - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-store-specs + - exception-hierarchy < 0 # tried exception-hierarchy-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 + - fasta < 0 # tried fasta-0.10.4.2, but its *library* requires the disabled package: pipes-text + - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude + - filecache < 0 # tried filecache-0.4.1, but its *library* requires the disabled package: strict-base-types + - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: BiobaseNewick + - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: hierarchical-clustering + - freer-simple < 0 # tried freer-simple-1.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - friday < 0 # tried friday-0.2.3.1, but its *library* does not support: containers-0.6.4.1 + - friday < 0 # tried friday-0.2.3.1, but its *library* requires the disabled package: ratio-int + - friday-juicypixels < 0 # tried friday-juicypixels-0.1.2.4, but its *library* requires the disabled package: friday + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: haskeline-0.8.2 + - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* does not support: attoparsec-0.14.1 + - functor-combinators < 0 # tried functor-combinators-0.4.1.0, but its *library* requires the disabled package: nonempty-containers + - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: poly-0.5.0.0 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: protolude-0.3.0 + - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: regex-tdfa-text + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: generic-deriving-1.14.1 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: dhall-1.40.2 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: ghc-9.0.1 + - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* does not support: ghc-9.0.1 + - ghcjs-dom < 0 # tried ghcjs-dom-0.9.4.0, but its *library* requires the disabled package: ghcjs-dom-jsaddle + - gi-gsk < 0 # tried gi-gsk-4.0.4, but its *library* does not support: gi-gdk-3.0.25 + - gi-webkit2 < 0 # tried gi-webkit2-4.0.28, but its *library* requires the disabled package: gi-soup + - gingersnap < 0 # tried gingersnap-0.3.1.0, but its *library* requires the disabled package: snap-core + - gio < 0 # tried gio-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: IfElse + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: aws + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: bloomfilter + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: fdo-notify + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: git-lfs + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: http-client-restricted + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: network-multicast + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: sandi + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: torrent + - git-vogue < 0 # tried git-vogue-0.3.0.2, but its *executable* requires the disabled package: stylish-haskell + - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* does not support: base-4.15.0.0 + - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* does not support: base-4.15.0.0 + - gitlib-libgit2 < 0 # tried gitlib-libgit2-3.1.2.1, but its *library* requires the disabled package: gitlib + - glaze < 0 # tried glaze-0.3.0.1, but its *library* does not support: lens-5.0.1 + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: glazier + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: glazier + - glib < 0 # tried glib-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate + - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: linear-accelerate + - gloss-examples < 0 # tried gloss-examples-1.13.0.3, but its *executable* does not support: random-1.2.1 + - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate + - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* does not support: base-4.15.0.0 + - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* does not support: base64-bytestring-1.2.1.0 + - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-api-data-0.4.3 + - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-client-0.7.9 + - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: path-0.9.1 + - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires the disabled package: groundhog-th + - groundhog-mysql < 0 # tried groundhog-mysql-0.11, but its *library* does not support: mysql-0.2.1 + - grouped-list < 0 # tried grouped-list-0.2.2.1, but its *library* does not support: base-4.15.0.0 + - gtk3 < 0 # tried gtk3-0.15.6, but its *library* does not support: Cabal-3.4.0.0 + - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: ixset-typed + - hackage-security < 0 # tried hackage-security-0.6.0.1, but its *library* does not support: template-haskell-2.17.0.0 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: http-client-0.7.9 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-0.18.3 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-client-0.18.3 + - hadolint < 0 # tried hadolint-2.8.0, but its *library* does not support: deepseq-1.4.5.0 + - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: colourista + - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: spdx + - hamilton < 0 # tried hamilton-0.1.0.3, but its *library* requires the disabled package: typelits-witnesses + - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: path-0.9.1 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.5, but its *library* requires the disabled package: harp + - haskell-lsp < 0 # tried haskell-lsp-0.24.0.0, but its *executable* does not support: base-4.15.0.0 + - haskell-lsp-client < 0 # tried haskell-lsp-client-1.0.0.1, but its *library* requires the disabled package: haskell-lsp + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires the disabled package: traverse-with-class + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-boot-th-9.0.1 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: Glob-0.10.2 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: strict-0.4.0.1 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Diff-0.4.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: network-3.1.2.5 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: strict-0.4.0.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: warp-3.3.18 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires the disabled package: references + - haskey < 0 # tried haskey-0.3.1.0, but its *library* does not support: stm-containers-1.2 + - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* does not support: monad-control-1.0.3.1 + - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-node + - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-store-data + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* does not support: attoparsec-0.14.1 + - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: aeson-1.5.6.0 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: attoparsec-0.14.1 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: base-4.15.0.0 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: dlist-1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: ansi-terminal-0.11.1 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: brick-0.65 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: optparse-applicative-0.16.1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: semigroups-0.19.2 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: vty-5.33 + - hgeometry < 0 # tried hgeometry-0.13, but its *library* requires the disabled package: vector-circular + - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.13, but its *library* requires the disabled package: vector-circular + - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: base-4.15.0.0 + - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: template-haskell-2.17.0.0 + - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: base-4.15.0.0 + - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: swagger2 + - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: swagger2 + - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart + - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart-diagrams + - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git + - hmatrix-backprop < 0 # tried hmatrix-backprop-0.1.3.0, but its *library* requires the disabled package: backprop + - hmpfr < 0 # tried hmpfr-0.4.4, but its *library* does not support: integer-gmp-1.1 + - holy-project < 0 # tried holy-project-0.2.0.1, but its *library* requires the disabled package: hastache + - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: ixset-typed + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: aeson-1.5.6.0 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: containers-0.6.4.1 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: retry-0.9.0.0 + - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: path-0.9.1 + - hpio < 0 # tried hpio-0.9.0.7, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: QuickCheck-2.14.2 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: protolude-0.3.0 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: containers-0.6.4.1 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: hmatrix-0.20.2 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: statistics-0.15.2.0 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: time-1.9.3 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: vector-algorithms-0.8.0.4 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* requires the disabled package: hmatrix-special + - hquantlib-time < 0 # tried hquantlib-time-0.0.4.1, but its *library* does not support: time-1.9.3 + - hsb2hs < 0 # tried hsb2hs-0.3.1, but its *executable* requires the disabled package: preprocessor-tools + - hschema-aeson < 0 # tried hschema-aeson-0.0.1.1, but its *library* requires the disabled package: hschema + - hschema-prettyprinter < 0 # tried hschema-prettyprinter-0.0.1.1, but its *library* requires the disabled package: hschema + - hschema-quickcheck < 0 # tried hschema-quickcheck-0.0.1.1, but its *library* requires the disabled package: hschema + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: attoparsec-0.14.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-boot-9.0.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: hlint-3.3.4 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: http-client-0.7.9 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: lens-5.0.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: template-haskell-2.17.0.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires the disabled package: text-region + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: base-4.15.0.0 + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: hspec-core-2.8.5 + - hspec-wai-json < 0 # tried hspec-wai-json-0.11.0, but its *library* does not support: hspec-wai-0.11.1 + - hspec-webdriver < 0 # tried hspec-webdriver-1.2.0, but its *library* requires the disabled package: webdriver + - hsx2hs < 0 # tried hsx2hs-0.14.1.8, but its *library* does not support: template-haskell-2.17.0.0 + - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hspec-2.8.5 + - hxt-pickle-utils < 0 # tried hxt-pickle-utils-0.1.0.3, but its *library* does not support: base-4.15.0.0 + - hyraxAbif < 0 # tried hyraxAbif-0.2.3.27, but its *library* requires the disabled package: protolude + - idris < 0 # tried idris-1.3.4, but its *library* does not support: Cabal-3.4.0.0 + - idris < 0 # tried idris-1.3.4, but its *library* does not support: network-3.1.2.5 + - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: hse-cpp + - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* does not support: base-4.15.0.0 + - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* does not support: base-4.15.0.0 + - inline-java < 0 # tried inline-java-0.10.0, but its *library* does not support: ghc-9.0.1 + - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires the disabled package: jni + - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - invertible < 0 # tried invertible-0.2.0.7, but its *library* requires the disabled package: partial-isomorphisms + - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: attoparsec-0.14.1 + - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: attoparsec-0.14.1 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: network-3.1.2.5 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: path-0.9.1 + - it-has < 0 # tried it-has-0.2.0.0, but its *library* does not support: generic-lens-2.2.0.0 + - ixset < 0 # tried ixset-1.1.1.1, but its *library* requires the disabled package: syb-with-class + - ixset-typed < 0 # tried ixset-typed-0.5, but its *library* does not support: template-haskell-2.17.0.0 + - ixset-typed-binary-instance < 0 # tried ixset-typed-binary-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed + - ixset-typed-conversions < 0 # tried ixset-typed-conversions-0.1.2.0, but its *library* requires the disabled package: ixset-typed + - ixset-typed-hashable-instance < 0 # tried ixset-typed-hashable-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed + - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: snap-core + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: attoparsec-0.14.1 + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: ref-tf-0.5.0.1 + - json-alt < 0 # tried json-alt-1.0.0, but its *library* does not support: aeson-1.5.6.0 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: aeson-1.5.6.0 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: lens-5.0.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: smallcheck-1.2.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires the disabled package: run-haskell-module + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: aeson-1.5.6.0 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: base-4.15.0.0 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: base-4.15.0.0 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: aeson-1.5.6.0 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: base-compat-batteries-0.11.2 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: containers-0.6.4.1 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: generic-deriving-1.14.1 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: time-1.9.3 + - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: distributed-closure + - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: jni + - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: distributed-closure + - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: jni + - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: distributed-closure + - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jni + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: aeson-1.5.6.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: async-2.2.4 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: katip-0.8.7.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: rollbar-hs-0.3.1.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: time-1.9.3 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: aeson-1.5.6.0 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: katip-0.8.7.0 + - ki < 0 # tried ki-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - kleene < 0 # tried kleene-0.1, but its *library* does not support: base-4.15.0.0 + - kraken < 0 # tried kraken-0.1.0, but its *library* does not support: base-4.15.0.0 + - lambdabot-core < 0 # tried lambdabot-core-5.3.0.2, but its *library* requires the disabled package: dependent-sum + - lambdabot-irc-plugins < 0 # tried lambdabot-irc-plugins-5.3.0.2, but its *library* requires the disabled package: lambdabot-core + - language-ecmascript < 0 # tried language-ecmascript-0.19.1.0, but its *library* does not support: base-4.15.0.0 + - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* does not support: template-haskell-2.17.0.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: base16-bytestring-1.0.2.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: formatting-7.1.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: lens-5.0.1 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: megaparsec-9.2.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: memory-0.16.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-0.18.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-client-0.18.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* requires the disabled package: operational + - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 + - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* does not support: lens-5.0.1 + - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* does not support: lens-5.0.1 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-2.1.1 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-core-2.1.0 + - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires the disabled package: hs-functors + - libinfluxdb < 0 # tried libinfluxdb-0.0.4, but its *library* does not support: base-4.15.0.0 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* does not support: base-4.15.0.0 + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg-core + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: protolude + - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: Cabal-3.4.0.0 + - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: base-4.15.0.0 + - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* does not support: lens-5.0.1 + - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* does not support: containers-0.6.4.1 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* does not support: megaparsec-9.2.0 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires the disabled package: rest-rewrite + - list-witnesses < 0 # tried list-witnesses-0.1.3.2, but its *library* requires the disabled package: functor-products + - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log + - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log-core + - loc < 0 # tried loc-0.1.3.10, but its *library* does not support: base-4.15.0.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: aeson-1.5.6.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: o-clock-1.2.1 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: universum-1.7.2 + - logger-thread < 0 # tried logger-thread-0.1.0.2, but its *library* requires the disabled package: protolude + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* requires the disabled package: logging-effect + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* requires the disabled package: logging-effect + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* requires the disabled package: logging-effect + - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* does not support: ghc-9.0.1 + - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: dependent-map + - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: lsp-types + - lsp-test < 0 # tried lsp-test-0.14.0.1, but its *library* requires the disabled package: lsp-types + - lsp-types < 0 # tried lsp-types-1.3.0.1, but its *library* requires the disabled package: dependent-sum + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: network-3.1.2.5 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-0.18.3 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-client-0.18.3 + - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires the disabled package: machines-io + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-core + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-wai + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: refined + - makefile < 0 # tried makefile-1.1.0.0, but its *library* does not support: attoparsec-0.14.1 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* does not support: megaparsec-9.2.0 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires the disabled package: Interpolation + - map-syntax < 0 # tried map-syntax-0.3, but its *library* does not support: base-4.15.0.0 + - markup < 0 # tried markup-4.2.0, but its *library* requires the disabled package: attoparsec-uri + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: aeson-1.5.6.0 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: http-client-0.7.9 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: lens-5.0.1 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires the disabled package: marvin-interpolate + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: extra-1.7.10 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: formatting-7.1.3 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: http-client-0.7.9 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: optparse-applicative-0.16.1.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: scalpel-core-0.6.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: time-1.9.3 + - medea < 0 # tried medea-1.2.0, but its *library* requires the disabled package: nonempty-containers + - mega-sdist < 0 # tried mega-sdist-0.4.1.0, but its *executable* requires the disabled package: pantry + - menshen < 0 # tried menshen-0.0.3, but its *library* does not support: regex-tdfa-1.3.1.1 + - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: protolude + - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* does not support: containers-0.6.4.1 + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime-wai + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *library* requires the disabled package: xml-lens + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-client-0.7.9 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-media-0.8.0.0 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-0.18.3 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-client-0.18.3 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: time-1.9.3 + - midi-music-box < 0 # tried midi-music-box-0.0.1.2, but its *executable* requires the disabled package: diagrams-postscript + - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src + - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src-th-mode + - minio-hs < 0 # tried minio-hs-1.5.3, but its *library* requires the disabled package: protolude + - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* requires the disabled package: knob + - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *executable* requires the disabled package: pipes-text + - mole < 0 # tried mole-0.0.7, but its *executable* does not support: base-4.15.0.0 + - mole < 0 # tried mole-0.0.7, but its *executable* requires the disabled package: snap-server + - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: base-4.15.0.0 + - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: mwc-random-0.15.0.2 + - monad-metrics < 0 # tried monad-metrics-0.2.2.0, but its *library* requires the disabled package: ekg-core + - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - monad-unlift-ref < 0 # tried monad-unlift-ref-0.2.1, but its *library* requires the disabled package: monad-unlift + - monoidal-containers < 0 # tried monoidal-containers-0.6.1.0, but its *library* requires the disabled package: newtype + - msgpack < 0 # tried msgpack-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - msgpack-aeson < 0 # tried msgpack-aeson-0.1.0.0, but its *library* requires the disabled package: msgpack + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: blaze-builder-0.4.2.2 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: filepath-1.4.2.1 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: msgpack-1.0.1.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: template-haskell-2.17.0.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: peggy + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: shakespeare-text + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: base-4.15.0.0 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: binary-conduit-1.3.1 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-1.3.4.2 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-extra-1.3.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: network-3.1.2.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: random-1.2.1 + - multistate < 0 # tried multistate-0.8.0.3, but its *library* does not support: base-4.15.0.0 + - mwc-random-accelerate < 0 # tried mwc-random-accelerate-0.2.0.0, but its *library* requires the disabled package: accelerate + - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* does not support: memory-0.16.0 + - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* requires the disabled package: word24 + - mysql-haskell-nem < 0 # tried mysql-haskell-nem-0.1.0.0, but its *library* requires the disabled package: mysql-haskell + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: mysql-haskell + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: tcp-streams-openssl + - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: base-4.15.0.0 + - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: singletons-3.0.1 + - n2o-web < 0 # tried n2o-web-0.11.2, but its *library* requires the disabled package: n2o-protocols + - nakadi-client < 0 # tried nakadi-client-0.7.0.0, but its *library* requires the disabled package: async-timer + - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* does not support: base-4.15.0.0 + - net-mqtt-lens < 0 # tried net-mqtt-lens-0.1.1.0, but its *library* requires the disabled package: net-mqtt + - netrc < 0 # tried netrc-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: hexstring + - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: network-attoparsec + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* does not support: network-3.1.2.5 + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires the disabled package: data-default-instances-base + - network-transport-inmemory < 0 # tried network-transport-inmemory-0.5.2, but its *library* does not support: containers-0.6.4.1 + - newtype < 0 # tried newtype-0.2.2.0, but its *library* does not support: base-4.15.0.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.1, but its *library* requires the disabled package: servant-auth-server + - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* does not support: numhask-0.8.1.0 + - nvim-hs-ghcid < 0 # tried nvim-hs-ghcid-2.0.0.0, but its *library* requires the disabled package: nvim-hs-contrib + - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: protolude + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: Cabal-3.4.0.0 + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: base-4.15.0.0 + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - operational-class < 0 # tried operational-class-0.3.0.0, but its *library* requires the disabled package: operational + - opml-conduit < 0 # tried opml-conduit-0.9.0.0, but its *library* requires the disabled package: refined + - oset < 0 # tried oset-0.4.0.1, but its *library* does not support: base-4.15.0.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* does not support: Cabal-3.4.0.0 + - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: groups-0.5.3 + - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: protolude-0.3.0 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires the disabled package: elliptic-curve + - pango < 0 # tried pango-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - pantry < 0 # tried pantry-0.5.3, but its *library* requires the disabled package: hackage-security + - papillon < 0 # tried papillon-0.1.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* does not support: parser-combinators-1.3.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.1.8, but its *library* does not support: path-0.9.1 + - pcf-font-embed < 0 # tried pcf-font-embed-0.1.2.0, but its *library* requires the disabled package: pcf-font + - pedersen-commitment < 0 # tried pedersen-commitment-0.2.0, but its *library* requires the disabled package: protolude + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - persistable-record < 0 # tried persistable-record-0.6.0.5, but its *library* requires the disabled package: th-data-compat + - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: persistable-record + - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: relational-query-HDBC + - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* does not support: tls-1.5.5 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: random-1.2.1 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: scotty-0.12 + - picedit < 0 # tried picedit-0.2.3.0, but its *executable* requires the disabled package: cli + - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: JuicyPixels-3.3.6 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: hmatrix-0.20.2 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: Cabal-3.4.0.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: aeson-1.5.6.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: base-4.15.0.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: binary-orphans-1.0.2 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: containers-0.6.4.1 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: hashable-1.3.5.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: shake-0.19.6 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: yaml-0.11.7.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: Cabal-3.4.0.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: containers-0.6.4.1 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: hashable-1.3.5.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: http-client-0.7.9 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: shake-0.19.6 + - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: http-client-0.7.9 + - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* does not support: lens-5.0.1 + - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires the disabled package: pipes-category + - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network + - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli + - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: cairo + - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: pango + - pointful < 0 # tried pointful-1.1.0.0, but its *library* does not support: base-4.15.0.0 + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires the disabled package: haskell-src-exts-simple + - polysemy-zoo < 0 # tried polysemy-zoo-0.7.0.2, but its *library* does not support: constraints-0.13.2 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: ghc-prim-0.7.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: base-4.15.0.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: retry-0.9.0.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: swagger2-2.7 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* requires the disabled package: hasql-dynamic-statements + - prairie < 0 # tried prairie-0.0.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - pred-set < 0 # tried pred-set-0.0.1, but its *library* requires the disabled package: HSet + - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: pred-set + - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: tries + - prim-uniq < 0 # tried prim-uniq-0.2, but its *library* requires the disabled package: dependent-sum + - product-isomorphic < 0 # tried product-isomorphic-0.0.3.3, but its *library* requires the disabled package: th-data-compat + - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: base-4.15.0.0 + - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: ghc-prim-0.7.0 + - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* does not support: base-4.15.0.0 + - pure-io < 0 # tried pure-io-0.2.1, but its *library* does not support: base-4.15.0.0 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - questioner < 0 # tried questioner-0.1.1.0, but its *library* does not support: ansi-terminal-0.11.1 + - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires the disabled package: readline + - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.5, but its *library* requires the disabled package: unfoldable-restricted + - quickcheck-state-machine < 0 # tried quickcheck-state-machine-0.7.1, but its *library* requires the disabled package: markov-chain-usage-model + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: aeson-1.5.6.0 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: connection-0.3.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: constraints-0.13.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-api-data-0.4.3 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-client-0.7.9 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: lens-5.0.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: req-3.9.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires the disabled package: extensible + - ranged-list < 0 # tried ranged-list-0.1.0.0, but its *library* requires the disabled package: typecheck-plugin-nat-simple + - rank-product < 0 # tried rank-product-0.2.2.0, but its *library* requires the disabled package: random-fu + - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry + - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry-combinatorial + - redis-io < 0 # tried redis-io-1.1.0, but its *library* requires the disabled package: operational + - redis-resp < 0 # tried redis-resp-1.0.0, but its *library* requires the disabled package: operational + - refined < 0 # tried refined-0.6.2, but its *library* does not support: base-4.15.0.0 + - refined < 0 # tried refined-0.6.2, but its *library* does not support: template-haskell-2.17.0.0 + - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsx2hs + - regex-applicative-text < 0 # tried regex-applicative-text-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-base-0.94.0.2 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-pcre-builtin-0.95.2.3.8.44 + - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* does not support: regex-base-0.94.0.2 + - registry < 0 # tried registry-0.2.1.0, but its *library* requires the disabled package: protolude + - relapse < 0 # tried relapse-1.0.0.0, but its *library* does not support: attoparsec-0.14.1 + - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: persistable-record + - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: product-isomorphic + - relational-query-HDBC < 0 # tried relational-query-HDBC-0.7.2.0, but its *library* requires the disabled package: th-data-compat + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: persistable-record + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: product-isomorphic + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: relational-query-HDBC + - relational-schemas < 0 # tried relational-schemas-0.1.8.0, but its *library* requires the disabled package: relational-query + - repa-algorithms < 0 # tried repa-algorithms-3.4.1.3, but its *library* does not support: base-4.15.0.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* does not support: aeson-1.5.6.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: base-4.15.0.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: req-3.9.2 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-client-0.7.9 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-types-0.12.3 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: resourcet-1.2.4.3 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: aeson-1.5.6.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-4.15.0.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-compat-0.11.2 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: errors-2.3.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: multipart-0.2.1 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: random-1.2.1 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: Cabal-3.4.0.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: aeson-1.5.6.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-4.15.0.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-compat-0.11.2 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: hashable-1.3.5.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: haskell-src-exts-1.23.1 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: semigroups-0.19.2 + - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: containers-0.6.4.1 + - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: happstack-server-7.7.1.1 + - rest-snap < 0 # tried rest-snap-0.3.0.0, but its *library* does not support: base-compat-0.11.2 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: aeson-1.5.6.0 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: base-4.15.0.0 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: containers-0.6.4.1 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: hashable-1.3.5.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: aeson-1.5.6.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-4.15.0.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-compat-0.11.2 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: base-compat-0.11.2 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: containers-0.6.4.1 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: http-types-0.12.3 + - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* does not support: base-4.15.0.0 + - rhine-gloss < 0 # tried rhine-gloss-0.7.0, but its *library* requires the disabled package: rhine + - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: attoparsec-0.14.1 + - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: network-3.1.2.5 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: aeson-1.5.6.0 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: http-client-0.7.9 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: network-3.1.2.5 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: time-1.9.3 + - rss-conduit < 0 # tried rss-conduit-0.6.0.1, but its *library* requires the disabled package: atom-conduit + - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* does not support: singletons-3.0.1 + - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires the disabled package: tomland + - sandwich-webdriver < 0 # tried sandwich-webdriver-0.1.0.6, but its *library* requires the disabled package: webdriver + - scalendar < 0 # tried scalendar-1.2.0, but its *library* does not support: containers-0.6.4.1 + - schematic < 0 # tried schematic-0.5.1.0, but its *library* does not support: aeson-1.5.6.0 + - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: hjsonschema + - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: validationt + - sendgrid-v3 < 0 # tried sendgrid-v3-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: aeson-1.5.6.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: base-4.15.0.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: http-client-0.7.9 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: lens-5.0.1 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - seqloc < 0 # tried seqloc-0.6.1.1, but its *library* requires the disabled package: biocore + - sequenceTools < 0 # tried sequenceTools-1.5.0, but its *library* requires the disabled package: sequence-formats + - serf < 0 # tried serf-0.1.1.0, but its *library* requires the disabled package: operational + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: blaze-builder-0.4.2.2 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: cryptonite-0.29 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: exceptions-0.10.4 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-api-data-0.4.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-types-0.12.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: memory-0.16.0 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-0.18.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-server-0.18.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: time-1.9.3 + - servant-auth-docs < 0 # tried servant-auth-docs-0.2.10.0, but its *library* does not support: base-4.15.0.0 + - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: swagger2-2.7 + - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: functor-combinators + - servant-elm < 0 # tried servant-elm-0.7.2, but its *library* requires the disabled package: elm-bridge + - servant-errors < 0 # tried servant-errors-0.1.6.0, but its *library* does not support: base-4.15.0.0 + - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* does not support: aeson-1.5.6.0 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: containers-0.6.4.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: formatting-7.1.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: lens-5.0.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: servant-0.18.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: time-1.9.3 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: QuickCheck-2.14.2 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: base-4.15.0.0 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: lens-5.0.1 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: pandoc-types-1.22.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: base-4.15.0.0 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: hspec-2.8.5 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: servant-0.18.3 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-0.18.3 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-client-core-0.18.3 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: servant-server-0.18.3 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires the disabled package: streaming-wai + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: Cabal-3.4.0.0 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: base-4.15.0.0 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: lens-5.0.1 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: swagger2-2.7 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: servant-0.18.3 + - serverless-haskell < 0 # tried serverless-haskell-0.12.6, but its *library* requires the disabled package: amazonka-core + - serversession-backend-persistent < 0 # tried serversession-backend-persistent-1.0.5, but its *library* does not support: base64-bytestring-1.2.1.0 + - serversession-backend-redis < 0 # tried serversession-backend-redis-1.0.4, but its *library* does not support: hedis-0.15.0 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* does not support: exceptions-0.10.4 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires the disabled package: sessiontypes + - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: megaparsec-9.2.0 + - shake-plus-extended < 0 # tried shake-plus-extended-0.4.1.0, but its *library* requires the disabled package: ixset-typed + - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* does not support: trifecta-2.1.2 + - shower < 0 # tried shower-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* does not support: template-haskell-2.17.0.0 + - size-based < 0 # tried size-based-0.1.2.0, but its *library* does not support: template-haskell-2.17.0.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: aeson-1.5.6.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: constraints-0.13.2 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: lens-5.0.1 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: random-1.2.1 + - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate + - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: base-4.15.0.0 + - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: http-client-0.7.9 + - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-seq + - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools + - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* does not support: base-4.15.0.0 + - smash-lens < 0 # tried smash-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: aeson-1.5.6.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: attoparsec-0.14.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: base-4.15.0.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: dlist-1.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: lens-5.0.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: mwc-random-0.15.0.2 + - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: pwstore-fast + - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: snap-server + - snap-blaze < 0 # tried snap-blaze-0.2.1.5, but its *library* requires the disabled package: snap-core + - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: attoparsec-0.14.1 + - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* does not support: network-3.1.2.5 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: inline-java-0.10.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: jvm-0.6.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: distributed-closure + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: jni + - speculation < 0 # tried speculation-1.5.0.3, but its *library* does not support: stm-2.5.0.0 + - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* does not support: text-1.2.4.1 + - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: hackage-security + - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: regex-applicative-text + - streamproc < 0 # tried streamproc-1.6.2, but its *library* does not support: base-4.15.0.0 + - strict-base-types < 0 # tried strict-base-types-0.7, but its *library* requires the disabled package: strict-lens + - strict-tuple < 0 # tried strict-tuple-0.1.4, but its *library* does not support: base-4.15.0.0 + - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires the disabled package: strict-tuple + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-2.8.5 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-core-2.8.5 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: random-1.2.1 + - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* does not support: haskell-src-exts-1.23.1 + - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: Cabal-3.4.0.0 + - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 + - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: attoparsec-0.14.1 + - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: base-4.15.0.0 + - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* does not support: attoparsec-0.14.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: attoparsec-0.14.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: base-4.15.0.0 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: lens-5.0.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: profunctors-5.6.2 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: containers-0.6.4.1 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-api-data-0.4.3 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-client-0.7.9 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-media-0.8.0.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: katip-0.8.7.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: network-3.1.2.5 + - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: aeson-1.5.6.0 + - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src + - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src-th-mode + - taffybar < 0 # tried taffybar-3.3.0, but its *library* requires the disabled package: broadcast-chan + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: containers-0.6.4.1 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: tasty-1.4.2.1 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: time-1.9.3 + - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* does not support: network-3.1.2.5 + - termbox < 0 # tried termbox-0.3.0, but its *library* does not support: base-4.15.0.0 + - termcolor < 0 # tried termcolor-0.2.0.0, but its *executable* requires the disabled package: cli + - termonad < 0 # tried termonad-4.2.0.0, but its *library* requires the disabled package: xml-html-qq + - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - test-framework-th < 0 # tried test-framework-th-0.2.4, but its *library* requires the disabled package: language-haskell-extract + - testing-feat < 0 # tried testing-feat-1.1.0.0, but its *library* requires the disabled package: size-based + - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-1.2.4.1 + - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-format-0.3.2 + - text-format < 0 # tried text-format-0.3.2, but its *library* does not support: base-4.15.0.0 + - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* does not support: wl-pprint-text-1.2.0.1 + - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - these-skinny < 0 # tried these-skinny-0.7.4, but its *library* does not support: base-4.15.0.0 + - threepenny-gui < 0 # tried threepenny-gui-0.9.1.0, but its *library* requires the disabled package: snap-server + - threepenny-gui-flexbox < 0 # tried threepenny-gui-flexbox-0.4.2, but its *library* requires the disabled package: threepenny-gui + - tlynx < 0 # tried tlynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools + - token-bucket < 0 # tried token-bucket-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - tonalude < 0 # tried tonalude-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - tonaparser < 0 # tried tonaparser-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - tonatona < 0 # tried tonatona-0.1.2.1, but its *library* does not support: base-4.15.0.0 + - tonatona-logger < 0 # tried tonatona-logger-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-postgresql-2.13.2.1 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-sqlite-2.13.0.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-0.18.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-server-0.18.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: wai-extra-3.1.7 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: writer-cps-transformers-0.5.6.1 + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* does not support: network-3.1.2.5 + - tries < 0 # tried tries-0.0.6.1, but its *library* requires the disabled package: rose-trees + - true-name < 0 # tried true-name-0.1.0.3, but its *library* does not support: template-haskell-2.17.0.0 + - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators + - typelits-witnesses < 0 # tried typelits-witnesses-0.4.0.0, but its *library* requires the disabled package: dependent-sum + - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: template-haskell-2.17.0.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: attoparsec-0.14.1 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: cryptonite-0.29 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: parser-combinators-1.3.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable + - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* does not support: attoparsec-0.14.1 + - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* does not support: trifecta-2.1.2 + - urlpath < 0 # tried urlpath-9.0.1, but its *library* requires the disabled package: attoparsec-uri + - userid < 0 # tried userid-0.1.3.6, but its *library* does not support: base-4.15.0.0 + - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* does not support: text-short-0.1.4 + - vado < 0 # tried vado-0.0.13, but its *library* does not support: attoparsec-0.14.1 + - vado < 0 # tried vado-0.0.13, but its *library* does not support: base-4.15.0.0 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: base-4.15.0.0 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: containers-0.6.4.1 + - vector-circular < 0 # tried vector-circular-0.1.3, but its *library* does not support: template-haskell-2.17.0.0 + - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* does not support: base-4.15.0.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: base-4.15.0.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: brick-0.65 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: lens-5.0.1 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: vty-5.33 + - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* does not support: optparse-applicative-0.16.1.0 + - wai-middleware-metrics < 0 # tried wai-middleware-metrics-0.2.4, but its *library* requires the disabled package: ekg-core + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: aeson-1.5.6.0 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: http-client-0.7.9 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: time-1.9.3 + - wai-middleware-throttle < 0 # tried wai-middleware-throttle-0.3.0.1, but its *library* requires the disabled package: token-bucket + - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-predicates + - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-route + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: attoparsec-0.14.1 + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: base-4.15.0.0 + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: dlist-1.0 + - web-routes-th < 0 # tried web-routes-th-0.22.6.6, but its *library* does not support: template-haskell-2.17.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: OneTuple-0.3.1 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: aeson-1.5.6.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: attoparsec-0.14.1 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: base-4.15.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: cryptonite-0.29 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: hspec-2.8.5 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: http-client-0.7.9 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: memory-0.16.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-0.18.3 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-client-0.18.3 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: vinyl-0.13.3 + - webby < 0 # tried webby-1.0.1, but its *library* does not support: formatting-7.1.3 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* does not support: language-javascript-0.7.1.0 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires the disabled package: webdriver + - websockets-snap < 0 # tried websockets-snap-0.10.3.1, but its *library* requires the disabled package: snap-server + - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* does not support: containers-0.6.4.1 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* does not support: containers-0.6.4.1 + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: next-ref + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: threads-extras + - writer-cps-full < 0 # tried writer-cps-full-0.1.0.0, but its *library* requires the disabled package: writer-cps-morph + - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 + - ws < 0 # tried ws-0.0.5, but its *library* requires the disabled package: attoparsec-uri + - xml-html-qq < 0 # tried xml-html-qq-0.1.0.1, but its *library* requires the disabled package: heterocephalus + - xml-isogen < 0 # tried xml-isogen-0.3.0, but its *library* requires the disabled package: dom-parser + - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* does not support: yeshql-core-4.2.0.0 + - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: persistent-2.13.2.1 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-form-1.7.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires the disabled package: yesod-auth + - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-auth + - yesod-auth-hashdb < 0 # tried yesod-auth-hashdb-1.7.1.7, but its *library* requires the disabled package: yesod-auth + - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.6.3.4, but its *library* requires the disabled package: yesod-auth + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-form-1.7.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* does not support: yesod-1.6.1.2 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: language-javascript-0.7.1.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-static-1.6.1.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires the disabled package: hamlet + - zasni-gerna < 0 # tried zasni-gerna-0.0.7.1, but its *library* requires the disabled package: papillon + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: base-compat-0.11.2 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-0.18.3 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-client-0.18.3 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: aeson-1.5.6.0 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: base-compat-0.11.2 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: http-api-data-0.4.3 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: servant-0.18.3 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: storable-record-0.0.6 + # End of Library and exe bounds failures + + "Stackage upper bounds": + + # https://github.com/commercialhaskell/stackage/issues/6122 + - mmorph < 1.2 + + # https://github.com/commercialhaskell/stackage/issues/6184 + - base-compat < 0.12 + + # https://github.com/commercialhaskell/stackage/issues/6185 + - base-compat-batteries < 0.12 + + # https://github.com/commercialhaskell/stackage/issues/6195 + - miso < 1.8 + + # aeson-2 + # https://github.com/commercialhaskell/stackage/issues/6217 + - aeson < 2.0.0.0 + - aura < 3.2.6 + - cabal-flatpak < 0.1.0.3 + - core-data < 0.3.0.0 + - faktory < 1.1.2.1 + - forma < 1.2.0 + - hruby < 0.4.0.0 + - hspec-expectations-json < 1.0.0.5 + - microlens-aeson < 2.4 + - mmark-cli < 0.0.5.1 + - postgresql-binary < 0.12.4.2 + - stache < 2.3.1 + - stripe-scotty < 1.1.0.1 + - stripe-wreq < 1.0.1.12 + - kanji < 3.5 + + # https://github.com/commercialhaskell/stackage/issues/6237 + - lucid < 2.9.13 + - mmark < 0.0.7.4 + + # happy-1.21.0 is deprecated an unbuildable + # https://github.com/commercialhaskell/stackage/issues/6294 + # see also https://github.com/commercialhaskell/stackage/issues/6242 + - happy < 1.21 + + # https://github.com/commercialhaskell/stackage/issues/6243 + - jose < 0.9 + + # https://github.com/commercialhaskell/stackage/issues/6264 + # Requires GHC 9.2 + # Any new package-version that must use GHC 9.2 should be added here. + # We'll Remove this section along with the nightly upgrade to GHC 9.2. + - ghc-lib < 9.2.1.20211030 + - ghc-lib-parser < 9.2.1.20211030 + - ghc-lib-parser-ex < 9.2.0.0 + - singletons-base < 3.1 + - singletons-th < 3.1 + - th-desugar < 1.13 + - eliminators < 0.9 + - ghc-syntax-highlighter < 0.0.8 # requires ghc-lib-parser >= 9.2 + - ormolu < 0.4.0.0 + + # https://github.com/commercialhaskell/stackage/issues/6265 + - attoparsec < 0.14.2 + + # https://github.com/commercialhaskell/stackage/issues/6268 + - hashable < 1.4.0.0 + + # https://github.com/commercialhaskell/stackage/issues/6273 + - freckle-app < 1.0.1 + + # https://github.com/commercialhaskell/stackage/issues/6278 + - ad < 4.5 + + # https://github.com/commercialhaskell/stackage/issues/6288 + - mmark-ext < 0.2.1.4 + + # https://github.com/commercialhaskell/stackage/issues/6292 + - doctest < 0.19 + + # https://github.com/commercialhaskell/stackage/issues/6297 + - hspec-discover < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6298 + - hspec-core < 2.9 + - hspec-meta < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6299 + - hspec < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6308 + - semigroups < 0.20 + + # https://github.com/commercialhaskell/stackage/issues/6309 + - polysemy < 1.7 + - polysemy-plugin < 0.4.2 + + # https://github.com/commercialhaskell/stackage/issues/6310 + - lens < 5.1 + + # https://github.com/commercialhaskell/stackage/issues/6312 + - sydtest < 0.6 + + # https://github.com/commercialhaskell/stackage/issues/6313 + - unicode-data < 0.2 + + # https://github.com/Gabriel439/Haskell-Pipes-Concurrency-Library/issues/60 + - pipes-concurrency < 2.0.13 + + # https://github.com/commercialhaskell/stackage/issues/6322 + - hashtables < 1.3 + + # https://github.com/commercialhaskell/stackage/issues/6348 + - selective < 0.5 +# end of packages + +# Package flags are applied to individual packages, and override the values of +# global-flags +package-flags: + QuickCheck: + old-random: false + pathtype: + old-time: false + + brick: + demos: true + + bz2: + with-bzlib: false # Exclude bzlib from benchmarks to avoid unnecessary dependencies. + + mersenne-random-pure64: + small_base: false + + cloud-haskell: + tcp: true + simplelocalnet: true + p2p: true + + curl: + new-base: true + + hpio: + test-hlint: false + + idris: + ffi: true + + hxt: + network-uri: true + hxt-http: + network-uri: true + hxt-relaxng: + network-uri: true + + text: + integer-simple: false + + tar: + old-time: false + + time-locale-compat: + old-locale: false + + HsOpenSSL: + fast-bignum: false + + cabal-rpm: + old-locale: false + + NineP: + bytestring-in-base: false + + nix-paths: + allow-relative-paths: true + + fay: + test: true + + reedsolomon: + llvm: false + + # https://github.com/ghcjs/jsaddle/issues/9 + jsaddle: + gtk3: true + + ghc-heap-view: + ghc_7_7: false + ghc_8_0: true + + functor-classes-compat: + containers: true + + # 2021-11-14 + # Since we are shipping Win32-2.10 (thus not 2.13.1), this flag needs to be set to 'false'. + # https://github.com/RyanGlScott/mintty/issues/4#issuecomment-968329124 + # TODO: revisit when Win32 is bumped + mintty: + win32-2-13-1: false + + cassava: + bytestring--lt-0_10_4: false + + alerta: + servant-client-core: false + + cabal-install: + # https://github.com/haskell/cabal/issues/4883 + native-dns: false + + # https://github.com/fpco/stackage/issues/3619 + transformers-compat: + five-three: true + + greskell: + hint-test: false + + windns: + allow-non-windows: true + + hsdev: + docs: false + + bson: + _old-network: false + + mongoDB: + _old-network: false + + +# end of package-flags + +# Special configure options for individual packages + +# This used to be used for extra-include-dirs and extra-lib-dirs +# Instead, we set this in the Docker image itself +configure-args: {} +# end of configure-args + + +# Used for packages that cannot be built on Linux +skipped-builds: + - hfsevents + - lzma-clib + - Win32 + - Win32-notify + - windns + +# end of skipped-builds + + +# By skipping a test suite, we do not pull in the build dependencies +# Packages should only be added here if required by `stackage-curator check' +# or if Setup fails because of missing foreign libraries. +# Otherwise place them in expected-test-failures. +skipped-tests: + # aeson-2 + - jsonifier + - req + + # Missing foreign libraries + - symengine + + # Timeouts + # These tests sometimes take too long and hit the stackage build + # servers time limit so these shouldn't be removed from + # skipped-tests unless we know a fix has been released. + - accelerate-fourier + - cabal-helper + - graphviz + - network-attoparsec + - punycode + - unagi-chan + - zeromq4-patterns + - port-utils + - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 + - binary-search # Never finishes https://github.com/nushio3/binary-search/issues/2 + - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 + - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 + + # Wontfix. The maintainer doesn't want to keep test dependencies + # up to date or be notified about it, or doesn't want stackage to + # run the tests. + # Only re-enable if requested. + ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 + - cassava + - cryptohash-md5 + - cryptohash-sha1 + - cryptohash-sha256 + - cryptohash-sha512 + - HsYAML + - lzma + - resolv + - token-bucket + - uuid + - uuid-types + # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - focus + - hasql + - hasql-pool + - list-t + - mtl-prelude + - neat-interpolation + - partial-handler + - postgresql-binary + - refined + - slave-thread + - stm-containers + - text-builder + # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 + - fgl + - fgl-arbitrary + - graphviz + - wl-pprint-text + # @phadej + - aeson-compat + - aeson-extra + - base64-bytestring-type + - binary-orphans + - edit-distance + - fin + - http-api-data + - integer-logarithms + - postgresql-simple-url + - range-set-list + - time-parsers + - time-parsers + - universe-base + - vec + # @jsynacek + - hpqtypes # needs a running postgres database + - hpqtypes-extras # needs a running postgres database + # norfairking + - autodocodec # runs doctest + + # Uses Cabal's "library internal" stanza feature + - s3-signer + + # Due to cycles, which are actually just limitations in Stack right now. + - HUnit + - attoparsec + - base-orphans # via hspec + - bifunctors # via hspec + - call-stack + - case-insensitive + - clock + - criterion + - distributive # via hspec + - doctest # via hspec + - foundation + - hspec + - hspec-discover # via logging-facade/mockery + - js-flot + - js-jquery + - nanospec + - optparse-applicative # via QuickCheck + - primitive + - random + - scientific + - split + - splitmix + - tasty-expected-failure # via tasty-hedgehog + - vector # doctest + - vector-binary-instances + + # TODO + - rpmbuild-order + + # Revision to package caused it to require bounds and break + - htoml # https://github.com/commercialhaskell/stackage/issues/6239 + + # was in expected test failures, but seems we may have to skip + # entirely for unknown reasons, previously: + # https://github.com/clash-lang/clash-compiler/issues/1622 + - clash-prelude + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # Test bounds issues + - ENIG # tried ENIG-0.0.1.0, but its *test-suite* requires the disabled package: test-framework-th + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: hspec-2.8.5 + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: http-client-0.7.9 + - MissingH # tried MissingH-1.4.3.0, but its *test-suite* requires the disabled package: errorcall-eq-instance + - aeson # tried aeson-1.5.6.0, but its *test-suite* does not support: hashable-time-0.3 + - airship # tried airship-0.9.4, but its *test-suite* does not support: tasty-1.4.2.1 + - algebraic-graphs # tried algebraic-graphs-0.5, but its *test-suite* does not support: QuickCheck-2.14.2 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* requires the disabled package: aeson-lens + - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hspec-2.8.5 + - asif # tried asif-6.0.4, but its *test-suite* does not support: doctest-0.18.2 + - avro # tried avro-0.5.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - barrier # tried barrier-0.1.1, but its *test-suite* does not support: lens-family-core-2.1.0 + - barrier # tried barrier-0.1.1, but its *test-suite* does not support: tasty-1.4.2.1 + - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hspec-2.8.5 + - blaze-html # tried blaze-html-0.9.1.2, but its *test-suite* does not support: QuickCheck-2.14.2 + - bloodhound # tried bloodhound-0.18.0.0, but its *test-suite* requires the disabled package: quickcheck-properties + - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - cassava-conduit # tried cassava-conduit-0.6.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: hspec-2.8.5 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: servant-server-0.18.3 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: warp-3.3.18 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-2.8.5 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-discover-2.8.5 + - colour # tried colour-2.3.6, but its *test-suite* does not support: random-1.2.1 + - conduit-algorithms # tried conduit-algorithms-0.0.11.0, but its *test-suite* requires the disabled package: test-framework-th + - csg # tried csg-0.1.0.6, but its *test-suite* does not support: doctest-0.18.2 + - csg # tried csg-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 + - darcs # tried darcs-2.16.4, but its *test-suite* does not support: QuickCheck-2.14.2 + - dhall-lsp-server # tried dhall-lsp-server-1.0.17, but its *test-suite* does not support: lsp-test-0.14.0.1 + - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 + - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch + - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th + - drawille # tried drawille-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - dual-tree # tried dual-tree-0.2.3.0, but its *test-suite* requires the disabled package: testing-feat + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: directory-1.3.6.1 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: hlint-3.3.4 + - edit # tried edit-1.0.1.0, but its *test-suite* does not support: doctest-0.18.2 + - edit # tried edit-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: hspec-2.8.5 + - elynx-markov # tried elynx-markov-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools + - elynx-tree # tried elynx-tree-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools + - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext + - euler-tour-tree # tried euler-tour-tree-0.1.1.0, but its *test-suite* requires the disabled package: sequence + - eventsource-stub-store # tried eventsource-stub-store-1.1.1, but its *test-suite* requires the disabled package: eventsource-store-specs + - extensible-effects # tried extensible-effects-5.0.0.1, but its *test-suite* requires the disabled package: test-framework-th + - filtrable # tried filtrable-0.1.6.0, but its *test-suite* does not support: tasty-1.4.2.1 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-1.4.2.1 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-hspec-1.2 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: QuickCheck-2.14.2 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: bitvec-1.1.1.0 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: groups-0.5.3 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: integer-gmp-1.1 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: semirings-0.6 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: tasty-1.4.2.1 + - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 + - ghc-prof # tried ghc-prof-1.4.1.9, but its *test-suite* does not support: attoparsec-0.14.1 + - gitlib-libgit2 # tried gitlib-libgit2-3.1.2.1, but its *test-suite* requires the disabled package: gitlib-test + - hackage-security # tried hackage-security-0.6.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-2.8.5 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: optparse-applicative-0.16.1.0 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: tree-diff-0.2.1 + - haskell-names # tried haskell-names-0.9.9, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires the disabled package: knob + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: Glob-0.10.2 + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: network-3.1.2.5 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: polyparse-1.13 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: time-1.9.3 + - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* does not support: lens-5.0.1 + - hasmin # tried hasmin-1.0.3, but its *test-suite* does not support: doctest-0.18.2 + - heist # tried heist-1.1.0.1, but its *test-suite* does not support: lens-5.0.1 + - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 + - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* does not support: hspec-2.8.5 + - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: base-4.15.0.0 + - http-streams # tried http-streams-0.8.9.4, but its *test-suite* requires the disabled package: snap-server + - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-bits # tried hw-bits-0.7.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-dsv # tried hw-dsv-0.4.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-json # tried hw-json-1.3.2.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-xml # tried hw-xml-0.5.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-hspec-1.2 + - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: attoparsec-0.14.1 + - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: tasty-1.4.2.1 + - lapack # tried lapack-0.4, but its *test-suite* does not support: random-1.2.1 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-2.8.5 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-core-2.8.5 + - libraft # tried libraft-0.5.0.0, but its *test-suite* requires the disabled package: quickcheck-state-machine + - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* does not support: doctest-0.18.2 + - lrucaching # tried lrucaching-0.3.3, but its *test-suite* does not support: hspec-2.8.5 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: Glob-0.10.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: base-4.15.0.0 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: doctest-0.18.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-1.4.2.1 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-hunit-0.10.0.3 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-quickcheck-0.10.2 + - map-syntax # tried map-syntax-0.3, but its *test-suite* does not support: hspec-2.8.5 + - menshen # tried menshen-0.0.3, but its *test-suite* does not support: QuickCheck-2.14.2 + - messagepack # tried messagepack-0.5.4, but its *test-suite* requires the disabled package: test-framework-th + - monad-par # tried monad-par-0.3.5, but its *test-suite* requires the disabled package: test-framework-th + - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - multistate # tried multistate-0.8.0.3, but its *test-suite* does not support: hspec-2.8.5 + - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* does not support: classy-prelude-1.5.0.1 + - netrc # tried netrc-0.2.0.0, but its *test-suite* does not support: tasty-1.4.2.1 + - network-transport-inmemory # tried network-transport-inmemory-0.5.2, but its *test-suite* does not support: network-transport-tests-0.3.0 + - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell + - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell-quickcheck + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-2.8.5 + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-discover-2.8.5 + - partial-semigroup # tried partial-semigroup-0.5.1.12, but its *test-suite* does not support: doctest-0.18.2 + - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc + - postgrest # tried postgrest-8.0.0, but its *test-suite* does not support: hspec-2.8.5 + - proto3-wire # tried proto3-wire-1.2.2, but its *test-suite* does not support: doctest-0.18.2 + - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* does not support: hspec-2.8.5 + - quickcheck-state-machine # tried quickcheck-state-machine-0.7.1, but its *test-suite* requires the disabled package: hs-rqlite + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: hspec-2.8.5 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: servant-server-0.18.3 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: warp-3.3.18 + - records-sop # tried records-sop-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 + - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 + - safeio # tried safeio-0.0.5.0, but its *test-suite* requires the disabled package: test-framework-th + - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* does not support: QuickCheck-2.14.2 + - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar + - schematic # tried schematic-0.5.1.0, but its *test-suite* does not support: base-4.15.0.0 + - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-2.8.5 + - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-docs # tried servant-docs-0.11.9, but its *test-suite* does not support: tasty-1.4.2.1 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-2.8.5 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: aeson-1.5.6.0 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: hspec-2.8.5 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: http-api-data-0.4.3 + - servant-mock # tried servant-mock-0.8.7, but its *test-suite* does not support: hspec-wai-0.11.1 + - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* does not support: hspec-core-2.8.5 + - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: streaming-bytestring-0.2.1 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: warp-3.3.18 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: doctest-0.18.2 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-2.8.5 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: aeson-1.5.6.0 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: servant-server-0.18.3 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: hspec-2.8.5 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 + - sexpr-parser # tried sexpr-parser-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 + - simple-log # tried simple-log-0.9.12, but its *test-suite* does not support: hspec-2.8.5 + - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* does not support: ansi-terminal-0.11.1 + - snap # tried snap-1.1.3.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - stb-image-redux # tried stb-image-redux-0.2.1.3, but its *test-suite* does not support: hspec-2.8.5 + - stm-supply # tried stm-supply-0.2.0.0, but its *test-suite* requires the disabled package: Unique + - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 + - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* does not support: hspec-2.8.5 + - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: HTF-0.14.0.6 + - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: lens-5.0.1 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-hedgehog-1.1.0.0 + - sv-core # tried sv-core-0.5, but its *test-suite* does not support: tasty-1.4.2.1 + - sydtest-yesod # tried sydtest-yesod-0.3.0.0, but its *test-suite* requires the disabled package: sydtest-persistent-sqlite + - system-fileio # tried system-fileio-0.3.16.4, but its *test-suite* requires the disabled package: chell + - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell + - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell-quickcheck + - tar # tried tar-0.5.1.1, but its *test-suite* requires the disabled package: bytestring-handle + - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - test-framework # tried test-framework-0.8.2.0, but its *test-suite* requires the disabled package: libxml + - transient # tried transient-0.7.0.0, but its *test-suite* does not support: random-1.2.1 + - tzdata # tried tzdata-0.2.20201021.0, but its *test-suite* requires the disabled package: test-framework-th + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: generic-random-1.5.0.1 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires the disabled package: time-qq + - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - validation # tried validation-1.1.2, but its *test-suite* does not support: lens-5.0.1 + - validation-selective # tried validation-selective-0.1.0.1, but its *test-suite* does not support: hspec-2.8.5 + - web-routes-th # tried web-routes-th-0.22.6.6, but its *test-suite* does not support: hspec-2.8.5 + - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: random-1.2.1 + - wreq # tried wreq-0.5.3.3, but its *test-suite* requires the disabled package: snap-server + - xmlhtml # tried xmlhtml-0.2.5.2, but its *test-suite* does not support: hspec-2.8.5 + - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* does not support: yesod-test-1.6.12 + # End of Test bounds issues + +# end of skipped-tests + +# Tests listed in expected-test-failures configure correctly but may fail to run +# or even build correctly. A Stackage build should not fail based on a test build +# or test run failure for these packages. +# (Testsuites which can't configure should be placed under skipped-tests.) +# +# We need to build and run test suites to verify if tests listed here +# can be re-enabled, so we usually wait for the maintainer to file a +# PR to re-enable them. +expected-test-failures: + + # Intermittent failures or unreliable. These tests may pass when + # re-enabled, but will eventually fail again. + # + - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 + - base64 # https://github.com/emilypi/base64/issues/31 + - binary-instances # https://github.com/haskellari/binary-instances/issues/7 + - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 + - capataz # https://github.com/roman/Haskell-capataz/issues/6 + - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 + - crypto-numbers + - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 + - distributed-process + - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 + - distributed-process-task + - fft # test-fft: exited with: ExitFailure (-11) + - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 + - fsnotify # Often runs out of inotify handles + - hastache + - idris # https://github.com/fpco/stackage/issues/1382 + - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 + - math-functions # https://github.com/bos/math-functions/issues/25 + - matplotlib # https://github.com/fpco/stackage/issues/2365 + - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 + - network # Unfortunately network failures seem to happen haphazardly + - nsis # Intermittent on non-Windows systems + - statistics # https://github.com/bos/statistics/issues/42 + + # Requires running servers, accounts, or a specific environment. + # + # If a maintainer wants us to run a partial tests suite with tests + # that do not require external dependencies, see + # https://github.com/commercialhaskell/stackage/issues/6172#issuecomment-902072030 + # + - GLFW-b # X + - HTF # Requires shell script and are incompatible with sandboxed package databases + - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 + - IPv6DB + - accelerate-bignum # CUDA GPU + - alex + - amqp + - aws # AWS Credentials + - beam-postgres # requires Postgress instance + - bindings-GLFW # Expects running X server + - bitcoin-api + - bitcoin-api-extra + - bloodhound # ElasticSearch + - cabal-install + - cayley-client + - consul-haskell + - cql-io # Cassandra + - credential-store # requieres dbus sockets + - datadog # requires API keys in env vars https://github.com/fpco/stackage/pull/3308#issuecomment-369535040 + - dbcleaner # Requires running PostgreSQL server + - dbmigrations # PostgreSQL + - drifter-postgresql # PostgreSQL + - egison # executable not found https://github.com/egison/egison/issues/250 + - esqueleto # mysql and postgresql + - etcd # etcd https://github.com/fpco/stackage/issues/811 + - eventful-dynamodb + - eventful-postgresql + - eventsource-geteventstore-store + - eventstore # Event Store + - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 + - fb # Facebook app + - gdax # Needs environment variables set + - ghc-imported-from # depends on haddocks being generated first https://github.com/fpco/stackage/pull/1315 + - ghc-mod # https://github.com/DanielG/ghc-mod/issues/611 + - githash # Needs a git repo + - gitson # 0.5.2 error with git executable https://github.com/myfreeweb/gitson/issues/1 + - gitson # https://github.com/myfreeweb/gitson/issues/1 + - happy # Needs mtl in the user package DB + - haskell-neo4j-client # neo4j with auth disabled + - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 + - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 + - hasql # PostgreSQL + - hasql-notifications # PostgreSQL + - hasql-queue + - hasql-transaction # PostgreSQL + - hedis + - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 + - hnix # #5469/closed + - hocilib # oracle + - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 + - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 + - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 + - hworker + - influxdb + - json-autotype # Requires filesystem access + - jvm + - katip-elasticsearch # elasticsearch + - log # ElasticSearch + - lsp-test + - lxd-client # Needs LXD, not available on debian + - lz4 # executable not found https://github.com/commercialhaskell/stackage/issues/6226 + - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 + - memcached-binary # memcached + - milena + - mongoDB # Requires local MongoDB server + - mysql # MySQL + - mysql-haskell # Requires local mysql server with a test account, and binlog enabled. + - mysql-simple # MySQL + - network-anonymous-i2p + - nri-kafka # requires kafka + - nri-postgresql # requires postgres + - nri-redis # requires redis + - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" + - opaleye # PostgreSQL + - optima # `demo` invoked with bad arguments https://github.com/commercialhaskell/stackage/pull/6102 + - pandoc-plot # requires matlab, etc and DISPLAY for tcltk + - pantry # https://github.com/commercialhaskell/stackage/issues/4628 + - peregrin # Requires running pg-harness-server + - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 + - pipes-mongodb + - postgresql-libpq-notify + - postgresql-query # PostgreSQL + - postgresql-simple # PostgreSQL + - postgresql-simple-migration + - postgresql-simple-queue + - postgresql-syntax # hedgehog-test executable not found https://github.com/commercialhaskell/stackage/pull/6102 + - postgresql-typed # PostgreSQL + - postgrest # PostgreSQL + - purescript # git 128 https://github.com/purescript/purescript/issues/2292 + - rattle # needs fsatrace + - redis-io + - rel8 + - rethinkdb + - rethinkdb-client-driver + - riak # needs riak server on localhost:8098 + - sdl2 # "Failed to connect to the Mir Server" + - sendgrid-v3 # Requires sendgrid API key in env #5951/closed + - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 + - serversession-backend-redis # redis + - shake # Needs ghc on $PATH with some installed haskell packages + - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 + - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account + - sourcemap # requires npm installed packages + - users-persistent # sqlite + - users-postgresql-simple # PostgreSQL + - wai-cors # PhantomJS + - wai-rate-limit-redis # Redis + - wai-session-postgresql # PostgreSQL + - wai-session-redis # https://github.com/commercialhaskell/stackage/pull/5980 + - web3 # requires running server + - webdriver-angular # webdriver server + - websockets + + # Missing test files in sdist + # + # The cause is that a test suite requires a file that is not + # present in the tarball that is uploaded to Hackage. It can be + # fixed by adding these files to `extra-source-files` in the + # .cabal file. + # + - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 + - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 + - doctest + - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + - ghc-events # https://github.com/haskell/ghc-events/issues/70 + - hspec-core # https://github.com/commercialhaskell/stackage/issues/6291 + - hspec-junit-formatter # https://github.com/freckle/hspec-junit-formatter/issues/14 + - persistent # https://github.com/commercialhaskell/stackage/issues/6037 + - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + + # Testcase assertion failures, or other runtime failures. + # These can be real testsuite bugs, or maybe limitations in test cases or the test setup. + # + - JuicyPixels-blurhash + - aeson-casing + - aeson-schemas # https://github.com/commercialhaskell/stackage/issues/6289 + - base32 + - blaze-colonnade + - bsb-http-chunked + - c2hs + - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 + - colonnade + - composable-associations-aeson + - control-dsl + - crypto-enigma + - curl-runnings + - debian + - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 + - dimensional + - download # https://github.com/fpco/stackage/issues/2811 + - duration + - ede + - error # https://github.com/commercialhaskell/stackage/issues/6300 + - fixed-vector-hetero + - freckle-app # https://github.com/commercialhaskell/stackage/issues/6197 + - genvalidity-persistent + - genvalidity-property + - ghc-prof + - gingersnap + - github-types + - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 + - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 + - haskoin-core + - hpack # https://github.com/commercialhaskell/stackage/issues/4512 + - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 + - hspec-golden-aeson + - incremental-parser # 0.5.0.2 + - jose + - justified-containers + - jwt + - katip + - lens-regex + - list-transformer + - lucid # https://github.com/chrisdone/lucid/issues/109 + - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 + - massiv-io + - megaparsec-tests + - mighty-metropolis # https://github.com/jtobin/mighty-metropolis/issues/6 + - mixpanel-client # https://github.com/domenkozar/mixpanel-client/issues/7 + - mmark # https://github.com/mmark-md/mmark/issues/80 + - mmark-ext # https://github.com/mmark-md/mmark/issues/80 + - mwc-random + - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 + - nri-observability # https://github.com/commercialhaskell/stackage/issues/6179 + - nri-prelude # https://github.com/commercialhaskell/stackage/issues/6179 + - numhask-array + - ochintin-daicho + - openapi3 + - pcre-heavy + - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 + - posix-paths + - prettyprinter + - prettyprinter-ansi-terminal + - rando # https://github.com/commercialhaskell/stackage/issues/4249 + - rank1dynamic + - rescue + - rose-trees + - safe-decimal + - simple-affine-space + - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - sized + - spatial-math + - subcategories + - tasty-fail-fast + - triplesec + - turtle + - type-level-kv-list + - unicode-show + - universe-some + - universum + - utf8-conversions + - varying + - vivid-osc + - wakame + - world-peace + - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 + - xmlbf + + # Assertion failures due to module name ambiguity. + # These _should_ be fixed by using the `hide` section of this file + - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 + + # Compilation failures + - aeson-commit + - base16 # #5948/closed + - blake2 + - blas-hs + - bound # https://github.com/commercialhaskell/stackage/issues/6274 + - butter + - cabal-file-th + - conduit-connection + - config-ini # https://github.com/aisamanra/config-ini/issues/22 + - construct # 0.3.0.2 + - data-diverse + - do-notation + - domain-optics # https://github.com/commercialhaskell/stackage/pull/6102 + - flat + - flay + - fmt + - focuslist + - generic-lens # https://github.com/commercialhaskell/stackage/issues/6290 + - geojson + - hsc2hs + - hsini + - htoml + - hweblib # https://github.com/aycanirican/hweblib/issues/3 + - LambdaHack # https://github.com/commercialhaskell/stackage/issues/6276 + - leveldb-haskell + - mono-traversable + - multiarg + - murmur3 + - parameterized # # https://github.com/commercialhaskell/stackage/issues/5746 + - protobuf + - record-wrangler + - relapse # #5948/closed + - require # compilation failure https://github.com/commercialhaskell/stackage/issues/6093 + - secp256k1-haskell # #5948/closed + - servant-static-th # Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 + - snap-core # random 1.2 + - snappy # Could not find module ‘Functions’ + - string-random # https://github.com/hiratara/hs-string-random/issues/16 + - text-icu # https://github.com/bos/text-icu/issues/32 + - thread-supervisor + - type-map + - type-of-html-static # https://github.com/commercialhaskell/stackage/issues/5728 + - typecheck-plugin-nat-simple + - uncertain + - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 + - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 + - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - yesod-gitrev # https://github.com/commercialhaskell/stackage/issues/6132 + + # Recursive deps https://github.com/fpco/stackage/issues/1818 + - options + - text # 1.2.2.1 + + # Problem on the stackage build server, we need to dig deeper into + # these if we want them fixed + - skein # openfile: does not exist https://github.com/fpco/stackage/issues/1187 + - haskell-tools-daemon # openFile: permission denied https://github.com/fpco/stackage/issues/2502 + - rounded # segfault + - isocline # segfault https://github.com/daanx/isocline/issues/1 + - shake-language-c # Cannot reproduce locally, looks like it may be a bug in Stack or curator + + # doctests can be flaky on the build server, add packages here if + # they start causing issues. + - bookkeeping + - dhall + - doctest-driver-gen + - email-validate + - greskell + - greskell-core + - headroom + - hint + - hledger-lib + - iproute + - kawhi + - makefile # Doctests require hidden Glob package + - multiset # # Doctests require hidden Glob package + - perf + - prometheus-client + - xml-indexed-cursor + - yesod-paginator + + # Misc. Please check if there is a better section before adding more packages here. + - Diff # https://github.com/commercialhaskell/stackage/issues/4289 + - algebraic-graphs # Module not visible https://github.com/commercialhaskell/stackage/issues/4670 + - binary-parsers # runtime failure https://github.com/winterland1989/binary-parsers/issues/3 + - bugsnag-haskell # Module not visible https://github.com/commercialhaskell/stackage/issues/4759 + - cacophony # https://github.com/centromere/cacophony/issues/15 + - cfenv # https://github.com/tomphp/haskell-cfenv/issues/1 + - cryptohash # Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built + - dbus # https://github.com/commercialhaskell/stackage/issues/5587 + - dns # https://github.com/kazu-yamamoto/dns/issues/153 + - envelope # Module not visible https://github.com/commercialhaskell/stackage/issues/4669 + - exp-pairs # https://github.com/Bodigrim/exp-pairs/issues/16 + - fused-effects # https://github.com/fused-effects/fused-effects/issues/413 + - generic-optics # https://github.com/kcsongor/generic-lens/issues/133 + - ghc-exactprint # https://github.com/alanz/ghc-exactprint/issues/82 + - ghci-hexcalc # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 + - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 + - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 + - heap # https://github.com/pruvisto/heap/issues/11 + - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory + - hspec-expectations-pretty-diff # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 + - hw-kafka-client # missing exe https://github.com/commercialhaskell/stackage/pull/5542 + - invertible # https://github.com/dylex/invertible/issues/4 + - language-docker # https://github.com/commercialhaskell/stackage/issues/5407 + - lzma-conduit # https://github.com/alphaHeavy/lzma-conduit/issues/19 + - pandoc # https://github.com/jgm/pandoc/issues/5582 + - password # Module not visible https://github.com/cdepillabout/password/issues/2 + - password-instances # Module not visible https://github.com/commercialhaskell/stackage/issues/4653 + - pcg-random # https://github.com/cchalmers/pcg-random/pull/7 + - persistent-mongoDB # Requires a running server + - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/4764 + - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/4763 + - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 + - poly + - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both + - raaz # https://github.com/commercialhaskell/stackage/issues/4784 + - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 + - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release + - sbv + - servant-elm # https://github.com/haskell-servant/servant-elm/issues/62 + - servant-ruby # Module not visible https://github.com/commercialhaskell/stackage/issues/4650 + - skews # https://github.com/iij-ii/direct-hs/issues/100 + - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 + - tar-conduit # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 + - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4722 + - threads # https://github.com/basvandijk/threads/issues/10 + - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 + - yesod-core # https://github.com/yesodweb/yesod/issues/1711 + + # Please review the sections above before adding packages to a new section or to Misc. + +# end of expected-test-failures + + +# Haddocks which are expected to fail. Same concept as expected test failures. +expected-haddock-failures: + + # Requires build before haddock, which doesn't always happen in incremental + # builds. Could consider special-casing this requirement. + - gtk3 + + # Intermittent failures or unreliable. These may pass when + # re-enabled, but will eventually fail again. Only remove these + # from expected-haddock-failures if we know a fix has been released. + - gi-gtk # Uses all memory + + # Problem on the stackage build server, we need to dig deeper into + # these if we want them fixed + + # internal error when calculating transitive package dependencies + - hw-balancedparens + - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 + - hw-json # https://github.com/commercialhaskell/stackage/issues/5014 + - hw-rankselect + +# end of expected-haddock-failures + +# For packages with haddock issues +skipped-haddocks: +- modular # Module uses compiler plugins https://github.com/haskell/haddock/issues/900 +# end of skipped-haddocks + +# Benchmarks which are known not to build. Note that, currently we do not run +# benchmarks, and therefore failures are only for building, not running. +expected-benchmark-failures: + # Compilation failures + - OrderedBits + - aeson-combinators + - cipher-blowfish # https://github.com/vincenthz/hs-crypto-cipher/issues/46 + - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 + - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 + - egison # https://github.com/egison/egison/issues/249 + - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 + - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 + - incremental-parser # 0.5.0.2 + - lz4 # https://github.com/fpco/stackage/issues/3510 + - raaz # https://github.com/commercialhaskell/stackage/issues/4766 + - serialise # https://github.com/commercialhaskell/stackage/issues/6340 + - thyme + - universum + - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + + +# end of expected-benchmark-failures + + +# Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. +# By skipping a benchmark, we do not pull in the build dependencies +# Packages should only be added here if required by `stackage-curator check' +# or if Setup fails because of missing foreign libraries. +# Otherwise place them in expected-benchmark-failures. +skipped-benchmarks: + # aeson-2 + - jsonifier + + # Cyclic dependencies + - attoparsec + - case-insensitive + - cassava + - clock + - criterion + - foundation + - hashable # https://github.com/fpco/stackage/issues/1818 + - hspec + - nanospec + - scientific + - vector-binary-instances + + # Timeouts + - gogol-youtube + + # Very resource intensive + - OpenGLRaw + - pandoc + - git-annex + + # Maintainers who don't want to update benchmarks + # Only re-enable if requested. + ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 + - cassava + - cryptohash-md5 + - cryptohash-sha1 + - cryptohash-sha256 + - uuid + - uuid-types + # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - focus + - hasql + - hasql-pool + - list-t + - mtl-prelude + - neat-interpolation + - partial-handler + - postgresql-binary + - refined + - slave-thread + - stm-containers + - vector-builder + # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 + - fgl + - fgl-arbitrary + - graphviz + - graphviz + - wl-pprint-text + # @phadej + - dlist-nonempty # criterion-1.3 + - splitmix # criterion-1.3 + # @sjakobi + - prettyprinter + - prettyprinter-ansi-terminal # https://github.com/commercialhaskell/stackage/issues/5560 + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # Benchmark bounds issues + - IntervalMap # tried IntervalMap-0.6.1.2, but its *benchmarks* requires the disabled package: SegmentTree + - accelerate-bignum # tried accelerate-bignum-0.3.0.0, but its *benchmarks* requires the disabled package: accelerate-io-vector + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: accelerate-llvm-native-1.3.0.0 + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: criterion-1.5.11.0 + - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* does not support: criterion-1.5.11.0 + - buffer-builder # tried buffer-builder-0.2.4.7, but its *benchmarks* requires the disabled package: json-builder + - chronos # tried chronos-1.1.3, but its *benchmarks* requires the disabled package: thyme + - cipher-aes # tried cipher-aes-0.2.11, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-camellia # tried cipher-camellia-0.0.2, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-des # tried cipher-des-0.0.6, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-rc4 # tried cipher-rc4-0.1.4, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* does not support: network-transport-tcp-0.8.0 + - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* does not support: criterion-1.5.11.0 + - elynx-tree # tried elynx-tree-0.6.1.0, but its *benchmarks* requires the disabled package: elynx-tools + - extensible-effects # tried extensible-effects-5.0.0.1, but its *benchmarks* requires the disabled package: test-framework-th + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: aeson-1.5.6.0 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: time-1.9.3 + - hip # tried hip-1.5.6.0, but its *benchmarks* requires the disabled package: repa-algorithms + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *benchmarks* requires the disabled package: hw-hspec-hedgehog + - o-clock # tried o-clock-1.2.1, but its *benchmarks* requires the disabled package: tiempo + - polysemy # tried polysemy-1.6.0.0, but its *benchmarks* requires the disabled package: freer-simple + - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: PSQueue + - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: fingertree-psqueue + - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec + - sbv # tried sbv-8.17, but its *benchmarks* requires the disabled package: bench-show + - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* does not support: criterion-1.5.11.0 + - superbuffer # tried superbuffer-0.3.1.1, but its *benchmarks* does not support: criterion-1.5.11.0 + - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: criterion-plus + - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: stm-stats + - typerep-map # tried typerep-map-0.4.0.0, but its *benchmarks* requires the disabled package: dependent-sum + - tz # tried tz-0.1.3.5, but its *benchmarks* requires the disabled package: thyme + - unicode-transforms # tried unicode-transforms-0.3.8, but its *benchmarks* does not support: path-0.9.1 + - xxhash-ffi # tried xxhash-ffi-0.2.0.0, but its *benchmarks* requires the disabled package: xxhash + # End of Benchmark bounds issues + +# end of skipped-benchmarks + + +skipped-profiling: + # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 + - ghc-heap-view + + +# Mapping from Github account holding a package to the Github users who should +# be pinged on failure. If no value is specified here, then the owning account +# will be pinged. +github-users: + diagrams: + - byorgey + - fryguybob + - jeffreyrosenbluth + - bergey + yesodweb: + - snoyberg + fpco: + - snoyberg + faylang: + - bergmark + silkapp: + - bergmark + - hesselink + snapframework: + - mightybyte + haskell-ro: + - mihaimaruseac + elm-lang: + - JoeyEremondi + prowdsponsor: + - meteficha + analytics: + - ekmett + haskell-openal: + - svenpanne + haskell-opengl: + - ekmett + - svenpanne + lambdabot: + - DanBurton + - mokus0 + haskell-game: + - ocharles + Happstack: + - stepcut + clckwrks: + - stepcut + stackbuilders: + - jsl + - sestrella + - juanpaucar + - CristhianMotoche + scotty-web: + - RyanGlScott + - xich + ku-fpg: + - RyanGlScott + haskell-compat: + - RyanGlScott + vivid: + - vivid-synth + midair: + - vivid-synth + nano-erl: + - vivid-synth + telegram-api: + - klappvisor + fpinsight: + - thierry-b + arithmoi: + - Bodigrim + - cartazio + IxpertaSolutions: + - Siprj + - liskin + - trskop + - xkollar + ekmett: + - RyanGlScott + onrock-eng: + - donkeybonks + tweag: + - bazel-runfiles + network-multicast: + - audreyt + xmonad: + - byorgey + - dmwit + - geekosaur + - liskin + - psibi + - slotThe + +# end of github-users + +# begin build-tool-overrides +# +# Used to set a mapping from build tools to package names, ignoring the +# metadata on Hackage itself + +build-tool-overrides: + # Ignore the cabal-install-ghc72 and cabal-install-ghc74 packages + cabal: + - cabal-install + +# end build-tool-overrides + +# Useful for checking for strict upper bounds against new versions of core +# packages, e.g. when a new version of transformers is released +# +# treat-as-non-core: +# - transformers + +# Give an error if the latest package version doesn't match what's +# listed below, see: +# https://github.com/fpco/stackage-curator/issues/25 +# +# Example: +# If bindings-GLFW-3.1.2.1 is the current latest version write +# - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is released +tell-me-when-its-released: [] + +# Packages which should be hidden after registering, to avoid module name +# conflicts. This is intended for at least two use cases: +# +# * Making doctests pass (https://github.com/yesodweb/wai/issues/579) +# +# * Allowing tools like Stack to get a mapping from module name to package name +# for automatically installing dependencies +hide: +- HTF # conflicts with Test.Framework in test-framework +- async-dejafu # https://github.com/yesodweb/wai/issues/579 +- base-compat # conflicts with base-compat-batteries, see https://github.com/fpco/stackage/issues/3607 +- base-noprelude # By design, conflicts with base +- binary-ieee754 # conflicts with data-binary-ieee754 +- cipher-aes # Cryptonite deprecation +- cipher-blowfish # Cryptonite deprecation +- cipher-camellia # Cryptonite deprecation +- cipher-des # Cryptonite deprecation +- cipher-rc4 # Cryptonite deprecation +- constraint # conflicts with constraints +- control-monad-free # conflicts with Control.Monad.Free in free +- courier # conflicts with Network.Transport in network-transport +- crypto-api # `module Crypto.Random` conflicts with cryptonite +- crypto-cipher-types # Cryptonite deprecation +- crypto-numbers # Cryptonite deprecation +- crypto-pubkey # Cryptonite deprecation +- crypto-random # Cryptonite deprecation +- cryptohash # Cryptonite deprecation +- cryptohash-conduit # Cryptonite deprecation +- cryptohash-md5 # cryptohash fork +- cryptohash-sha1 # cryptohash fork +- cryptohash-sha256 # cryptohash fork +- fay-base # conflicts with many modules in base and others +- filemanip # conflicts with System.FilePath.Glob in Glob +- ghc-lib # per its own recommendation. conflicts with template-haskell +- ghc-lib-parser # also conflicts with template-haskell +- gl # conflicts with modules in OpenGLRaw +- gtk3 # conflicts with many modules in gtk +- hashmap # conflicts with Data.HashSet in unordered-containers +- hledger-web # conflicts with Foundation in foundation +- hs-functors # conflicts with profunctors, see #3609/closed +- hxt-unicode # conflicts with Data.String.UTF8 in utf8-string +- kawhi # conflicts with Control.Monad.Http in monad-http +- language-c # conflicts with modules in language-c-quote +- lenz # conflicts with lens, see https://github.com/fpco/stackage/issues/3600 +- log # conflicts with modules in its dependencies +- matrices # conflicts with matrix +- monad-extras # conflicts with Control.Monad.Extra in extra +- monads-tf # mtl is preferred +- nanospec # conflicts with Test.Hspec in hspec +- objective # conflicts with Control.Object in natural-transformation +- plot-gtk3 # conflicts with many modules in plot-gtk +- pretty-class # conflicts with pretty and prettyclass +- prettyclass # conflicts with pretty and pretty-class +- prompt # conflicts with Control.Monad.Prompt in MonadPrompt +- regex-compat-tdfa # conflicts with many modules in regex-compat +- regex-pcre-builtin # conflicts with many modules in regex-pcre +- rerebase # conflicts with base +- svg-tree # conflicts with Graphics.Svg in svg-builder +- temporary-rc # conflicts with temporary +- temporary-resourcet # conflicts with temporary +- zip # conflicts with Codec.Archive.Zip in zip-archive + + +# Experimental: packages where Hackage cabal file revisions should be ignored. +# +# This always use the cabal file shipped with the sdist tarball instead of the latest revision. +# +# This only supports pinning to the initial release (revision 0), not to an arbitrary revision. +no-revisions: +- hjsonpointer +- tls +- mime-mail +- basement +- cryptonite +- foundation +- gauge +- stack +- http-download +- pantry +- rio-prettyprint +- hi-file-parser + + +# Do not build these packages in parallel with others. Useful for high memory +# usage. +non-parallel-builds: +- pandoc +- gogol-dfareporting +- gogol-compute +- idris +- amazonka-ec2 +- massiv-persist +- massiv-serialise