diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 441b55cf6ebe..b78aa817862f 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -264,6 +264,9 @@ a4f7e161b380b35b2f7bc432659a95fd71254ad8 # haskellPackages.hercules-ci-agent (cabal2nix -> nixfmt-rfc-style) 9314da7ee8d2aedfb15193b8c489da51efe52bb5 +# haskell-updates: nixfmt-rfc-style +9e296dcf846294e0aa94af7d3235e82eee7fe055 + # nix-builder-vm: nixfmt-rfc-style a034fb50f79816c6738fb48b48503b09ea3b0132 diff --git a/doc/languages-frameworks/haskell.section.md b/doc/languages-frameworks/haskell.section.md index 84312c8d8185..d9246994676d 100644 --- a/doc/languages-frameworks/haskell.section.md +++ b/doc/languages-frameworks/haskell.section.md @@ -58,7 +58,7 @@ Each of those compiler versions has a corresponding attribute set `packages` bui it. However, the non-standard package sets are not tested regularly and, as a result, contain fewer working packages. The corresponding package set for GHC 9.4.8 is `haskell.packages.ghc948`. In fact, `haskellPackages` (at the time of writing) is just an alias -for `haskell.packages.ghc984`: +for `haskell.packages.ghc9103`. Every package set also re-exposes the GHC used to build its packages as `haskell.packages.*.ghc`. diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index 9911eb4fb9ea..426664d647de 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -9,6 +9,8 @@ and newer series. However, embedded chips without LSX (Loongson SIMD eXtension), such as 2K0300 SoC, are not supported. `pkgsCross.loongarch64-linux-embedded` can be used to build software and systems for these platforms. - The official Nix formatter `nixfmt` is now stable and available as `pkgs.nixfmt`, deprecating the temporary `pkgs.nixfmt-rfc-style` attribute. The classic `nixfmt` will stay available for some more time as `pkgs.nixfmt-classic`. +- The default GHC version has been updated from 9.8 to 9.10. + `haskellPackages` correspondingly uses Stackage LTS 24 (instead of LTS 23) as a baseline. - Darwin has switched to using the system libc++. This was done for improved compatibility and to avoid ODR violations. If a newer C++ library feature is not available on the default deployment target, you will need to increase the deployment target. diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs index ebcb576d5521..263d0aa50e6e 100755 --- a/maintainers/scripts/haskell/hydra-report.hs +++ b/maintainers/scripts/haskell/hydra-report.hs @@ -1,6 +1,7 @@ #! /usr/bin/env nix-shell +#! nix-shell -I nixpkgs=. #! nix-shell -p "haskellPackages.ghcWithPackages (p: [p.aeson p.req])" -#! nix-shell -p hydra +#! nix-shell -p nix-eval-jobs #! nix-shell -i runhaskell {- @@ -33,19 +34,23 @@ Because step 1) is quite expensive and takes roughly ~5 minutes the result is ca import Control.Monad (forM_, forM, (<=<)) import Control.Monad.Trans (MonadIO (liftIO)) import Data.Aeson ( - FromJSON, + FromJSON (..), + withObject, + (.:), FromJSONKey, ToJSON, decodeFileStrict', - eitherDecodeStrict', encodeFile, ) -import Data.Foldable (Foldable (toList), foldl') +import Data.Aeson.Decoding (eitherDecodeStrictText) +import Data.Foldable (Foldable (toList)) +import Data.Either (rights) +import Data.Functor ((<&>)) import Data.List.NonEmpty (NonEmpty, nonEmpty) import qualified Data.List.NonEmpty as NonEmpty import Data.Map.Strict (Map) import qualified Data.Map.Strict as Map -import Data.Maybe (fromMaybe, mapMaybe, isNothing) +import Data.Maybe (fromMaybe, mapMaybe, isNothing, catMaybes) import Data.Monoid (Sum (Sum, getSum)) import Data.Sequence (Seq) import qualified Data.Sequence as Seq @@ -53,7 +58,6 @@ import Data.Set (Set) import qualified Data.Set as Set import Data.Text (Text) import qualified Data.Text as Text -import Data.Text.Encoding (encodeUtf8) import qualified Data.Text.IO as Text import Data.Time (defaultTimeLocale, formatTime, getCurrentTime) import Data.Time.Clock (UTCTime) @@ -206,7 +210,7 @@ hydraQuery responseType option query = do let customHeaderOpt = header "User-Agent" - "hydra-report.hs/v1 (nixpkgs;maintainers/scripts/haskell) pls fix https://github.com/NixOS/nixos-org-configurations/issues/270" + "hydra-report.hs/v1 (nixpkgs;maintainers/scripts/haskell)" customTimeoutOpt = responseTimeout 900_000_000 -- 15 minutes opts = customHeaderOpt <> customTimeoutOpt <> option url = foldl' (/:) (https "hydra.nixos.org") query @@ -218,11 +222,22 @@ hydraJSONQuery = hydraQuery jsonResponse hydraPlainQuery :: [Text] -> Req ByteString hydraPlainQuery = hydraQuery bsResponse mempty -hydraEvalCommand :: FilePath -hydraEvalCommand = "hydra-eval-jobs" +nixEvalJobsCommand :: FilePath +nixEvalJobsCommand = "nix-eval-jobs" -hydraEvalParams :: [String] -hydraEvalParams = ["-I", ".", "pkgs/top-level/release-haskell.nix"] +nixEvalJobsParams :: [String] +nixEvalJobsParams = + [ + -- options necessary to make nix-eval-jobs behave like hydra-eval-jobs used to + -- https://github.com/NixOS/hydra/commit/d84ff32ce600204c6473889a3ff16cd6053533c9 + "--meta", + "--force-recurse", + "--no-instantiate", + "--workers", "3", + + "-I", ".", + "pkgs/top-level/release-haskell.nix" + ] nixExprCommand :: FilePath nixExprCommand = "nix-instantiate" @@ -230,47 +245,27 @@ nixExprCommand = "nix-instantiate" nixExprParams :: [String] nixExprParams = ["--eval", "--strict", "--json"] --- | This newtype is used to parse a Hydra job output from @hydra-eval-jobs@. --- The only field we are interested in is @maintainers@, which is why this --- is just a newtype. +-- | Holds a list of the GitHub handles of the maintainers of a given 'JobName'. -- --- Note that there are occasionally jobs that don't have a maintainers --- field, which is why this has to be @Maybe Text@. -newtype Maintainers = Maintainers { maintainers :: Maybe Text } +-- @ +-- JobMaintainers (JobName "haskellPackages.cabal-install.x86_64-linux") ["sternenseemann"] +-- @ +data JobMaintainers = JobMaintainers JobName [Text] deriving stock (Generic, Show) - deriving anyclass (FromJSON, ToJSON) --- | This is a 'Map' from Hydra job name to maintainer email addresses. --- --- It has values similar to the following: --- --- @@ --- fromList --- [ ("arion.aarch64-linux", Maintainers (Just "robert@example.com")) --- , ("bench.x86_64-linux", Maintainers (Just "")) --- , ("conduit.x86_64-linux", Maintainers (Just "snoy@man.com, web@ber.com")) --- , ("lens.x86_64-darwin", Maintainers (Just "ek@category.com")) --- ] --- @@ --- --- Note that Hydra jobs without maintainers will have an empty string for the --- maintainer list. -type HydraJobs = Map JobName Maintainers +-- | Parse the entries produced by @nix-eval-jobs@, discarding all information +-- except the name of the job (@attr@) and the @github@ attributes of the +-- maintainer objects in @meta.maintainers@. +instance FromJSON JobMaintainers where + parseJSON = withObject "HydraJob" $ \h -> do + jobName <- h .: "attr" + maintainers <- (h .: "meta") + >>= (withObject "Meta" $ \meta -> + meta .: "maintainers" + >>= mapM (withObject "Maintainer" $ \mt -> mt .: "github")) + pure $ JobMaintainers jobName maintainers --- | Map of email addresses to GitHub handles. --- This is built from the file @../../maintainer-list.nix@. --- --- It has values similar to the following: --- --- @@ --- fromList --- [ ("robert@example.com", "rob22") --- , ("ek@category.com", "edkm") --- ] --- @@ -type EmailToGitHubHandles = Map Text Text - --- | Map of Hydra jobs to maintainer GitHub handles. +-- | Map of maintained Hydra jobs to maintainer GitHub handles. -- -- It has values similar to the following: -- @@ -331,22 +326,16 @@ calculateReverseDependencies depMap = go pkg = IntSet.unions (oneStep:((resultList IntMap.!) <$> IntSet.toList oneStep)) where oneStep = IntMap.findWithDefault mempty pkg oneStepMap --- | Generate a mapping of Hydra job names to maintainer GitHub handles. Calls --- hydra-eval-jobs and the nix script ./maintainer-handles.nix. +-- | Generate a mapping of Hydra job names to maintainer GitHub handles. getMaintainerMap :: IO MaintainerMap -getMaintainerMap = do - hydraJobs :: HydraJobs <- - readJSONProcess hydraEvalCommand hydraEvalParams "Failed to decode hydra-eval-jobs output: " - handlesMap :: EmailToGitHubHandles <- - readJSONProcess nixExprCommand ("maintainers/scripts/haskell/maintainer-handles.nix":nixExprParams) "Failed to decode nix output for lookup of github handles: " - pure $ Map.mapMaybe (splitMaintainersToGitHubHandles handlesMap) hydraJobs - where - -- Split a comma-spearated string of Maintainers into a NonEmpty list of - -- GitHub handles. - splitMaintainersToGitHubHandles - :: EmailToGitHubHandles -> Maintainers -> Maybe (NonEmpty Text) - splitMaintainersToGitHubHandles handlesMap (Maintainers maint) = - nonEmpty . mapMaybe (`Map.lookup` handlesMap) . Text.splitOn ", " $ fromMaybe "" maint +getMaintainerMap = + readJSONLinesProcess nixEvalJobsCommand nixEvalJobsParams + -- we ignore unparseable lines since fromJSON will fail on { "attr": …, "error": … } + -- entries since they don't have a @meta@ attribute. + <&> rights + <&> map (\(JobMaintainers name maintainers) -> (,) name <$> nonEmpty maintainers) + <&> catMaybes + <&> Map.fromList -- | Get the a map of all dependencies of every package by calling the nix -- script ./dependencies.nix. @@ -369,11 +358,23 @@ readJSONProcess -> IO a readJSONProcess exe args err = do output <- readProcess exe args "" - let eitherDecodedOutput = eitherDecodeStrict' . encodeUtf8 . Text.pack $ output + let eitherDecodedOutput = eitherDecodeStrictText . Text.pack $ output case eitherDecodedOutput of Left decodeErr -> error $ err <> decodeErr <> "\nRaw: '" <> take 1000 output <> "'" Right decodedOutput -> pure decodedOutput +-- | Run a process that produces many JSON values, one per line. +-- Error and success is reported per line via a list of 'Either's. +readJSONLinesProcess + :: FromJSON a + => FilePath -- ^ Filename of executable. + -> [String] -- ^ Arguments + -> IO [Either String a] +readJSONLinesProcess exe args = do + output <- readProcess exe args "" + -- TODO: slow, doesn't stream at all + pure . map (eitherDecodeStrictText . Text.pack) . lines $ output + -- BuildStates are sorted by subjective importance/concerningness data BuildState = Failed diff --git a/maintainers/scripts/haskell/maintainer-handles.nix b/maintainers/scripts/haskell/maintainer-handles.nix deleted file mode 100644 index ced93a1233be..000000000000 --- a/maintainers/scripts/haskell/maintainer-handles.nix +++ /dev/null @@ -1,23 +0,0 @@ -# Nix script to lookup maintainer github handles from their email address. Used by ./hydra-report.hs. -# -# This script produces an attr set mapping of email addresses to GitHub handles: -# -# ```nix -# > import ./maintainer-handles.nix -# { "cdep.illabout@gmail.com" = "cdepillabout"; "john@smith.com" = "johnsmith"; ... } -# ``` -# -# This mapping contains all maintainers in ../../mainatainer-list.nix, but it -# ignores maintainers who don't have a GitHub account or an email address. -let - pkgs = import ../../.. { }; - maintainers = import ../../maintainer-list.nix; - inherit (pkgs) lib; - mkMailGithubPair = - _: maintainer: - if (maintainer ? email) && (maintainer ? github) then - { "${maintainer.email}" = maintainer.github; } - else - { }; -in -lib.zipAttrsWith (_: builtins.head) (lib.mapAttrsToList mkMailGithubPair maintainers) diff --git a/maintainers/scripts/haskell/regenerate-hackage-packages.sh b/maintainers/scripts/haskell/regenerate-hackage-packages.sh index 585847094f94..d2c5c25c65f8 100755 --- a/maintainers/scripts/haskell/regenerate-hackage-packages.sh +++ b/maintainers/scripts/haskell/regenerate-hackage-packages.sh @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable git -I nixpkgs=. +#! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable.bin git -I nixpkgs=. set -euo pipefail diff --git a/maintainers/scripts/haskell/update-cabal2nix-unstable.sh b/maintainers/scripts/haskell/update-cabal2nix-unstable.sh index b1061d17e230..a9f3dc588383 100755 --- a/maintainers/scripts/haskell/update-cabal2nix-unstable.sh +++ b/maintainers/scripts/haskell/update-cabal2nix-unstable.sh @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils curl jq gnused haskellPackages.cabal2nix-unstable -I nixpkgs=. +#! nix-shell -i bash -p coreutils curl jq gnused haskellPackages.cabal2nix-unstable.bin nix-prefetch-scripts -I nixpkgs=. # Updates cabal2nix-unstable to the latest master of the nixos/cabal2nix repository. # See regenerate-hackage-packages.sh for details on the purpose of this script. diff --git a/maintainers/scripts/haskell/update-stackage.sh b/maintainers/scripts/haskell/update-stackage.sh index 5a91d3dc9cbc..0889f7e1d9ed 100755 --- a/maintainers/scripts/haskell/update-stackage.sh +++ b/maintainers/scripts/haskell/update-stackage.sh @@ -98,6 +98,7 @@ sed -r \ -e '/ ShellCheck /d' \ -e '/ Agda /d' \ -e '/ stack /d' \ + -e '/ git-annex /d' \ < "${tmpfile_new}" >> $stackage_config # Explanations: # cabal2nix, distribution-nixpkgs, jailbreak-cabal, language-nix: These are our packages and we know what we are doing. diff --git a/pkgs/by-name/ec/echidna/package.nix b/pkgs/by-name/ec/echidna/package.nix index 9d551e510535..1a6376cba4a5 100644 --- a/pkgs/by-name/ec/echidna/package.nix +++ b/pkgs/by-name/ec/echidna/package.nix @@ -3,6 +3,7 @@ stdenv, makeWrapper, haskellPackages, + fetchpatch, fetchFromGitHub, # dependencies slither-analyzer, @@ -10,17 +11,26 @@ haskellPackages.mkDerivation rec { pname = "echidna"; - version = "2.2.6"; + version = "2.2.7"; src = fetchFromGitHub { owner = "crytic"; repo = "echidna"; tag = "v${version}"; - sha256 = "sha256-5nzis7MXOqs0bhx2jrEexjZYZI2qY6D0D7AWO+SPs+A="; + sha256 = "sha256-rDtxyUpWfdMvS5BY1y8nydkQk/eCdmtjCqGJ+I4vy0I="; }; isExecutable = true; + patches = [ + # Fix build with GHC 9.10 + # https://github.com/crytic/echidna/pull/1446 + (fetchpatch { + url = "https://github.com/crytic/echidna/commit/1b498bdb8c86d8297aa34de8f48b6dce2f4dd84d.patch"; + hash = "sha256-JeKPv2Q2gIt1XpI81XPFu80/x8QcOI4k1QN/mTf+bqk="; + }) + ]; + buildTools = with haskellPackages; [ hpack ]; diff --git a/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix b/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix index 94ce06940e98..70ee0c052552 100644 --- a/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix +++ b/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix @@ -13,7 +13,7 @@ stdenvNoCC.mkDerivation rec { src = fetchurl { name = "hledger-check-fancyassertion-${version}.hs"; url = "https://raw.githubusercontent.com/simonmichael/hledger/hledger-lib-${version}/bin/hledger-check-fancyassertions.hs"; - sha256 = "0lyyz8dqkknd9d073l613kdkaqd9r6ymdw94d7mwp17pxvfr17wf"; + hash = "sha256-p1JvPHSB5hkfZsTq1sSL0mxCRkhZu1zkpXTELVNFE64="; }; dontUnpack = true; diff --git a/pkgs/data/misc/hackage/pin.json b/pkgs/data/misc/hackage/pin.json index 07da1f56012e..3f9a293f08ae 100644 --- a/pkgs/data/misc/hackage/pin.json +++ b/pkgs/data/misc/hackage/pin.json @@ -1,6 +1,6 @@ { - "commit": "e184dedb360769d6e8e041e711559185f39ab55c", - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e184dedb360769d6e8e041e711559185f39ab55c.tar.gz", - "sha256": "16qlwrw96lf52yvmmhfl948wpimbnqm9z87j27agcdmigf5icg1s", - "msg": "Update from Hackage at 2025-07-07T21:33:55Z" + "commit": "c074fec58a2c83bfb17c273302005fe2625207f1", + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/c074fec58a2c83bfb17c273302005fe2625207f1.tar.gz", + "sha256": "1my6xrg3m694fr3k5386yx5wqd2j0wdxfx6g3scnh5af0sx2hx0w", + "msg": "Update from Hackage at 2025-09-14T21:34:10Z" } diff --git a/pkgs/development/compilers/ghc/common-hadrian.nix b/pkgs/development/compilers/ghc/common-hadrian.nix index 3d27b85565af..b8064fd4ee79 100644 --- a/pkgs/development/compilers/ghc/common-hadrian.nix +++ b/pkgs/development/compilers/ghc/common-hadrian.nix @@ -66,16 +66,16 @@ enableShared ? with stdenv.targetPlatform; !isWindows && !useiOSPrebuilt && !isStatic && !isGhcjs, # Whether to build terminfo. - # FIXME(@sternenseemann): This actually doesn't influence what hadrian does, - # just what buildInputs etc. looks like. It would be best if we could actually - # tell it what to do like it was possible with make. enableTerminfo ? !( stdenv.targetPlatform.isWindows || stdenv.targetPlatform.isGhcjs - # terminfo can't be built for cross - || (stdenv.buildPlatform != stdenv.hostPlatform) - || (stdenv.hostPlatform != stdenv.targetPlatform) + # Before , + # we couldn't force hadrian to build terminfo for cross. + || ( + lib.versionOlder version "9.15.20250808" + && (stdenv.buildPlatform != stdenv.hostPlatform || stdenv.hostPlatform != stdenv.targetPlatform) + ) ), # Libdw.c only supports x86_64, i686 and s390x as of 2022-08-04 @@ -131,10 +131,12 @@ -- no way to set this via the command line finalStage :: Stage finalStage = ${ - # Always build the stage 2 compiler if possible. - # TODO(@sternensemann): unify condition with make-built GHCs - if stdenv.hostPlatform.canExecute stdenv.targetPlatform then - "Stage2" # native compiler or “native” cross e.g. pkgsStatic + # N. B. hadrian ignores this setting if it doesn't agree it's possible, + # i.e. when its cross-compiling setting is true. So while we could, in theory, + # build Stage2 if hostPlatform.canExecute targetPlatform, hadrian won't play + # ball (with make, Stage2 was built if hostPlatform.system == targetPlatform.system). + if stdenv.hostPlatform == stdenv.targetPlatform then + "Stage2" # native compiler else "Stage1" # cross compiler } diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index eff1902bc83f..2ea294a8b129 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,5 +1,5 @@ import ./common-hadrian.nix { - version = "9.13.20250428"; - rev = "22d11fa818fae2c95c494fc0fac1f8cb4c6e7cb6"; - sha256 = "0f3xc4k662yrlx8abqqrbgvwzr0ffnpiw8z4a47nnai4xk5k0wjl"; + version = "9.15.20250811"; + rev = "c8d76a2994b8620c54adc2069f4728135d6b5059"; + sha256 = "001rf9z5a1v2xpm9qjzz2p966m5bxmqcnykq0xgb3qf40vi9rnh4"; } diff --git a/pkgs/development/haskell-modules/configuration-arm.nix b/pkgs/development/haskell-modules/configuration-arm.nix index 6e3fb04d8ec1..5a4df23a384c 100644 --- a/pkgs/development/haskell-modules/configuration-arm.nix +++ b/pkgs/development/haskell-modules/configuration-arm.nix @@ -53,9 +53,6 @@ self: super: // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 { # AARCH64-SPECIFIC OVERRIDES - # Corrupted store path https://github.com/NixOS/nixpkgs/pull/272097#issuecomment-1848414265 - cachix = triggerRebuild 1 super.cachix; - # Doctests fail on aarch64 due to a GHCi linking bug # https://gitlab.haskell.org/ghc/ghc/-/issues/15275#note_295437 # TODO: figure out if needed on aarch32 as well diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f801088db9ec..6da545b0bc18 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -82,6 +82,22 @@ with haskellLib; } ) ); + Cabal_3_16_0_0 = + overrideCabal + (drv: { + # Revert increased lower bound on unix since we have backported + # the required patch to all GHC bundled versions of unix. + postPatch = drv.postPatch or "" + '' + substituteInPlace Cabal.cabal --replace-fail "unix >= 2.8.6.0" "unix >= 2.6.0.0" + ''; + }) + ( + doDistribute ( + super.Cabal_3_16_0_0.override { + Cabal-syntax = self.Cabal-syntax_3_16_0_0; + } + ) + ); # Needs matching version of Cabal Cabal-hooks = super.Cabal-hooks.override { @@ -100,11 +116,8 @@ with haskellLib; let # !!! Use cself/csuper inside for the actual overrides cabalInstallOverlay = cself: csuper: { - Cabal = cself.Cabal_3_14_2_0; - Cabal-syntax = cself.Cabal-syntax_3_14_2_0; - - # Only needed for cabal2nix, hpack < 0.37 forbids Cabal >= 3.14 - hpack = cself.hpack_0_38_1; + Cabal = cself.Cabal_3_16_0_0; + Cabal-syntax = cself.Cabal-syntax_3_16_0_0; }; in { @@ -145,7 +158,7 @@ with haskellLib; ] ) [ - ./patches/cabal-install-3.14.1.1-lift-unix-bound.patch + ./patches/cabal-install-3.16-lift-unix-bound.patch ]; } // lib.optionalAttrs (pkgs.stdenv.hostPlatform.isDarwin && pkgs.stdenv.hostPlatform.isAarch64) { @@ -169,20 +182,32 @@ with haskellLib; # May as well… (self.generateOptparseApplicativeCompletions [ "guardian" ]) ]; - - cabal2nix-unstable = super.cabal2nix-unstable.overrideScope cabalInstallOverlay; - distribution-nixpkgs-unstable = super.distribution-nixpkgs-unstable.overrideScope cabalInstallOverlay; - hackage-db-unstable = super.hackage-db-unstable.overrideScope cabalInstallOverlay; } ) cabal-install cabal-install-solver guardian - cabal2nix-unstable - distribution-nixpkgs-unstable - hackage-db-unstable ; + # cabal2nix depends on hpack which doesn't support Cabal >= 3.16 + cabal2nix-unstable = super.cabal2nix-unstable.override ( + prev: + # Manually override the relevant dependencies to reduce rebuild amount + let + cabalOverride = { + Cabal = self.Cabal_3_14_2_0; + }; + in + cabalOverride + // lib.mapAttrs (_: drv: drv.override cabalOverride) { + inherit (prev) + distribution-nixpkgs + hackage-db + hpack + ; + } + ); + # Expected test output for these accidentally checks the absolute location of the source directory # https://github.com/dan-t/cabal-cargs/issues/9 cabal-cargs = overrideCabal (drv: { @@ -206,12 +231,17 @@ with haskellLib; ]; }) super.cabal-cargs; - # Extensions wants the latest version of Cabal for its list of Haskell + # Extensions wants a specific version of Cabal for its list of Haskell # language extensions. - # 2025-02-10: jailbreak to allow hspec-hedgehog 0.3.0.0 and hedgehog 1.5 extensions = doJailbreak ( super.extensions.override { - Cabal = if versionOlder self.ghc.version "9.6" then self.Cabal_3_10_3_0 else null; # use GHC bundled version + Cabal = + if versionOlder self.ghc.version "9.10" then + self.Cabal_3_12_1_0 + else + # use GHC bundled version + # N.B. for GHC >= 9.12, extensions needs to be upgraded + null; } ); @@ -219,11 +249,22 @@ with haskellLib; ### HASKELL-LANGUAGE-SERVER SECTION ### ####################################### - # All jailbreaks in this section due to: https://github.com/haskell/haskell-language-server/pull/4316#discussion_r1667684895 - haskell-language-server = - lib.pipe - (super.haskell-language-server.overrideScope ( - lself: lsuper: { + inherit + ( + let + hls_overlay = lself: lsuper: { + # For fourmolu 0.18 and ormolu 0.7.7 + Cabal-syntax = lself.Cabal-syntax_3_14_2_0; + Cabal = lself.Cabal_3_14_2_0; + # Jailbreaking cabal-install-parsers to make it pick Cabal 3.14 instead of 3.12. + cabal-install-parsers = doJailbreak lsuper.cabal-install-parsers; + # hls 2.11 needs older cabal-add than in stackage. Also copying over test fix override from configuration-nix.nix + cabal-add = overrideCabal (drv: { + # tests depend on executable + preCheck = ''export PATH="$PWD/dist/build/cabal-add:$PATH"''; + }) lself.cabal-add_0_1; + # Need a newer version of extensions to be compatible with the newer Cabal + extensions = doJailbreak lself.extensions_0_1_0_3; # For most ghc versions, we overrideScope Cabal in the configuration-ghc-???.nix, # because some packages, like ormolu, need a newer Cabal version. # ghc-paths is special because it depends on Cabal for building @@ -234,17 +275,29 @@ with haskellLib; # otherwise we have different versions of ghc-paths # around which have the same abi-hash, which can lead to confusions and conflicts. ghc-paths = lsuper.ghc-paths.override { Cabal = null; }; + }; + in + lib.mapAttrs (_: pkg: pkg.overrideScope hls_overlay) ( + super + // { + # HLS 2.11: Too strict bound on Diff 1.0. + haskell-language-server = dontCheck (doJailbreak super.haskell-language-server); } - )) - [ - dontCheck - ]; + ) + ) + fourmolu + ormolu + haskell-language-server + ; # For -f-auto see cabal.project in haskell-language-server. ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser ( disableCabalFlag "auto" super.ghc-lib-parser-ex ); + hls-plugin-api = doJailbreak super.hls-plugin-api; # HLS 2.11: Too strict bound on Diff 1.0. + ghcide = doJailbreak super.ghcide; # HLS 2.11: Too strict bound on Diff 1.0. + ########################################### ### END HASKELL-LANGUAGE-SERVER SECTION ### ########################################### @@ -265,16 +318,14 @@ with haskellLib; "vector-tests-O0" "vector-tests-O2" ]; + # Ironically, we still need to build the doctest suite. + # vector-0.13.2.0 has a doctest < 0.24 constraint + jailbreak = true; }) super.vector; # https://github.com/lspitzner/data-tree-print/issues/4 data-tree-print = doJailbreak super.data-tree-print; - # jacinda needs latest version of alex and happy - jacinda = super.jacinda.override { - happy = self.happy_2_1_5; - }; - # Test suite hangs on 32bit. Unclear if this is a bug or not, but if so, then # it has been present in past versions as well. # https://github.com/haskell-unordered-containers/unordered-containers/issues/491 @@ -306,17 +357,24 @@ with haskellLib; # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149 orbits = dontCheck super.orbits; + # 2025-09-20: Restrictive upper bound on hashable. + # https://github.com/softwarefactory-project/matrix-client-haskell/issues/46 + matrix-client = doJailbreak super.matrix-client; + # 2025-02-10: Too strict bounds on tasty-quickcheck < 0.11 tasty-discover = doJailbreak super.tasty-discover; # 2025-02-10: Too strict bounds on tasty < 1.5 tasty-hunit-compat = doJailbreak super.tasty-hunit-compat; - # Out of date test data: https://github.com/ocharles/weeder/issues/176 - weeder = appendPatch (pkgs.fetchpatch { - name = "weeder-2.9.0-test-fix-expected.patch"; - url = "https://github.com/ocharles/weeder/commit/56028d0c80fe89d4f2ae25275aedb72714fec7da.patch"; - sha256 = "10zkvclyir3zf21v41zdsvg68vrkq89n64kv9k54742am2i4aygf"; + # Expected failures are fixed as of GHC-9.10, + # but the tests haven't been updated yet. + # https://github.com/ocharles/weeder/issues/198 + weeder = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "-p" + "!/wrong/" + ]; }) super.weeder; # Test suite doesn't find necessary test files when compiling @@ -369,6 +427,18 @@ with haskellLib; }; }) super.leveldb-haskell; + # 2025-08-08: Allow inspection-testing >= 0.6 in fused-effects' test-suite + # https://github.com/fused-effects/fused-effects/pull/466 + fused-effects = doJailbreak super.fused-effects; + + # 2025-08-08: Allow QuickCheck >= 2.15 in selective's test-suite + # https://github.com/snowleopard/selective/pull/81 + selective = doJailbreak super.selective; + + # 2025-09-03: Allow QuickCheck >= 2.15 + # https://github.com/sw17ch/data-clist/pull/28 + data-clist = doJailbreak super.data-clist; + # 2024-06-23: Hourglass is archived and had its last commit 6 years ago. # Patch is needed to add support for time 1.10, which is only used in the tests # https://github.com/vincenthz/hs-hourglass/pull/56 @@ -425,6 +495,11 @@ with haskellLib; # 2025-02-10: Too strict bounds on bytestring < 0.12 ghc-debug-common = doJailbreak super.ghc-debug-common; + ghc-debug-client = lib.pipe super.ghc-debug-client [ + (warnAfterVersion "0.7.0.0") + # 2025-09-18: Too strict bounds on containers < 0.7 + doJailbreak + ]; # https://github.com/agrafix/superbuffer/issues/4 # Too strict bounds on bytestring < 0.12 @@ -435,7 +510,12 @@ with haskellLib; attoparsec-varword = doJailbreak (dontCheck super.attoparsec-varword); # These packages (and their reverse deps) cannot be built with profiling enabled. - ghc-heap-view = disableLibraryProfiling super.ghc-heap-view; + ghc-heap-view = lib.pipe super.ghc-heap-view [ + disableLibraryProfiling + (warnAfterVersion "0.6.4.1") + # 2025-09-18: Too strict bounds on base < 4.20 + doJailbreak + ]; ghc-datasize = disableLibraryProfiling super.ghc-datasize; ghc-vis = disableLibraryProfiling super.ghc-vis; @@ -457,29 +537,31 @@ with haskellLib; jpeg-turbo = dontCheck super.jpeg-turbo; JuicyPixels-jpeg-turbo = dontCheck super.JuicyPixels-jpeg-turbo; - # Fixes compilation for basement on i686 for GHC >= 9.4 + # Fixes compilation for basement on i686 # https://github.com/haskell-foundation/foundation/pull/573 - # Patch would not work for GHC >= 9.2 where it breaks compilation on x86_64 + # Don't apply patch for GHC == 9.2.* on 64bit where it breaks compilation: # https://github.com/haskell-foundation/foundation/pull/573#issuecomment-1669468867 - # TODO(@sternenseemann): make unconditional - basement = appendPatches (lib.optionals pkgs.stdenv.hostPlatform.is32bit [ - (fetchpatch { - name = "basement-i686-ghc-9.4.patch"; - url = "https://github.com/haskell-foundation/foundation/pull/573/commits/38be2c93acb6f459d24ed6c626981c35ccf44095.patch"; - sha256 = "17kz8glfim29vyhj8idw8bdh3id5sl9zaq18zzih3schfvyjppj7"; - stripLen = 1; - }) - ]) super.basement; + basement = appendPatches (lib.optionals + (pkgs.stdenv.hostPlatform.is32bit || lib.versions.majorMinor self.ghc.version != "9.2") + [ + (fetchpatch { + name = "basement-i686-ghc-9.4.patch"; + url = "https://github.com/haskell-foundation/foundation/pull/573/commits/38be2c93acb6f459d24ed6c626981c35ccf44095.patch"; + sha256 = "17kz8glfim29vyhj8idw8bdh3id5sl9zaq18zzih3schfvyjppj7"; + stripLen = 1; + }) + ] + ) super.basement; # Fixes compilation of memory with GHC >= 9.4 on 32bit platforms # https://github.com/vincenthz/hs-memory/pull/99 - memory = appendPatches (lib.optionals pkgs.stdenv.hostPlatform.is32bit [ + memory = appendPatches [ (fetchpatch { name = "memory-i686-ghc-9.4.patch"; url = "https://github.com/vincenthz/hs-memory/pull/99/commits/2738929ce15b4c8704bbbac24a08539b5d4bf30e.patch"; sha256 = "196rj83iq2k249132xsyhbbl81qi1j23h9pa6mmk6zvxpcf63yfw"; }) - ]) super.memory; + ] super.memory; # Depends on outdated deps hedgehog < 1.4, doctest < 0.12 for tests # As well as deepseq < 1.5 (so it forbids GHC 9.8) @@ -507,8 +589,27 @@ with haskellLib; url = "https://github.com/jgm/gitit/commit/efaee62bc32c558e618ad34458fa2ef85cb8eb1e.patch"; sha256 = "1ghky3afnib56w102mh09cz2alfyq743164mnjywwfl6a6yl6i5h"; }) + (pkgs.fetchpatch { + name = "gitit-pandoc-3.7.patch"; + url = "https://github.com/jgm/gitit/commit/211631ffdd8b520f368220e5cfbd8d64a28b43b6.patch"; + hash = "sha256-eVjwiGNfEKmeamsUfTNCxJm7OJ7N9xuYHfFllwtwRi0="; + }) + (pkgs.fetchpatch { + name = "gitit-xml-conduit-1.10.patch"; + url = "https://github.com/jgm/gitit/commit/88d1a91795e08ea573d50f4f24e2e1c5d6da5002.patch"; + hash = "sha256-LrP51+Uxp1VPKrDkIhVlm3kSAnYkodiENtLbWHxV3B4="; + }) ] super.gitit; + # Cut off infinite recursion via test suites: + # + # tasty-quickcheck-0.11.1 (test) -> regex-tdfa-1.3.2.4 (test) -> doctest-parallel-0.4 + # -> ghc-exactprint-1.10.0.0 -> extra-1.8 -> quickcheck-instances-0.3.33 (test) + # -> uuid-types-1.0.6 (test) -> tasty-quickcheck-0.11.1 + # + # tasty-quickcheck is probably the least risky test suite to disable. + tasty-quickcheck = dontCheck super.tasty-quickcheck; + # https://github.com/schuelermine/ret/issues/3 ret = doJailbreak super.ret; # base < 4.19 @@ -527,6 +628,14 @@ with haskellLib; ''; } super.containers-unicode-symbols; + # 2025-09-03: support text 2.1.1 + hs-opentelemetry-api = appendPatch (pkgs.fetchpatch2 { + name = "fix-building-with-the-latest-text-and-persistent-releases.patch"; + url = "https://github.com/iand675/hs-opentelemetry/commit/ee8a6dad7db306eb67748ddcd77df4974ad8259e.patch"; + hash = "sha256-CdDrEdm5rCKydTxk42dcURZWcVukgHG+7kfOLiNxhoI="; + relative = "api"; + }) super.hs-opentelemetry-api; + # Test file not included on hackage numerals-base = dontCheck (doJailbreak super.numerals-base); @@ -552,7 +661,7 @@ with haskellLib; name = "git-annex-${super.git-annex.version}-src"; url = "git://git-annex.branchable.com/"; rev = "refs/tags/" + super.git-annex.version; - sha256 = "sha256-whpBFmOHBTm1clXoAwInsQw7mnxrQOyaUj7byogku5c="; + sha256 = "sha256-s3EleptCwmVxHjAcPDe40Ch+fULFqf+6H1pLjXNFZ1Y="; # delete android and Android directories which cause issues on # darwin (case insensitive directory). Since we don't need them # during the build process, we can delete it to prevent a hash @@ -567,16 +676,6 @@ with haskellLib; # TODO(@sternenseemann): submit upstreamable patch resolving this # (this should be possible by also taking PREFIX into account). ./patches/git-annex-no-usr-prefix.patch - # https://git-annex.branchable.com/bugs/flaky_test_failure_add_dup/ - (pkgs.fetchpatch { - name = "git-annex-workaround-for-git-2.50_bis.patch"; - url = "https://git.joeyh.name/index.cgi/git-annex.git/patch/?id=cf449837ea9ab7687d8a157f21cad31ddf5bbfb6"; - sha256 = "sha256-HmNJ85dLht5Hy85AUkjACnET9YLPP2MshYHsApUax+I="; - excludes = [ - "doc/**" - "CHANGELOG" - ]; - }) ]; postPatch = '' @@ -612,12 +711,30 @@ with haskellLib; # https://github.com/awakesecurity/nix-graph/issues/5 nix-graph = doJailbreak super.nix-graph; + # Allow inspection-testing >= 0.6 in test suite + algebraic-graphs = + appendPatch + (pkgs.fetchpatch2 { + name = "algebraic-graphs-0.7-allow-inspection-testing-0.6.patch"; + url = "https://github.com/snowleopard/alga/commit/d4e43fb42db05413459fb2df493361d5a666588a.patch"; + hash = "sha256-feGEuALVJ0Zl8zJPIfgEFry9eH/MxA0Aw7zlDq0PC/s="; + }) + ( + overrideCabal (drv: { + prePatch = '' + ${drv.prePatch or ""} + ${lib.getExe' pkgs.buildPackages.dos2unix "dos2unix"} *.cabal + ''; + }) super.algebraic-graphs + ); + # Too strict bounds on hspec # https://github.com/illia-shkroba/pfile/issues/2 pfile = doJailbreak super.pfile; # Manually maintained cachix-api = overrideCabal (drv: { + # FIXME: should use overrideSrc version = "1.7.9"; src = pkgs.fetchFromGitHub { owner = "cachix"; @@ -630,6 +747,7 @@ with haskellLib; cachix = ( overrideCabal (drv: { + # FIXME: should use overrideSrc version = "1.7.9"; src = pkgs.fetchFromGitHub { owner = "cachix"; @@ -638,17 +756,16 @@ with haskellLib; hash = "sha256-R0W7uAg+BLoHjMRMQ8+oiSbTq8nkGz5RDpQ+ZfxxP3A="; }; postUnpack = "sourceRoot=$sourceRoot/cachix"; + # Fix ambiguous 'show' reference: https://github.com/cachix/cachix/pull/704 + postPatch = '' + sed -i 's/<> show i/<> Protolude.show i/' src/Cachix/Client/NixVersion.hs + ''; }) ( - lib.pipe - (super.cachix.override { - nix = self.hercules-ci-cnix-store.nixPackage; - }) - [ - (addBuildTool self.hercules-ci-cnix-store.nixPackage) - (addBuildTool pkgs.buildPackages.pkg-config) - (addBuildDepend self.hnix-store-nar) - ] + super.cachix.override { + nix = self.hercules-ci-cnix-store.nixPackage; + hnix-store-core = self.hnix-store-core_0_8_0_0; + } ) ); @@ -673,6 +790,13 @@ with haskellLib; # https://github.com/froozen/kademlia/issues/2 kademlia = dontCheck super.kademlia; + # 2025-09-03: jailbreak for base 4.20 and hashable 1.5 + # https://github.com/typeclasses/ascii-case/pulls/1 + ascii-case = lib.pipe super.ascii-case [ + (warnAfterVersion "1.0.1.4") + doJailbreak + ]; + # Tests require older versions of tasty. hzk = dontCheck super.hzk; @@ -772,8 +896,13 @@ with haskellLib; sha256 = "sha256-EAyTVkAqCvJ0lRD0+q/htzBJ8iD5qP47j5i2fKhRrlw="; }) super.xml-picklers; - # 2024-05-18: Upstream tests against a different pandoc version - pandoc-crossref = dontCheck super.pandoc-crossref; + # 2025-08-03: Too strict bounds on open-browser, data-default and containers + # https://github.com/lierdakil/pandoc-crossref/issues/478 + pandoc-crossref = doJailbreak super.pandoc-crossref; + + # Too strict upper bound on data-default-class (< 0.2) + # https://github.com/stackbuilders/dotenv-hs/issues/203 + dotenv = doJailbreak super.dotenv; # 2022-01-29: Tests require package to be in ghc-db. aeson-schemas = dontCheck super.aeson-schemas; @@ -784,32 +913,26 @@ with haskellLib; # https://github.com/alphaHeavy/lzma-conduit/issues/23 lzma-conduit = doJailbreak super.lzma-conduit; - # doctest suite needs adjustment with GHC 9.12 - xml-conduit = appendPatch (pkgs.fetchpatch { - name = "xml-conduit-ghc-9.12.patch"; - url = "https://github.com/snoyberg/xml/commit/73ce67029c61decaa6525536377a15581325fd9e.patch"; - sha256 = "1gvdhwz7f6rw28xqm82h1kx2kwbdvigipfcb0y66520lvd544sm6"; - stripLen = 1; - }) super.xml-conduit; - # 2020-06-05: HACK: does not pass own build suite - `dontCheck` # 2024-01-15: too strict bound on free < 5.2 - hnix = doJailbreak ( - dontCheck ( - super.hnix.override { - # 2023-12-11: Needs older core due to remote - hnix-store-core = self.hnix-store-core_0_6_1_0; - } - ) + hnix = doJailbreak super.hnix; + # 2025-09-13: too strict bound on algebraic-graphs + hnix-store-core = warnAfterVersion "0.6.1.0" (doJailbreak super.hnix-store-core); + + # hnix doesn't support hnix-store-core >= 0.8: https://github.com/haskell-nix/hnix/pull/1112 + hnix-store-core_0_8_0_0 = doDistribute super.hnix-store-core_0_8_0_0; + hnix-store-db = super.hnix-store-db.override { hnix-store-core = self.hnix-store-core_0_8_0_0; }; + hnix-store-json = super.hnix-store-json.override { + hnix-store-core = self.hnix-store-core_0_8_0_0; + }; + hnix-store-readonly = super.hnix-store-readonly.override { + hnix-store-core = self.hnix-store-core_0_8_0_0; + }; + hnix-store-remote_0_7_0_0 = doDistribute ( + super.hnix-store-remote_0_7_0_0.override { hnix-store-core = self.hnix-store-core_0_8_0_0; } ); - - # Too strict bounds on algebraic-graphs - # https://github.com/haskell-nix/hnix-store/issues/180 - hnix-store-core_0_6_1_0 = doJailbreak super.hnix-store-core_0_6_1_0; - - # 2023-12-11: Needs older core - hnix-store-remote = super.hnix-store-remote.override { - hnix-store-core = self.hnix-store-core_0_6_1_0; + hnix-store-tests = super.hnix-store-tests.override { + hnix-store-core = self.hnix-store-core_0_8_0_0; }; # Fails for non-obvious reasons while attempting to use doctest. @@ -845,7 +968,6 @@ with haskellLib; DigitalOcean = dontCheck super.DigitalOcean; directory-layout = dontCheck super.directory-layout; dom-selector = dontCheck super.dom-selector; # http://hydra.cryp.to/build/497670/log/raw - dotenv = dontCheck super.dotenv; # Tests fail because of missing test file on version 0.8.0.2 fixed on version 0.8.0.4 dotfs = dontCheck super.dotfs; # http://hydra.cryp.to/build/498599/log/raw DRBG = dontCheck super.DRBG; # http://hydra.cryp.to/build/498245/nixlog/1/raw ed25519 = dontCheck super.ed25519; @@ -897,13 +1019,6 @@ with haskellLib; katt = dontCheck super.katt; language-slice = dontCheck super.language-slice; - # Bogus lower bound on data-default-class added via Hackage revision - # https://github.com/mrkkrp/req/pull/180#issuecomment-2628201485 - req = overrideCabal { - revision = null; - editedCabalFile = null; - } super.req; - # Group of libraries by same upstream maintainer for interacting with # Telegram messenger. Bit-rotted a bit since 2020. tdlib = appendPatch (fetchpatch { @@ -1012,6 +1127,9 @@ with haskellLib; # https://github.com/pixbi/duplo/issues/25 duplo = doJailbreak super.duplo; + # https://github.com/fgaz/dual/pull/3 + dual-game = doJailbreak super.dual-game; + # https://github.com/evanrinehart/mikmod/issues/1 mikmod = addExtraLibrary pkgs.libmikmod super.mikmod; @@ -1315,6 +1433,14 @@ with haskellLib; postInstall = "rm $out/bin/mkReadme && rmdir $out/bin"; }) super.hastache; + # 2025-09-01: Merged patch from upstream to fix bounds: + optics = appendPatch (fetchpatch { + name = "optics-fix-inspection-testing-bound"; + url = "https://github.com/well-typed/optics/commit/d16b1ac5476c89cc94fb108fe1be268791affca6.patch"; + sha256 = "sha256-w0L/EXSWRQkCkFnvXYel0BNgQQhxn6zATkD3GZS5gz8="; + relative = "optics"; + }) super.optics; + # 2025-02-10: Too strict bounds on text < 2.1 digestive-functors-blaze = doJailbreak super.digestive-functors-blaze; @@ -1654,6 +1780,20 @@ with haskellLib; unmarkBroken ]; + # https://github.com/ghcjs/jsaddle/pull/160/ + jsaddle = appendPatch (fetchpatch { + name = "fix-on-firefox.patch"; + url = "https://github.com/ghcjs/jsaddle/commit/71ef7f0cbc60a380ba0dc299e758c8f90cc4b526.patch"; + relative = "jsaddle"; + sha256 = "sha256-IBOX74r+lyywVWp0ZucoseeevFrGiInkq7V6RoWADNU="; + }) super.jsaddle; + jsaddle-warp = appendPatch (fetchpatch { + name = "fix-on-firefox.patch"; + url = "https://github.com/ghcjs/jsaddle/commit/71ef7f0cbc60a380ba0dc299e758c8f90cc4b526.patch"; + relative = "jsaddle-warp"; + sha256 = "sha256-jYEUOkP4Kv3yBjo3SbN7sruV+T5R5XWbRFcCUAa6HvE="; + }) super.jsaddle-warp; + # https://github.com/ghcjs/jsaddle/issues/151 jsaddle-webkit2gtk = overrideCabal @@ -1733,7 +1873,7 @@ with haskellLib; # Fails with encoding problems, likely needs locale data. # Test can be executed by adding which to testToolDepends and # $PWD/dist/build/haskeline-examples-Test to $PATH. - haskeline_0_8_3_0 = doDistribute (dontCheck super.haskeline_0_8_3_0); + haskeline_0_8_4_0 = doDistribute (dontCheck super.haskeline_0_8_4_0); # Test suite fails to compile https://github.com/agrafix/Spock/issues/177 Spock = dontCheck super.Spock; @@ -1767,6 +1907,30 @@ with haskellLib; # Break infinite recursion via optparse-applicative (alternatively, dontCheck syb) prettyprinter-ansi-terminal = dontCheck super.prettyprinter-ansi-terminal; + # Released version prohibits QuickCheck >= 2.15 at the moment + optparse-applicative = + appendPatches + [ + (pkgs.fetchpatch2 { + name = "optparse-applicative-0.18.1-allow-QuickCheck-2.15.patch"; + url = "https://github.com/pcapriotti/optparse-applicative/commit/2c2a39ed53e6339d8dc717efeb7d44f4c2b69cab.patch"; + hash = "sha256-198TfBUR3ygPpvKPvtH69UmbMmoRagmzr9UURPr6Kj4="; + }) + ] + ( + overrideCabal (drv: { + prePatch = '' + ${drv.prePatch or ""} + ${lib.getExe' pkgs.buildPackages.dos2unix "dos2unix"} *.cabal + ''; + }) super.optparse-applicative + ); + + # chell-quickcheck doesn't work with QuickCheck >= 2.15 with no known fix yet + # https://github.com/typeclasses/chell/issues/5 + system-filepath = dontCheck super.system-filepath; + gnuidn = dontCheck super.gnuidn; + # Tests rely on `Int` being 64-bit: https://github.com/hspec/hspec/issues/431. # Also, we need QuickCheck-2.14.x to build the test suite, which isn't easy in LTS-16.x. # So let's not go there and just disable the tests altogether. @@ -2045,6 +2209,10 @@ with haskellLib; job = dontCheck super.job; scheduler = dontCheck super.scheduler; + # Flaky test suite + # https://github.com/minimapletinytools/linear-tests/issues/1 + linear-tests = dontCheck super.linear-tests; + # 2024-09-18: Make compatible with haskell-gi 0.26.10 # https://github.com/owickstrom/gi-gtk-declarative/pull/118 gi-gtk-declarative = warnAfterVersion "0.7.1" ( @@ -2058,9 +2226,66 @@ with haskellLib; ); gi-gtk-declarative-app-simple = doJailbreak super.gi-gtk-declarative-app-simple; - # FIXME: These should be removed as gi-gtk4/gi-gdk4 become the standard - gi-gtk_4 = self.gi-gtk_4_0_12; - gi-gdk_4 = self.gi-gdk_4_0_10; + # stack-3.7.1 requires Cabal < 3.12 + stack = + if lib.versionOlder self.ghc.version "9.10" then + super.stack + else + lib.pipe + # to reduce rebuilds, don't override Cabal in the entire scope + ((super.stack.override { Cabal = self.Cabal_3_10_3_0; }).overrideScope ( + self: super: + let + downgradeCabal = + drv: + lib.pipe drv [ + # Since Cabal and Cabal-syntax are in the global package db, we can't + # remove them from the available packages. Instead, we pass a constraint. + (appendConfigureFlags [ + "--constraint=Cabal<3.12" + "--constraint=Cabal-syntax<3.12" + ]) + (addBuildDepends [ + self.Cabal-syntax_3_10_3_0 + self.Cabal_3_10_3_0 + ]) + ]; + in + lib.mapAttrs (_: downgradeCabal) { + inherit (super) + hpack + hackage-security + pantry + rio-prettyprint + ; + } + )) + [ + # In order to apply a patch to a file with DOS line endings with GNU patch(1), + # we need to use --binary with a patch that has DOS line endings. + (overrideCabal (drv: { + prePatch = '' + ${drv.prePatch or ""} + patchFlags="--binary -p1" + ''; + })) + (appendPatch ( + pkgs.fetchpatch { + postFetch = '' + sed -e 's/$/\r/' -i "$out" + ''; + # Type equality operator warning and failure with text >= 2.1.2 + # We filter out all Cabal related changes from this patch as Cabal bumps may change the behavior of stack. + name = "stack-ghc-9.10.patch"; + url = "https://github.com/commercialhaskell/stack/commit/6a672dd12f25151707cf45e9823447334728d245.patch"; + hash = "sha256-MVwYIvFwiuBx9r6QUR0dHejmsQxVI6KFoZlujSXYJPM="; + includes = [ + "src/Stack/Prelude.hs" + "src/Stack/Types/CompilerBuild.hs" + ]; + } + )) + ]; # 2023-04-09: haskell-ci needs Cabal-syntax 3.10 # 2024-03-21: pins specific version of ShellCheck @@ -2074,14 +2299,6 @@ with haskellLib; ) ); - stack = super.stack.overrideScope ( - self: super: { - # stack needs to be built with the same hpack version that the upstream releases use. - # https://github.com/NixOS/nixpkgs/issues/223390 - hpack = self.hpack_0_38_1; - } - ); - # ShellCheck < 0.10.0 needs to be adjusted for changes in fgl >= 5.8 # https://github.com/koalaman/shellcheck/issues/2677 ShellCheck_0_9_0 = doJailbreak ( @@ -2135,20 +2352,16 @@ with haskellLib; sha256 = "0l15ccfdys100jf50s9rr4p0d0ikn53bkh7a9qlk9i0y0z5jc6x1"; }) super.basic-cpuid; - # Allow building with language-docker >= 13 (!); waiting for 2.13 release. - hadolint = doJailbreak ( - appendPatches [ - (pkgs.fetchpatch { - name = "hadolint-language-docker-12.patch"; - url = "https://github.com/hadolint/hadolint/commit/593ccde5af13c9b960b3ea815c47ce028a2e8adc.patch"; - sha256 = "07v5c1k8if72j04m017jpsf7gvc5kwyi1q3a532n0zhxqc7w1zjn"; - includes = [ - "**/DL3011.hs" - "**/DL3011Spec.hs" - ]; - }) - ] super.hadolint - ); + # 2025-09-03 jailbreak for base >= 4.20 + # https://github.com/brandonhamilton/ilist/issues/17 + ilist = lib.pipe super.ilist [ + (warnAfterVersion "0.4.0.1") + doJailbreak + ]; + + # 2025-09-18: ilist >=0.3.1 && <0.4, optparse-applicative >=0.19.0 && <0.20 + # https://github.com/hadolint/hadolint/issues/1127 + hadolint = doJailbreak super.hadolint; # Too strict lower bounds on (test) deps # https://github.com/phadej/puresat/issues/6 @@ -2157,24 +2370,14 @@ with haskellLib; # test suite requires stack to run, https://github.com/dino-/photoname/issues/24 photoname = dontCheck super.photoname; - # Upgrade of unordered-containers in Stackage causes ordering-sensitive test to fail - # https://github.com/commercialhaskell/stackage/issues/6366 - # https://github.com/kapralVV/Unique/issues/9 - # Too strict bounds on hashable - # https://github.com/kapralVV/Unique/pull/10 - Unique = warnAfterVersion "0.4.7.9" ( - overrideCabal (drv: { - testFlags = [ - "--skip" - "/Data.List.UniqueUnsorted.removeDuplicates/removeDuplicates: simple test/" - "--skip" - "/Data.List.UniqueUnsorted.repeatedBy,repeated,unique/unique: simple test/" - "--skip" - "/Data.List.UniqueUnsorted.repeatedBy,repeated,unique/repeatedBy: simple test/" - ] - ++ drv.testFlags or [ ]; - }) super.Unique - ); + # Too strict bounds on + # QuickCheck (<2.15): https://github.com/kapralVV/Unique/issues/12 + # hashable (<1.5): https://github.com/kapralVV/Unique/issues/11#issuecomment-3088832168 + Unique = doJailbreak super.Unique; + + # Too strict bound on tasty-quickcheck (<0.11) + # https://github.com/haskell-unordered-containers/hashable/issues/321 + hashable_1_4_7_0 = doDistribute (doJailbreak super.hashable_1_4_7_0); # https://github.com/AndrewRademacher/aeson-casing/issues/8 aeson-casing = warnAfterVersion "0.2.0.0" ( @@ -2304,6 +2507,15 @@ with haskellLib; } super.regex-compat-tdfa ); + darcs = appendPatches [ + # Cabal 3.12 support in Setup.hs + # https://hub.darcs.net/darcs/darcs-reviewed/patch/50d9b0b402a896c83aa7929a50a0e0449838600f + ./patches/darcs-cabal-3.12.patch + # GHC 9.10 patch plus lifted constraints for hashable + # https://hub.darcs.net/darcs/darcs-reviewed/patch/32646b190e019de21a103e950c4eccdd66f7eadc + ./patches/darcs-stackage-lts-23.patch + ] super.darcs; + # 2025-02-11: Too strict bounds on hedgehog < 1.5, hspec-hedgehog < 0.2 validation-selective = doJailbreak super.validation-selective; @@ -2326,6 +2538,27 @@ with haskellLib; } ); + # Pick bound changes from development branch, same commit also adds support for Cabal >= 3.14 + glirc = lib.pipe super.glirc [ + (warnAfterVersion "2.41") + # Revisions only partially (?) include the changes we want + (overrideCabal { + revision = null; + editedCabalFile = null; + }) + (appendPatch ( + pkgs.fetchpatch { + name = "glirc-bounds-plus-cabal-3.14.patch"; + url = "https://github.com/glguy/irc-core/commit/00ab04700e45f6f7f2ffe4ac992ca73505407516.patch"; + hash = "sha256-XX6y3lR/a6ofcpkuqczC2A5IyHsAsRfAB+x4hdKu9+o="; + includes = [ + "glirc.cabal" + "Setup.hs" + ]; + } + )) + ]; + # 2025-02-11: Too strict bounds on base < 4.17 ema = doJailbreak super.ema; @@ -2370,6 +2603,13 @@ with haskellLib; # 2025-01-07: unreleased upstream supports hedgehog 1.5 but drifted quite a bit from hackage revisions so hard to patch hw-hspec-hedgehog = doJailbreak super.hw-hspec-hedgehog; + # 2025-09-03: allow QuickCheck 2.15 + # https://github.com/haskell-works/hw-prim/issues/150 + hw-prim = lib.pipe super.hw-prim [ + (warnAfterVersion "0.6.3.2") + doJailbreak + ]; + # Test suite doesn't support hspec 2.8 # https://github.com/zellige/hs-geojson/issues/29 geojson = dontCheck super.geojson; @@ -2389,11 +2629,15 @@ with haskellLib; }) ] super.hookup; - # Raise version bounds: https://github.com/kosmikus/records-sop/pull/15 - records-sop = appendPatch (fetchpatch { - url = "https://github.com/kosmikus/records-sop/commit/fb149f453a816ff14d0cb20b3ea56b80ff49d9f1.patch"; - sha256 = "sha256-iHiF4EWL/GjJFnr/6aR+yMZKLMLAZK+gsgSxG8YaeDI="; - }) super.records-sop; + basic-sop = appendPatch (fetchpatch { + # https://github.com/well-typed/basic-sop/pull/13 + name = "increase-upper-bounds.patch"; + url = "https://github.com/well-typed/basic-sop/commit/f1873487dd3e3955a82d6d9f37a6b164be36851f.patch"; + sha256 = "sha256-uBH+LmiSO91diVe4uX75/DdWT2wuyqEL+XUlSHnJk5k="; + }) super.basic-sop; + + # Unmaintained + records-sop = doJailbreak super.records-sop; # Fix build failures for ghc 9 (https://github.com/mokus0/polynomial/pull/20) polynomial = @@ -2441,35 +2685,8 @@ with haskellLib; }) ] super.krank; - hermes-json = overrideCabal (drv: { - # 2025-02-11: Upper bounds on hedgehog < 1.5 too strict. - jailbreak = true; - - # vendored simdjson breaks with clang-19. apply patches that work with - # a more recent simdjson so we can un-vendor it - patches = drv.patches or [ ] ++ [ - (fetchpatch { - url = "https://github.com/velveteer/hermes/commit/6fd9904d93a5c001aadb27c114345a6958904d71.patch"; - hash = "sha256-Pv09XP0/VjUiAFp237Adj06PIZU21mQRh7guTlKksvA="; - excludes = [ - ".github/*" - "hermes-bench/*" - ]; - }) - (fetchpatch { - url = "https://github.com/velveteer/hermes/commit/ca8dddbf52f9d7788460a056fefeb241bcd09190.patch"; - hash = "sha256-tDDGS0QZ3YWe7+SP09wnxx6lIWL986ce5Zhqr7F2sBk="; - excludes = [ - "README.md" - ".github/*" - "hermes-bench/*" - ]; - }) - ]; - postPatch = drv.postPatch or "" + '' - ln -fs ${pkgs.simdjson.src} simdjson - ''; - }) super.hermes-json; + # 2025-08-06: Upper bounds on containers <0.7 and hedgehog < 1.5 too strict. + hermes-json = doJailbreak super.hermes-json; # hexstring is not compatible with newer versions of base16-bytestring # See https://github.com/solatis/haskell-hexstring/issues/3 @@ -2575,27 +2792,38 @@ with haskellLib; # Overly strict bounds on tasty-quickcheck (test suite) (< 0.11) hashable = doJailbreak super.hashable; + cborg = lib.pipe super.cborg [ - # Fix build on 32-bit: https://github.com/well-typed/cborg/pull/322 - (appendPatches ( - lib.optionals pkgs.stdenv.hostPlatform.is32bit [ - (pkgs.fetchpatch { - name = "cborg-i686-1.patch"; - url = "https://github.com/well-typed/cborg/commit/a4757c46219afe6d235652ae642786f2e2977020.patch"; - sha256 = "01n0x2l605x7in9hriz9asmzsfb5f8d6zkwgypckfj1r18qbs2hj"; - includes = [ "**/Codec/CBOR/**" ]; - stripLen = 1; - }) - (pkgs.fetchpatch { - name = "cborg-i686-2.patch"; - url = "https://github.com/well-typed/cborg/commit/94a856e4e544a5bc7f927cfb728de385d6260af4.patch"; - sha256 = "03iz85gsll38q5bl3m024iv7yb1k5sisly7jvgf66zic8fbvkhcn"; - includes = [ "**/Codec/CBOR/**" ]; - stripLen = 1; - }) - ] - )) + (appendPatches [ + # This patch changes CPP macros form gating on the version of ghc-prim to base + # since that's where the definitions are imported from. The source commit + # also changes the cabal file metadata which we filter out since we are + # only interested in this change as a dependency of cborg-i686-support-upstream.patch. + (pkgs.fetchpatch { + name = "cborg-no-gate-on-ghc-prim-version.patch"; + url = "https://github.com/well-typed/cborg/commit/a33f94f616f5047e45608a34ca16bfb1304ceaa1.patch"; + hash = "sha256-30j4Dksh2nnLKAcUF5XJw3Z/UjfV3F+JFnHeXSUs9Rk="; + includes = [ "**/Codec/CBOR/**" ]; + stripLen = 1; + }) + # Fixes compilation on 32-bit platforms. Unreleased patch committed to the + # upstream master branch: https://github.com/well-typed/cborg/pull/351 + (pkgs.fetchpatch { + name = "cborg-i686-support-upstream.patch"; + url = "https://github.com/well-typed/cborg/commit/ecc1360dcf9e9ee27d08de5206b844e075c88ca4.patch"; + hash = "sha256-9m2FlG6ziRxA1Dy22mErBaIjiZHa1dqtkbmFnMMFrTI="; + stripLen = 1; + }) + ]) + # Make sure patches to cborg.cabal apply + (overrideCabal (drv: { + prePatch = '' + ${drv.prePatch or ""} + ${lib.getExe' pkgs.buildPackages.dos2unix "dos2unix"} *.cabal + ''; + })) ]; + # Doesn't compile with tasty-quickcheck == 0.11 (see issue above) serialise = dontCheck super.serialise; # https://github.com/Bodigrim/data-array-byte/issues/1 @@ -2612,19 +2840,6 @@ with haskellLib; # https://github.com/phadej/aeson-extra/issues/62 aeson-extra = doJailbreak super.aeson-extra; - # Support tasty-quickcheck 0.11: https://github.com/Bodigrim/mod/pull/26 - mod = appendPatch (fetchpatch { - url = "https://github.com/Bodigrim/mod/commit/30596fb9d85b69ec23ecb05ef9a7c91d67901cfd.patch"; - sha256 = "sha256-9XuzIxEbepaw5bRoIOUka8fkiZBfturIybh/9nhGmWQ="; - }) super.mod; - - # Fixes build of test suite: not yet released - primitive-unlifted = appendPatch (fetchpatch { - url = "https://github.com/haskell-primitive/primitive-unlifted/commit/26922952ef20c4771d857f3e96c9e710cb3c2df9.patch"; - sha256 = "0h9xxrv78spqi93l9206398gmsliaz0w6xy37nrvx3daqr1y4big"; - excludes = [ "*.cabal" ]; - }) super.primitive-unlifted; - # composite-aeson <0.8, composite-base <0.8 compdoc = doJailbreak super.compdoc; @@ -2652,36 +2867,35 @@ with haskellLib; # Test failure https://gitlab.com/lysxia/ap-normalize/-/issues/2 ap-normalize = dontCheck super.ap-normalize; + # Fixes test that checks error messages which is sensitive to GHC/Cabal version changes + heist = appendPatches [ + (pkgs.fetchpatch { + name = "heist-fix-ghc-errorr-message-test.patch"; + url = "https://github.com/snapframework/heist/commit/9c8c963021608f09e93d486e5339e45073c757bc.patch"; + sha256 = "sha256-lenMCb6o0aAJ8D450JB76cZ49o+LVl2UO9hhAZYPacI="; + }) + ] super.heist; + heist-extra = doJailbreak super.heist-extra; # base <4.18.0.0.0 unionmount = doJailbreak super.unionmount; # base <4.18 tailwind = doJailbreak super.tailwind; # base <=4.17.0.0 commonmark-wikilink = doJailbreak super.commonmark-wikilink; # base <4.18.0.0.0 - # 2024-03-02: Apply unreleased changes necessary for compatibility - # with commonmark-extensions-0.2.5.3. - commonmark-simple = warnAfterVersion "0.1.0.0" ( - appendPatches (map - ( - { rev, hash }: - fetchpatch { - name = "commonmark-simple-${lib.substring 0 7 rev}.patch"; - url = "https://github.com/srid/commonmark-simple/commit/${rev}.patch"; - includes = [ "src/Commonmark/Simple.hs" ]; - inherit hash; - } - ) - [ - { - rev = "71f5807ed4cbd8da915bf5ba04cd115b49980bcb"; - hash = "sha256-ibDQbyTd2BoA0V+ldMOr4XYurnqk1nWzbJ15tKizHrM="; - } - { - rev = "fc106c94f781f6a35ef66900880edc08cbe3b034"; - hash = "sha256-9cpgRNFWhpSuSttAvnwPiLmi1sIoDSYbp0sMwcKWgDQ="; - } - ] - ) (doJailbreak super.commonmark-simple) - ); + # 2025-09-03: Disable tests until this is solved: + # https://github.com/clash-lang/ghc-typelits-extra/issues/60 + ghc-typelits-extra = lib.pipe super.ghc-typelits-extra [ + (warnAfterVersion "0.4.8") + dontCheck + ]; + + # 2025-09-16: 0.5 adds support for GHC 9.12 and doesn't actually seem to contain a + # breaking change, so we can upgrade beyond Stackage. + # https://github.com/clash-lang/ghc-tcplugins-extra/pull/29#issuecomment-3299008674 + # https://github.com/clash-lang/ghc-tcplugins-extra/compare/702dda2095c66c4f5148a749c8b7dbcc8a09f5c...v0.5.0 + ghc-tcplugins-extra = doDistribute self.ghc-tcplugins-extra_0_5; + # 2025-09-11: Tests have been fixed in 0.7.12, but it requests ghc-tcplugins-extra >= 0.5 + # which Stackage LTS won't update to, but we can. + ghc-typelits-natnormalise = doDistribute self.ghc-typelits-natnormalise_0_7_12; # Test files missing from sdist # https://github.com/tweag/webauthn/issues/166 @@ -2719,6 +2933,8 @@ with haskellLib; hasql-notifications = dontCheck super.hasql-notifications_0_2_2_2; hasql-pool = dontCheck super.hasql-pool_1_0_1; hasql-transaction = dontCheck super.hasql-transaction_1_1_0_1; + text-builder = super.text-builder_0_6_10; + text-builder-dev = super.text-builder-dev_0_3_10; } )) [ @@ -2736,12 +2952,12 @@ with haskellLib; doJailbreak # 2022-12-02: Hackage release lags behind actual releases: https://github.com/PostgREST/postgrest/issues/2275 (overrideSrc rec { - version = "13.0.4"; + version = "13.0.7"; src = pkgs.fetchFromGitHub { owner = "PostgREST"; repo = "postgrest"; rev = "v${version}"; - hash = "sha256-Y9Nxfs2w3Iinx61Om7dd+R8TTsK12oWD+3vki3WUz9Y="; + hash = "sha256-5bWemChm2MpogtGuiBuuep4lhRBhnKOOeBqm+Sqcgl4="; }; }) ]; @@ -2805,9 +3021,6 @@ with haskellLib; libraryToolDepends = (drv.libraryToolDepends or [ ]) ++ [ pkgs.buildPackages.git ]; }) super.kmonad; - # 2024-03-17: broken - vaultenv = dontDistribute super.vaultenv; - # 2024-01-24: support optparse-applicative 0.18 niv = appendPatches [ (fetchpatch { @@ -2826,11 +3039,12 @@ with haskellLib; # 2024-03-25: HSH broken because of the unix-2.8.0.0 breaking change HSH = appendPatches [ ./patches/HSH-unix-openFd.patch ] super.HSH; - # Support unix < 2.8 to build in older ghc than 9.6 - linux-namespaces = appendPatch (fetchpatch { - url = "https://github.com/redneb/hs-linux-namespaces/commit/f4a3546541bb6c7172fdd03e177a961da60e3951.patch"; - sha256 = "sha256-6Qv7NWIbzR3ktMGFogw5597bIqPH7Z4hoFvvBQAoquY="; - }) super.linux-namespaces; + # 2025-09-03: allow base 4.20 + # https://github.com/phadej/aeson-optics/issues/20 + aeson-optics = lib.pipe super.aeson-optics [ + (warnAfterVersion "1.2.1") + doJailbreak + ]; # Use recent git version as the hackage version is outdated and not building on recent GHC versions haskell-to-elm = overrideSrc { @@ -2877,11 +3091,45 @@ with haskellLib; + (drv.postPatch or ""); }) (doJailbreak (addExtraLibrary pkgs.pkg-config (addExtraLibrary pkgs.poppler super.pdftotext))); - proto3-wire = appendPatch (fetchpatch { - # https://github.com/awakesecurity/proto3-wire/pull/109 - url = "https://github.com/awakesecurity/proto3-wire/commit/b32f3db6f8d36ea0708fb2f371f62d439ea45b42.patch"; - hash = "sha256-EGFyk3XawU0+zk299WGwFKB2uW9eJrCDM6NgfIKWgRY="; - }) super.proto3-wire; + # QuickCheck <2.15 + # https://github.com/google/proto-lens/issues/403 + proto-lens-arbitrary = doJailbreak super.proto-lens-arbitrary; + + proto3-wire = appendPatches [ + (fetchpatch { + # https://github.com/awakesecurity/proto3-wire/pull/109 + name = "bump-outdated-bounds.patch"; + url = "https://github.com/awakesecurity/proto3-wire/commit/b32f3db6f8d36ea0708fb2f371f62d439ea45b42.patch"; + hash = "sha256-EGFyk3XawU0+zk299WGwFKB2uW9eJrCDM6NgfIKWgRY="; + }) + (fetchpatch { + # https://github.com/awakesecurity/proto3-wire/pull/110 + name = "support-GHC-9.10.patch"; + url = "https://github.com/awakesecurity/proto3-wire/commit/6fdf0eb93b2028ade0e3e011ce8429c94546839e.patch"; + hash = "sha256-jK0ztjuhM7qRH5T7xo75aX7wqmZFymOgWDx6UrlcqWQ="; + includes = [ + "*.cabal" + "*.hs" + ]; + }) + (fetchpatch { + # https://github.com/awakesecurity/proto3-wire/pull/108 + name = "add-reverse-encoders-for-packed-repeated-fields.patch"; + url = "https://github.com/awakesecurity/proto3-wire/commit/d4376fb6f1c1ac03ee8ec5c5793700ca6508ea70.patch"; + hash = "sha256-vtEYg/jLoTn1YRVhQJi6kyta+U4XiWeS7i1ZSN7BYf8="; + includes = [ + "**.cabal" + "*.hs" + ]; + }) + (fetchpatch { + # https://github.com/awakesecurity/proto3-wire/pull/111 + name = "support-LTS-24.patch"; + url = "https://github.com/awakesecurity/proto3-wire/commit/35fd88c4daf6643135db6da9ab6ed6d6f33eb3de.patch"; + hash = "sha256-GzXlweRshVLA29xVHhJSRIU40y+KtAplIqfvp0I8cY0="; + }) + + ] super.proto3-wire; # 2024-07-27: building test component requires non-trivial custom build steps # https://github.com/awakesecurity/proto3-suite/blob/bec9d40e2767143deed5b2d451197191f1d8c7d5/nix/overlays/haskell-packages.nix#L311 @@ -2927,21 +3175,17 @@ with haskellLib; }) ] (doJailbreak super.http2-client); + # doctests are failing https://github.com/alpmestan/taggy-lens/issues/8 + taggy-lens = dontCheck super.taggy-lens; + # https://github.com/snoyberg/http-client/pull/563 http-client-tls = doJailbreak super.http-client-tls; - # agda2hs 1.3 is not compatible with Agda 2.8.0 - agda2hs = lib.pipe super.agda2hs [ - (warnAfterVersion "1.3") - (overrideSrc { - version = "1.3-unstable-2025-07-25"; - src = pkgs.fetchFromGitHub { - owner = "agda"; - repo = "agda2hs"; - rev = "01cc0532b522f64223782617cbde1a6f21b8880e"; - hash = "sha256-SXhnkZa8OmgpYRTb2IVTfebtX+GG5mkVcqKchl2Noic="; - }; - }) + # 2025-09-03: allow bytestring 0.12 + # https://github.com/wangbj/hashing/issues/4 + hashing = lib.pipe super.hashing [ + (warnAfterVersion "0.1.1.0") + doJailbreak ]; bsb-http-chunked = lib.pipe super.bsb-http-chunked [ @@ -2967,39 +3211,12 @@ with haskellLib; # jailbreak to allow deepseq >= 1.5, https://github.com/jumper149/blucontrol/issues/3 blucontrol = doJailbreak super.blucontrol; - # Needs to match pandoc, see: - # https://github.com/jgm/pandoc/commit/97b36ecb7703b434ed4325cc128402a9eb32418d - commonmark-pandoc = doDistribute self.commonmark-pandoc_0_2_2_3; - - pandoc = lib.pipe super.pandoc [ - dontCheck # test errors in "jats-writer" possibly fixed in newer release - # Test output changes with newer version of texmath - (appendPatch (fetchpatch { - name = "jats:update-for-texmath"; - url = "https://github.com/jgm/pandoc/commit/e2a0cc9ddaf9e7d35cbd3c76f37e39737a79c2bf.patch"; - sha256 = "sha256-qA9mfYS/VhWwYbB9yu7wbHwozz3cqequ361PxkbAt08="; - includes = [ "test/*" ]; - })) - (appendPatch (fetchpatch { - name = "jats:update-for-mathml"; - url = "https://github.com/jgm/pandoc/commit/4ba0bac5c118da4da1d44e3bbb38d7c7aef19e3b.patch"; - sha256 = "sha256-ayRKeCqYKgZVA826xgAXxGhttm0Gx4ZrIRJlFlXPKhw="; - })) - (appendPatch (fetchpatch { - name = "jats:use-texmath-0.12.10.1"; - url = "https://github.com/jgm/pandoc/commit/d3d5366e5197330e035f9f1700929c9b5a24d532.patch"; - sha256 = "sha256-skG7LbKl4ypVnEYA9xMtDbUmHrjuXWfuchV8iMn8Yy0="; - includes = [ "test/*" ]; - })) - ]; - HList = lib.pipe super.HList [ # Fixes syntax error in tests (appendPatch (fetchpatch { url = "https://bitbucket.org/HList/hlist/commits/e688f11d7432c812c2b238464401a86f588f81e1/raw"; sha256 = "sha256-XIBIrR2MFmhKaocZJ4p57CgmAaFmMU5Z5a0rk2CjIcM="; })) - ]; # 2025-04-09: jailbreak to allow hedgehog >= 1.5 @@ -3008,9 +3225,19 @@ with haskellLib; # 2025-04-09: jailbreak to allow tasty-quickcheck >= 0.11 chimera = warnAfterVersion "0.4.1.0" (doJailbreak super.chimera); + # 2025-09-03: allow QuickCheck 2.15, containers 0.7, filepath 1.5, witch 1.3 + hevm = lib.pipe super.hevm [ + (warnAfterVersion "0.55.1") + doJailbreak + ]; + # 2025-04-09: jailbreak to allow tasty-quickcheck >= 0.11 bzlib = warnAfterVersion "0.5.2.0" (doJailbreak super.bzlib); + # 2025-07-29: test suite "test" fails to build because of missing source files, + # fixed by https://github.com/commercialhaskell/path/pull/193 + path = warnAfterVersion "0.9.6" (dontCheck super.path); + inherit (lib.mapAttrs ( _: pkg: @@ -3050,7 +3277,7 @@ with haskellLib; pipes-text = warnAfterVersion "1.0.1" (doJailbreak super.pipes-text); # 2025-04-09: jailbreak to allow bytestring >= 0.12 - array-builder = warnAfterVersion "0.1.4.1" (doJailbreak super.array-builder); + array-builder = warnAfterVersion "0.2.0.0" (doJailbreak super.array-builder); # 2025-04-09: missing dependency - somehow it's not listed on hackage broadcast-chan = addExtraLibrary self.conduit super.broadcast-chan; @@ -3058,9 +3285,6 @@ with haskellLib; # 2025-04-09: jailbreak to allow template-haskell >= 2.21, th-abstraction >= 0.7 kind-generics-th = warnAfterVersion "0.2.3.3" (doJailbreak super.kind-generics-th); - # 2025-04-09: jailbreak to allow tasty >= 1.5 - cvss = warnAfterVersion "0.1" (doJailbreak super.cvss); - # 2025-04-09: jailbreak to allow aeson >= 2.2, base >= 4.19, text >= 2.1 ebird-api = warnAfterVersion "0.2.0.0" (doJailbreak super.ebird-api); @@ -3091,14 +3315,26 @@ with haskellLib; || hostPlatform.isDarwin ) super.monad-bayes; - # 2025-04-13: jailbreak to allow th-abstraction >= 0.7 - crucible = warnAfterVersion "0.7.2" ( - doJailbreak ( - super.crucible.override { + crucible = + lib.pipe + (super.crucible.override { what4 = self.what4_1_7; - } - ) - ); + }) + [ + # 2025-04-13: jailbreak to allow th-abstraction >= 0.7 + (warnAfterVersion "0.7.2") + doJailbreak + + # Prevent clashes with now exported Prelude.foldl' + (appendPatch ( + pkgs.fetchpatch { + name = "base-4.20-foldl'.patch"; + url = "https://github.com/GaloisInc/crucible/commit/10f372e4b0389dd3966e04163dcd67d71e651709.patch"; + relative = "crucible"; + sha256 = "sha256-frxTs5SB1ENjH+X0lIlQ8k6pDIDOANylrqIOQpEtObU="; + } + )) + ]; crucible-llvm = super.crucible-llvm.override { what4 = self.what4_1_7; @@ -3140,6 +3376,17 @@ with haskellLib; # 2025-04-23: missing test data llvm-pretty-bc-parser = dontCheck super.llvm-pretty-bc-parser; + # diagrams-builder wants diagrams-cairo < 1.5 for its cairo executable, + # but Stackage LTS 24 contains diagrams-cairo >= 1.5. + # As such it is difficult to provide (2025-09-13) + # ATTN: This needs to match ../../tools/graphics/diagrams-builder/default.nix:/backends + # TODO: can we reinstate this by manually passing an older version? + diagrams-builder = disableCabalFlag "cairo" ( + super.diagrams-builder.override { + diagrams-cairo = null; + } + ); + # 2025-04-23: Allow bytestring >= 0.12 # https://github.com/mrkkrp/wave/issues/48 wave = doJailbreak super.wave; @@ -3186,6 +3433,12 @@ with haskellLib; # 2025-5-15: Too strict bounds on base <4.19, see: https://github.com/zachjs/sv2v/issues/317 sv2v = doJailbreak super.sv2v; + # 2025-09-20: New revision already on hackage. + nvfetcher = lib.pipe super.nvfetcher [ + (warnAfterVersion "0.7.0.0") + doJailbreak + ]; + # 2025-06-25: Upper bounds of transformers and bytestring too strict, # as haskore 0.2.0.8 was released in 2016 and is quite outdated. # Tests fail with: @@ -3196,6 +3449,32 @@ with haskellLib; # Needs to be fixed upstream haskore = dontCheck (doJailbreak super.haskore); + # 2025-07-10: Hackage release is outdated, https://github.com/portnov/libssh2-hs/issues/77 + libssh2 = overrideSrc { + version = "0.2.0.9-unstable-2025-04-03"; + src = + pkgs.fetchFromGitHub { + owner = "portnov"; + repo = "libssh2-hs"; + rev = "d35fa047cd872a73cd4db83aa3185463ac88a1d7"; + sha256 = "sha256-m3VVx9mgI3OqtWHC8qY63/Wns808q5iITD5regdMILo="; + } + + "/libssh2"; + } super.libssh2; + + # 2025-8-19: dontCheck because of: https://github.com/ucsd-progsys/liquid-fixpoint/issues/760 + # i.e. tests assume existence of .git and also fail for some versions of CVC5, + # including the current one in nixpkgs. + liquid-fixpoint = dontCheck super.liquid-fixpoint; + + # 2025-8-26: Too strict bounds on containers and text, see: https://github.com/stackbuilders/inflections-hs/pull/83 + inflections = doJailbreak super.inflections; + + # 2025-8-26: Too strict bounds on base <=4.19, see https://github.com/typeclasses/stripe/pull/11 + stripe-concepts = doJailbreak super.stripe-concepts; + stripe-signature = doJailbreak super.stripe-signature; + stripe-wreq = doJailbreak super.stripe-wreq; + # 2025-08-01: Fixes few build errors related to pointers. # https://github.com/haskell-cryptography/botan/pull/17 botan-bindings = appendPatch (pkgs.fetchpatch2 { @@ -3353,13 +3632,13 @@ with haskellLib; amazonkaSrc = pkgs.fetchFromGitHub { owner = "brendanhay"; repo = "amazonka"; - rev = "f3a7fca02fdbb832cc348e991983b1465225d50c"; - sha256 = "sha256-u+R+4WeCd16X8H2dkDHzD3nOLsvsTB0lLNUsbRT23aE="; + rev = "7645bd335f008912b9e5257486f622b674de7afa"; + sha256 = "sha256-ObamDnJdcLA2BlX9iGIxkaknUeL3Po3madKO4JA/em0="; }; setAmazonkaSourceRoot = dir: drv: (overrideSrc { - version = "2.0"; + version = "2.0-unstable-2025-04-16"; src = amazonkaSrc + "/${dir}"; }) drv; @@ -3733,5 +4012,8 @@ with haskellLib; amazonka = warnAfterVersion "2.0" ( setAmazonkaSourceRoot "lib/amazonka" (doJailbreak super.amazonka) ); + amazonka-test = warnAfterVersion "2.0" ( + setAmazonkaSourceRoot "lib/amazonka-test" (doJailbreak super.amazonka-test) + ); } ) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix index 3cd9002c3a02..a204f4d41fb3 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix @@ -65,6 +65,15 @@ self: super: { # Becomes a core package in GHC >= 9.8 semaphore-compat = doDistribute self.semaphore-compat_1_0_0; + # Becomes a core package in GHC >= 9.10 + os-string = doDistribute self.os-string_1_0_0; + + # Becomes a core package in GHC >= 9.10, no release compatible with GHC < 9.10 is available + ghc-internal = null; + # Become core packages in GHC >= 9.10, but aren't uploaded to Hackage + ghc-toolchain = null; + ghc-platform = null; + # Only required for ghc >= 9.2 nothunks = super.nothunks.override { wherefrom-compat = null; @@ -82,18 +91,17 @@ self: super: { # For GHC < 9.4, some packages need data-array-byte as an extra dependency primitive = addBuildDepends [ self.data-array-byte ] super.primitive; - # For GHC < 9.2, os-string is not required. - hashable = + # hashable >= 1.5 only supports GHC >= 9.6 / base >= 4.18 + hashable = self.hashable_1_4_7_0; + hashable_1_4_7_0 = + # extra deps for GHC < 9.4 addBuildDepends [ self.data-array-byte self.base-orphans ] - ( - super.hashable.override { - os-string = null; - } - ); + # For GHC < 9.2, os-string is not required + (super.hashable_1_4_7_0.override { os-string = null; }); # Too strict lower bounds on base primitive-addr = doJailbreak super.primitive-addr; @@ -116,7 +124,7 @@ self: super: { (markBroken super.haskell-language-server); # test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021 - hpack_0_38_1 = dontCheck super.hpack_0_38_1; + hpack = dontCheck super.hpack; # Needs to use ghc-lib due to incompatible GHC ghc-tags = doDistribute self.ghc-tags_1_5; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix index fbac3690a708..9bf63d98ac6b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix @@ -64,51 +64,26 @@ in unix = null; xhtml = null; + # “Unfortunately we are unable to support GHC 9.10.” + apply-refact = dontDistribute (markBroken super.apply-refact); + # # Version upgrades # # Upgrade to accommodate new core library versions, where the authors have # already made the relevant changes. - # 2025-04-09: jailbreak to allow hedgehog >= 1.5, hspec-hedgehog >=0.2 - extensions = doJailbreak (doDistribute self.extensions_0_1_0_2); - fourmolu = doDistribute self.fourmolu_0_16_0_0; - # https://github.com/digital-asset/ghc-lib/issues/600 - ghc-lib = doDistribute self.ghc-lib_9_10_2_20250515; - ghc-lib-parser = doDistribute self.ghc-lib-parser_9_10_2_20250515; - ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_10_0_0; - htree = doDistribute self.htree_0_2_0_0; - ormolu = doDistribute self.ormolu_0_7_7_0; - stylish-haskell = doDistribute self.stylish-haskell_0_15_0_1; - - # A given major version of ghc-exactprint only supports one version of GHC. - ghc-exactprint = doDistribute self.ghc-exactprint_1_9_0_0; - ghc-exactprint_1_9_0_0 = addBuildDepends [ - self.Diff - self.extra - self.ghc-paths - self.silently - self.syb - self.HUnit - ] super.ghc-exactprint_1_9_0_0; # # Jailbreaks # - # 2025-04-09: base <4.20, containers <0.7, filepath <1.5, Cabal-syntax <3.11 - cabal-install-parsers = - assert super.cabal-install-parsers.version == "0.6.1.1"; - doJailbreak super.cabal-install-parsers; floskell = doJailbreak super.floskell; # base <4.20 # 2025-04-09: filepath <1.5 haddock-library = assert super.haddock-library.version == "1.11.0"; doJailbreak super.haddock-library; - large-generics = doJailbreak super.large-generics; # base <4.20 tree-sitter = doJailbreak super.tree-sitter; # containers <0.7, filepath <1.5 - hashable_1_5_0_0 = doJailbreak super.hashable_1_5_0_0; # relax bounds for QuickCheck, tasty, and tasty-quickcheck - # # Test suite issues # @@ -116,12 +91,4 @@ in fsnotify = dontCheck super.fsnotify; # https://github.com/haskell-fswatch/hfsnotify/issues/115 hinotify = pkgs.haskell.lib.dontCheck super.hinotify; # https://github.com/kolmodin/hinotify/issues/38 monad-dijkstra = dontCheck super.monad-dijkstra; # needs hlint 3.10 - - haskell-language-server = super.haskell-language-server.override { - floskell = null; - retrie = null; - hlint = null; - apply-refact = null; - }; - } diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix index 79afa7b31ccb..c0a06d50b478 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix @@ -71,37 +71,20 @@ with haskellLib; # Hand pick versions that are compatible with ghc 9.12 and base 4.21 # - extra = doDistribute self.extra_1_8; - htree = doDistribute self.htree_0_2_0_0; - tagged = doDistribute self.tagged_0_8_9; - time-compat = doDistribute self.time-compat_1_9_8; extensions = doDistribute self.extensions_0_1_0_3; - doctest = doDistribute self.doctest_0_24_2; # see :/doctest_0_24_2 =/ below - ghc-syntax-highlighter = doDistribute self.ghc-syntax-highlighter_0_0_13_0; - ghc-lib = doDistribute self.ghc-lib_9_12_2_20250421; ghc-exactprint = doDistribute self.ghc-exactprint_1_12_0_0; - ghc-lib-parser = doDistribute self.ghc-lib-parser_9_12_2_20250421; - ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_12_0_0; - hlint = doDistribute self.hlint_3_10; - # fourmolu checks require Diff > 1.0, which is not yet supported by various other deps of hls. - fourmolu = doDistribute (dontCheck self.fourmolu_0_18_0_0); - ormolu = doDistribute self.ormolu_0_8_0_0; - stylish-haskell = doDistribute self.stylish-haskell_0_15_1_0; - apply-refact = doDistribute self.apply-refact_0_15_0_0; # # Jailbreaks # large-generics = doJailbreak super.large-generics; # base <4.20 - time-compat_1_9_8 = doJailbreak super.time-compat_1_9_8; # too strict lower bound on QuickCheck cpphs = overrideCabal (drv: { # jail break manually the conditional dependencies postPatch = '' sed -i 's/time >=1.5 \&\& <1.13/time >=1.5 \&\& <=1.14/g' cpphs.cabal ''; }) super.cpphs; - vector = doJailbreak super.vector; # doctest >=0.15 && <0.24 cabal-install-parsers = doJailbreak super.cabal-install-parsers; # base, Cabal-syntax, etc. ghc-exactprint_1_12_0_0 = addBuildDepends [ # somehow buildDepends was missing @@ -126,15 +109,6 @@ with haskellLib; relude = dontCheck super.relude; - doctest_0_24_2 = overrideCabal (drv: { - testFlags = drv.testFlags or [ ] ++ [ - # These tests require cabal-install (would cause infinite recursion) - "--skip=/Cabal.Options" - "--skip=/Cabal.Paths/paths" - "--skip=/Cabal.ReplOptions" # >= 0.23 - ]; - }) super.doctest_0_24_2; - # https://gitlab.haskell.org/ghc/ghc/-/issues/25930 generic-lens = dontCheck super.generic-lens; @@ -154,27 +128,4 @@ with haskellLib; interpolate = assert super.ghc.version == "9.12.2"; dontCheck super.interpolate; - - # - # Multiple issues - # - - doctest-parallel = overrideCabal (drv: { - patches = drv.patches or [ ] ++ [ - (pkgs.fetchpatch { - name = "doctest-0.23.0-ghc-9.12.patch"; - url = "https://github.com/martijnbastiaan/doctest-parallel/commit/d3df7aa5d223f3daeb676c8a7efe093ee743d54f.patch"; - sha256 = "sha256-92CtqBCulfOTjLAeC205cIrqL/2CBP1YFLijTVcTD2M="; - includes = [ "src/Test/DocTest/Helpers.hs" ]; - }) - ]; - }) (dontCheck (doJailbreak super.doctest-parallel)); # Cabal >=2.4 && <3.13 - - haskell-language-server = super.haskell-language-server.override { - floskell = null; - retrie = null; - }; - - # Allow Cabal 3.14 - hpack = doDistribute self.hpack_0_38_1; } diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.16.x.nix similarity index 81% rename from pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix rename to pkgs/development/haskell-modules/configuration-ghc-9.16.x.nix index 555870017bcf..0ff76cae4892 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.16.x.nix @@ -45,12 +45,7 @@ self: super: { stm = null; system-cxx-std-lib = null; template-haskell = null; - # GHC only builds terminfo if it is a native compiler - terminfo = - if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then - null - else - haskellLib.doDistribute self.terminfo_0_4_1_7; + terminfo = null; text = null; time = null; transformers = null; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index 10e5d2bd55d9..8bc8c6b6d2a9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -62,9 +62,18 @@ self: super: { # their existence to callPackages, but their is no shim for lower GHC versions. system-cxx-std-lib = null; + # Becomes a core package in GHC >= 9.10, no release compatible with GHC < 9.10 is available + ghc-internal = null; + # Become core packages in GHC >= 9.10, but aren't uploaded to Hackage + ghc-toolchain = null; + ghc-platform = null; + # Becomes a core package in GHC >= 9.8 semaphore-compat = doDistribute self.semaphore-compat_1_0_0; + # Becomes a core package in GHC >= 9.10 + os-string = doDistribute self.os-string_2_0_8; + # weeder >= 2.5 requires GHC 9.4 weeder = doDistribute self.weeder_2_4_1; # Allow dhall 1.42.* @@ -81,8 +90,10 @@ self: super: { "haskell-language-server has dropped support for ghc 9.2 in version 2.10.0.0, please use a newer ghc version or an older nixpkgs version" (markBroken super.haskell-language-server); + # hashable >= 1.5 doesn't support base < 4.18 + hashable = self.hashable_1_4_7_0; # For GHC < 9.4, some packages need data-array-byte as an extra dependency - hashable = addBuildDepends [ self.data-array-byte ] super.hashable; + hashable_1_4_7_0 = addBuildDepends [ self.data-array-byte ] super.hashable_1_4_7_0; primitive = addBuildDepends [ self.data-array-byte ] super.primitive; primitive-unlifted = super.primitive-unlifted_0_1_3_1; # Too strict lower bound on base diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix index 924f7c1309f8..7d0853cc057f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix @@ -54,11 +54,22 @@ self: super: { # Becomes a core package in GHC >= 9.8 semaphore-compat = doDistribute self.semaphore-compat_1_0_0; + # Becomes a core package in GHC >= 9.10 + os-string = doDistribute self.os-string_2_0_8; + + # Becomes a core package in GHC >= 9.10, no release compatible with GHC < 9.10 is available + ghc-internal = null; + # Become core packages in GHC >= 9.10, but aren't uploaded to Hackage + ghc-toolchain = null; + ghc-platform = null; + # only broken for >= 9.6 calligraphy = doDistribute (unmarkBroken super.calligraphy); # Jailbreaks & Version Updates + # hashable >= 1.5 needs base >= 4.18 + hashable = self.hashable_1_4_7_0; hashable-time = doJailbreak super.hashable-time; libmpd = doJailbreak super.libmpd; @@ -105,6 +116,10 @@ self: super: { } ); + # Last version to not depend on file-io and directory-ospath-streaming, + # which both need unix >= 2.8. + tar = self.tar_0_6_3_0; + # A given major version of ghc-exactprint only supports one version of GHC. ghc-exactprint = super.ghc-exactprint_1_6_1_3; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix index 5d483eda2ea1..88578006bf14 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix @@ -62,6 +62,15 @@ in # Becomes a core package in GHC >= 9.8 semaphore-compat = doDistribute self.semaphore-compat_1_0_0; + # Becomes a core package in GHC >= 9.10 + os-string = doDistribute self.os-string_2_0_8; + + # Becomes a core package in GHC >= 9.10, no release compatible with GHC < 9.10 is available + ghc-internal = null; + # Become core packages in GHC >= 9.10, but aren't uploaded to Hackage + ghc-toolchain = null; + ghc-platform = null; + # Needs base-orphans for GHC < 9.8 / base < 4.19 some = addBuildDepend self.base-orphans super.some; @@ -188,4 +197,7 @@ in # A given major version of ghc-exactprint only supports one version of GHC. ghc-exactprint = addBuildDepend self.extra super.ghc-exactprint_1_7_1_0; + + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_10_3_20250912; + ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_10_0_0; } diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix index e70da8a3e688..4023b746fe62 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix @@ -12,7 +12,7 @@ let ver: pkg: lib.warnIf (lib.versionOlder ver super.${pkg.pname}.version - ) "override for haskell.packages.ghc912.${pkg.pname} may no longer be needed" pkg; + ) "override for haskell.packages.ghc98.${pkg.pname} may no longer be needed" pkg; in @@ -62,10 +62,18 @@ in unix = null; xhtml = null; + # Becomes a core package in GHC >= 9.10 + os-string = doDistribute self.os-string_2_0_8; + + # Becomes a core package in GHC >= 9.10, no release compatible with GHC < 9.10 is available + ghc-internal = null; + # Become core packages in GHC >= 9.10, but aren't uploaded to Hackage + ghc-toolchain = null; + ghc-platform = null; + # # Version upgrades # - megaparsec = doDistribute self.megaparsec_9_7_0; ghc-tags = self.ghc-tags_1_8; # @@ -93,14 +101,9 @@ in # A factor of 100 is insufficient, 200 seems seems to work. hip = appendConfigureFlag "--ghc-options=-fsimpl-tick-factor=200" super.hip; - # 2025-04-21: "flavor" for GHC 9.8.5 is missing a fix introduced for 9.8.4. See: - # https://github.com/digital-asset/ghc-lib/pull/571#discussion_r2052684630 - ghc-lib-parser = warnAfterVersion "9.8.5.20250214" ( - overrideCabal { - postPatch = '' - substituteInPlace compiler/cbits/genSym.c \ - --replace-fail "HsWord64 u = atomic_inc64" "HsWord64 u = atomic_inc" - ''; - } super.ghc-lib-parser - ); + # A given major version of ghc-exactprint only supports one version of GHC. + ghc-exactprint = doDistribute super.ghc-exactprint_1_8_0_0; + + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_10_3_20250912; + ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_10_0_0; } diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 596ba0796b47..eb87a82364bb 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -21,6 +21,7 @@ broken-packages: - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 - AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02 + - accelerate # failure in job https://hydra.nixos.org/build/307516269 at 2025-09-19 - accelerate-fftw # failure in job https://hydra.nixos.org/build/296049868 at 2025-05-02 - accelerate-random # failure in job https://hydra.nixos.org/build/296049869 at 2025-05-02 - accelerate-utility # failure in job https://hydra.nixos.org/build/296049871 at 2025-05-02 @@ -65,6 +66,7 @@ broken-packages: - adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02 - adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02 - adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02 + - adblock2privoxy # failure in job https://hydra.nixos.org/build/307609942 at 2025-09-19 - addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02 - adhoc-fixtures-hspec # failure in job https://hydra.nixos.org/build/252725981 at 2024-03-16 - adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02 @@ -74,6 +76,7 @@ broken-packages: - AERN-Basics # failure in job https://hydra.nixos.org/build/233246999 at 2023-09-02 - aeson-applicative # failure in job https://hydra.nixos.org/build/233213824 at 2023-09-02 - aeson-bson # failure in job https://hydra.nixos.org/build/233201964 at 2023-09-02 + - aeson-combinators # failure in job https://hydra.nixos.org/build/307516309 at 2025-09-19 - aeson-commit # failure in job https://hydra.nixos.org/build/233198515 at 2023-09-02 - aeson-compat # failure in job https://hydra.nixos.org/build/233208257 at 2023-09-02 - aeson-decode # failure in job https://hydra.nixos.org/build/233251197 at 2023-09-02 @@ -85,6 +88,7 @@ broken-packages: - aeson-flat # failure in job https://hydra.nixos.org/build/233220787 at 2023-09-02 - aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02 - aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02 + - aeson-generic-default # failure in job https://hydra.nixos.org/build/307516312 at 2025-09-19 - aeson-generics-typescript # failure in job https://hydra.nixos.org/build/245703304 at 2024-01-07 - aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02 - aeson-iproute # failure in job https://hydra.nixos.org/build/295091261 at 2025-04-22 @@ -196,6 +200,7 @@ broken-packages: - antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02 - antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02 - anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02 + - aoc # failure in job https://hydra.nixos.org/build/307516728 at 2025-09-19 - Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02 - aop-prelude # failure in job https://hydra.nixos.org/build/295091671 at 2025-04-22 - aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02 @@ -211,7 +216,6 @@ broken-packages: - appc # failure in job https://hydra.nixos.org/build/233200853 at 2023-09-02 - appendful-persistent # failure in job https://hydra.nixos.org/build/233249677 at 2023-09-02 - apple # failure in job https://hydra.nixos.org/build/269877626 at 2024-08-19 - - AppleScript # failure in job https://hydra.nixos.org/build/233231626 at 2023-09-02 - applicative-fail # failure in job https://hydra.nixos.org/build/233237624 at 2023-09-02 - applicative-parsec # failure in job https://hydra.nixos.org/build/233221615 at 2023-09-02 - applicative-quoters # failure in job https://hydra.nixos.org/build/233191023 at 2023-09-02 @@ -227,6 +231,7 @@ broken-packages: - arbor-monad-logger # failure in job https://hydra.nixos.org/build/233228659 at 2023-09-02 - arbor-monad-metric # failure in job https://hydra.nixos.org/build/233236175 at 2023-09-02 - arbor-postgres # failure in job https://hydra.nixos.org/build/233232935 at 2023-09-02 + - arbtt # failure in job https://hydra.nixos.org/build/307516851 at 2025-09-19 - arch-hs # failure in job https://hydra.nixos.org/build/233225768 at 2023-09-02 - archiver # failure in job https://hydra.nixos.org/build/233245795 at 2023-09-02 - archlinux # failure in job https://hydra.nixos.org/build/233202430 at 2023-09-02 @@ -241,6 +246,7 @@ broken-packages: - arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02 - arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02 - array-list # failure in job https://hydra.nixos.org/build/233197669 at 2023-09-02 + - array-mhs # failure in job https://hydra.nixos.org/build/307610290 at 2025-09-19 - array-primops # failure in job https://hydra.nixos.org/build/233191559 at 2023-09-02 - arrayfire # failure in job https://hydra.nixos.org/build/233225004 at 2023-09-02 - ArrayRef # failure in job https://hydra.nixos.org/build/233196329 at 2023-09-02 @@ -253,7 +259,9 @@ broken-packages: - artery # failure in job https://hydra.nixos.org/build/233206830 at 2023-09-02 - artifact # failure in job https://hydra.nixos.org/build/233233300 at 2023-09-02 - asap # failure in job https://hydra.nixos.org/build/233214968 at 2023-09-02 + - ascii-caseless # failure in job https://hydra.nixos.org/build/307516784 at 2025-09-19 - ascii-flatten # failure in job https://hydra.nixos.org/build/233229168 at 2023-09-02 + - ascii-group # failure in job https://hydra.nixos.org/build/307516787 at 2025-09-19 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02 @@ -264,7 +272,6 @@ broken-packages: - asn1-ber-syntax # failure in job https://hydra.nixos.org/build/233235772 at 2023-09-02 - asn1-codec # failure in job https://hydra.nixos.org/build/233217242 at 2023-09-02 - asn1-data # failure in job https://hydra.nixos.org/build/233252918 at 2023-09-02 - - AspectAG # failure in job https://hydra.nixos.org/build/233231125 at 2023-09-02 - assert # failure in job https://hydra.nixos.org/build/233257692 at 2023-09-02 - assertions # failure in job https://hydra.nixos.org/build/233215277 at 2023-09-02 - asset-map # failure in job https://hydra.nixos.org/build/233218566 at 2023-09-02 @@ -281,10 +288,12 @@ broken-packages: - async-manager # failure in job https://hydra.nixos.org/build/233246552 at 2023-09-02 - async-timer # failure in job https://hydra.nixos.org/build/233200611 at 2023-09-02 - asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 at 2023-09-02 + - AsyncRattus # failure in job https://hydra.nixos.org/build/307515919 at 2025-09-19 - aterm # failure in job https://hydra.nixos.org/build/233226675 at 2023-09-02 - atlassian-connect-descriptor # failure in job https://hydra.nixos.org/build/233249503 at 2023-09-02 - atndapi # failure in job https://hydra.nixos.org/build/233223849 at 2023-09-02 - atom # failure in job https://hydra.nixos.org/build/233193561 at 2023-09-02 + - atomic-css # failure in job https://hydra.nixos.org/build/307516853 at 2025-09-19 - atomic-modify # failure in job https://hydra.nixos.org/build/233220400 at 2023-09-02 - atomic-modify-general # failure in job https://hydra.nixos.org/build/295091770 at 2025-04-22 - atomic-primops-vector # failure in job https://hydra.nixos.org/build/233228512 at 2023-09-02 @@ -315,7 +324,6 @@ broken-packages: - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 - - autodocodec-exact # failure in job https://hydra.nixos.org/build/302801281 at 2025-07-27 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 @@ -325,6 +333,7 @@ broken-packages: - aviation-units # failure in job https://hydra.nixos.org/build/233245762 at 2023-09-02 - avl-static # failure in job https://hydra.nixos.org/build/233199062 at 2023-09-02 - avr-shake # failure in job https://hydra.nixos.org/build/233223187 at 2023-09-02 + - avro # failure in job https://hydra.nixos.org/build/307610307 at 2025-09-19 - avro-piper # failure in job https://hydra.nixos.org/build/233197510 at 2023-09-02 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 @@ -341,6 +350,7 @@ broken-packages: - aws-performance-tests # failure in job https://hydra.nixos.org/build/233259271 at 2023-09-02 - aws-route53 # failure in job https://hydra.nixos.org/build/233218200 at 2023-09-02 - aws-sdk-text-converter # failure in job https://hydra.nixos.org/build/233237525 at 2023-09-02 + - aws-secrets # failure in job https://hydra.nixos.org/build/307516873 at 2025-09-19 - aws-ses-easy # failure building library in job https://hydra.nixos.org/build/237249788 at 2023-10-21 - aws-simple # failure building library in job https://hydra.nixos.org/build/237242730 at 2023-10-21 - awsspendsummary # failure in job https://hydra.nixos.org/build/295091850 at 2025-04-22 @@ -361,6 +371,7 @@ broken-packages: - bag # failure in job https://hydra.nixos.org/build/233250281 at 2023-09-02 - Baggins # failure in job https://hydra.nixos.org/build/233192786 at 2023-09-02 - bake # failure in job https://hydra.nixos.org/build/233211889 at 2023-09-02 + - bamse # failure in job https://hydra.nixos.org/build/307516881 at 2025-09-19 - Bang # failure in job https://hydra.nixos.org/build/233226846 at 2023-09-02 - banwords # failure in job https://hydra.nixos.org/build/233229703 at 2023-09-02 - barbies-th # failure in job https://hydra.nixos.org/build/233251598 at 2023-09-02 @@ -416,6 +427,7 @@ broken-packages: - bert # failure in job https://hydra.nixos.org/build/233195424 at 2023-09-02 - besout # failure in job https://hydra.nixos.org/build/233194433 at 2023-09-02 - bet # failure in job https://hydra.nixos.org/build/233205655 at 2023-09-02 + - betacode # failure in job https://hydra.nixos.org/build/307516959 at 2025-09-19 - betris # failure in job https://hydra.nixos.org/build/233200110 at 2023-09-02 - bff-mono # failure in job https://hydra.nixos.org/build/252710505 at 2024-03-16 - bglib # failure in job https://hydra.nixos.org/build/265955624 at 2024-07-14 @@ -473,6 +485,7 @@ broken-packages: - bindings-wlc # failure in job https://hydra.nixos.org/build/233332720 at 2023-09-02 - bindynamic # failure in job https://hydra.nixos.org/build/295091957 at 2025-04-22 - binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02 + - binrep # failure in job https://hydra.nixos.org/build/307517077 at 2025-09-19 - binrep-instances # failure in job https://hydra.nixos.org/build/295092045 at 2025-04-22 - binsm # failure in job https://hydra.nixos.org/build/233232355 at 2023-09-02 - bio # failure in job https://hydra.nixos.org/build/233225273 at 2023-09-02 @@ -528,13 +541,17 @@ broken-packages: - blosum # failure in job https://hydra.nixos.org/build/233198029 at 2023-09-02 - blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02 - bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02 + - bluefin-algae # failure in job https://hydra.nixos.org/build/307517064 at 2025-09-19 + - bluefin-random # failure in job https://hydra.nixos.org/build/307517069 at 2025-09-19 - Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02 - bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02 - blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02 + - boardgame # failure in job https://hydra.nixos.org/build/307517065 at 2025-09-19 - bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02 - boilerplate # failure in job https://hydra.nixos.org/build/233252821 at 2023-09-02 - bolt # failure in job https://hydra.nixos.org/build/233234045 at 2023-09-02 - boltzmann-brain # failure in job https://hydra.nixos.org/build/233220308 at 2023-09-02 + - bookhound # failure in job https://hydra.nixos.org/build/307517066 at 2025-09-19 - bookhound-format # failure in job https://hydra.nixos.org/build/233202674 at 2023-09-02 - bookkeeping # failure in job https://hydra.nixos.org/build/233241963 at 2023-09-02 - boolean-like # failure in job https://hydra.nixos.org/build/233190873 at 2023-09-02 @@ -564,6 +581,7 @@ broken-packages: - brick-panes # failure in job https://hydra.nixos.org/build/233207542 at 2023-09-02 - bricks-internal # failure in job https://hydra.nixos.org/build/233215572 at 2023-09-02 - brillig # failure in job https://hydra.nixos.org/build/233208148 at 2023-09-02 + - brillo-algorithms # failure in job https://hydra.nixos.org/build/307517131 at 2025-09-19 - brittany # failure in job https://hydra.nixos.org/build/233234100 at 2023-09-02 - broadcast-chan-conduit # failure in job https://hydra.nixos.org/build/295092082 at 2025-04-22 - broadcast-chan-tests # failure in job https://hydra.nixos.org/build/233202605 at 2023-09-02 @@ -587,6 +605,7 @@ broken-packages: - buffon-machines # failure in job https://hydra.nixos.org/build/233257929 at 2023-09-02 - bugsnag-haskell # failure in job https://hydra.nixos.org/build/295092087 at 2025-04-22 - bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02 + - build # failure in job https://hydra.nixos.org/build/307517140 at 2025-09-19 - build-env # failure in job https://hydra.nixos.org/build/252734826 at 2024-03-16 - buildable # failure in job https://hydra.nixos.org/build/233199077 at 2023-09-02 - buildbox # failure in job https://hydra.nixos.org/build/233216315 at 2023-09-02 @@ -603,6 +622,7 @@ broken-packages: - buttplug-hs-core # failure in job https://hydra.nixos.org/build/233223928 at 2023-09-02 - bv-sized-lens # failure in job https://hydra.nixos.org/build/233237486 at 2023-09-02 - by-other-names # failure in job https://hydra.nixos.org/build/252732245 at 2024-03-16 + - byte-containers # failure in job https://hydra.nixos.org/build/307610340 at 2025-09-19 - bytearray-parsing # failure in job https://hydra.nixos.org/build/233244355 at 2023-09-02 - bytepatch # failure in job https://hydra.nixos.org/build/236678340 at 2023-10-04 - bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02 @@ -612,6 +632,7 @@ broken-packages: - bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02 - bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02 - bytestring-mmap # failure in job https://hydra.nixos.org/build/252733270 at 2024-03-16 + - bytestring-nums # failure in job https://hydra.nixos.org/build/307517167 at 2025-09-19 - bytestring-plain # failure in job https://hydra.nixos.org/build/233230746 at 2023-09-02 - bytestring-rematch # failure in job https://hydra.nixos.org/build/233228234 at 2023-09-02 - bytestring-show # failure in job https://hydra.nixos.org/build/233207681 at 2023-09-02 @@ -633,6 +654,7 @@ broken-packages: - cabal-auto-expose # failure in job https://hydra.nixos.org/build/233195440 at 2023-09-02 - cabal-build-programs # failure in job https://hydra.nixos.org/build/257091363 at 2024-04-27 - cabal-bundle-clib # failure in job https://hydra.nixos.org/build/233199225 at 2023-09-02 + - cabal-cargs # failure in job https://hydra.nixos.org/build/307517214 at 2025-09-19 - cabal-constraints # failure in job https://hydra.nixos.org/build/233214316 at 2023-09-02 - cabal-db # failure in job https://hydra.nixos.org/build/233197235 at 2023-09-02 - cabal-debian # failure in job https://hydra.nixos.org/build/233255267 at 2023-09-02 @@ -642,16 +664,19 @@ broken-packages: - cabal-dir # failure in job https://hydra.nixos.org/build/233194037 at 2023-09-02 - cabal-edit # failure in job https://hydra.nixos.org/build/233244268 at 2023-09-02 - cabal-file-th # failure in job https://hydra.nixos.org/build/233224650 at 2023-09-02 + - cabal-fix # failure in job https://hydra.nixos.org/build/307610355 at 2025-09-19 - cabal-ghc-dynflags # failure in job https://hydra.nixos.org/build/233244580 at 2023-09-02 - cabal-ghci # failure in job https://hydra.nixos.org/build/233239354 at 2023-09-02 - cabal-graphdeps # failure in job https://hydra.nixos.org/build/233221966 at 2023-09-02 - cabal-helper # failure in job https://hydra.nixos.org/build/252732588 at 2024-03-16 - cabal-hoogle # failure in job https://hydra.nixos.org/build/233191666 at 2023-09-02 + - Cabal-hooks # failure in job https://hydra.nixos.org/build/307515931 at 2025-09-19 - Cabal-ide-backend # failure in job https://hydra.nixos.org/build/233258880 at 2023-09-02 - cabal-info # failure in job https://hydra.nixos.org/build/233225001 at 2023-09-02 - cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02 - cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02 - cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02 + - cabal-macosx # failure in job https://hydra.nixos.org/build/307517203 at 2025-09-19 - cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02 - cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02 - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02 @@ -678,7 +703,6 @@ broken-packages: - cache-polysemy # failure in job https://hydra.nixos.org/build/233200602 at 2023-09-02 - cached # failure in job https://hydra.nixos.org/build/233249807 at 2023-09-02 - caching # failure in job https://hydra.nixos.org/build/233233548 at 2023-09-02 - - cacophony # failure in job https://hydra.nixos.org/build/233239380 at 2023-09-02 - caerbannog # failure in job https://hydra.nixos.org/build/252729101 at 2024-03-16 - cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02 - cairo-canvas # failure in job https://hydra.nixos.org/build/252719057 at 2024-03-16 @@ -691,7 +715,6 @@ broken-packages: - call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02 - call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02 - call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02 - - candid # failure in job https://hydra.nixos.org/build/295092213 at 2025-04-22 - canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02 - canonical-filepath # failure in job https://hydra.nixos.org/build/233233390 at 2023-09-02 - canteven-listen-http # failure in job https://hydra.nixos.org/build/233210500 at 2023-09-02 @@ -721,6 +744,7 @@ broken-packages: - cassandra-cql # failure in job https://hydra.nixos.org/build/233194724 at 2023-09-02 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 + - cassava-generic # failure in job https://hydra.nixos.org/build/307517253 at 2025-09-19 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 @@ -729,7 +753,6 @@ broken-packages: - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02 - - cauldron # failure in job https://hydra.nixos.org/build/302801682 at 2025-07-27 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 @@ -759,6 +782,7 @@ broken-packages: - cfenv # failure in job https://hydra.nixos.org/build/233235017 at 2023-09-02 - cfg # failure in job https://hydra.nixos.org/build/233236445 at 2023-09-02 - cfn-flip # failure in job https://hydra.nixos.org/build/233221000 at 2023-09-02 + - cfuture # failure in job https://hydra.nixos.org/build/307517278 at 2025-09-19 - cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02 - cgen # failure in job https://hydra.nixos.org/build/233198570 at 2023-09-02 - cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02 @@ -780,8 +804,9 @@ broken-packages: - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02 - checked # failure in job https://hydra.nixos.org/build/233223182 at 2023-09-02 - Checked # failure in job https://hydra.nixos.org/build/233257598 at 2023-09-02 - - checked-exceptions # failure in job https://hydra.nixos.org/build/295092260 at 2025-04-22 - checkmate # failure in job https://hydra.nixos.org/build/233248012 at 2023-09-02 + - chell-quickcheck # won't support QuickCheck >= 2.15 https://github.com/typeclasses/chell/issues/5#issuecomment-3152262118 + - chessica # failure in job https://hydra.nixos.org/build/307517327 at 2025-09-19 - chez-grater # failure in job https://hydra.nixos.org/build/233213537 at 2023-09-02 - chiasma # failure in job https://hydra.nixos.org/build/295122809 at 2025-04-22 - chiphunk # failure in job https://hydra.nixos.org/build/233232520 at 2023-09-02 @@ -875,14 +900,18 @@ broken-packages: - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02 + - co-log-effectful # failure in job https://hydra.nixos.org/build/307517405 at 2025-09-19 + - co-log-json # failure in job https://hydra.nixos.org/build/307517383 at 2025-09-19 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 - code-builder # failure in job https://hydra.nixos.org/build/233239215 at 2023-09-02 - codec-beam # failure in job https://hydra.nixos.org/build/233198704 at 2023-09-02 + - Codec-Image-DevIL # failure in job https://hydra.nixos.org/build/307682428 at 2025-09-19 - codecov-haskell # failure in job https://hydra.nixos.org/build/233256758 at 2023-09-02 - codeforces-cli # failure in job https://hydra.nixos.org/build/233210719 at 2023-09-02 - codepad # failure in job https://hydra.nixos.org/build/233197730 at 2023-09-02 + - codet-plugin # failure in job https://hydra.nixos.org/build/307517392 at 2025-09-19 - codeworld-api # failure in job https://hydra.nixos.org/build/252720413 at 2024-03-16 - codex # failure in job https://hydra.nixos.org/build/233212311 at 2023-09-02 - codo-notation # failure in job https://hydra.nixos.org/build/233202566 at 2023-09-02 @@ -900,13 +929,13 @@ broken-packages: - colorless # failure in job https://hydra.nixos.org/build/233220728 at 2023-09-02 - colour-text # failure in job https://hydra.nixos.org/build/252712609 at 2024-03-16 - coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02 - - com # failure in job https://hydra.nixos.org/build/233213869 at 2023-09-02 - comark-syntax # failure in job https://hydra.nixos.org/build/233243043 at 2023-09-02 - combinat # failure in job https://hydra.nixos.org/build/233259056 at 2023-09-02 - combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02 - combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02 - combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 at 2023-09-02 - combobuffer # failure in job https://hydra.nixos.org/build/233240114 at 2023-09-02 + - comma-and # failure in job https://hydra.nixos.org/build/307517425 at 2025-09-19 - Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02 - commander # failure in job https://hydra.nixos.org/build/233239812 at 2023-09-02 - Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02 @@ -919,10 +948,12 @@ broken-packages: - compact-socket # failure in job https://hydra.nixos.org/build/245539349 at 2024-01-02 - compact-string # failure in job https://hydra.nixos.org/build/233204162 at 2023-09-02 - compact-string-fix # failure in job https://hydra.nixos.org/build/233238513 at 2023-09-02 + - compact-word-vectors # failure in job https://hydra.nixos.org/build/307517438 at 2025-09-19 - Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02 - compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02 - compaREST # failure in job https://hydra.nixos.org/build/295122812 at 2025-04-22 - comparse # failure in job https://hydra.nixos.org/build/233220012 at 2023-09-02 + - compdata # failure in job https://hydra.nixos.org/build/307517440 at 2025-09-19 - compdata-dags # failure in job https://hydra.nixos.org/build/233216580 at 2023-09-02 - compdata-param # failure in job https://hydra.nixos.org/build/233227003 at 2023-09-02 - compendium-client # failure in job https://hydra.nixos.org/build/233231884 at 2023-09-02 @@ -946,12 +977,15 @@ broken-packages: - comptrans # failure in job https://hydra.nixos.org/build/233209853 at 2023-09-02 - computational-geometry # failure in job https://hydra.nixos.org/build/233220627 at 2023-09-02 - computations # failure in job https://hydra.nixos.org/build/233249992 at 2023-09-02 + - ConClusion # failure in job https://hydra.nixos.org/build/307515968 at 2025-09-19 - concrete-relaxng-parser # failure in job https://hydra.nixos.org/build/233192905 at 2023-09-02 - concrete-typerep # failure in job https://hydra.nixos.org/build/233234198 at 2023-09-02 - concurrent-buffer # failure in job https://hydra.nixos.org/build/233249002 at 2023-09-02 - Concurrent-Cache # failure in job https://hydra.nixos.org/build/233238494 at 2023-09-02 + - concurrent-machines # failure in job https://hydra.nixos.org/build/307517470 at 2025-09-19 - concurrent-st # failure in job https://hydra.nixos.org/build/233219451 at 2023-09-02 - concurrent-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02 + - concurrent-utilities # failure in job https://hydra.nixos.org/build/307517482 at 2025-09-19 - Concurrential # failure in job https://hydra.nixos.org/build/233221502 at 2023-09-02 - conditional-restriction-parser # failure in job https://hydra.nixos.org/build/233211470 at 2023-09-02 - condorcet # failure in job https://hydra.nixos.org/build/233208640 at 2023-09-02 @@ -967,6 +1001,7 @@ broken-packages: - conduit-tokenize-attoparsec # failure in job https://hydra.nixos.org/build/233237152 at 2023-09-02 - conduit-vfs # failure in job https://hydra.nixos.org/build/233205270 at 2023-09-02 - conf # failure in job https://hydra.nixos.org/build/233213738 at 2023-09-02 + - conferer # failure in job https://hydra.nixos.org/build/307517496 at 2025-09-19 - conferer-hspec # failure in job https://hydra.nixos.org/build/233225311 at 2023-09-02 - conferer-provider-json # failure in job https://hydra.nixos.org/build/233195298 at 2023-09-02 - conferer-snap # failure in job https://hydra.nixos.org/build/233215013 at 2023-09-02 @@ -1014,6 +1049,8 @@ broken-packages: - contiguous-fft # failure in job https://hydra.nixos.org/build/233197368 at 2023-09-02 - continue # failure in job https://hydra.nixos.org/build/233231634 at 2023-09-02 - continued-fractions # failure in job https://hydra.nixos.org/build/233258785 at 2023-09-02 + - continuum # failure in job https://hydra.nixos.org/build/307517530 at 2025-09-19 + - continuum-client # failure in job https://hydra.nixos.org/build/307517531 at 2025-09-19 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02 @@ -1026,13 +1063,14 @@ broken-packages: - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22 - convex-schema-parser # failure in job https://hydra.nixos.org/build/302801971 at 2025-07-27 + - convexHullNd # failure in job https://hydra.nixos.org/build/307517560 at 2025-09-19 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 - copilot-frp-sketch # copilot >=3.7 && <3.8, - copilot-verifier # failure in job https://hydra.nixos.org/build/297024747 at 2025-05-14 - copr # failure in job https://hydra.nixos.org/build/233252310 at 2023-09-02 - - COrdering # failure in job https://hydra.nixos.org/build/233232083 at 2023-09-02 + - coquina # failure in job https://hydra.nixos.org/build/307610386 at 2025-09-19 - core # failure in job https://hydra.nixos.org/build/233253971 at 2023-09-02 - core-compiler # failure in job https://hydra.nixos.org/build/233250303 at 2023-09-02 - core-effect-effectful # failure in job https://hydra.nixos.org/build/252723824 at 2024-03-16 @@ -1052,12 +1090,14 @@ broken-packages: - country-codes # failure in job https://hydra.nixos.org/build/233248159 at 2023-09-02 - courier # failure in job https://hydra.nixos.org/build/233215760 at 2023-09-02 - court # failure in job https://hydra.nixos.org/build/233192047 at 2023-09-02 + - covenant # failure in job https://hydra.nixos.org/build/307517574 at 2025-09-19 - coverage # failure in job https://hydra.nixos.org/build/233199365 at 2023-09-02 - cozo-hs # failure in job https://hydra.nixos.org/build/241432654 at 2023-11-19 - cparsing # failure in job https://hydra.nixos.org/build/233192377 at 2023-09-02 - cpio-conduit # failure in job https://hydra.nixos.org/build/233220518 at 2023-09-02 - CPL # failure in job https://hydra.nixos.org/build/252731771 at 2024-03-16 - cplusplus-th # failure in job https://hydra.nixos.org/build/233204461 at 2023-09-02 + - cpmonad # failure in job https://hydra.nixos.org/build/307517578 at 2025-09-19 - cps-except # failure in job https://hydra.nixos.org/build/252711064 at 2024-03-16 - cpuperf # failure in job https://hydra.nixos.org/build/233252964 at 2023-09-02 - cql-io # failure in job https://hydra.nixos.org/build/233245286 at 2023-09-02 @@ -1076,6 +1116,7 @@ broken-packages: - crem # failure in job https://hydra.nixos.org/build/233240415 at 2023-09-02 - critbit # failure in job https://hydra.nixos.org/build/233237880 at 2023-09-02 - criterion-cmp # failure in job https://hydra.nixos.org/build/233192619 at 2023-09-02 + - criterion-compare # failure in job https://hydra.nixos.org/build/307610403 at 2025-09-19 - criterion-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02 - criterion-to-html # failure in job https://hydra.nixos.org/build/233209983 at 2023-09-02 - criu-rpc-types # failure in job https://hydra.nixos.org/build/252715844 at 2024-03-16 @@ -1083,8 +1124,11 @@ broken-packages: - crockford # failure in job https://hydra.nixos.org/build/233210759 at 2023-09-02 - crocodile # failure in job https://hydra.nixos.org/build/233222277 at 2023-09-02 - cronus # failure in job https://hydra.nixos.org/build/233225303 at 2023-09-02 + - crucible-debug # failure in job https://hydra.nixos.org/build/307610411 at 2025-09-19 + - crucible-symio # failure in job https://hydra.nixos.org/build/307610404 at 2025-09-19 - cruncher-types # failure in job https://hydra.nixos.org/build/233229024 at 2023-09-02 - crunghc # failure in job https://hydra.nixos.org/build/233193295 at 2023-09-02 + - crypt-sha512 # failure in job https://hydra.nixos.org/build/307517616 at 2025-09-19 - Crypto # failure in job https://hydra.nixos.org/build/252738609 at 2024-03-16 - crypto-cipher-benchmarks # failure in job https://hydra.nixos.org/build/233195297 at 2023-09-02 - crypto-enigma # failure in job https://hydra.nixos.org/build/252722224 at 2024-03-16 @@ -1121,6 +1165,7 @@ broken-packages: - cuddle # failure in job https://hydra.nixos.org/build/302802065 at 2025-07-27 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 + - curly-expander # failure in job https://hydra.nixos.org/build/307517676 at 2025-09-19 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 - curry-base # failure in job https://hydra.nixos.org/build/233246647 at 2023-09-02 - curry-frontend # failure in job https://hydra.nixos.org/build/233190895 at 2023-09-02 @@ -1162,8 +1207,16 @@ broken-packages: - data-concurrent-queue # failure in job https://hydra.nixos.org/build/233252841 at 2023-09-02 - data-construction # failure in job https://hydra.nixos.org/build/233251464 at 2023-09-02 - data-constructors # failure in job https://hydra.nixos.org/build/233241097 at 2023-09-02 + - data-default-instances-base # failure in job https://hydra.nixos.org/build/304235552 at 2025-08-11 + - data-default-instances-bytestring # failure in job https://hydra.nixos.org/build/304235538 at 2025-08-11 + - data-default-instances-case-insensitive # failure in job https://hydra.nixos.org/build/304235539 at 2025-08-11 + - data-default-instances-containers # failure in job https://hydra.nixos.org/build/304235541 at 2025-08-11 + - data-default-instances-dlist # failure in job https://hydra.nixos.org/build/304235550 at 2025-08-11 - data-default-instances-new-base # failure in job https://hydra.nixos.org/build/233256824 at 2023-09-02 + - data-default-instances-old-locale # failure in job https://hydra.nixos.org/build/304235551 at 2025-08-11 - data-default-instances-text # failure in job https://hydra.nixos.org/build/233209026 at 2023-09-02 + - data-default-instances-unordered-containers # failure in job https://hydra.nixos.org/build/304235558 at 2025-08-11 + - data-default-instances-vector # failure in job https://hydra.nixos.org/build/304235557 at 2025-08-11 - data-dispersal # failure in job https://hydra.nixos.org/build/233242611 at 2023-09-02 - data-diverse-lens # failure in job https://hydra.nixos.org/build/233221672 at 2023-09-02 - data-easy # failure in job https://hydra.nixos.org/build/233250802 at 2023-09-02 @@ -1172,6 +1225,8 @@ broken-packages: - data-fin # failure in job https://hydra.nixos.org/build/233216426 at 2023-09-02 - data-fin-simple # failure in job https://hydra.nixos.org/build/233191648 at 2023-09-02 - data-flagset # failure in job https://hydra.nixos.org/build/233211231 at 2023-09-02 + - data-forced # failure in job https://hydra.nixos.org/build/307517739 at 2025-09-19 + - data-forest # failure in job https://hydra.nixos.org/build/307517728 at 2025-09-19 - data-index # failure in job https://hydra.nixos.org/build/233197067 at 2023-09-02 - data-ivar # failure in job https://hydra.nixos.org/build/233239043 at 2023-09-02 - data-kiln # failure in job https://hydra.nixos.org/build/233220764 at 2023-09-02 @@ -1202,8 +1257,8 @@ broken-packages: - data-vector-growable # failure in job https://hydra.nixos.org/build/233244511 at 2023-09-02 - database-migrate # failure in job https://hydra.nixos.org/build/233201597 at 2023-09-02 - database-study # failure in job https://hydra.nixos.org/build/233222466 at 2023-09-02 - - datacrypto # failure in job https://hydra.nixos.org/build/295092721 at 2025-04-22 - datadog # failure in job https://hydra.nixos.org/build/233191124 at 2023-09-02 + - dataframe # failure in job https://hydra.nixos.org/build/307517771 at 2025-09-19 - DataIndex # failure in job https://hydra.nixos.org/build/233254506 at 2023-09-02 - datalog # failure in job https://hydra.nixos.org/build/233242707 at 2023-09-02 - datapacker # failure in job https://hydra.nixos.org/build/233206524 at 2023-09-02 @@ -1215,14 +1270,17 @@ broken-packages: - dawdle # failure in job https://hydra.nixos.org/build/233201776 at 2023-09-02 - dawg # failure in job https://hydra.nixos.org/build/233198731 at 2023-09-02 - dawg-ord # failure in job https://hydra.nixos.org/build/233192491 at 2023-09-02 + - dawgdic # failure in job https://hydra.nixos.org/build/307517863 at 2025-09-19 - daytripper # failure in job https://hydra.nixos.org/build/233233486 at 2023-09-02 - dbcleaner # failure in job https://hydra.nixos.org/build/233203745 at 2023-09-02 - dbf # failure in job https://hydra.nixos.org/build/233256644 at 2023-09-02 + - DBFunctor # failure in job https://hydra.nixos.org/build/307515955 at 2025-09-19 - DBlimited # failure in job https://hydra.nixos.org/build/233249214 at 2023-09-02 - dbm # failure in job https://hydra.nixos.org/build/233191264 at 2023-09-02 - dbmigrations # failure in job https://hydra.nixos.org/build/233242055 at 2023-09-02 - dbmonitor # failure in job https://hydra.nixos.org/build/234451674 at 2023-09-13 - DBus # failure in job https://hydra.nixos.org/build/233207529 at 2023-09-02 + - dbus-app-launcher # failure in job https://hydra.nixos.org/build/307610432 at 2025-09-19 - dbus-core # failure in job https://hydra.nixos.org/build/233228888 at 2023-09-02 - dbus-qq # failure in job https://hydra.nixos.org/build/233219927 at 2023-09-02 - dclabel # failure in job https://hydra.nixos.org/build/233231206 at 2023-09-02 @@ -1234,7 +1292,6 @@ broken-packages: - dead-simple-json # failure in job https://hydra.nixos.org/build/233204301 at 2023-09-02 - Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02 - dear-imgui # failure in job https://hydra.nixos.org/build/295092776 at 2025-04-22 - - debruijn # failure in job https://hydra.nixos.org/build/283207128 at 2024-12-31 - debug-me # failure in job https://hydra.nixos.org/build/233213991 at 2023-09-02 - debug-trace-file # failure in job https://hydra.nixos.org/build/233231840 at 2023-09-02 - debug-tracy # failure in job https://hydra.nixos.org/build/233242924 at 2023-09-02 @@ -1253,8 +1310,10 @@ broken-packages: - deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02 - defaultable-map # failure in job https://hydra.nixos.org/build/252731762 at 2024-03-16 - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02 + - defun-bool # failure in job https://hydra.nixos.org/build/307517807 at 2025-09-19 - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02 - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02 + - delaunayNd # failure in job https://hydra.nixos.org/build/307517814 at 2025-09-19 - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02 - delta-store # failure in job https://hydra.nixos.org/build/299186683 at 2025-06-23 - delude # failure in job https://hydra.nixos.org/build/233231224 at 2023-09-02 @@ -1275,6 +1334,7 @@ broken-packages: - derive-has-field # failure in job https://hydra.nixos.org/build/252735604 at 2024-03-16 - derive-lifted-instances # failure in job https://hydra.nixos.org/build/233194868 at 2023-09-02 - derive-monoid # failure in job https://hydra.nixos.org/build/233205670 at 2023-09-02 + - derive-prim # failure in job https://hydra.nixos.org/build/307517819 at 2025-09-19 - derive-storable-plugin # failure in job https://hydra.nixos.org/build/295092800 at 2025-04-22 - derive-trie # failure in job https://hydra.nixos.org/build/233207961 at 2023-09-02 - deriveJsonNoPrefix # failure in job https://hydra.nixos.org/build/233242453 at 2023-09-02 @@ -1297,6 +1357,7 @@ broken-packages: - dhall-check # failure in job https://hydra.nixos.org/build/233206425 at 2023-09-02 - dhall-csv # failure in job https://hydra.nixos.org/build/233256049 at 2023-09-02 - dhall-fly # failure in job https://hydra.nixos.org/build/233220306 at 2023-09-02 + - dhall-lsp-server # failure in job https://hydra.nixos.org/build/307610458 at 2025-09-19 - dhall-recursive-adt # failure in job https://hydra.nixos.org/build/233210665 at 2023-09-02 - dhall-text # failure in job https://hydra.nixos.org/build/233253809 at 2023-09-02 - dhall-text-shell # failure in job https://hydra.nixos.org/build/244399613 at 2024-01-01 @@ -1357,6 +1418,7 @@ broken-packages: - discrete # failure in job https://hydra.nixos.org/build/233206492 at 2023-09-02 - DiscussionSupportSystem # failure in job https://hydra.nixos.org/build/233244662 at 2023-09-02 - Dish # failure in job https://hydra.nixos.org/build/233233264 at 2023-09-02 + - disjoint-containers # failure in job https://hydra.nixos.org/build/307517921 at 2025-09-19 - disjoint-set # failure in job https://hydra.nixos.org/build/233201934 at 2023-09-02 - disjoint-set-stateful # failure in job https://hydra.nixos.org/build/233253300 at 2023-09-02 - disk-bytes # failure in job https://hydra.nixos.org/build/252722796 at 2024-03-16 @@ -1378,8 +1440,10 @@ broken-packages: - djembe # failure in job https://hydra.nixos.org/build/233201037 at 2023-09-02 - djinn-ghc # failure in job https://hydra.nixos.org/build/233250488 at 2023-09-02 - djinn-th # failure in job https://hydra.nixos.org/build/233219394 at 2023-09-02 + - dlist-nonempty # failure in job https://hydra.nixos.org/build/307517939 at 2025-09-19 - dmcc # failure in job https://hydra.nixos.org/build/233259362 at 2023-09-02 - dmenu # failure in job https://hydra.nixos.org/build/233230756 at 2023-09-02 + - dns-patterns # failure in job https://hydra.nixos.org/build/307517942 at 2025-09-19 - dnscache # failure in job https://hydra.nixos.org/build/233227512 at 2023-09-02 - dnsrbl # failure in job https://hydra.nixos.org/build/233196401 at 2023-09-02 - dnssd # failure in job https://hydra.nixos.org/build/233194195 at 2023-09-02 @@ -1421,6 +1485,7 @@ broken-packages: - dpor # failure in job https://hydra.nixos.org/build/233213785 at 2023-09-02 - dr-cabal # failure in job https://hydra.nixos.org/build/233253361 at 2023-09-02 - dragen # failure in job https://hydra.nixos.org/build/233254270 at 2023-09-02 + - drawille # failure in job https://hydra.nixos.org/build/307518024 at 2025-09-19 - drClickOn # failure in job https://hydra.nixos.org/build/233217916 at 2023-09-02 - dresdner-verkehrsbetriebe # failure in job https://hydra.nixos.org/build/233222542 at 2023-09-02 - DrIFT # failure in job https://hydra.nixos.org/build/233220463 at 2023-09-02 @@ -1454,6 +1519,7 @@ broken-packages: - dvault # failure in job https://hydra.nixos.org/build/233225259 at 2023-09-02 - dvdread # failure in job https://hydra.nixos.org/build/233227587 at 2023-09-02 - dvi-processing # failure in job https://hydra.nixos.org/build/233224281 at 2023-09-02 + - dvorak # failure in job https://hydra.nixos.org/build/307518010 at 2025-09-19 - dwarf # failure in job https://hydra.nixos.org/build/233244074 at 2023-09-02 - dwarfadt # failure in job https://hydra.nixos.org/build/233254895 at 2023-09-02 - dyckword # failure in job https://hydra.nixos.org/build/233256385 at 2023-09-02 @@ -1480,11 +1546,13 @@ broken-packages: - easy-api # failure in job https://hydra.nixos.org/build/233208757 at 2023-09-02 - easy-args # failure in job https://hydra.nixos.org/build/233221956 at 2023-09-02 - easy-bitcoin # failure in job https://hydra.nixos.org/build/233201882 at 2023-09-02 + - easy-logger # failure in job https://hydra.nixos.org/build/307518032 at 2025-09-19 - easyjson # failure in job https://hydra.nixos.org/build/233199317 at 2023-09-02 - easyplot # failure in job https://hydra.nixos.org/build/233213312 at 2023-09-02 - easyrender # failure in job https://hydra.nixos.org/build/252710524 at 2024-03-16 - easytest # failure in job https://hydra.nixos.org/build/233209710 at 2023-09-02 - ebeats # failure in job https://hydra.nixos.org/build/233235039 at 2023-09-02 + - ebird-api # failure in job https://hydra.nixos.org/build/307518027 at 2025-09-19 - ebird-client # failure in job https://hydra.nixos.org/build/295093002 at 2025-04-22 - ebnf-bff # failure in job https://hydra.nixos.org/build/233221694 at 2023-09-02 - ec2-unikernel # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237245061 at 2023-10-21 @@ -1504,9 +1572,11 @@ broken-packages: - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 + - effect-stack # failure in job https://hydra.nixos.org/build/307518043 at 2025-09-19 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 + - effects # failure in job https://hydra.nixos.org/build/307518053 at 2025-09-19 - effet # failure in job https://hydra.nixos.org/build/233204265 at 2023-09-02 - effin # failure in job https://hydra.nixos.org/build/233212960 at 2023-09-02 - eflint # failure in job https://hydra.nixos.org/build/295122827 at 2025-04-22 @@ -1518,6 +1588,7 @@ broken-packages: - Eight-Ball-Pool-Hack-Cheats # failure in job https://hydra.nixos.org/build/233211937 at 2023-09-02 - eio # failure in job https://hydra.nixos.org/build/233256103 at 2023-09-02 - either-both # failure in job https://hydra.nixos.org/build/252717090 at 2024-03-16 + - either-list-functions # failure in job https://hydra.nixos.org/build/307518055 at 2025-09-19 - either-unwrap # failure in job https://hydra.nixos.org/build/233254495 at 2023-09-02 - EitherT # failure in job https://hydra.nixos.org/build/233217056 at 2023-09-02 - ejdb2-binding # failure in job https://hydra.nixos.org/build/233253666 at 2023-09-02 @@ -1540,6 +1611,7 @@ broken-packages: - elm-reactor # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-repl # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-server # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. + - elm-street # failure in job https://hydra.nixos.org/build/307610478 at 2025-09-19 - elm-websocket # failure in job https://hydra.nixos.org/build/233192201 at 2023-09-02 - elm-yesod # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elminator # failure in job https://hydra.nixos.org/build/252729949 at 2024-03-16 @@ -1549,6 +1621,7 @@ broken-packages: - email-header # failure in job https://hydra.nixos.org/build/233243713 at 2023-09-02 - email-postmark # failure in job https://hydra.nixos.org/build/233245426 at 2023-09-02 - emailaddress # failure in job https://hydra.nixos.org/build/233202700 at 2023-09-02 + - emanote # failure in job https://hydra.nixos.org/build/307610499 at 2025-09-19 - embed-config # failure in job https://hydra.nixos.org/build/233237733 at 2023-09-02 - embla # failure in job https://hydra.nixos.org/build/233206703 at 2023-09-02 - emgm # failure in job https://hydra.nixos.org/build/233257789 at 2023-09-02 @@ -1575,6 +1648,7 @@ broken-packages: - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02 - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02 - envy-extensible # failure in job https://hydra.nixos.org/build/233229313 at 2023-09-02 + - eo-phi-normalizer # failure in job https://hydra.nixos.org/build/307518140 at 2025-09-19 - epanet-haskell # failure in job https://hydra.nixos.org/build/233197331 at 2023-09-02 - epass # failure in job https://hydra.nixos.org/build/233194117 at 2023-09-02 - epi-sim # failure in job https://hydra.nixos.org/build/233246076 at 2023-09-02 @@ -1592,6 +1666,7 @@ broken-packages: - erlang # failure in job https://hydra.nixos.org/build/233195837 at 2023-09-02 - erlang-ffi # failure in job https://hydra.nixos.org/build/233233314 at 2023-09-02 - eros # failure in job https://hydra.nixos.org/build/233247983 at 2023-09-02 + - erpnext-api-client # failure in job https://hydra.nixos.org/build/307610501 at 2025-09-19 - errno # failure in job https://hydra.nixos.org/build/252725782 at 2024-03-16 - error-context # failure in job https://hydra.nixos.org/build/233245027 at 2023-09-02 - error-continuations # failure in job https://hydra.nixos.org/build/233232357 at 2023-09-02 @@ -1647,16 +1722,17 @@ broken-packages: - exhaustive # failure in job https://hydra.nixos.org/build/233238024 at 2023-09-02 - exherbo-cabal # failure in job https://hydra.nixos.org/build/233206319 at 2023-09-02 - exif # failure in job https://hydra.nixos.org/build/233229247 at 2023-09-02 + - exiftool # failure in job https://hydra.nixos.org/build/307518175 at 2025-09-19 - exigo-schema # failure in job https://hydra.nixos.org/build/233197808 at 2023-09-02 - exinst-deepseq # failure in job https://hydra.nixos.org/build/233207947 at 2023-09-02 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02 - - exotic-list-monads # failure in job https://hydra.nixos.org/build/302802593 at 2025-07-27 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 - explain # failure in job https://hydra.nixos.org/build/233207210 at 2023-09-02 + - explainable-predicates # failure in job https://hydra.nixos.org/build/307518185 at 2025-09-19 - explicit-constraint-lens # failure in job https://hydra.nixos.org/build/233230188 at 2023-09-02 - explicit-determinant # failure in job https://hydra.nixos.org/build/233246543 at 2023-09-02 - explicit-iomodes # failure in job https://hydra.nixos.org/build/233247342 at 2023-09-02 @@ -1665,9 +1741,12 @@ broken-packages: - expressions # failure in job https://hydra.nixos.org/build/233212192 at 2023-09-02 - expresso # failure in job https://hydra.nixos.org/build/233208513 at 2023-09-02 - extcore # failure in job https://hydra.nixos.org/build/233230369 at 2023-09-02 + - extended # failure in job https://hydra.nixos.org/build/307518193 at 2025-09-19 - extended-categories # failure in job https://hydra.nixos.org/build/233258803 at 2023-09-02 - extended-containers # failure in job https://hydra.nixos.org/build/233226876 at 2023-09-02 + - extensible # failure in job https://hydra.nixos.org/build/307518230 at 2025-09-19 - extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02 + - extensible-effects # failure in job https://hydra.nixos.org/build/307518197 at 2025-09-19 - extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02 - extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02 - external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02 @@ -1687,16 +1766,18 @@ broken-packages: - facts # failure in job https://hydra.nixos.org/build/233194410 at 2023-09-02 - Facts # failure in job https://hydra.nixos.org/build/233224533 at 2023-09-02 - fad # failure in job https://hydra.nixos.org/build/252716941 at 2024-03-16 + - fadno-braids # failure in job https://hydra.nixos.org/build/307610508 at 2025-09-19 + - fadno-xml # failure in job https://hydra.nixos.org/build/307518209 at 2025-09-19 - failable # failure in job https://hydra.nixos.org/build/252731566 at 2024-03-16 - failable-list # failure in job https://hydra.nixos.org/build/233198924 at 2023-09-02 - failure # failure in job https://hydra.nixos.org/build/252738855 at 2024-03-16 - failure-detector # failure in job https://hydra.nixos.org/build/233244451 at 2023-09-02 - fake # failure in job https://hydra.nixos.org/build/233199052 at 2023-09-02 - fake-type # failure in job https://hydra.nixos.org/build/233197081 at 2023-09-02 + - fakedata-quickcheck # failure in job https://hydra.nixos.org/build/307518270 at 2025-09-19 - faktory # failure in job https://hydra.nixos.org/build/233240158 at 2023-09-02 - falling-turnip # failure in job https://hydra.nixos.org/build/252737877 at 2024-03-16 - fast-combinatorics # failure in job https://hydra.nixos.org/build/233250615 at 2023-09-02 - - fast-digits # failure in job https://hydra.nixos.org/build/295093219 at 2025-04-22 - fast-downward # failure in job https://hydra.nixos.org/build/252721794 at 2024-03-16 - fast-nats # failure in job https://hydra.nixos.org/build/233238596 at 2023-09-02 - fast-tagsoup-utf8-only # failure in job https://hydra.nixos.org/build/233202322 at 2023-09-02 @@ -1712,6 +1793,7 @@ broken-packages: - fathead-util # failure in job https://hydra.nixos.org/build/233255882 at 2023-09-02 - fay # failure in job https://hydra.nixos.org/build/233197122 at 2023-09-02 - fb-persistent # failure in job https://hydra.nixos.org/build/233193999 at 2023-09-02 + - fb-stubs # failure in job https://hydra.nixos.org/build/307518242 at 2025-09-19 - fb-util # failure in job https://hydra.nixos.org/build/296519228 at 2025-05-14 - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02 - fca # failure in job https://hydra.nixos.org/build/233205050 at 2023-09-02 @@ -1724,8 +1806,10 @@ broken-packages: - fclabels-monadlib # failure in job https://hydra.nixos.org/build/233192353 at 2023-09-02 - fcm-client # failure in job https://hydra.nixos.org/build/233241459 at 2023-09-02 - fdo-trash # failure in job https://hydra.nixos.org/build/233244987 at 2023-09-02 + - fearOfView # failure in job https://hydra.nixos.org/build/307518236 at 2025-09-19 - feather # failure in job https://hydra.nixos.org/build/233192230 at 2023-09-02 - feature-flipper # failure in job https://hydra.nixos.org/build/233192476 at 2023-09-02 + - fec # failure in job https://hydra.nixos.org/build/307518247 at 2025-09-19 - fedora-packages # failure in job https://hydra.nixos.org/build/233256230 at 2023-09-02 - fedora-repoquery # failure in job https://hydra.nixos.org/build/269676305 at 2024-08-19 - feed-cli # failure in job https://hydra.nixos.org/build/233234086 at 2023-09-02 @@ -1792,6 +1876,8 @@ broken-packages: - fixed-precision # failure in job https://hydra.nixos.org/build/233226433 at 2023-09-02 - fixed-storable-array # failure in job https://hydra.nixos.org/build/233200413 at 2023-09-02 - fixed-timestep # failure in job https://hydra.nixos.org/build/233252950 at 2023-09-02 + - fixed-vector-cborg # failure in job https://hydra.nixos.org/build/307518304 at 2025-09-19 + - fixed-vector-hetero # failure in job https://hydra.nixos.org/build/307518298 at 2025-09-19 - fixed-width # failure in job https://hydra.nixos.org/build/233236195 at 2023-09-02 - fixedprec # failure in job https://hydra.nixos.org/build/233231519 at 2023-09-02 - fixer # failure in job https://hydra.nixos.org/build/233246038 at 2023-09-02 @@ -1806,6 +1892,7 @@ broken-packages: - flat-mcmc # failure in job https://hydra.nixos.org/build/233234404 at 2023-09-02 - flatbuffers # failure in job https://hydra.nixos.org/build/252718245 at 2024-03-16 - flatbuffers-parser # failure in job https://hydra.nixos.org/build/295093316 at 2025-04-22 + - flexible-numeric-parsers # failure in job https://hydra.nixos.org/build/307518312 at 2025-09-19 - flexible-time # failure in job https://hydra.nixos.org/build/233208099 at 2023-09-02 - flickr # failure in job https://hydra.nixos.org/build/233212718 at 2023-09-02 - flink-statefulfun # failure in job https://hydra.nixos.org/build/252724456 at 2024-03-16 @@ -1824,7 +1911,6 @@ broken-packages: - fluffy-parser # failure in job https://hydra.nixos.org/build/233212110 at 2023-09-02 - fluid-idl # failure in job https://hydra.nixos.org/build/233214307 at 2023-09-02 - fluidsynth # failure in job https://hydra.nixos.org/build/233225998 at 2023-09-02 - - flux-monoid # failure in job https://hydra.nixos.org/build/233202845 at 2023-09-02 - fmark # failure in job https://hydra.nixos.org/build/233196159 at 2023-09-02 - FModExRaw # failure in job https://hydra.nixos.org/build/233259032 at 2023-09-02 - fn-extra # failure in job https://hydra.nixos.org/build/252737996 at 2024-03-16 @@ -1835,6 +1921,7 @@ broken-packages: - folds-common # failure in job https://hydra.nixos.org/build/233237316 at 2023-09-02 - follow # failure in job https://hydra.nixos.org/build/233255423 at 2023-09-02 - follow-file # failure in job https://hydra.nixos.org/build/252732901 at 2024-03-16 + - folly-clib # failure in job https://hydra.nixos.org/build/307518337 at 2025-09-19 - font-opengl-basic4x6 # failure in job https://hydra.nixos.org/build/233200978 at 2023-09-02 - fontconfig-pure # failure in job https://hydra.nixos.org/build/233254573 at 2023-09-02 - for-free # failure in job https://hydra.nixos.org/build/233235927 at 2023-09-02 @@ -1853,10 +1940,12 @@ broken-packages: - forml # failure in job https://hydra.nixos.org/build/295093386 at 2025-04-22 - formura # failure in job https://hydra.nixos.org/build/233193674 at 2023-09-02 - Fortnite-Hack-Cheats-Free-V-Bucks-Generator # failure in job https://hydra.nixos.org/build/233233147 at 2023-09-02 + - fortran-src # failure in job https://hydra.nixos.org/build/307610526 at 2025-09-19 - fortran-src-extras # failure in job https://hydra.nixos.org/build/295093418 at 2025-04-22 - fortran-vars # failure in job https://hydra.nixos.org/build/233257719 at 2023-09-02 - fortytwo # failure in job https://hydra.nixos.org/build/233209552 at 2023-09-02 - foscam-filename # failure in job https://hydra.nixos.org/build/233237326 at 2023-09-02 + - fp-ieee # failure in job https://hydra.nixos.org/build/307518380 at 2025-09-19 - FPretty # failure in job https://hydra.nixos.org/build/233196648 at 2023-09-02 - fptest # failure in job https://hydra.nixos.org/build/233233288 at 2023-09-02 - fquery # failure in job https://hydra.nixos.org/build/233196287 at 2023-09-02 @@ -1864,6 +1953,7 @@ broken-packages: - fractals # failure in job https://hydra.nixos.org/build/233205969 at 2023-09-02 - fraction # failure in job https://hydra.nixos.org/build/233204186 at 2023-09-02 - frag # failure in job https://hydra.nixos.org/build/234458411 at 2023-09-13 + - Frames # failure in job https://hydra.nixos.org/build/307609920 at 2025-09-19 - Frames-beam # failure in job https://hydra.nixos.org/build/241429730 at 2023-11-19 - Frames-streamly # failure in job https://hydra.nixos.org/build/241420906 at 2023-11-19 - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02 @@ -1873,7 +1963,9 @@ broken-packages: - free-alacarte # failure in job https://hydra.nixos.org/build/275141793 at 2024-10-21 - free-applicative-t # failure in job https://hydra.nixos.org/build/252715728 at 2024-03-16 - free-concurrent # failure in job https://hydra.nixos.org/build/233257070 at 2023-09-02 + - free-foil # failure in job https://hydra.nixos.org/build/307518377 at 2025-09-19 - free-http # failure in job https://hydra.nixos.org/build/233227362 at 2023-09-02 + - free-listt # failure in job https://hydra.nixos.org/build/307518376 at 2025-09-19 - free-operational # failure in job https://hydra.nixos.org/build/233201565 at 2023-09-02 - free-theorems # failure in job https://hydra.nixos.org/build/252725016 at 2024-03-16 - free-theorems-counterexamples # failure in job https://hydra.nixos.org/build/233231989 at 2023-09-02 @@ -1884,6 +1976,7 @@ broken-packages: - free-vector-spaces # failure in job https://hydra.nixos.org/build/299137660 at 2025-06-23 - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02 - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02 + - freer-simple # failure in job https://hydra.nixos.org/build/307518394 at 2025-09-19 - freer-simple-catching # failure in job https://hydra.nixos.org/build/295122831 at 2025-04-22 - freer-simple-http # failure in job https://hydra.nixos.org/build/295122832 at 2025-04-22 - freer-simple-profiling # failure in job https://hydra.nixos.org/build/295122835 at 2025-04-22 @@ -1911,6 +2004,7 @@ broken-packages: - fsutils # failure in job https://hydra.nixos.org/build/233204599 at 2023-09-02 - fswait # failure in job https://hydra.nixos.org/build/233247770 at 2023-09-02 - fswatch # failure in job https://hydra.nixos.org/build/233233447 at 2023-09-02 + - fswatcher # failure in job https://hydra.nixos.org/build/307610532 at 2025-09-19 - ft-generator # failure in job https://hydra.nixos.org/build/233205823 at 2023-09-02 - FTGL-bytestring # failure in job https://hydra.nixos.org/build/233256032 at 2023-09-02 - ftp-conduit # failure in job https://hydra.nixos.org/build/233244330 at 2023-09-02 @@ -1920,8 +2014,10 @@ broken-packages: - full-sessions # failure in job https://hydra.nixos.org/build/233254332 at 2023-09-02 - funbot-client # failure in job https://hydra.nixos.org/build/233255739 at 2023-09-02 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 + - funcons-values # failure in job https://hydra.nixos.org/build/307518434 at 2025-09-19 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 + - functor-classes-compat # failure in job https://hydra.nixos.org/build/307518409 at 2025-09-19 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 @@ -1943,6 +2039,7 @@ broken-packages: - futures # failure in job https://hydra.nixos.org/build/233230206 at 2023-09-02 - fuzzy-parse # failure in job https://hydra.nixos.org/build/252728734 at 2024-03-16 - fuzzy-timings # failure in job https://hydra.nixos.org/build/233235765 at 2023-09-02 + - fuzzyfind # failure in job https://hydra.nixos.org/build/307518431 at 2025-09-19 - fvars # failure in job https://hydra.nixos.org/build/234461649 at 2023-09-13 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 @@ -1958,6 +2055,7 @@ broken-packages: - garepinoh # failure in job https://hydra.nixos.org/build/233238111 at 2023-09-02 - gas # failure in job https://hydra.nixos.org/build/233233966 at 2023-09-02 - gather # failure in job https://hydra.nixos.org/build/233208848 at 2023-09-02 + - gauge # failure in job https://hydra.nixos.org/build/307518458 at 2025-09-19 - gc-monitoring-wai # failure in job https://hydra.nixos.org/build/233209449 at 2023-09-02 - gconf # failure in job https://hydra.nixos.org/build/233259023 at 2023-09-02 - gdiff-th # failure in job https://hydra.nixos.org/build/233215065 at 2023-09-02 @@ -1968,8 +2066,10 @@ broken-packages: - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02 - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02 - gen-passwd # failure in job https://hydra.nixos.org/build/233224836 at 2023-09-02 + - genai-lib # failure in job https://hydra.nixos.org/build/307610537 at 2025-09-19 - gender # failure in job https://hydra.nixos.org/build/233235712 at 2023-09-02 - genders # failure in job https://hydra.nixos.org/build/233238566 at 2023-09-02 + - general-allocate # failure in job https://hydra.nixos.org/build/307518463 at 2025-09-19 - general-prelude # failure in job https://hydra.nixos.org/build/233248628 at 2023-09-02 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 @@ -1998,6 +2098,7 @@ broken-packages: - genetics # failure in job https://hydra.nixos.org/build/233219599 at 2023-09-02 - genifunctors # failure in job https://hydra.nixos.org/build/233255126 at 2023-09-02 - geniplate # failure in job https://hydra.nixos.org/build/233233607 at 2023-09-02 + - geniplate-mirror # failure in job https://hydra.nixos.org/build/307518529 at 2025-09-19 - genprog # failure in job https://hydra.nixos.org/build/233198970 at 2023-09-02 - GenSmsPdu # failure in job https://hydra.nixos.org/build/253702098 at 2024-03-31 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 @@ -2033,6 +2134,7 @@ broken-packages: - ghc-events-parallel # failure in job https://hydra.nixos.org/build/233218757 at 2023-09-02 - ghc-gc-hook # failure in job https://hydra.nixos.org/build/233195053 at 2023-09-02 - ghc-generic-instances # failure in job https://hydra.nixos.org/build/233259298 at 2023-09-02 + - ghc-hie # failure in job https://hydra.nixos.org/build/307518574 at 2025-09-19 - ghc-hotswap # failure in job https://hydra.nixos.org/build/233220146 at 2023-09-02 - ghc-internal # failure in job https://hydra.nixos.org/build/260723678 at 2024-05-25 - ghc-justdoit # failure in job https://hydra.nixos.org/build/233221884 at 2023-09-02 @@ -2049,7 +2151,9 @@ broken-packages: - ghc-syb-utils # failure in job https://hydra.nixos.org/build/233229196 at 2023-09-02 - ghc-symbol # failure in job https://hydra.nixos.org/build/252710738 at 2024-03-16 - ghc-time-alloc-prof # failure in job https://hydra.nixos.org/build/233242289 at 2023-09-02 + - ghc-typelits-presburger # failure in job https://hydra.nixos.org/build/307518587 at 2025-09-19 - ghc-usage # failure in job https://hydra.nixos.org/build/233199565 at 2023-09-02 + - ghci-dap # failure in job https://hydra.nixos.org/build/307518603 at 2025-09-19 - ghci-diagrams # failure in job https://hydra.nixos.org/build/233194407 at 2023-09-02 - ghci-haskeline # failure in job https://hydra.nixos.org/build/233216940 at 2023-09-02 - ghci-history-parser # failure in job https://hydra.nixos.org/build/233204448 at 2023-09-02 @@ -2059,26 +2163,30 @@ broken-packages: - ghcide-test-utils # failure in job https://hydra.nixos.org/build/253687657 at 2024-03-31 - ghcjs-ajax # failure in job https://hydra.nixos.org/build/295093584 at 2025-04-22 - ghcjs-base-stub # timeout - - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02 - ghcjs-fetch # timeout - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02 - ghcjs-websockets # Does not work on the js backend added in 9.6+, only on ghcjs, where we markUnbroken - ghcjs-xhr # failure in job https://hydra.nixos.org/build/233235693 at 2023-09-02 - ghclive # failure in job https://hydra.nixos.org/build/233231592 at 2023-09-02 + - ghcprofview # failure in job https://hydra.nixos.org/build/307610598 at 2025-09-19 - ghcup # failure in job https://hydra.nixos.org/build/295093612 at 2025-04-22 - gi-coglpango # failure in job https://hydra.nixos.org/build/233194401 at 2023-09-02 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02 + - gi-gtk-declarative # failure in job https://hydra.nixos.org/build/307610571 at 2025-09-19 + - gi-gtk-hs # failure in job https://hydra.nixos.org/build/307610574 at 2025-09-19 - gi-gtk4-layer-shell # failure in job https://hydra.nixos.org/build/302803068 at 2025-07-27 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 + - gi-webkit # failure in job https://hydra.nixos.org/build/307610609 at 2025-09-19 - gi-webkit2webextension # failure in job https://hydra.nixos.org/build/254424710 at 2024-03-31 - gi-webkitwebprocessextension # failure in job https://hydra.nixos.org/build/233227647 at 2023-09-02 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02 + - gigaparsec # failure in job https://hydra.nixos.org/build/307518669 at 2025-09-19 - ginger2 # failure in job https://hydra.nixos.org/build/302803092 at 2025-07-27 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 @@ -2092,6 +2200,7 @@ broken-packages: - git-cuk # failure in job https://hydra.nixos.org/build/233211733 at 2023-09-02 - git-date # failure in job https://hydra.nixos.org/build/233259193 at 2023-09-02 - git-jump # failure in job https://hydra.nixos.org/build/233206544 at 2023-09-02 + - git-phoenix # failure in job https://hydra.nixos.org/build/307610604 at 2025-09-19 - git-repair # failure in job https://hydra.nixos.org/build/233222686 at 2023-09-02 - git-vogue # failure in job https://hydra.nixos.org/build/233249420 at 2023-09-02 - gitea-api # failure in job https://hydra.nixos.org/build/295093716 at 2025-04-22 @@ -2104,9 +2213,9 @@ broken-packages: - gitHUD # failure in job https://hydra.nixos.org/build/233221244 at 2023-09-02 - gitignore # failure in job https://hydra.nixos.org/build/233207356 at 2023-09-02 - gitlab-api # failure in job https://hydra.nixos.org/build/233256639 at 2023-09-02 + - gitlib # failure in job https://hydra.nixos.org/build/307518686 at 2025-09-19 - gitlib-cmdline # failure in job https://hydra.nixos.org/build/233230857 at 2023-09-02 - gitlib-utils # failure in job https://hydra.nixos.org/build/233190826 at 2023-09-02 - - gitrev-typed # failure in job https://hydra.nixos.org/build/299137966 at 2025-06-23 - gitter # failure in job https://hydra.nixos.org/build/233210040 at 2023-09-02 - glade # failure in job https://hydra.nixos.org/build/233229566 at 2023-09-02 - glambda # failure in job https://hydra.nixos.org/build/252728236 at 2024-03-16 @@ -2118,6 +2227,7 @@ broken-packages: - gli # failure in job https://hydra.nixos.org/build/233210279 at 2023-09-02 - glicko # failure in job https://hydra.nixos.org/build/233200868 at 2023-09-02 - glider-nlp # failure in job https://hydra.nixos.org/build/233229600 at 2023-09-02 + - gll # failure in job https://hydra.nixos.org/build/307518707 at 2025-09-19 - GLMatrix # failure in job https://hydra.nixos.org/build/233202880 at 2023-09-02 - glob-posix # failure in job https://hydra.nixos.org/build/233253059 at 2023-09-02 - global-variables # failure in job https://hydra.nixos.org/build/233204607 at 2023-09-02 @@ -2126,12 +2236,14 @@ broken-packages: - gloss-examples # failure in job https://hydra.nixos.org/build/252718124 at 2024-03-16 - gloss-export # failure in job https://hydra.nixos.org/build/234444988 at 2023-09-13 - gloss-game # failure in job https://hydra.nixos.org/build/234460935 at 2023-09-13 + - gloss-raster # failure in job https://hydra.nixos.org/build/307518723 at 2025-09-19 - gloss-raster-massiv # failure in job https://hydra.nixos.org/build/253683246 at 2024-03-31 - glpk-hs # failure in job https://hydra.nixos.org/build/295093740 at 2025-04-22 - glsl # failure in job https://hydra.nixos.org/build/233224139 at 2023-09-02 - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02 - glualint # failure in job https://hydra.nixos.org/build/295093757 at 2025-04-22 - glue # failure in job https://hydra.nixos.org/build/233233587 at 2023-09-02 + - glue-ekg # failure in job https://hydra.nixos.org/build/307518731 at 2025-09-19 - gnutls # failure in job https://hydra.nixos.org/build/252734570 at 2024-03-16 - goa # failure in job https://hydra.nixos.org/build/233193916 at 2023-09-02 - goal-core # failure in job https://hydra.nixos.org/build/233242261 at 2023-09-02 @@ -2156,18 +2268,19 @@ broken-packages: - gogol-useraccounts # failure in job https://hydra.nixos.org/build/286425223 at 2025-01-25 - gooey # failure in job https://hydra.nixos.org/build/233192207 at 2023-09-02 - google-cloud # failure in job https://hydra.nixos.org/build/233218503 at 2023-09-02 + - google-cloud-pubsub # failure in job https://hydra.nixos.org/build/307610806 at 2025-09-19 - google-html5-slide # failure in job https://hydra.nixos.org/build/233233311 at 2023-09-02 - google-oauth2 # failure in job https://hydra.nixos.org/build/233223208 at 2023-09-02 - google-oauth2-easy # failure in job https://hydra.nixos.org/build/233251694 at 2023-09-02 - google-search # failure in job https://hydra.nixos.org/build/233214524 at 2023-09-02 - google-server-api # failure in job https://hydra.nixos.org/build/233218521 at 2023-09-02 + - google-static-maps # failure in job https://hydra.nixos.org/build/307610800 at 2025-09-19 - google-translate # failure in job https://hydra.nixos.org/build/233234076 at 2023-09-02 - GoogleCodeJam # failure in job https://hydra.nixos.org/build/233234738 at 2023-09-02 - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 at 2023-09-02 - gopherbot # failure in job https://hydra.nixos.org/build/233207680 at 2023-09-02 - gopro-plus # failure in job https://hydra.nixos.org/build/233225073 at 2023-09-02 - gore-and-ash # failure in job https://hydra.nixos.org/build/233237810 at 2023-09-02 - - GOST34112012-Hash # failure in job https://hydra.nixos.org/build/295090921 at 2025-04-22 - gothic # failure in job https://hydra.nixos.org/build/233218967 at 2023-09-02 - GotoT-transformers # failure in job https://hydra.nixos.org/build/233229336 at 2023-09-02 - gotta-go-fast # failure in job https://hydra.nixos.org/build/233213439 at 2023-09-02 @@ -2183,11 +2296,13 @@ broken-packages: - Grafos # failure in job https://hydra.nixos.org/build/233201494 at 2023-09-02 - grakn # failure in job https://hydra.nixos.org/build/233218052 at 2023-09-02 - grammatical-parsers # failure in job https://hydra.nixos.org/build/233252219 at 2023-09-02 + - granite # failure in job https://hydra.nixos.org/build/307518928 at 2025-09-19 - graph-matchings # failure in job https://hydra.nixos.org/build/233245821 at 2023-09-02 - graph-rewriting # failure in job https://hydra.nixos.org/build/233191278 at 2023-09-02 - graph-serialize # failure in job https://hydra.nixos.org/build/233192162 at 2023-09-02 - graph-trace # failure in job https://hydra.nixos.org/build/295093918 at 2025-04-22 - graph-utils # failure in job https://hydra.nixos.org/build/233224932 at 2023-09-02 + - graph-wrapper # failure in job https://hydra.nixos.org/build/307518936 at 2025-09-19 - Graph500 # failure in job https://hydra.nixos.org/build/233257715 at 2023-09-02 - Graphalyze # failure in job https://hydra.nixos.org/build/233194082 at 2023-09-02 - graphbuilder # failure in job https://hydra.nixos.org/build/233190797 at 2023-09-02 @@ -2200,6 +2315,7 @@ broken-packages: - graphql-w-persistent # failure in job https://hydra.nixos.org/build/233228956 at 2023-09-02 - graphted # failure in job https://hydra.nixos.org/build/233227052 at 2023-09-02 - graphula-core # failure in job https://hydra.nixos.org/build/233259608 at 2023-09-02 + - graphwiz # failure in job https://hydra.nixos.org/build/307518943 at 2025-09-19 - graql # failure in job https://hydra.nixos.org/build/233219809 at 2023-09-02 - grasp # failure in job https://hydra.nixos.org/build/233213280 at 2023-09-02 - gray-code # failure in job https://hydra.nixos.org/build/233234283 at 2023-09-02 @@ -2210,6 +2326,8 @@ broken-packages: - Grempa # failure in job https://hydra.nixos.org/build/233256440 at 2023-09-02 - grenade # failure in job https://hydra.nixos.org/build/295093942 at 2025-04-22 - greplicate # failure in job https://hydra.nixos.org/build/233215148 at 2023-09-02 + - grfn # failure in job https://hydra.nixos.org/build/307610812 at 2025-09-19 + - grid # failure in job https://hydra.nixos.org/build/307518948 at 2025-09-19 - gridfs # failure in job https://hydra.nixos.org/build/233213958 at 2023-09-02 - grids # failure in job https://hydra.nixos.org/build/233218294 at 2023-09-02 - grm # failure in job https://hydra.nixos.org/build/233259788 at 2023-09-02 @@ -2221,14 +2339,15 @@ broken-packages: - groupBy # failure in job https://hydra.nixos.org/build/295093944 at 2025-04-22 - grouped-list # failure in job https://hydra.nixos.org/build/233240891 at 2023-09-02 - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02 + - growable-vector # failure in job https://hydra.nixos.org/build/307518962 at 2025-09-19 - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02 - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02 - grpc-haskell-core # failure in job https://hydra.nixos.org/build/267997256 at 2024-07-31 - - gruvbox-colors # failure in job https://hydra.nixos.org/build/295454932 at 2025-05-02 - gsl-random # failure in job https://hydra.nixos.org/build/233191503 at 2023-09-02 - gstreamer # failure in job https://hydra.nixos.org/build/233239224 at 2023-09-02 - GTALib # failure in job https://hydra.nixos.org/build/233250568 at 2023-09-02 - gtk-helpers # failure in job https://hydra.nixos.org/build/233244213 at 2023-09-02 + - gtk-strut # failure in job https://hydra.nixos.org/build/307610816 at 2025-09-19 - gtk-toy # failure in job https://hydra.nixos.org/build/233208132 at 2023-09-02 - gtk2hs-cast-th # failure in job https://hydra.nixos.org/build/233244841 at 2023-09-02 - gtk2hs-hello # failure in job https://hydra.nixos.org/build/233232522 at 2023-09-02 @@ -2243,6 +2362,7 @@ broken-packages: - gulcii # failure in job https://hydra.nixos.org/build/233253472 at 2023-09-02 - gw # failure in job https://hydra.nixos.org/build/233252652 at 2023-09-02 - gyah-bin # failure in job https://hydra.nixos.org/build/233206981 at 2023-09-02 + - gym-hs # failure in job https://hydra.nixos.org/build/307518980 at 2025-09-19 - gym-http-api # failure in job https://hydra.nixos.org/build/233219968 at 2023-09-02 - h-booru # failure in job https://hydra.nixos.org/build/233258209 at 2023-09-02 - h-gpgme # failure in job https://hydra.nixos.org/build/233240826 at 2023-09-02 @@ -2275,7 +2395,6 @@ broken-packages: - haddock-api # failure in job https://hydra.nixos.org/build/233216515 at 2023-09-02 - haddock-leksah # failure in job https://hydra.nixos.org/build/233206878 at 2023-09-02 - haddock-test # failure in job https://hydra.nixos.org/build/233246641 at 2023-09-02 - - haddock-use-refs # failure in job https://hydra.nixos.org/build/295094009 at 2025-04-22 - hadoop-formats # failure in job https://hydra.nixos.org/build/233224647 at 2023-09-02 - hadoop-rpc # failure in job https://hydra.nixos.org/build/233247222 at 2023-09-02 - hadoop-streaming # failure in job https://hydra.nixos.org/build/233229895 at 2023-09-02 @@ -2299,7 +2418,6 @@ broken-packages: - hakyll-contrib-i18n # failure in job https://hydra.nixos.org/build/233218608 at 2023-09-02 - hakyll-contrib-links # failure in job https://hydra.nixos.org/build/233218456 at 2023-09-02 - hakyll-dir-list # failure in job https://hydra.nixos.org/build/233221518 at 2023-09-02 - - hakyll-filestore # failure in job https://hydra.nixos.org/build/295094015 at 2025-04-22 - hakyll-process # failure in job https://hydra.nixos.org/build/295094014 at 2025-04-22 - hakyll-R # failure in job https://hydra.nixos.org/build/233230132 at 2023-09-02 - hakyll-series # failure in job https://hydra.nixos.org/build/233257506 at 2023-09-02 @@ -2326,6 +2444,7 @@ broken-packages: - handle-like # failure in job https://hydra.nixos.org/build/233245789 at 2023-09-02 - HandlerSocketClient # failure in job https://hydra.nixos.org/build/233239906 at 2023-09-02 - handsy # failure in job https://hydra.nixos.org/build/233192732 at 2023-09-02 + - handwriting # failure in job https://hydra.nixos.org/build/307610841 at 2025-09-19 - Hangman # failure in job https://hydra.nixos.org/build/233257262 at 2023-09-02 - hangman # failure in job https://hydra.nixos.org/build/252718314 at 2024-03-16 - HangmanAscii # failure in job https://hydra.nixos.org/build/233192660 at 2023-09-02 @@ -2349,6 +2468,7 @@ broken-packages: - happstack-server-tls-cryptonite # failure in job https://hydra.nixos.org/build/233236252 at 2023-09-02 - happstack-util # failure in job https://hydra.nixos.org/build/233202063 at 2023-09-02 - happstack-yui # failure in job https://hydra.nixos.org/build/233221482 at 2023-09-02 + - happy-dot # failure in job https://hydra.nixos.org/build/307519045 at 2025-09-19 - happy-hour # failure in job https://hydra.nixos.org/build/252732958 at 2024-03-16 - happybara # failure in job https://hydra.nixos.org/build/233236198 at 2023-09-02 - happybara-webkit-server # failure in job https://hydra.nixos.org/build/233247667 at 2023-09-02 @@ -2368,6 +2488,7 @@ broken-packages: - has # failure in job https://hydra.nixos.org/build/233193689 at 2023-09-02 - hasbolt-extras # failure in job https://hydra.nixos.org/build/233211734 at 2023-09-02 - HasCacBDD # failure in job https://hydra.nixos.org/build/233238688 at 2023-09-02 + - hascal # failure in job https://hydra.nixos.org/build/307519053 at 2025-09-19 - hascalam # failure in job https://hydra.nixos.org/build/295094052 at 2025-04-22 - hascar # failure in job https://hydra.nixos.org/build/233197274 at 2023-09-02 - hascard # failure in job https://hydra.nixos.org/build/233238626 at 2023-09-02 @@ -2375,6 +2496,7 @@ broken-packages: - Haschoo # failure in job https://hydra.nixos.org/build/295090988 at 2025-04-22 - HasChor # failure in job https://hydra.nixos.org/build/295090966 at 2025-04-22 - hash # failure in job https://hydra.nixos.org/build/233219137 at 2023-09-02 + - hash-cons # failure in job https://hydra.nixos.org/build/307519073 at 2025-09-19 - hashable-extras # failure in job https://hydra.nixos.org/build/233191748 at 2023-09-02 - hashable-generics # failure in job https://hydra.nixos.org/build/233209175 at 2023-09-02 - hashable-orphans # failure in job https://hydra.nixos.org/build/252738804 at 2024-03-16 @@ -2382,6 +2504,8 @@ broken-packages: - hashabler # failure in job https://hydra.nixos.org/build/233236154 at 2023-09-02 - hashed-storage # failure in job https://hydra.nixos.org/build/233193382 at 2023-09-02 - hasherize # failure in job https://hydra.nixos.org/build/252712987 at 2024-03-16 + - hashids # failure in job https://hydra.nixos.org/build/307519058 at 2025-09-19 + - hashmap-io # failure in job https://hydra.nixos.org/build/307519070 at 2025-09-19 - hashring # failure in job https://hydra.nixos.org/build/233231092 at 2023-09-02 - hashtables-plus # failure in job https://hydra.nixos.org/build/233234463 at 2023-09-02 - hasim # failure in job https://hydra.nixos.org/build/233248675 at 2023-09-02 @@ -2395,6 +2519,7 @@ broken-packages: - haskell-admin-core # failure in job https://hydra.nixos.org/build/233242655 at 2023-09-02 - haskell-awk # failure in job https://hydra.nixos.org/build/233235921 at 2023-09-02 - haskell-bcrypt # failure in job https://hydra.nixos.org/build/233258991 at 2023-09-02 + - haskell-bee-pgmq # failure in job https://hydra.nixos.org/build/307610863 at 2025-09-19 - haskell-bitmex-rest # failure in job https://hydra.nixos.org/build/233244003 at 2023-09-02 - haskell-brainfuck # failure in job https://hydra.nixos.org/build/233233282 at 2023-09-02 - haskell-cnc # failure in job https://hydra.nixos.org/build/233229233 at 2023-09-02 @@ -2462,7 +2587,6 @@ broken-packages: - haskhol-core # failure in job https://hydra.nixos.org/build/233232550 at 2023-09-02 - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 - - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 @@ -2479,6 +2603,7 @@ broken-packages: - hasql-backend # failure in job https://hydra.nixos.org/build/233255310 at 2023-09-02 - hasql-class # failure in job https://hydra.nixos.org/build/233191053 at 2023-09-02 - hasql-cursor-query # failure in job https://hydra.nixos.org/build/295094141 at 2025-04-22 + - hasql-cursor-transaction # failure in job https://hydra.nixos.org/build/307610892 at 2025-09-19 - hasql-effectful # failure in job https://hydra.nixos.org/build/252721674 at 2024-03-16 - hasql-explain-tests # failure in job https://hydra.nixos.org/build/233247034 at 2023-09-02 - hasql-generic # failure in job https://hydra.nixos.org/build/233204654 at 2023-09-02 @@ -2491,11 +2616,13 @@ broken-packages: - hasql-streams-pipes # failure in job https://hydra.nixos.org/build/295094154 at 2025-04-22 - hasql-streams-streaming # failure in job https://hydra.nixos.org/build/295094151 at 2025-04-22 - hasql-streams-streamly # failure in job https://hydra.nixos.org/build/295094144 at 2025-04-22 + - hasql-transaction-io # failure in job https://hydra.nixos.org/build/307610877 at 2025-09-19 - hasql-url # failure in job https://hydra.nixos.org/build/233201809 at 2023-09-02 - hasqly-mysql # failure in job https://hydra.nixos.org/build/295094153 at 2025-04-22 - hastache # failure in job https://hydra.nixos.org/build/233224317 at 2023-09-02 - haste # failure in job https://hydra.nixos.org/build/233238510 at 2023-09-02 - haste-prim # failure in job https://hydra.nixos.org/build/233203281 at 2023-09-02 + - hastily # failure in job https://hydra.nixos.org/build/307610866 at 2025-09-19 - hat # failure in job https://hydra.nixos.org/build/233243655 at 2023-09-02 - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 at 2023-09-02 - hats # failure in job https://hydra.nixos.org/build/233256724 at 2023-09-02 @@ -2508,13 +2635,13 @@ broken-packages: - haxr-th # failure in job https://hydra.nixos.org/build/233250109 at 2023-09-02 - hayland # failure in job https://hydra.nixos.org/build/233201482 at 2023-09-02 - hayoo-cli # failure in job https://hydra.nixos.org/build/233245478 at 2023-09-02 + - hBDD # failure in job https://hydra.nixos.org/build/307518994 at 2025-09-19 - hBDD-CMUBDD # failure in job https://hydra.nixos.org/build/233210132 at 2023-09-02 - hBDD-CUDD # failure in job https://hydra.nixos.org/build/233243982 at 2023-09-02 - hbeanstalk # failure in job https://hydra.nixos.org/build/233229856 at 2023-09-02 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02 - - hblosc # failure in job https://hydra.nixos.org/build/302803521 at 2025-07-27 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 @@ -2524,7 +2651,6 @@ broken-packages: - hcltest # failure in job https://hydra.nixos.org/build/233230099 at 2023-09-02 - hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02 - hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02 - - hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02 - hcount # failure in job https://hydra.nixos.org/build/245788445 at 2024-01-07 - hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02 - hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02 @@ -2535,7 +2661,6 @@ broken-packages: - HDBC-postgresql-hstore # failure in job https://hydra.nixos.org/build/233243932 at 2023-09-02 - hdevtools # failure in job https://hydra.nixos.org/build/233229115 at 2023-09-02 - hdf # failure in job https://hydra.nixos.org/build/233221986 at 2023-09-02 - - hdf5 # failure in job https://hydra.nixos.org/build/233244523 at 2023-09-02 - hDFA # failure in job https://hydra.nixos.org/build/233229180 at 2023-09-02 - hdigest # failure in job https://hydra.nixos.org/build/233257809 at 2023-09-02 - hdis86 # failure in job https://hydra.nixos.org/build/233229636 at 2023-09-02 @@ -2554,11 +2679,11 @@ broken-packages: - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02 - - hedgehog-extras # failure in job https://hydra.nixos.org/build/302803553, https://github.com/input-output-hk/hedgehog-extras/issues/93 at 2025-07-27 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 - hedgehog-lens # failure in job https://hydra.nixos.org/build/233251825 at 2023-09-02 + - hedgehog-optics # failure in job https://hydra.nixos.org/build/307519163 at 2025-09-19 - hedgehog-servant # failure in job https://hydra.nixos.org/build/233258223 at 2023-09-02 - hedis-config # failure in job https://hydra.nixos.org/build/233198326 at 2023-09-02 - hedis-monadic # failure in job https://hydra.nixos.org/build/252738915 at 2024-03-16 @@ -2585,6 +2710,7 @@ broken-packages: - heredocs # failure in job https://hydra.nixos.org/build/233238862 at 2023-09-02 - Hermes # failure in job https://hydra.nixos.org/build/233223694 at 2023-09-02 - herms # failure in job https://hydra.nixos.org/build/233217216 at 2023-09-02 + - heroku # failure in job https://hydra.nixos.org/build/307519194 at 2025-09-19 - heroku-persistent # failure in job https://hydra.nixos.org/build/233253569 at 2023-09-02 - hetero-dict # failure in job https://hydra.nixos.org/build/233250917 at 2023-09-02 - heterogeneous-list-literals # failure in job https://hydra.nixos.org/build/233212297 at 2023-09-02 @@ -2623,6 +2749,7 @@ broken-packages: - hGelf # failure in job https://hydra.nixos.org/build/233203909 at 2023-09-02 - hgeometric # failure in job https://hydra.nixos.org/build/233197856 at 2023-09-02 - hgis # failure in job https://hydra.nixos.org/build/233200418 at 2023-09-02 + - hgmp # failure in job https://hydra.nixos.org/build/307519217 at 2025-09-19 - hgom # failure in job https://hydra.nixos.org/build/233255569 at 2023-09-02 - hgopher # failure in job https://hydra.nixos.org/build/233222066 at 2023-09-02 - HGraphStorage # failure in job https://hydra.nixos.org/build/233217988 at 2023-09-02 @@ -2640,6 +2767,7 @@ broken-packages: - hid # failure in job https://hydra.nixos.org/build/233209289 at 2023-09-02 - hid-examples # failure in job https://hydra.nixos.org/build/233221413 at 2023-09-02 - hidden-char # failure in job https://hydra.nixos.org/build/233206791 at 2023-09-02 + - hiedb-plugin # failure in job https://hydra.nixos.org/build/307519230 at 2025-09-19 - hieraclus # failure in job https://hydra.nixos.org/build/233241310 at 2023-09-02 - hierarchical-clustering # failure in job https://hydra.nixos.org/build/233226120 at 2023-09-02 - hierarchical-exceptions # failure in job https://hydra.nixos.org/build/233195047 at 2023-09-02 @@ -2657,6 +2785,7 @@ broken-packages: - hikchr # failure in job https://hydra.nixos.org/build/295094234 at 2025-04-22 - hills # failure in job https://hydra.nixos.org/build/233215201 at 2023-09-02 - himg # failure in job https://hydra.nixos.org/build/233213810 at 2023-09-02 + - hindent # failure in job https://hydra.nixos.org/build/307519252 at 2025-09-19 - hindley-milner # failure in job https://hydra.nixos.org/build/233195252 at 2023-09-02 - hindley-milner-type-check # failure in job https://hydra.nixos.org/build/233216545 at 2023-09-02 - hinotify-bytestring # failure in job https://hydra.nixos.org/build/252716847 at 2024-03-16 @@ -2666,6 +2795,7 @@ broken-packages: - hint-server # failure in job https://hydra.nixos.org/build/233240346 at 2023-09-02 - hinter # failure in job https://hydra.nixos.org/build/233245954 at 2023-09-02 - hinterface # failure in job https://hydra.nixos.org/build/233250383 at 2023-09-02 + - hip # failure in job https://hydra.nixos.org/build/307610903 at 2025-09-19 - hipchat-hs # failure in job https://hydra.nixos.org/build/233198550 at 2023-09-02 - Hipmunk # failure in job https://hydra.nixos.org/build/233259272 at 2023-09-02 - hips # failure in job https://hydra.nixos.org/build/252728413 at 2024-03-16 @@ -2675,16 +2805,19 @@ broken-packages: - Hish # failure in job https://hydra.nixos.org/build/233226443 at 2023-09-02 - hissmetrics # failure in job https://hydra.nixos.org/build/233206890 at 2023-09-02 - hist-pl-types # failure in job https://hydra.nixos.org/build/233245977 at 2023-09-02 + - histogram-simple # failure in job https://hydra.nixos.org/build/307519242 at 2025-09-19 - historian # failure in job https://hydra.nixos.org/build/233210703 at 2023-09-02 - hit-on # failure in job https://hydra.nixos.org/build/233233939 at 2023-09-02 - hix # failure in job https://hydra.nixos.org/build/267986775 at 2024-07-31 - HJavaScript # failure in job https://hydra.nixos.org/build/233191718 at 2023-09-02 - hjcase # failure in job https://hydra.nixos.org/build/233195095 at 2023-09-02 - hjs # failure in job https://hydra.nixos.org/build/233215541 at 2023-09-02 + - hjson # failure in job https://hydra.nixos.org/build/307519243 at 2025-09-19 - hjson-query # failure in job https://hydra.nixos.org/build/233202240 at 2023-09-02 - hjsonpointer # failure in job https://hydra.nixos.org/build/233238177 at 2023-09-02 - hjugement-protocol # failure in job https://hydra.nixos.org/build/233227109 at 2023-09-02 - HJVM # failure in job https://hydra.nixos.org/build/233238646 at 2023-09-02 + - hkd # failure in job https://hydra.nixos.org/build/307519247 at 2025-09-19 - hkd-delta # failure in job https://hydra.nixos.org/build/233204318 at 2023-09-02 - hkd-lens # failure in job https://hydra.nixos.org/build/233242120 at 2023-09-02 - hkd-records # failure in job https://hydra.nixos.org/build/233234491 at 2023-09-02 @@ -2708,35 +2841,22 @@ broken-packages: - HLogger # failure in job https://hydra.nixos.org/build/233247351 at 2023-09-02 - hlongurl # failure in job https://hydra.nixos.org/build/233227204 at 2023-09-02 - hls-alternate-number-format-plugin # failure in job https://hydra.nixos.org/build/253704250 at 2024-03-31 - - hls-brittany-plugin # failure in job https://hydra.nixos.org/build/233201998 at 2023-09-02 - hls-cabal-fmt-plugin # failure in job https://hydra.nixos.org/build/253689716 at 2024-03-31 - hls-cabal-plugin # failure in job https://hydra.nixos.org/build/253694969 at 2024-03-31 - hls-change-type-signature-plugin # failure in job https://hydra.nixos.org/build/253678069 at 2024-03-31 - - hls-class-plugin # failure in job https://hydra.nixos.org/build/253699207 at 2024-03-31 - hls-code-range-plugin # failure in job https://hydra.nixos.org/build/253700243 at 2024-03-31 - hls-eval-plugin # failure in job https://hydra.nixos.org/build/253679229 at 2024-03-31 - hls-explicit-fixity-plugin # failure in job https://hydra.nixos.org/build/253687927 at 2024-03-31 - hls-explicit-imports-plugin # failure in job https://hydra.nixos.org/build/253681732 at 2024-03-31 - hls-explicit-record-fields-plugin # failure in job https://hydra.nixos.org/build/253684668 at 2024-03-31 - - hls-floskell-plugin # failure in job https://hydra.nixos.org/build/253700858 at 2024-03-31 - hls-fourmolu-plugin # failure in job https://hydra.nixos.org/build/253704260 at 2024-03-31 - - hls-gadt-plugin # failure in job https://hydra.nixos.org/build/295094265 at 2025-04-22 - - hls-haddock-comments-plugin # failure in job https://hydra.nixos.org/build/233233944 at 2023-09-02 - - hls-hlint-plugin # failure in job https://hydra.nixos.org/build/253680401 at 2024-03-31 - hls-module-name-plugin # failure in job https://hydra.nixos.org/build/253699279 at 2024-03-31 - hls-ormolu-plugin # failure in job https://hydra.nixos.org/build/253701021 at 2024-03-31 - hls-overloaded-record-dot-plugin # failure in job https://hydra.nixos.org/build/253677979 at 2024-03-31 - hls-pragmas-plugin # failure in job https://hydra.nixos.org/build/253682147 at 2024-03-31 - hls-qualify-imported-names-plugin # failure in job https://hydra.nixos.org/build/253691095 at 2024-03-31 - - hls-refactor-plugin # failure in job https://hydra.nixos.org/build/295094289 at 2025-04-22 - hls-refine-imports-plugin # failure in job https://hydra.nixos.org/build/233211155 at 2023-09-02 - - hls-rename-plugin # failure in job https://hydra.nixos.org/build/295094301 at 2025-04-22 - - hls-retrie-plugin # failure in job https://hydra.nixos.org/build/295094271 at 2025-04-22 - hls-selection-range-plugin # failure in job https://hydra.nixos.org/build/233205582 at 2023-09-02 - - hls-splice-plugin # failure in job https://hydra.nixos.org/build/295094286 at 2025-04-22 - - hls-stan-plugin # failure in job https://hydra.nixos.org/build/253693419 at 2024-03-31 - - hls-stylish-haskell-plugin # failure in job https://hydra.nixos.org/build/253696920 at 2024-03-31 - - hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02 - hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02 - hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02 - HMarkov # failure in job https://hydra.nixos.org/build/252712651 at 2024-03-16 @@ -2760,12 +2880,14 @@ broken-packages: - Hmpf # failure in job https://hydra.nixos.org/build/233212948 at 2023-09-02 - hmumps # failure in job https://hydra.nixos.org/build/233209336 at 2023-09-02 - hnetcdf # failure in job https://hydra.nixos.org/build/252727915 at 2024-03-16 + - hnix-store-db # failure in job https://hydra.nixos.org/build/307610909 at 2025-09-19 - hnn # failure in job https://hydra.nixos.org/build/233253882 at 2023-09-02 - hnock # failure in job https://hydra.nixos.org/build/233247419 at 2023-09-02 - hnop # failure in job https://hydra.nixos.org/build/233214340 at 2023-09-02 - ho-rewriting # failure in job https://hydra.nixos.org/build/233253726 at 2023-09-02 - hoauth # failure in job https://hydra.nixos.org/build/233191191 at 2023-09-02 - hoauth2-demo # failure in job https://hydra.nixos.org/build/295094328 at 2025-04-22 + - hoauth2-providers # failure in job https://hydra.nixos.org/build/307610912 at 2025-09-19 - hoauth2-providers-tutorial # failure in job https://hydra.nixos.org/build/295094327 at 2025-04-22 - hoauth2-tutorial # failure in job https://hydra.nixos.org/build/233198819 at 2023-09-02 - hobbes # failure in job https://hydra.nixos.org/build/233211279 at 2023-09-02 @@ -2817,6 +2939,7 @@ broken-packages: - hothasktags # failure in job https://hydra.nixos.org/build/233207150 at 2023-09-02 - hourglass-fuzzy-parsing # failure in job https://hydra.nixos.org/build/233200977 at 2023-09-02 - houseman # failure in job https://hydra.nixos.org/build/233247185 at 2023-09-02 + - hout # failure in job https://hydra.nixos.org/build/307519322 at 2025-09-19 - hp2any-core # failure in job https://hydra.nixos.org/build/233205070 at 2023-09-02 - hpack-convert # failure in job https://hydra.nixos.org/build/233257334 at 2023-09-02 - hpack-dhall # failure in job https://hydra.nixos.org/build/233663050 at 2023-09-02 @@ -2851,6 +2974,7 @@ broken-packages: - hs-brotli # failure in job https://hydra.nixos.org/build/233215213 at 2023-09-02 - hs-carbon # failure in job https://hydra.nixos.org/build/252722544 at 2024-03-16 - hs-carbon-examples # failure in job https://hydra.nixos.org/build/234440337 at 2023-09-13 + - hs-conllu # failure in job https://hydra.nixos.org/build/307519342 at 2025-09-19 - hs-di # failure in job https://hydra.nixos.org/build/233254606 at 2023-09-02 - hs-dotnet # failure in job https://hydra.nixos.org/build/233232755 at 2023-09-02 - hs-duktape # failure in job https://hydra.nixos.org/build/233223882 at 2023-09-02 @@ -2861,6 +2985,7 @@ broken-packages: - hs-json-rpc # failure in job https://hydra.nixos.org/build/233217334 at 2023-09-02 - hs-logo # failure in job https://hydra.nixos.org/build/233211298 at 2023-09-02 - hs-nombre-generator # failure in job https://hydra.nixos.org/build/233246102 at 2023-09-02 + - hs-onnxruntime-capi # failure in job https://hydra.nixos.org/build/307519371 at 2025-09-19 - hs-openmoji-data # failure in job https://hydra.nixos.org/build/295094356 at 2025-04-22 - hs-opentelemetry-awsxray # failure in job https://hydra.nixos.org/build/295094396 at 2025-04-22 - hs-opentelemetry-instrumentation-auto # failure in job https://hydra.nixos.org/build/253678404 at 2024-03-31 @@ -2911,7 +3036,6 @@ broken-packages: - hsdip # failure in job https://hydra.nixos.org/build/233229128 at 2023-09-02 - hsdns-cache # failure in job https://hydra.nixos.org/build/233225611 at 2023-09-02 - hsebaysdk # failure in job https://hydra.nixos.org/build/233251126 at 2023-09-02 - - hsec-sync # failure in job https://hydra.nixos.org/build/265274250 at 2024-07-14 - hsec-tools # failure in job https://hydra.nixos.org/build/265287998 at 2024-07-14 - hsenv # failure in job https://hydra.nixos.org/build/233196846 at 2023-09-02 - hsfcsh # failure in job https://hydra.nixos.org/build/233245258 at 2023-09-02 @@ -2961,11 +3085,11 @@ broken-packages: - hspec2 # failure in job https://hydra.nixos.org/build/233251459 at 2023-09-02 - HsPerl5 # failure in job https://hydra.nixos.org/build/233256038 at 2023-09-02 - hspkcs11 # failure in job https://hydra.nixos.org/build/233225806 at 2023-09-02 + - hspray # failure in job https://hydra.nixos.org/build/307519510 at 2025-09-19 - hspread # failure in job https://hydra.nixos.org/build/233217578 at 2023-09-02 - hspresent # failure in job https://hydra.nixos.org/build/233191185 at 2023-09-02 - hspretty # failure in job https://hydra.nixos.org/build/233253394 at 2023-09-02 - hsql # failure in job https://hydra.nixos.org/build/233217626 at 2023-09-02 - - hsrelp # failure in job https://hydra.nixos.org/build/233255841 at 2023-09-02 - hsseccomp # failure in job https://hydra.nixos.org/build/233194411 at 2023-09-02 - hsshellscript # failure in job https://hydra.nixos.org/build/233197858 at 2023-09-02 - hsSqlite3 # failure in job https://hydra.nixos.org/build/233238549 at 2023-09-02 @@ -3012,7 +3136,6 @@ broken-packages: - http-dispatch # failure in job https://hydra.nixos.org/build/233238880 at 2023-09-02 - http-encodings # failure in job https://hydra.nixos.org/build/233232289 at 2023-09-02 - http-exchange-instantiations # failure in job https://hydra.nixos.org/build/295094535 at 2025-04-22 - - http-grammar # failure in job https://hydra.nixos.org/build/233254392 at 2023-09-02 - http-kinder # failure in job https://hydra.nixos.org/build/233205030 at 2023-09-02 - http-kit # failure in job https://hydra.nixos.org/build/233244992 at 2023-09-02 - http-listen # failure in job https://hydra.nixos.org/build/233244011 at 2023-09-02 @@ -3065,6 +3188,7 @@ broken-packages: - hw-dsv # failure in job https://hydra.nixos.org/build/233252280 at 2023-09-02 - hw-dump # failure in job https://hydra.nixos.org/build/233208818 at 2023-09-02 - hw-fingertree-strict # failure in job https://hydra.nixos.org/build/252718249 at 2024-03-16 + - hw-hedgehog # failure in job https://hydra.nixos.org/build/307519553 at 2025-09-19 - hw-json-simd # failure in job https://hydra.nixos.org/build/233240490 at 2023-09-02 - hw-kafka-conduit # failure in job https://hydra.nixos.org/build/252714760 at 2024-03-16 - hw-lazy # failure in job https://hydra.nixos.org/build/252722974 at 2024-03-16 @@ -3075,6 +3199,7 @@ broken-packages: - hw-prim-bits # failure in job https://hydra.nixos.org/build/233246627 at 2023-09-02 - hw-rankselect-base # failure in job https://hydra.nixos.org/build/295122851 at 2025-04-22 - hw-simd-cli # failure in job https://hydra.nixos.org/build/233223251 at 2023-09-02 + - hw-string-parse # failure in job https://hydra.nixos.org/build/307519565 at 2025-09-19 - hw-tar # failure in job https://hydra.nixos.org/build/233219650 at 2023-09-02 - hw-xml # failure in job https://hydra.nixos.org/build/233197758 at 2023-09-02 - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 at 2023-09-02 @@ -3088,15 +3213,16 @@ broken-packages: - hxt-pickle-utils # failure in job https://hydra.nixos.org/build/233212654 at 2023-09-02 - hxthelper # failure in job https://hydra.nixos.org/build/282936106 at 2024-12-24 (> 10 years since last release) - hyakko # failure in job https://hydra.nixos.org/build/233199297 at 2023-09-02 - - hydra # failure in job https://hydra.nixos.org/build/233212477 at 2023-09-02 - hydra-hs # failure in job https://hydra.nixos.org/build/233238247 at 2023-09-02 - hydrogen # failure in job https://hydra.nixos.org/build/233219053 at 2023-09-02 - hydrogen-multimap # failure in job https://hydra.nixos.org/build/233241591 at 2023-09-02 - hylide # failure in job https://hydra.nixos.org/build/233251582 at 2023-09-02 + - HyloDP # failure in job https://hydra.nixos.org/build/307516072 at 2025-09-19 - hylolib # failure in job https://hydra.nixos.org/build/233197340 at 2023-09-02 - hyper-haskell-server # failure in job https://hydra.nixos.org/build/233244991 at 2023-09-02 - hyperdrive # failure in job https://hydra.nixos.org/build/233223556 at 2023-09-02 - hyperfunctions # failure in job https://hydra.nixos.org/build/233195544 at 2023-09-02 + - hypergeomatrix # failure in job https://hydra.nixos.org/build/307610969 at 2025-09-19 - hyperion # failure in job https://hydra.nixos.org/build/233218339 at 2023-09-02 - hyperloglogplus # failure in job https://hydra.nixos.org/build/233259772 at 2023-09-02 - hyperscript # failure in job https://hydra.nixos.org/build/233222333 at 2023-09-02 @@ -3123,6 +3249,7 @@ broken-packages: - idempotent # failure in job https://hydra.nixos.org/build/233244413 at 2023-09-02 - identifiers # failure in job https://hydra.nixos.org/build/233251845 at 2023-09-02 - idiii # failure in job https://hydra.nixos.org/build/233228586 at 2023-09-02 + - idiomatic # failure in job https://hydra.nixos.org/build/307519601 at 2025-09-19 - idna2008 # failure in job https://hydra.nixos.org/build/233206444 at 2023-09-02 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 @@ -3140,6 +3267,7 @@ broken-packages: - ihaskell-parsec # failure in job https://hydra.nixos.org/build/233244271 at 2023-09-02 - ihaskell-plot # failure in job https://hydra.nixos.org/build/233255936 at 2023-09-02 - ihaskell-widgets # failure in job https://hydra.nixos.org/build/265955663 at 2024-07-14 + - ihp-openai # failure in job https://hydra.nixos.org/build/307610988 at 2025-09-19 - illuminate # failure in job https://hydra.nixos.org/build/233219478 at 2023-09-02 - image-type # failure in job https://hydra.nixos.org/build/233251466 at 2023-09-02 - imagemagick # failure in job https://hydra.nixos.org/build/233598237 at 2023-09-02 @@ -3154,6 +3282,7 @@ broken-packages: - implicit-hie-cradle # failure in job https://hydra.nixos.org/build/252710698 at 2024-03-16 - implicit-logging # failure in job https://hydra.nixos.org/build/233194358 at 2023-09-02 - implicit-params # failure in job https://hydra.nixos.org/build/233201527 at 2023-09-02 + - import-style-plugin # failure in job https://hydra.nixos.org/build/307519634 at 2025-09-19 - imports # failure in job https://hydra.nixos.org/build/233227469 at 2023-09-02 - impossible # failure in job https://hydra.nixos.org/build/233216237 at 2023-09-02 - imprint # failure in job https://hydra.nixos.org/build/233246314 at 2023-09-02 @@ -3181,11 +3310,11 @@ broken-packages: - inilist # failure in job https://hydra.nixos.org/build/233203791 at 2023-09-02 - initialize # failure in job https://hydra.nixos.org/build/233228739 at 2023-09-02 - inj-base # failure in job https://hydra.nixos.org/build/233198720 at 2023-09-02 + - inject # failure in job https://hydra.nixos.org/build/307519677 at 2025-09-19 - inject-function # failure in job https://hydra.nixos.org/build/233252462 at 2023-09-02 - injections # failure in job https://hydra.nixos.org/build/233207796 at 2023-09-02 - inline-c-cuda # failure in job https://hydra.nixos.org/build/237234701 at 2023-10-21 - inline-c-objc # failure in job https://hydra.nixos.org/build/233223704 at 2023-09-02 - - inline-r # failure in job https://hydra.nixos.org/build/233210520 at 2023-09-02 - inserts # failure in job https://hydra.nixos.org/build/233198758 at 2023-09-02 - instana-haskell-trace-sdk # failure in job https://hydra.nixos.org/build/233211339 at 2023-09-02 - instance-control # failure in job https://hydra.nixos.org/build/252726549 at 2024-03-16 @@ -3193,6 +3322,7 @@ broken-packages: - instant-generics # failure in job https://hydra.nixos.org/build/233209385 at 2023-09-02 - instapaper-sender # failure in job https://hydra.nixos.org/build/233225390 at 2023-09-02 - instinct # failure in job https://hydra.nixos.org/build/233203632 at 2023-09-02 + - int-cast # failure in job https://hydra.nixos.org/build/307519683 at 2025-09-19 - int-interval-map # failure in job https://hydra.nixos.org/build/233244556 at 2023-09-02 - int-multimap # failure in job https://hydra.nixos.org/build/233210427 at 2023-09-02 - intcode # failure in job https://hydra.nixos.org/build/233198813 at 2023-09-02 @@ -3222,6 +3352,7 @@ broken-packages: - intro # failure in job https://hydra.nixos.org/build/233192297 at 2023-09-02 - introduction # failure in job https://hydra.nixos.org/build/233223585 at 2023-09-02 - inventory # failure in job https://hydra.nixos.org/build/295094716 at 2025-04-22 + - invert # failure in job https://hydra.nixos.org/build/307519700 at 2025-09-19 - invertible-hlist # failure in job https://hydra.nixos.org/build/295094739 at 2025-04-22 - invertible-syntax # failure in job https://hydra.nixos.org/build/233230924 at 2023-09-02 - involutive-semigroups # failure in job https://hydra.nixos.org/build/233239156 at 2023-09-02 @@ -3244,7 +3375,6 @@ broken-packages: - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02 - ircbot # failure in job https://hydra.nixos.org/build/295094782 at 2025-04-22 - ireal # failure in job https://hydra.nixos.org/build/233239811 at 2023-09-02 - - iri # failure in job https://hydra.nixos.org/build/295455675 at 2025-05-02 - iridium # failure in job https://hydra.nixos.org/build/233211261 at 2023-09-02 - iris # failure in job https://hydra.nixos.org/build/233212713 at 2023-09-02 - iron-mq # failure in job https://hydra.nixos.org/build/233200693 at 2023-09-02 @@ -3350,6 +3480,7 @@ broken-packages: - JuicyPixels-blp # failure in job https://hydra.nixos.org/build/233220427 at 2023-09-02 - JuicyPixels-blurhash # failure in job https://hydra.nixos.org/build/233228377 at 2023-09-02 - JuicyPixels-canvas # failure in job https://hydra.nixos.org/build/233198693 at 2023-09-02 + - JuicyPixels-scale-dct # failure in job https://hydra.nixos.org/build/307609917 at 2025-09-19 - JuicyPixels-util # failure in job https://hydra.nixos.org/build/233200460 at 2023-09-02 - JunkDB # failure in job https://hydra.nixos.org/build/233203494 at 2023-09-02 - jupyter # failure in job https://hydra.nixos.org/build/233232429 at 2023-09-02 @@ -3370,6 +3501,7 @@ broken-packages: - karabiner-config # failure in job https://hydra.nixos.org/build/233217813 at 2023-09-02 - karps # failure in job https://hydra.nixos.org/build/233243155 at 2023-09-02 - katip-datadog # failure in job https://hydra.nixos.org/build/233214346 at 2023-09-02 + - katip-effectful # failure in job https://hydra.nixos.org/build/307519870 at 2025-09-19 - katip-elasticsearch # failure in job https://hydra.nixos.org/build/233208410 at 2023-09-02 - katip-kafka # failure in job https://hydra.nixos.org/build/233241819 at 2023-09-02 - katip-logzio # failure in job https://hydra.nixos.org/build/233237068 at 2023-09-02 @@ -3379,7 +3511,6 @@ broken-packages: - katydid # failure in job https://hydra.nixos.org/build/233227524 at 2023-09-02 - kawa # failure in job https://hydra.nixos.org/build/252728326 at 2024-03-16 - kawaii # failure in job https://hydra.nixos.org/build/233205134 at 2023-09-02 - - Kawaii-Parser # failure in job https://hydra.nixos.org/build/233222574 at 2023-09-02 - kawhi # failure in job https://hydra.nixos.org/build/233193086 at 2023-09-02 - kd-tree # failure in job https://hydra.nixos.org/build/233207928 at 2023-09-02 - kdesrc-build-extra # failure in job https://hydra.nixos.org/build/233193718 at 2023-09-02 @@ -3416,6 +3547,7 @@ broken-packages: - koofr-client # failure in job https://hydra.nixos.org/build/233255749 at 2023-09-02 - korea-holidays # failure in job https://hydra.nixos.org/build/233222677 at 2023-09-02 - kraken # failure in job https://hydra.nixos.org/build/233202384 at 2023-09-02 + - krank # failure in job https://hydra.nixos.org/build/307611020 at 2025-09-19 - krapsh # failure in job https://hydra.nixos.org/build/233219887 at 2023-09-02 - Kriens # failure in job https://hydra.nixos.org/build/233251673 at 2023-09-02 - krpc # failure in job https://hydra.nixos.org/build/233231587 at 2023-09-02 @@ -3442,6 +3574,7 @@ broken-packages: - lambdaBase # failure in job https://hydra.nixos.org/build/233194002 at 2023-09-02 - lambdabot-telegram-plugins # failure in job https://hydra.nixos.org/build/234444260 at 2023-09-13 - lambdabot-utils # failure in job https://hydra.nixos.org/build/233224842 at 2023-09-02 + - lambdabot-xmpp # failure in job https://hydra.nixos.org/build/307611040 at 2025-09-19 - lambdacms-core # failure in job https://hydra.nixos.org/build/233217257 at 2023-09-02 - lambdacube-core # failure in job https://hydra.nixos.org/build/233233440 at 2023-09-02 - lambdacube-engine # failure in job https://hydra.nixos.org/build/233223079 at 2023-09-02 @@ -3471,6 +3604,7 @@ broken-packages: - language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02 - language-java-classfile # failure in job https://hydra.nixos.org/build/233257021 at 2023-09-02 - language-js # failure in job https://hydra.nixos.org/build/233190676 at 2023-09-02 + - language-lua # failure in job https://hydra.nixos.org/build/307611034 at 2025-09-19 - language-lua-qq # failure in job https://hydra.nixos.org/build/233194697 at 2023-09-02 - language-lua2 # failure in job https://hydra.nixos.org/build/233197435 at 2023-09-02 - language-mixal # failure in job https://hydra.nixos.org/build/233226763 at 2023-09-02 @@ -3484,6 +3618,7 @@ broken-packages: - language-sh # failure in job https://hydra.nixos.org/build/233249709 at 2023-09-02 - language-sqlite # failure in job https://hydra.nixos.org/build/233248845 at 2023-09-02 - language-sygus # failure in job https://hydra.nixos.org/build/233192608 at 2023-09-02 + - language-thrift # failure in job https://hydra.nixos.org/build/307519920 at 2025-09-19 - language-typescript # failure in job https://hydra.nixos.org/build/233247703 at 2023-09-02 - language-webidl # failure in job https://hydra.nixos.org/build/233194656 at 2023-09-02 - laop # failure in job https://hydra.nixos.org/build/233204106 at 2023-09-02 @@ -3508,10 +3643,12 @@ broken-packages: - lazy # failure in job https://hydra.nixos.org/build/295094978 at 2025-04-22 - lazy-async # failure in job https://hydra.nixos.org/build/252730698 at 2024-03-16 - lazy-bracket # failure in job https://hydra.nixos.org/build/252727186 at 2024-03-16 + - lazy-cache # failure in job https://hydra.nixos.org/build/307519967 at 2025-09-19 - lazy-hash # failure in job https://hydra.nixos.org/build/233211405 at 2023-09-02 - lazy-priority-queue # failure in job https://hydra.nixos.org/build/233211457 at 2023-09-02 - lazyarray # failure in job https://hydra.nixos.org/build/233192440 at 2023-09-02 - lazyboy # failure in job https://hydra.nixos.org/build/233201158 at 2023-09-02 + - lazyppl # failure in job https://hydra.nixos.org/build/307519966 at 2025-09-19 - lazyset # failure in job https://hydra.nixos.org/build/233248383 at 2023-09-02 - lbfgs # failure in job https://hydra.nixos.org/build/282178103 at 2024-12-23 - LC3 # failure in job https://hydra.nixos.org/build/233192513 at 2023-09-02 @@ -3552,6 +3689,7 @@ broken-packages: - levmar # failure in job https://hydra.nixos.org/build/233254731 at 2023-09-02 - lfst # failure in job https://hydra.nixos.org/build/233240622 at 2023-09-02 - lhc # failure in job https://hydra.nixos.org/build/233220731 at 2023-09-02 + - lhs2tex # failure in job https://hydra.nixos.org/build/307520007 at 2025-09-19 - lhs2TeX-hl # failure in job https://hydra.nixos.org/build/233221405 at 2023-09-02 - lhslatex # failure in job https://hydra.nixos.org/build/233246375 at 2023-09-02 - LibClang # failure in job https://hydra.nixos.org/build/233194732 at 2023-09-02 @@ -3560,6 +3698,7 @@ broken-packages: - libgit # failure in job https://hydra.nixos.org/build/252729283 at 2024-03-16 - libhbb # failure in job https://hydra.nixos.org/build/233232186 at 2023-09-02 - libinfluxdb # failure in job https://hydra.nixos.org/build/233199457 at 2023-09-02 + - libiserv # failure in job https://hydra.nixos.org/build/307520003 at 2025-09-19 - libjenkins # failure in job https://hydra.nixos.org/build/233198788 at 2023-09-02 - libjwt-typed # failure in job https://hydra.nixos.org/build/233230163 at 2023-09-02 - libltdl # failure in job https://hydra.nixos.org/build/233225728 at 2023-09-02 @@ -3570,10 +3709,10 @@ broken-packages: - libphonenumber # failure in job https://hydra.nixos.org/build/233251839 at 2023-09-02 - libpq # failure in job https://hydra.nixos.org/build/233192542 at 2023-09-02 - librandomorg # failure in job https://hydra.nixos.org/build/233232749 at 2023-09-02 + - libremidi # failure in job https://hydra.nixos.org/build/307520031 at 2025-09-19 - libriscv # failure in job https://hydra.nixos.org/build/295122867 at 2025-04-22 - libsecp256k1 # failure in job https://hydra.nixos.org/build/234441559 at 2023-09-13 - libsodium # failure in job https://hydra.nixos.org/build/243816565 at 2024-01-01 - - libssh2 # failure in job https://hydra.nixos.org/build/295095049 at 2025-04-22 - libstackexchange # failure in job https://hydra.nixos.org/build/295095048 at 2025-04-22 - libsystemd-daemon # failure in job https://hydra.nixos.org/build/233207090 at 2023-09-02 - libtagc # failure in job https://hydra.nixos.org/build/233223631 at 2023-09-02 @@ -3594,7 +3733,9 @@ broken-packages: - ligature # failure in job https://hydra.nixos.org/build/233212688 at 2023-09-02 - light # failure in job https://hydra.nixos.org/build/233193643 at 2023-09-02 - lilypond # failure in job https://hydra.nixos.org/build/233221478 at 2023-09-02 + - lima # failure in job https://hydra.nixos.org/build/307520034 at 2025-09-19 - Limit # failure in job https://hydra.nixos.org/build/233229268 at 2023-09-02 + - limp # failure in job https://hydra.nixos.org/build/307520047 at 2025-09-19 - limp-cbc # failure in job https://hydra.nixos.org/build/233201076 at 2023-09-02 - linda # failure in job https://hydra.nixos.org/build/233249512 at 2023-09-02 - linden # failure in job https://hydra.nixos.org/build/233198590 at 2023-09-02 @@ -3630,9 +3771,13 @@ broken-packages: - lio-simple # failure in job https://hydra.nixos.org/build/233200711 at 2023-09-02 - lipsum-gen # failure in job https://hydra.nixos.org/build/233233734 at 2023-09-02 - liquid # failure in job https://hydra.nixos.org/build/233255883 at 2023-09-02 - - liquid-fixpoint # failure in job https://hydra.nixos.org/build/233213637 at 2023-09-02 + - liquid-ghc-prim # failure in job https://hydra.nixos.org/build/307520084 at 2025-09-19 + - liquid-parallel # failure in job https://hydra.nixos.org/build/307520068 at 2025-09-19 + - liquid-prelude # failure in job https://hydra.nixos.org/build/307520076 at 2025-09-19 + - liquid-vector # failure in job https://hydra.nixos.org/build/307520072 at 2025-09-19 - liquidhaskell-cabal # failure in job https://hydra.nixos.org/build/233249946 at 2023-09-02 - Liquorice # failure in job https://hydra.nixos.org/build/233193923 at 2023-09-02 + - list-fusion-probe # failure in job https://hydra.nixos.org/build/307520092 at 2025-09-19 - list-mux # failure in job https://hydra.nixos.org/build/233206407 at 2023-09-02 - list-prompt # failure in job https://hydra.nixos.org/build/233235855 at 2023-09-02 - list-singleton # failure in job https://hydra.nixos.org/build/252723010 at 2024-03-16 @@ -3640,7 +3785,6 @@ broken-packages: - list-t-libcurl # failure in job https://hydra.nixos.org/build/233237389 at 2023-09-02 - list-t-text # failure in job https://hydra.nixos.org/build/233235451 at 2023-09-02 - list-zip-def # failure in job https://hydra.nixos.org/build/233202564 at 2023-09-02 - - list-zipper # failure in job https://hydra.nixos.org/build/233250766 at 2023-09-02 - listlike-instances # failure in job https://hydra.nixos.org/build/233238303 at 2023-09-02 - literals # failure in job https://hydra.nixos.org/build/233233709 at 2023-09-02 - LiterateMarkdown # failure in job https://hydra.nixos.org/build/233233229 at 2023-09-02 @@ -3651,7 +3795,7 @@ broken-packages: - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14 - - llvm-extra # failure in job https://hydra.nixos.org/build/303481607 at 2025-07-27 + - llvm-ffi-tools # failure in job https://hydra.nixos.org/build/307520119 at 2025-09-19 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16 @@ -3685,8 +3829,10 @@ broken-packages: - lojbanParser # failure in job https://hydra.nixos.org/build/233236082 at 2023-09-02 - lojbanXiragan # failure in job https://hydra.nixos.org/build/233258779 at 2023-09-02 - lol-calculus # failure in job https://hydra.nixos.org/build/233233910 at 2023-09-02 + - long-double # failure in job https://hydra.nixos.org/build/307520133 at 2025-09-19 - longboi # failure in job https://hydra.nixos.org/build/233233913 at 2023-09-02 - longshot # bounds issues https://hydra.nixos.org/build/295428416 + - looksee # failure in job https://hydra.nixos.org/build/307520163 at 2025-09-19 - lookup-tables # failure in job https://hydra.nixos.org/build/233196965 at 2023-09-02 - loop-dsl # failure in job https://hydra.nixos.org/build/233198743 at 2023-09-02 - loop-while # failure in job https://hydra.nixos.org/build/233198041 at 2023-09-02 @@ -3703,9 +3849,11 @@ broken-packages: - lp-diagrams # failure in job https://hydra.nixos.org/build/295095167 at 2025-04-22 - lp-diagrams-svg # failure in job https://hydra.nixos.org/build/233220097 at 2023-09-02 - LRU # failure in job https://hydra.nixos.org/build/233206273 at 2023-09-02 + - lrucaching # failure in job https://hydra.nixos.org/build/307520156 at 2025-09-19 - lscabal # failure in job https://hydra.nixos.org/build/233253536 at 2023-09-02 - lsfrom # failure in job https://hydra.nixos.org/build/233211705 at 2023-09-02 - lsh # failure in job https://hydra.nixos.org/build/233256686 at 2023-09-02 + - lsql-csv # failure in job https://hydra.nixos.org/build/307520164 at 2025-09-19 - lti13 # failure in job https://hydra.nixos.org/build/252715722 at 2024-03-16 - ltiv1p1 # failure in job https://hydra.nixos.org/build/233200883 at 2023-09-02 - ltk # failure in job https://hydra.nixos.org/build/233244152 at 2023-09-02 @@ -3763,6 +3911,7 @@ broken-packages: - Mapping # failure in job https://hydra.nixos.org/build/233248158 at 2023-09-02 - mappy # failure in job https://hydra.nixos.org/build/233250202 at 2023-09-02 - MapWith # failure in job https://hydra.nixos.org/build/233237146 at 2023-09-02 + - maquinitas-tidal # failure in job https://hydra.nixos.org/build/307520205 at 2025-09-19 - markdown-kate # failure in job https://hydra.nixos.org/build/233227051 at 2023-09-02 - marked-pretty # failure in job https://hydra.nixos.org/build/233193892 at 2023-09-02 - markov-chain-usage-model # failure in job https://hydra.nixos.org/build/241522329 at 2023-12-03 @@ -3805,7 +3954,6 @@ broken-packages: - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 - mcp # failure in job https://hydra.nixos.org/build/302804588 at 2025-07-27 - - mcp-server # failure in job https://hydra.nixos.org/build/302804602 at 2025-07-27 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 @@ -3823,7 +3971,6 @@ broken-packages: - medium-sdk-haskell # failure in job https://hydra.nixos.org/build/233195507 at 2023-09-02 - meep # failure in job https://hydra.nixos.org/build/233193144 at 2023-09-02 - megalisp # failure in job https://hydra.nixos.org/build/233234992 at 2023-09-02 - - megaparsec-tests # failure in job https://hydra.nixos.org/build/295095283 at 2025-04-22 - megastore # failure in job https://hydra.nixos.org/build/233222876 at 2023-09-02 - mellon-core # failure in job https://hydra.nixos.org/build/233221666 at 2023-09-02 - melody # failure in job https://hydra.nixos.org/build/233223241 at 2023-09-02 @@ -3863,7 +4010,6 @@ broken-packages: - micro-recursion-schemes # failure in job https://hydra.nixos.org/build/233214118 at 2023-09-02 - microbase # failure in job https://hydra.nixos.org/build/233204368 at 2023-09-02 - microdns # failure in job https://hydra.nixos.org/build/295095321 at 2025-04-22 - - microformats2-parser # failure in job https://hydra.nixos.org/build/233238485 at 2023-09-02 - microgroove # failure in job https://hydra.nixos.org/build/233196933 at 2023-09-02 - microlens-each # failure in job https://hydra.nixos.org/build/233253621 at 2023-09-02 - microlens-process # failure in job https://hydra.nixos.org/build/233190805 at 2023-09-02 @@ -3871,15 +4017,16 @@ broken-packages: - microsoft-translator # failure in job https://hydra.nixos.org/build/233235928 at 2023-09-02 - mida # failure in job https://hydra.nixos.org/build/233223244 at 2023-09-02 - midi-simple # failure in job https://hydra.nixos.org/build/233219079 at 2023-09-02 + - midi-util # failure in job https://hydra.nixos.org/build/307520300 at 2025-09-19 - midi-utils # failure in job https://hydra.nixos.org/build/233222257 at 2023-09-02 - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02 - mig-swagger-ui # failure in job https://hydra.nixos.org/build/295095369 at 2025-04-22 - - mighttpd2 # failure in job https://hydra.nixos.org/build/233213125 at 2023-09-02 - mikmod # failure in job https://hydra.nixos.org/build/233247364 at 2023-09-02 - mikrokosmos # failure in job https://hydra.nixos.org/build/233232143 at 2023-09-02 - miku # failure in job https://hydra.nixos.org/build/233212186 at 2023-09-02 - milena # failure in job https://hydra.nixos.org/build/233257533 at 2023-09-02 - mime-directory # failure in job https://hydra.nixos.org/build/233209691 at 2023-09-02 + - min-max-pqueue # failure in job https://hydra.nixos.org/build/307520339 at 2025-09-19 - mines # failure in job https://hydra.nixos.org/build/252722834 at 2024-03-16 - mini-egison # failure in job https://hydra.nixos.org/build/295095354 at 2025-04-22 - MiniAgda # failure in job https://hydra.nixos.org/build/233259586 at 2023-09-02 @@ -3926,6 +4073,7 @@ broken-packages: - mollie-api-haskell # failure in job https://hydra.nixos.org/build/233200867 at 2023-09-02 - monad-atom # failure in job https://hydra.nixos.org/build/233243367 at 2023-09-02 - monad-atom-simple # failure in job https://hydra.nixos.org/build/233259038 at 2023-09-02 + - monad-bayes # failure in job https://hydra.nixos.org/build/307520391 at 2025-09-19 - monad-branch # failure in job https://hydra.nixos.org/build/233251253 at 2023-09-02 - monad-choice # failure in job https://hydra.nixos.org/build/233255987 at 2023-09-02 - monad-fork # failure in job https://hydra.nixos.org/build/233206855 at 2023-09-02 @@ -3935,6 +4083,7 @@ broken-packages: - monad-levels # failure in job https://hydra.nixos.org/build/233230433 at 2023-09-02 - monad-lgbt # failure in job https://hydra.nixos.org/build/233207652 at 2023-09-02 - monad-log # failure in job https://hydra.nixos.org/build/233235588 at 2023-09-02 + - monad-logger-aeson # failure in job https://hydra.nixos.org/build/307611094 at 2025-09-19 - monad-logger-prefix # failure in job https://hydra.nixos.org/build/233194845 at 2023-09-02 - monad-lrs # failure in job https://hydra.nixos.org/build/233204729 at 2023-09-02 - monad-mersenne-random # failure in job https://hydra.nixos.org/build/233219918 at 2023-09-02 @@ -3986,15 +4135,15 @@ broken-packages: - mongodb-queue # failure in job https://hydra.nixos.org/build/233216248 at 2023-09-02 - monitor # failure in job https://hydra.nixos.org/build/233229021 at 2023-09-02 - mono-foldable # failure in job https://hydra.nixos.org/build/233238824 at 2023-09-02 + - mono-traversable-keys # failure in job https://hydra.nixos.org/build/307520429 at 2025-09-19 - monocypher # failure in job https://hydra.nixos.org/build/233195745 at 2023-09-02 - monoid # failure in job https://hydra.nixos.org/build/233252888 at 2023-09-02 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 - - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22 + - monoid-statistics # failure in job https://hydra.nixos.org/build/307520442 at 2025-09-19 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 - - months # failure in job https://hydra.nixos.org/build/267981052 at 2024-07-31 - monus # failure in job https://hydra.nixos.org/build/233252424 at 2023-09-02 - monus-weighted-search # timeout - monzo # failure in job https://hydra.nixos.org/build/233254681 at 2023-09-02 @@ -4002,6 +4151,7 @@ broken-packages: - morfeusz # failure in job https://hydra.nixos.org/build/233232351 at 2023-09-02 - morloc # failure in job https://hydra.nixos.org/build/295095489 at 2025-04-22 - morpheus-graphql-cli # failure in job https://hydra.nixos.org/build/233249063 at 2023-09-02 + - morpheus-graphql-code-gen # failure in job https://hydra.nixos.org/build/307611107 at 2025-09-19 - morphisms-functors # failure in job https://hydra.nixos.org/build/233255311 at 2023-09-02 - morphisms-objects # failure in job https://hydra.nixos.org/build/233216076 at 2023-09-02 - morte # failure in job https://hydra.nixos.org/build/233212193 at 2023-09-02 @@ -4043,6 +4193,7 @@ broken-packages: - mudbath # failure in job https://hydra.nixos.org/build/233198648 at 2023-09-02 - mulang # failure in job https://hydra.nixos.org/build/233211001 at 2023-09-02 - multext-east-msd # failure in job https://hydra.nixos.org/build/233191007 at 2023-09-02 + - multi-containers # failure in job https://hydra.nixos.org/build/307520493 at 2025-09-19 - multi-instance # failure in job https://hydra.nixos.org/build/233203186 at 2023-09-02 - multiaddr # failure in job https://hydra.nixos.org/build/233223452 at 2023-09-02 - multiarg # failure in job https://hydra.nixos.org/build/233238633 at 2023-09-02 @@ -4098,15 +4249,16 @@ broken-packages: - nanoAgda # failure in job https://hydra.nixos.org/build/233259294 at 2023-09-02 - nanocurses # failure in job https://hydra.nixos.org/build/233215906 at 2023-09-02 - nanomsg # failure in job https://hydra.nixos.org/build/233240904 at 2023-09-02 - - nanomsg-haskell # failure in job https://hydra.nixos.org/build/233207779 at 2023-09-02 - nanoparsec # failure in job https://hydra.nixos.org/build/233248843 at 2023-09-02 - nanopass # failure in job https://hydra.nixos.org/build/233230210 at 2023-09-02 - NanoProlog # failure in job https://hydra.nixos.org/build/233244743 at 2023-09-02 + - nanovg # failure in job https://hydra.nixos.org/build/307520550 at 2025-09-19 - nanovg-simple # failure in job https://hydra.nixos.org/build/233257414 at 2023-09-02 - Naperian # failure in job https://hydra.nixos.org/build/233200372 at 2023-09-02 - naperian # failure in job https://hydra.nixos.org/build/233233726 at 2023-09-02 - naqsha # failure in job https://hydra.nixos.org/build/233256844 at 2023-09-02 - narc # failure in job https://hydra.nixos.org/build/233215853 at 2023-09-02 + - nat-optics # failure in job https://hydra.nixos.org/build/307520571 at 2025-09-19 - nat-sized-numbers # failure in job https://hydra.nixos.org/build/233244238 at 2023-09-02 - nationstates # failure in job https://hydra.nixos.org/build/233243640 at 2023-09-02 - nats-client # failure in job https://hydra.nixos.org/build/233241313 at 2023-09-02 @@ -4129,12 +4281,12 @@ broken-packages: - nekos-best # failure in job https://hydra.nixos.org/build/233214327 at 2023-09-02 - Neks # failure in job https://hydra.nixos.org/build/233238103 at 2023-09-02 - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02 - - nerd-font-icons # failure in job https://hydra.nixos.org/build/295456454 at 2025-05-02 - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02 - nest # failure in job https://hydra.nixos.org/build/233224450 at 2023-09-02 - nested-sequence # failure in job https://hydra.nixos.org/build/233221359 at 2023-09-02 - NestedFunctor # failure in job https://hydra.nixos.org/build/233253656 at 2023-09-02 - nestedmap # failure in job https://hydra.nixos.org/build/233219375 at 2023-09-02 + - net-mqtt # failure in job https://hydra.nixos.org/build/307611123 at 2025-09-19 - net-spider # failure in job https://hydra.nixos.org/build/295095612 at 2025-04-22 - netclock # failure in job https://hydra.nixos.org/build/233207456 at 2023-09-02 - netease-fm # failure in job https://hydra.nixos.org/build/233210043 at 2023-09-02 @@ -4239,6 +4391,7 @@ broken-packages: - numeric-optimization-backprop # failure in job https://hydra.nixos.org/build/252733863 at 2024-03-16 - numeric-qq # failure in job https://hydra.nixos.org/build/233207127 at 2023-09-02 - numeric-ranges # failure in job https://hydra.nixos.org/build/233191878 at 2023-09-02 + - numhask-array # failure in job https://hydra.nixos.org/build/307520702 at 2025-09-19 - numhask-free # failure in job https://hydra.nixos.org/build/233214800 at 2023-09-02 - numhask-histogram # failure in job https://hydra.nixos.org/build/295095746 at 2025-04-22 - numhask-prelude # failure in job https://hydra.nixos.org/build/233248768 at 2023-09-02 @@ -4246,10 +4399,12 @@ broken-packages: - numtype-tf # failure in job https://hydra.nixos.org/build/233243483 at 2023-09-02 - nurbs # failure in job https://hydra.nixos.org/build/295095756 at 2025-04-22 - Nutri # failure in job https://hydra.nixos.org/build/233244244 at 2023-09-02 + - nuxeo # failure in job https://hydra.nixos.org/build/307611148 at 2025-09-19 - NXT # failure in job https://hydra.nixos.org/build/265955670 at 2024-07-14 - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02 - nyan-interpolation-core # failure in job https://hydra.nixos.org/build/295095752 at 2025-04-22 - nylas # failure in job https://hydra.nixos.org/build/233193540 at 2023-09-02 + - o-clock # failure in job https://hydra.nixos.org/build/307520711 at 2025-09-19 - oalg-base # failure in job https://hydra.nixos.org/build/295095765 at 2025-04-22 - oanda-rest-api # failure in job https://hydra.nixos.org/build/233250190 at 2023-09-02 - oasis-xrd # failure in job https://hydra.nixos.org/build/233199264 at 2023-09-02 @@ -4272,7 +4427,6 @@ broken-packages: - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 - - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 - om-actor # failure in job https://hydra.nixos.org/build/233231027 at 2023-09-02 - om-http # failure in job https://hydra.nixos.org/build/233245328 at 2023-09-02 - om-http-logging # failure in job https://hydra.nixos.org/build/233218069 at 2023-09-02 @@ -4284,7 +4438,9 @@ broken-packages: - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02 - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 at 2023-09-02 - on-demand-ssh-tunnel # failure in job https://hydra.nixos.org/build/233197181 at 2023-09-02 + - onama # failure in job https://hydra.nixos.org/build/307520792 at 2025-09-19 - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 at 2023-09-02 + - one-line-aeson-text # failure in job https://hydra.nixos.org/build/307520746 at 2025-09-19 - oneormore # failure in job https://hydra.nixos.org/build/233242475 at 2023-09-02 - online # failure in job https://hydra.nixos.org/build/233195360 at 2023-09-02 - onpartitions # failure in job https://hydra.nixos.org/build/233226163 at 2023-09-02 @@ -4352,6 +4508,7 @@ broken-packages: - OrchestrateDB # failure in job https://hydra.nixos.org/build/233200562 at 2023-09-02 - order-statistics # failure in job https://hydra.nixos.org/build/233255710 at 2023-09-02 - ordered # failure in job https://hydra.nixos.org/build/233226269 at 2023-09-02 + - ordinal # failure in job https://hydra.nixos.org/build/307520852 at 2025-09-19 - Ordinary # failure in job https://hydra.nixos.org/build/233240078 at 2023-09-02 - ordrea # failure in job https://hydra.nixos.org/build/233192984 at 2023-09-02 - oref # failure in job https://hydra.nixos.org/build/233239331 at 2023-09-02 @@ -4375,7 +4532,6 @@ broken-packages: - OSM # failure in job https://hydra.nixos.org/build/233231098 at 2023-09-02 - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02 - oso2pdf # failure in job https://hydra.nixos.org/build/233235234 at 2023-09-02 - - osv # failure in job https://hydra.nixos.org/build/295095872 at 2025-04-22 - osx-ar # failure in job https://hydra.nixos.org/build/233194090 at 2023-09-02 - ot # failure in job https://hydra.nixos.org/build/233244553 at 2023-09-02 - OTP # failure in job https://hydra.nixos.org/build/233215664 at 2023-09-02 @@ -4408,14 +4564,15 @@ broken-packages: - pan-os-syslog # failure in job https://hydra.nixos.org/build/233244422 at 2023-09-02 - pandoc-citeproc # failure in job https://hydra.nixos.org/build/233198462 at 2023-09-02 - pandoc-columns # failure in job https://hydra.nixos.org/build/233234538 at 2023-09-02 + - pandoc-crossref # failure in job https://hydra.nixos.org/build/307611190 at 2025-09-19 - pandoc-csv2table # failure in job https://hydra.nixos.org/build/233229925 at 2023-09-02 + - pandoc-dhall-decoder # failure in job https://hydra.nixos.org/build/307611186 at 2025-09-19 - pandoc-emphasize-code # failure in job https://hydra.nixos.org/build/252733347 at 2024-03-16 - pandoc-filter-graphviz # failure in job https://hydra.nixos.org/build/233233372 at 2023-09-02 - pandoc-filter-indent # failure in job https://hydra.nixos.org/build/233235439 at 2023-09-02 - pandoc-include # failure in job https://hydra.nixos.org/build/233199152 at 2023-09-02 - pandoc-include-code # failure in job https://hydra.nixos.org/build/252710408 at 2024-03-16 - pandoc-include-plus # failure in job https://hydra.nixos.org/build/233198059 at 2023-09-02 - - pandoc-lens # failure in job https://hydra.nixos.org/build/233251239 at 2023-09-02 - pandoc-linear-table # failure in job https://hydra.nixos.org/build/233254813 at 2023-09-02 - pandoc-logic-proof # failure in job https://hydra.nixos.org/build/233223409 at 2023-09-02 - pandoc-markdown-ghci-filter # failure in job https://hydra.nixos.org/build/233213731 at 2023-09-02 @@ -4483,6 +4640,7 @@ broken-packages: - parsley-core # failure in job https://hydra.nixos.org/build/233240217 at 2023-09-02 - parsnip # failure in job https://hydra.nixos.org/build/233229093 at 2023-09-02 - partial-lens # failure in job https://hydra.nixos.org/build/233234761 at 2023-09-02 + - partial-order # failure in job https://hydra.nixos.org/build/307520912 at 2025-09-19 - partial-records # failure in job https://hydra.nixos.org/build/233205143 at 2023-09-02 - partial-semigroup # failure in job https://hydra.nixos.org/build/295096015 at 2025-04-22 - partial-semigroup-hedgehog # failure in job https://hydra.nixos.org/build/252731350 at 2024-03-16 @@ -4497,6 +4655,7 @@ broken-packages: - pasta-curves # failure in job https://hydra.nixos.org/build/233196512 at 2023-09-02 - pastis # failure in job https://hydra.nixos.org/build/233218498 at 2023-09-02 - pasty # failure in job https://hydra.nixos.org/build/233251812 at 2023-09-02 + - patat # failure in job https://hydra.nixos.org/build/307611198 at 2025-09-19 - patches-vector # failure in job https://hydra.nixos.org/build/233244862 at 2023-09-02 - path-formatting # failure in job https://hydra.nixos.org/build/233199358 at 2023-09-02 - path-sing # failure in job https://hydra.nixos.org/build/237234354 at 2023-10-21 @@ -4505,6 +4664,7 @@ broken-packages: - paths # failure in job https://hydra.nixos.org/build/252731256 at 2024-03-16 - PathTree # failure in job https://hydra.nixos.org/build/233216203 at 2023-09-02 - patronscraper # failure in job https://hydra.nixos.org/build/233258571 at 2023-09-02 + - pattern-matcher # failure in job https://hydra.nixos.org/build/307520949 at 2025-09-19 - pattern-trie # failure in job https://hydra.nixos.org/build/233237252 at 2023-09-02 - paynow-zw # failure in job https://hydra.nixos.org/build/233221916 at 2023-09-02 - paypal-adaptive-hoops # failure in job https://hydra.nixos.org/build/233244557 at 2023-09-02 @@ -4551,6 +4711,7 @@ broken-packages: - persistent-database-url # failure in job https://hydra.nixos.org/build/233233601 at 2023-09-02 - persistent-equivalence # failure in job https://hydra.nixos.org/build/233208713 at 2023-09-02 - persistent-generic # failure in job https://hydra.nixos.org/build/233220060 at 2023-09-02 + - persistent-ip # failure in job https://hydra.nixos.org/build/307611208 at 2025-09-19 - persistent-mongoDB # failure in job https://hydra.nixos.org/build/233207971 at 2023-09-02 - persistent-mtl # failure in job https://hydra.nixos.org/build/255677987 at 2024-04-16 - persistent-mysql-haskell # failure in job https://hydra.nixos.org/build/295096055 at 2025-04-22 @@ -4560,7 +4721,6 @@ broken-packages: - persistent-ratelimit # failure in job https://hydra.nixos.org/build/233224537 at 2023-09-02 - persistent-refs # failure in job https://hydra.nixos.org/build/252722090 at 2024-03-16 - persistent-relational-record # compilation failure https://hydra.nixos.org/build/295428425 - - persistent-sql-lifted # failure in job https://hydra.nixos.org/build/295096040 at 2025-04-22 - persistent-stm # failure in job https://hydra.nixos.org/build/233234706 at 2023-09-02 - persistent-template-classy # failure in job https://hydra.nixos.org/build/233230341 at 2023-09-02 - persistent-vector # failure in job https://hydra.nixos.org/build/252721689 at 2024-03-16 @@ -4628,13 +4788,16 @@ broken-packages: - pipes-break # failure in job https://hydra.nixos.org/build/233250730 at 2023-09-02 - pipes-brotli # failure in job https://hydra.nixos.org/build/233254662 at 2023-09-02 - pipes-bzip # failure in job https://hydra.nixos.org/build/233222309 at 2023-09-02 + - pipes-cacophony # failure in job https://hydra.nixos.org/build/307521021 at 2025-09-19 - pipes-category # failure in job https://hydra.nixos.org/build/233200163 at 2023-09-02 - pipes-cereal # failure in job https://hydra.nixos.org/build/233195413 at 2023-09-02 - pipes-core # failure in job https://hydra.nixos.org/build/233213024 at 2023-09-02 - pipes-errors # failure in job https://hydra.nixos.org/build/233214912 at 2023-09-02 + - pipes-interleave # failure in job https://hydra.nixos.org/build/307521060 at 2025-09-19 - pipes-io # failure in job https://hydra.nixos.org/build/233243253 at 2023-09-02 - pipes-kafka # failure in job https://hydra.nixos.org/build/252727228 at 2024-03-16 - pipes-lines # failure in job https://hydra.nixos.org/build/233243979 at 2023-09-02 + - pipes-lzma # failure in job https://hydra.nixos.org/build/307521032 at 2025-09-19 - pipes-network-ws # failure in job https://hydra.nixos.org/build/233245816 at 2023-09-02 - pipes-protolude # failure in job https://hydra.nixos.org/build/233216770 at 2023-09-02 - pipes-pulse-simple # failure in job https://hydra.nixos.org/build/295096094 at 2025-04-22 @@ -4717,6 +4880,7 @@ broken-packages: - polysemy-http # failure in job https://hydra.nixos.org/build/295122896 at 2025-04-22 - polysemy-keyed-state # failure in job https://hydra.nixos.org/build/233224142 at 2023-09-02 - polysemy-kvstore # failure in job https://hydra.nixos.org/build/233229745 at 2023-09-02 + - polysemy-log-co # failure in job https://hydra.nixos.org/build/307521087 at 2025-09-19 - polysemy-managed # failure in job https://hydra.nixos.org/build/233221190 at 2023-09-02 - polysemy-optics # failure in job https://hydra.nixos.org/build/233219159 at 2023-09-02 - polysemy-readline # failure in job https://hydra.nixos.org/build/233219007 at 2023-09-02 @@ -4732,7 +4896,6 @@ broken-packages: - pomohoro # failure in job https://hydra.nixos.org/build/233244601 at 2023-09-02 - ponder # failure in job https://hydra.nixos.org/build/233223646 at 2023-09-02 - pong-server # failure in job https://hydra.nixos.org/build/233194974 at 2023-09-02 - - pontarius-xmpp-extras # failure in job https://hydra.nixos.org/build/301059892 at 2025-07-01 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 @@ -4766,6 +4929,7 @@ broken-packages: - postgresql-replicant # failure in job https://hydra.nixos.org/build/233247943 at 2023-09-02 - postgresql-resilient # failure in job https://hydra.nixos.org/build/233212362 at 2023-09-02 - postgresql-simple-bind # failure in job https://hydra.nixos.org/build/233220640 at 2023-09-02 + - postgresql-simple-interval # failure in job https://hydra.nixos.org/build/307611243 at 2025-09-19 - postgresql-simple-named # failure in job https://hydra.nixos.org/build/233202481 at 2023-09-02 - postgresql-simple-opts # failure in job https://hydra.nixos.org/build/252718901 at 2024-03-16 - postgresql-simple-sop # failure in job https://hydra.nixos.org/build/233249757 at 2023-09-02 @@ -4780,6 +4944,8 @@ broken-packages: - postmaster # failure in job https://hydra.nixos.org/build/233258599 at 2023-09-02 - potato-tool # failure in job https://hydra.nixos.org/build/233242728 at 2023-09-02 - potoki-core # failure in job https://hydra.nixos.org/build/233218616 at 2023-09-02 + - potrace-diagrams # failure in job https://hydra.nixos.org/build/307611245 at 2025-09-19 + - powerdns # failure in job https://hydra.nixos.org/build/307611240 at 2025-09-19 - powermate # failure in job https://hydra.nixos.org/build/233224977 at 2023-09-02 - powerpc # failure in job https://hydra.nixos.org/build/233217983 at 2023-09-02 - powerqueue-levelmem # failure in job https://hydra.nixos.org/build/233232882 at 2023-09-02 @@ -4790,6 +4956,7 @@ broken-packages: - pprecord # failure in job https://hydra.nixos.org/build/233198838 at 2023-09-02 - PPrinter # failure in job https://hydra.nixos.org/build/233253160 at 2023-09-02 - pqc # failure in job https://hydra.nixos.org/build/233217425 at 2023-09-02 + - pr-tools # failure in job https://hydra.nixos.org/build/307611246 at 2025-09-19 - praglude # failure in job https://hydra.nixos.org/build/233227990 at 2023-09-02 - preamble # failure in job https://hydra.nixos.org/build/233214735 at 2023-09-02 - precis # failure in job https://hydra.nixos.org/build/233218390 at 2023-09-02 @@ -4826,6 +4993,7 @@ broken-packages: - prime # failure in job https://hydra.nixos.org/build/233197550 at 2023-09-02 - primes-type # failure in job https://hydra.nixos.org/build/233258302 at 2023-09-02 - primitive-checked # failure in job https://hydra.nixos.org/build/233211674 at 2023-09-02 + - primitive-containers # failure in job https://hydra.nixos.org/build/307521213 at 2025-09-19 - primitive-convenience # failure in job https://hydra.nixos.org/build/233223846 at 2023-09-02 - primitive-foreign # failure in job https://hydra.nixos.org/build/233247413 at 2023-09-02 - primitive-indexed # failure in job https://hydra.nixos.org/build/233245884 at 2023-09-02 @@ -4857,6 +5025,7 @@ broken-packages: - procex # failure in job https://hydra.nixos.org/build/295096282 at 2025-04-22 - procrastinating-variable # failure in job https://hydra.nixos.org/build/233229350 at 2023-09-02 - procstat # failure in job https://hydra.nixos.org/build/233256320 at 2023-09-02 + - prodapi # failure in job https://hydra.nixos.org/build/307611251 at 2025-09-19 - prodapi-proxy # failure in job https://hydra.nixos.org/build/295096290 at 2025-04-22 - prodapi-userauth # failure in job https://hydra.nixos.org/build/295096314 at 2025-04-22 - prof-flamegraph # failure in job https://hydra.nixos.org/build/233254675 at 2023-09-02 @@ -4908,6 +5077,7 @@ broken-packages: - psx # failure in job https://hydra.nixos.org/build/233199666 at 2023-09-02 - ptera-core # failure in job https://hydra.nixos.org/build/295096340 at 2025-04-22 - PTQ # failure in job https://hydra.nixos.org/build/233202571 at 2023-09-02 + - ptr-peeker # failure in job https://hydra.nixos.org/build/307521316 at 2025-09-19 - pub # failure in job https://hydra.nixos.org/build/233255415 at 2023-09-02 - publicsuffix # failure in job https://hydra.nixos.org/build/233241572 at 2023-09-02 - publicsuffixlistcreate # failure in job https://hydra.nixos.org/build/233251430 at 2023-09-02 @@ -4937,6 +5107,7 @@ broken-packages: - putlenses # failure in job https://hydra.nixos.org/build/233197372 at 2023-09-02 - puzzle-draw # failure in job https://hydra.nixos.org/build/233204953 at 2023-09-02 - pvector # failure in job https://hydra.nixos.org/build/233217965 at 2023-09-02 + - pvss # failure in job https://hydra.nixos.org/build/307521319 at 2025-09-19 - pyffi # failure in job https://hydra.nixos.org/build/233260156 at 2023-09-02 - pyfi # failure in job https://hydra.nixos.org/build/233214389 at 2023-09-02 - python-pickle # failure in job https://hydra.nixos.org/build/233230321 at 2023-09-02 @@ -4957,10 +5128,10 @@ broken-packages: - qsem # failure in job https://hydra.nixos.org/build/295096373 at 2025-04-22 - qt # failure in job https://hydra.nixos.org/build/233248869 at 2023-09-02 - QuadEdge # failure in job https://hydra.nixos.org/build/233249144 at 2023-09-02 - - quadratic-irrational # failure in job https://hydra.nixos.org/build/295096381 at 2025-04-22 - QuadTree # failure in job https://hydra.nixos.org/build/233234922 at 2023-09-02 - qualified-imports-plugin # failure in job https://hydra.nixos.org/build/233234707 at 2023-09-02 - quandl-api # failure in job https://hydra.nixos.org/build/233219173 at 2023-09-02 + - quantification # failure in job https://hydra.nixos.org/build/307521331 at 2025-09-19 - quantum-arrow # failure in job https://hydra.nixos.org/build/233219576 at 2023-09-02 - quantum-random # failure in job https://hydra.nixos.org/build/295096421 at 2025-04-22 - quarantimer # failure in job https://hydra.nixos.org/build/233598108 at 2023-09-02 @@ -4979,6 +5150,7 @@ broken-packages: - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 - quickcheck-report # failure in job https://hydra.nixos.org/build/233214523 at 2023-09-02 + - quickcheck-state-machine # failure in job https://hydra.nixos.org/build/307611262 at 2025-09-19 - quickcheck-state-machine-distributed # failure in job https://hydra.nixos.org/build/295096422 at 2025-04-22 - quickcheck-webdriver # failure in job https://hydra.nixos.org/build/233228000 at 2023-09-02 - QuickCheckVariant # failure in job https://hydra.nixos.org/build/233239276 at 2023-09-02 @@ -4994,6 +5166,7 @@ broken-packages: - quiver # failure in job https://hydra.nixos.org/build/233230395 at 2023-09-02 - quokka # failure in job https://hydra.nixos.org/build/233196347 at 2023-09-02 - quoridor-hs # failure in job https://hydra.nixos.org/build/233217459 at 2023-09-02 + - quotet # failure in job https://hydra.nixos.org/build/307521359 at 2025-09-19 - r-glpk-phonetic-languages-ukrainian-durations # failure in job https://hydra.nixos.org/build/253703155 at 2024-03-31 - R-pandoc # failure in job https://hydra.nixos.org/build/233192114 at 2023-09-02 - RabbitMQ # failure in job https://hydra.nixos.org/build/233222087 at 2023-09-02 @@ -5015,6 +5188,7 @@ broken-packages: - random-derive # failure in job https://hydra.nixos.org/build/233222005 at 2023-09-02 - random-eff # failure in job https://hydra.nixos.org/build/233255496 at 2023-09-02 - random-fu-multivariate # failure in job https://hydra.nixos.org/build/252715951 at 2024-03-16 + - random-mhs # failure in job https://hydra.nixos.org/build/307521383 at 2025-09-19 - random-source # failure in job https://hydra.nixos.org/build/233254664 at 2023-09-02 - random-stream # failure in job https://hydra.nixos.org/build/233240384 at 2023-09-02 - random-string # failure in job https://hydra.nixos.org/build/233223504 at 2023-09-02 @@ -5022,15 +5196,18 @@ broken-packages: - Range # failure in job https://hydra.nixos.org/build/233235824 at 2023-09-02 - rangemin # failure in job https://hydra.nixos.org/build/233244031 at 2023-09-02 - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02 + - rapid # failure in job https://hydra.nixos.org/build/307521428 at 2025-09-19 - rapid-term # failure in job https://hydra.nixos.org/build/233251731 at 2023-09-02 - Rasenschach # failure in job https://hydra.nixos.org/build/234445901 at 2023-09-13 - rating-chgk-info # failure in job https://hydra.nixos.org/build/233598034 at 2023-09-02 - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02 - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02 - rattletrap # failure in job https://hydra.nixos.org/build/233206840 at 2023-09-02 + - Rattus # failure in job https://hydra.nixos.org/build/307516167 at 2025-09-19 - rawlock # failure in job https://hydra.nixos.org/build/299186718 at 2025-06-23 - rawr # fails to build after unbreaking ghc-datasize at 2025-01-19 - raylib-imgui # failure in job https://hydra.nixos.org/build/233222471 at 2023-09-02 + - raytrace # failure in job https://hydra.nixos.org/build/307611266 at 2025-09-19 - raz # failure in job https://hydra.nixos.org/build/233218482 at 2023-09-02 - rbst # failure in job https://hydra.nixos.org/build/233238184 at 2023-09-02 - rclient # failure in job https://hydra.nixos.org/build/233239290 at 2023-09-02 @@ -5060,12 +5237,15 @@ broken-packages: - reasonable-lens # failure in job https://hydra.nixos.org/build/233233111 at 2023-09-02 - rec-smallarray # failure in job https://hydra.nixos.org/build/233258592 at 2023-09-02 - record # failure in job https://hydra.nixos.org/build/233242406 at 2023-09-02 + - record-dot-preprocessor # failure in job https://hydra.nixos.org/build/307521455 at 2025-09-19 - record-encode # failure in job https://hydra.nixos.org/build/233216156 at 2023-09-02 + - record-impl # failure in job https://hydra.nixos.org/build/307521439 at 2025-09-19 - record-wrangler # failure in job https://hydra.nixos.org/build/233212838 at 2023-09-02 - records # failure in job https://hydra.nixos.org/build/233254822 at 2023-09-02 - recursive-line-count # failure in job https://hydra.nixos.org/build/252736942 at 2024-03-16 - recursors # failure in job https://hydra.nixos.org/build/233234451 at 2023-09-02 - redis-hs # failure in job https://hydra.nixos.org/build/233191943 at 2023-09-02 + - redis-schema # failure in job https://hydra.nixos.org/build/307611277 at 2025-09-19 - redis-simple # failure in job https://hydra.nixos.org/build/233200379 at 2023-09-02 - Redmine # failure in job https://hydra.nixos.org/build/233250398 at 2023-09-02 - reduce-equations # failure in job https://hydra.nixos.org/build/270034373 at 2024-08-19 @@ -5077,6 +5257,7 @@ broken-packages: - ref-mtl # failure in job https://hydra.nixos.org/build/233260152 at 2023-09-02 - refcount # failure in job https://hydra.nixos.org/build/233236697 at 2023-09-02 - Referees # failure in job https://hydra.nixos.org/build/233213892 at 2023-09-02 + - reference-counting # failure in job https://hydra.nixos.org/build/307521488 at 2025-09-19 - references # failure in job https://hydra.nixos.org/build/233197836 at 2023-09-02 - refined-http-api-data # failure in job https://hydra.nixos.org/build/233231753 at 2023-09-02 - refined-with # failure in job https://hydra.nixos.org/build/233258564 at 2023-09-02 @@ -5094,11 +5275,12 @@ broken-packages: - reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02 - reflex-dynamic-containers # failure in job https://hydra.nixos.org/build/295096540 at 2025-04-22 - reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02 + - reflex-gi-gtk # failure in job https://hydra.nixos.org/build/307611276 at 2025-09-19 - reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02 - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02 + - reflex-sdl2 # failure in job https://hydra.nixos.org/build/307521569 at 2025-09-19 - reflex-transformers # failure in job https://hydra.nixos.org/build/233243647 at 2023-09-02 - reflex-vty # failure in job https://hydra.nixos.org/build/295096544 at 2025-04-22 - - reform # failure in job https://hydra.nixos.org/build/252717808 at 2024-03-16 - reform-hamlet # failure in job https://hydra.nixos.org/build/233230013 at 2023-09-02 - reform-hsp # failure in job https://hydra.nixos.org/build/233228737 at 2023-09-02 - reform-lucid # failure in job https://hydra.nixos.org/build/233257636 at 2023-09-02 @@ -5107,6 +5289,7 @@ broken-packages: - refty # failure in job https://hydra.nixos.org/build/233215083 at 2023-09-02 - reg-alloc # failure in job https://hydra.nixos.org/build/233195081 at 2023-09-02 - regex-dfa # failure in job https://hydra.nixos.org/build/233242994 at 2023-09-02 + - regex-do # failure in job https://hydra.nixos.org/build/307521538 at 2025-09-19 - regex-generator # failure in job https://hydra.nixos.org/build/233239502 at 2023-09-02 - regex-parsec # failure in job https://hydra.nixos.org/build/233223781 at 2023-09-02 - regex-pcre2 # failure in job https://hydra.nixos.org/build/295096563 at 2025-04-22 @@ -5128,6 +5311,7 @@ broken-packages: - registry-messagepack # failure in job https://hydra.nixos.org/build/303231364 at 2025-07-27 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 + - regression-simple # failure in job https://hydra.nixos.org/build/307521504 at 2025-09-19 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 - rehoo # failure in job https://hydra.nixos.org/build/233246417 at 2023-09-02 - rei # failure in job https://hydra.nixos.org/build/233221328 at 2023-09-02 @@ -5142,6 +5326,7 @@ broken-packages: - relocant # failure in job https://hydra.nixos.org/build/295096588 at 2025-04-22 - remark # failure in job https://hydra.nixos.org/build/233240981 at 2023-09-02 - remarks # failure in job https://hydra.nixos.org/build/233256889 at 2023-09-02 + - rematch-text # failure in job https://hydra.nixos.org/build/307521518 at 2025-09-19 - remote # failure in job https://hydra.nixos.org/build/233220714 at 2023-09-02 - remote-debugger # failure in job https://hydra.nixos.org/build/233199491 at 2023-09-02 - remote-monad # failure in job https://hydra.nixos.org/build/233247733 at 2023-09-02 @@ -5167,8 +5352,6 @@ broken-packages: - request # failure in job https://hydra.nixos.org/build/233256702 at 2023-09-02 - request-monad # failure in job https://hydra.nixos.org/build/233204896 at 2023-09-02 - require # failure in job https://hydra.nixos.org/build/233203170 at 2023-09-02 - - requirements # failure in job https://hydra.nixos.org/build/252711740 at 2024-03-16 - - rere # failure in job https://hydra.nixos.org/build/295096658 at 2025-04-22 - rescue # failure in job https://hydra.nixos.org/build/233230073 at 2023-09-02 - reservoir # failure in job https://hydra.nixos.org/build/233194430 at 2023-09-02 - resolve # failure in job https://hydra.nixos.org/build/233224070 at 2023-09-02 @@ -5186,6 +5369,7 @@ broken-packages: - resumable-exceptions # failure in job https://hydra.nixos.org/build/233206560 at 2023-09-02 - rethinkdb # failure in job https://hydra.nixos.org/build/233211172 at 2023-09-02 - rethinkdb-client-driver # failure in job https://hydra.nixos.org/build/233216583 at 2023-09-02 + - retrie # failure in job https://hydra.nixos.org/build/307521572 at 2025-09-19 - retroclash-lib # failure in job https://hydra.nixos.org/build/295096644 at 2025-04-22 - retry-effectful # failure in job https://hydra.nixos.org/build/295096646 at 2025-04-22 - retryer # failure in job https://hydra.nixos.org/build/233193427 at 2023-09-02 @@ -5208,7 +5392,6 @@ broken-packages: - rigel-viz # failure in job https://hydra.nixos.org/build/233251060 at 2023-09-02 - ring-buffers # failure in job https://hydra.nixos.org/build/233259860 at 2023-09-02 - rings # failure in job https://hydra.nixos.org/build/252730924 at 2024-03-16 - - risc386 # failure in job https://hydra.nixos.org/build/295096662 at 2025-04-22 - riscv-isa # failure in job https://hydra.nixos.org/build/233192811 at 2023-09-02 - risk-weaver # failure in job https://hydra.nixos.org/build/295096664 at 2025-04-22 - rison # failure in job https://hydra.nixos.org/build/233231694 at 2023-09-02 @@ -5221,6 +5404,7 @@ broken-packages: - rle # failure in job https://hydra.nixos.org/build/233238229 at 2023-09-02 - rlglue # failure in job https://hydra.nixos.org/build/233222786 at 2023-09-02 - RLP # failure in job https://hydra.nixos.org/build/233222770 at 2023-09-02 + - rme-what4 # failure in job https://hydra.nixos.org/build/307611281 at 2025-09-19 - robin # failure in job https://hydra.nixos.org/build/233205010 at 2023-09-02 - robots-txt # failure in job https://hydra.nixos.org/build/233243090 at 2023-09-02 - roc-cluster # failure in job https://hydra.nixos.org/build/233202517 at 2023-09-02 @@ -5250,11 +5434,11 @@ broken-packages: - rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02 - rsi-break # failure in job https://hydra.nixos.org/build/245788743 at 2024-01-07 - rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02 + - rss-conduit # failure in job https://hydra.nixos.org/build/307611286 at 2025-09-19 - rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02 - rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02 - RtMidi # failure in job https://hydra.nixos.org/build/233241377 at 2023-09-02 - rtnetlink # failure in job https://hydra.nixos.org/build/233198783 at 2023-09-02 - - rtorrent-rpc # failure in job https://hydra.nixos.org/build/233202187 at 2023-09-02 - rtorrent-state # failure in job https://hydra.nixos.org/build/233216983 at 2023-09-02 - rts-loader # failure in job https://hydra.nixos.org/build/233226464 at 2023-09-02 - rubberband # failure in job https://hydra.nixos.org/build/233191496 at 2023-09-02 @@ -5262,6 +5446,7 @@ broken-packages: - ruby-qq # failure in job https://hydra.nixos.org/build/233259084 at 2023-09-02 - ruff # failure in job https://hydra.nixos.org/build/233200285 at 2023-09-02 - ruin # failure in job https://hydra.nixos.org/build/233247866 at 2023-09-02 + - run-haskell-module # failure in job https://hydra.nixos.org/build/307521638 at 2025-09-19 - runhs # failure in job https://hydra.nixos.org/build/233193983 at 2023-09-02 - runmany # failure in job https://hydra.nixos.org/build/233241476 at 2023-09-02 - runtime-instances # failure in job https://hydra.nixos.org/build/233217985 at 2023-09-02 @@ -5274,6 +5459,7 @@ broken-packages: - safe-access # failure in job https://hydra.nixos.org/build/252736917 at 2024-03-16 - safe-buffer-monad # failure in job https://hydra.nixos.org/build/233192108 at 2023-09-02 - safe-coerce # failure in job https://hydra.nixos.org/build/233244289 at 2023-09-02 + - safe-decimal # failure in job https://hydra.nixos.org/build/307521644 at 2025-09-19 - safe-exceptions-checked # failure in job https://hydra.nixos.org/build/252717135 at 2024-03-16 - safe-freeze # failure in job https://hydra.nixos.org/build/233230451 at 2023-09-02 - safe-globals # failure in job https://hydra.nixos.org/build/233201910 at 2023-09-02 @@ -5298,6 +5484,7 @@ broken-packages: - sandwich-contexts # failure in job https://hydra.nixos.org/build/282178661 at 2024-12-23 - sarasvati # failure in job https://hydra.nixos.org/build/233208235 at 2023-09-02 - sat # failure in job https://hydra.nixos.org/build/233225713 at 2023-09-02 + - sat-simple # failure in job https://hydra.nixos.org/build/307521671 at 2025-09-19 - satchmo-backends # failure in job https://hydra.nixos.org/build/233228506 at 2023-09-02 - satchmo-minisat # failure in job https://hydra.nixos.org/build/233229585 at 2023-09-02 - Saturnin # failure in job https://hydra.nixos.org/build/233227938 at 2023-09-02 @@ -5333,6 +5520,7 @@ broken-packages: - scrapbook-core # failure in job https://hydra.nixos.org/build/233222406 at 2023-09-02 - scrape-changes # failure in job https://hydra.nixos.org/build/233225890 at 2023-09-02 - ScratchFs # failure in job https://hydra.nixos.org/build/233257558 at 2023-09-02 + - screenshot-to-clipboard # failure in job https://hydra.nixos.org/build/307611311 at 2025-09-19 - script-monad # failure in job https://hydra.nixos.org/build/233221600 at 2023-09-02 - scrobble # failure in job https://hydra.nixos.org/build/233252277 at 2023-09-02 - scroll-list # failure in job https://hydra.nixos.org/build/233217737 at 2023-09-02 @@ -5363,6 +5551,7 @@ broken-packages: - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 at 2023-09-02 - secureUDP # failure in job https://hydra.nixos.org/build/233215410 at 2023-09-02 - SegmentTree # failure in job https://hydra.nixos.org/build/233216161 at 2023-09-02 + - selda # failure in job https://hydra.nixos.org/build/307521709 at 2025-09-19 - selda-postgresql # failure in job https://hydra.nixos.org/build/245539286 at 2024-01-02 - selectors # failure in job https://hydra.nixos.org/build/233227433 at 2023-09-02 - selenium # failure in job https://hydra.nixos.org/build/233214276 at 2023-09-02 @@ -5386,7 +5575,7 @@ broken-packages: - SeqAlign # failure in job https://hydra.nixos.org/build/233214595 at 2023-09-02 - sequent-core # failure in job https://hydra.nixos.org/build/233202838 at 2023-09-02 - sequential-index # failure in job https://hydra.nixos.org/build/233228686 at 2023-09-02 - - serdoc-core # failure in job https://hydra.nixos.org/build/252726252 at 2024-03-16 + - sequitur # failure in job https://hydra.nixos.org/build/307521764 at 2025-09-19 - serf # failure in job https://hydra.nixos.org/build/233251981 at 2023-09-02 - serial # failure in job https://hydra.nixos.org/build/252729356 at 2024-03-16 - serialize-instances # failure in job https://hydra.nixos.org/build/233239330 at 2023-09-02 @@ -5404,13 +5593,13 @@ broken-packages: - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02 - - servant-event-stream # failure in job https://hydra.nixos.org/build/302806100 at 2025-07-27 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 - servant-github # failure in job https://hydra.nixos.org/build/233231566 at 2023-09-02 - servant-github-webhook # failure in job https://hydra.nixos.org/build/233234237 at 2023-09-02 - servant-htmx # failure in job https://hydra.nixos.org/build/233214786 at 2023-09-02 + - servant-http-streams # failure in job https://hydra.nixos.org/build/307611341 at 2025-09-19 - servant-http2-client # failure in job https://hydra.nixos.org/build/260189694 at 2024-05-19 - servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02 - servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02 @@ -5426,10 +5615,14 @@ broken-packages: - servant-proto-lens # failure in job https://hydra.nixos.org/build/252736298 at 2024-03-16 - servant-purescript # failure in job https://hydra.nixos.org/build/233598080 at 2023-09-02 - servant-py # failure in job https://hydra.nixos.org/build/233598104 at 2023-09-02 + - servant-quickcheck # failure in job https://hydra.nixos.org/build/307611328 at 2025-09-19 - servant-reflex # failure in job https://hydra.nixos.org/build/233212870 at 2023-09-02 - servant-router # failure in job https://hydra.nixos.org/build/233246333 at 2023-09-02 + - servant-routes # failure in job https://hydra.nixos.org/build/307521826 at 2025-09-19 - servant-ruby # failure in job https://hydra.nixos.org/build/233598144 at 2023-09-02 - servant-scotty # failure in job https://hydra.nixos.org/build/233248472 at 2023-09-02 + - servant-seo # failure in job https://hydra.nixos.org/build/307611335 at 2025-09-19 + - servant-serf # failure in job https://hydra.nixos.org/build/307521802 at 2025-09-19 - servant-smsc-ru # failure in job https://hydra.nixos.org/build/233239620 at 2023-09-02 - servant-stache # failure in job https://hydra.nixos.org/build/233204547 at 2023-09-02 - servant-static-th # failure in job https://hydra.nixos.org/build/233191735 at 2023-09-02 @@ -5446,7 +5639,6 @@ broken-packages: - servant-zeppelin # failure in job https://hydra.nixos.org/build/233230172 at 2023-09-02 - server-generic # failure in job https://hydra.nixos.org/build/233194042 at 2023-09-02 - serverless-haskell # failure in job https://hydra.nixos.org/build/233201987 at 2023-09-02 - - serversession-backend-acid-state # failure in job https://hydra.nixos.org/build/233202796 at 2023-09-02 - serversession-backend-persistent # failure in job https://hydra.nixos.org/build/233239242 at 2023-09-02 - services # failure in job https://hydra.nixos.org/build/233249029 at 2023-09-02 - serviette # failure in job https://hydra.nixos.org/build/233226968 at 2023-09-02 @@ -5454,6 +5646,7 @@ broken-packages: - SessionLogger # failure in job https://hydra.nixos.org/build/233235790 at 2023-09-02 - sessions # failure in job https://hydra.nixos.org/build/233214614 at 2023-09-02 - sessiontypes # failure in job https://hydra.nixos.org/build/233224975 at 2023-09-02 + - set-monad # failure in job https://hydra.nixos.org/build/307521878 at 2025-09-19 - set-of # failure in job https://hydra.nixos.org/build/233202960 at 2023-09-02 - set-with # failure in job https://hydra.nixos.org/build/233209870 at 2023-09-02 - setdown # failure in job https://hydra.nixos.org/build/241521053 at 2023-12-03 @@ -5470,6 +5663,7 @@ broken-packages: - sfmt # failure in job https://hydra.nixos.org/build/233260124 at 2023-09-02 - SG # failure in job https://hydra.nixos.org/build/233228780 at 2023-09-02 - sgd # failure in job https://hydra.nixos.org/build/233240302 at 2023-09-02 + - sgf # failure in job https://hydra.nixos.org/build/307521831 at 2025-09-19 - SGplus # failure in job https://hydra.nixos.org/build/233227890 at 2023-09-02 - sh2md # failure in job https://hydra.nixos.org/build/233254149 at 2023-09-02 - sha-streams # failure in job https://hydra.nixos.org/build/233257983 at 2023-09-02 @@ -5519,6 +5713,7 @@ broken-packages: - signable-haskell-protoc # failure in job https://hydra.nixos.org/build/252734188 at 2024-03-16 - signal-messaging-dbus # failure in job https://hydra.nixos.org/build/252723131 at 2024-03-16 - signature # failure in job https://hydra.nixos.org/build/301391178 at 2025-07-01 + - signed-multiset # failure in job https://hydra.nixos.org/build/307521906 at 2025-09-19 - significant-figures # failure in job https://hydra.nixos.org/build/295097004 at 2025-04-22 - silero-vad # failure in job https://hydra.nixos.org/build/295096978 at 2025-04-22 - simd # failure in job https://hydra.nixos.org/build/233206642 at 2023-09-02 @@ -5564,6 +5759,7 @@ broken-packages: - simplexmq # failure in job https://hydra.nixos.org/build/233223717 at 2023-09-02 - simplistic-generics # failure in job https://hydra.nixos.org/build/233217412 at 2023-09-02 - sindre # horribly outdated (X11 interface changed a lot) + - single-tuple # failure in job https://hydra.nixos.org/build/307521928 at 2025-09-19 - singlethongs # failure in job https://hydra.nixos.org/build/233202756 at 2023-09-02 - singleton-dict # failure in job https://hydra.nixos.org/build/233245405 at 2023-09-02 - singleton-typelits # failure in job https://hydra.nixos.org/build/233250877 at 2023-09-02 @@ -5579,15 +5775,13 @@ broken-packages: - sized-grid # failure in job https://hydra.nixos.org/build/233239056 at 2023-09-02 - sized-types # failure in job https://hydra.nixos.org/build/233244977 at 2023-09-02 - sized-vector # failure in job https://hydra.nixos.org/build/233227779 at 2023-09-02 + - sizes # failure in job https://hydra.nixos.org/build/307521947 at 2025-09-19 - sjsp # failure in job https://hydra.nixos.org/build/233225141 at 2023-09-02 - SJW # failure in job https://hydra.nixos.org/build/233209689 at 2023-09-02 - skeletal-set # failure in job https://hydra.nixos.org/build/233254711 at 2023-09-02 - - skeletest # failure in job https://hydra.nixos.org/build/270083279 at 2024-08-31 - skell # failure in job https://hydra.nixos.org/build/233245484 at 2023-09-02 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 - sketch-frp-copilot # copilot >=4.3 && <4.4, - - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22 - - skews # time out in job https://hydra.nixos.org/build/302806286 at 2025-07-27 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 @@ -5626,14 +5820,13 @@ broken-packages: - smsaero # failure in job https://hydra.nixos.org/build/233215880 at 2023-09-02 - smt-lib # failure in job https://hydra.nixos.org/build/233208443 at 2023-09-02 - SmtLib # failure in job https://hydra.nixos.org/build/233213271 at 2023-09-02 - - smtlib-backends-process # failure in job https://hydra.nixos.org/build/233209223 at 2023-09-02 - - smtlib-backends-tests # failure in job https://hydra.nixos.org/build/295097081 at 2025-04-22 - smtlib2 # failure in job https://hydra.nixos.org/build/233251831 at 2023-09-02 - smtp-mail-ng # failure in job https://hydra.nixos.org/build/233220094 at 2023-09-02 - SMTPClient # failure in job https://hydra.nixos.org/build/233247599 at 2023-09-02 - smtps-gmail # failure in job https://hydra.nixos.org/build/233191933 at 2023-09-02 - smuggler # failure in job https://hydra.nixos.org/build/233199288 at 2023-09-02 - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02 + - snack # failure in job https://hydra.nixos.org/build/307521984 at 2025-09-19 - snail # failure in job https://hydra.nixos.org/build/252731890 at 2024-03-16 - snake # failure in job https://hydra.nixos.org/build/233242029 at 2023-09-02 - snake-game # failure in job https://hydra.nixos.org/build/234441416 at 2023-09-13 @@ -5646,12 +5839,14 @@ broken-packages: - snap-predicates # failure in job https://hydra.nixos.org/build/233244904 at 2023-09-02 - snap-routes # failure in job https://hydra.nixos.org/build/252718562 at 2024-03-16 - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02 + - snap-templates # failure in job https://hydra.nixos.org/build/307522010 at 2025-09-19 - snap-testing # failure in job https://hydra.nixos.org/build/252736070 at 2024-03-16 - snap-web-routes # failure in job https://hydra.nixos.org/build/295097108 at 2025-04-22 - snaplet-acid-state # failure in job https://hydra.nixos.org/build/252733993 at 2024-03-16 - snaplet-amqp # failure in job https://hydra.nixos.org/build/252722868 at 2024-03-16 - snaplet-coffee # failure in job https://hydra.nixos.org/build/252712879 at 2024-03-16 - snaplet-css-min # failure in job https://hydra.nixos.org/build/252718032 at 2024-03-16 + - snaplet-customauth # failure in job https://hydra.nixos.org/build/307611386 at 2025-09-19 - snaplet-environments # failure in job https://hydra.nixos.org/build/252718495 at 2024-03-16 - snaplet-hslogger # failure in job https://hydra.nixos.org/build/252719175 at 2024-03-16 - snaplet-influxdb # failure in job https://hydra.nixos.org/build/252717331 at 2024-03-16 @@ -5667,11 +5862,11 @@ broken-packages: - snaplet-sqlite-simple # failure in job https://hydra.nixos.org/build/252738602 at 2024-03-16 - snaplet-typed-sessions # failure in job https://hydra.nixos.org/build/252724459 at 2024-03-16 - snappy-conduit # failure in job https://hydra.nixos.org/build/233196865 at 2023-09-02 + - snappy-hs # failure in job https://hydra.nixos.org/build/307522028 at 2025-09-19 - snelstart-import # failure in job https://hydra.nixos.org/build/295097114 at 2025-04-22 - SNet # failure in job https://hydra.nixos.org/build/233225638 at 2023-09-02 - snipcheck # failure in job https://hydra.nixos.org/build/233214417 at 2023-09-02 - snorkels # failure in job https://hydra.nixos.org/build/233229705 at 2023-09-02 - - snowchecked # failure in job https://hydra.nixos.org/build/233258191 at 2023-09-02 - snowtify # failure in job https://hydra.nixos.org/build/233215099 at 2023-09-02 - soap # failure in job https://hydra.nixos.org/build/295097136 at 2025-04-22 - socket-activation # failure in job https://hydra.nixos.org/build/233258011 at 2023-09-02 @@ -5694,6 +5889,7 @@ broken-packages: - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 - souffle-haskell # failure in job https://hydra.nixos.org/build/233229472 at 2023-09-02 + - sound-change # failure in job https://hydra.nixos.org/build/307522022 at 2025-09-19 - source-constraints # failure in job https://hydra.nixos.org/build/233254750 at 2023-09-02 - sousit # failure in job https://hydra.nixos.org/build/233204067 at 2023-09-02 - soyuz # failure in job https://hydra.nixos.org/build/233196903 at 2023-09-02 @@ -5708,9 +5904,11 @@ broken-packages: - sparse-merkle-trees # failure in job https://hydra.nixos.org/build/233251228 at 2023-09-02 - sparse-tensor # failure in job https://hydra.nixos.org/build/233224869 at 2023-09-02 - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02 + - spatial-rotations # failure in job https://hydra.nixos.org/build/307522058 at 2025-09-19 - SpatialMath # failure in job https://hydra.nixos.org/build/237243985 at 2023-10-21 - special-functors # failure in job https://hydra.nixos.org/build/233215268 at 2023-09-02 - special-keys # failure in job https://hydra.nixos.org/build/233191988 at 2023-09-02 + - species # failure in job https://hydra.nixos.org/build/307522048 at 2025-09-19 - spectacle # failure in job https://hydra.nixos.org/build/233207488 at 2023-09-02 - speculation # failure in job https://hydra.nixos.org/build/233211559 at 2023-09-02 - sphinx-cli # failure in job https://hydra.nixos.org/build/295097187 at 2025-04-22 @@ -5740,10 +5938,10 @@ broken-packages: - sqlcipher # failure in job https://hydra.nixos.org/build/233259217 at 2023-09-02 - sqlcli # failure in job https://hydra.nixos.org/build/252719841 at 2024-03-16 - sqlite # failure in job https://hydra.nixos.org/build/233215839 at 2023-09-02 - - sqlite-easy # failure in job https://hydra.nixos.org/build/252728831 at 2024-03-16 - sqlite-simple-errors # failure in job https://hydra.nixos.org/build/233232977 at 2023-09-02 - sqlvalue-list # failure in job https://hydra.nixos.org/build/233197313 at 2023-09-02 - sqsd-local # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237237046 at 2023-10-21 + - sr-extra # failure in job https://hydra.nixos.org/build/307611393 at 2025-09-19 - srcinst # failure in job https://hydra.nixos.org/build/233221356 at 2023-09-02 - srt # failure in job https://hydra.nixos.org/build/295097165 at 2025-04-22 - srt-attoparsec # failure in job https://hydra.nixos.org/build/233248456 at 2023-09-02 @@ -5776,6 +5974,7 @@ broken-packages: - stackage-types # failure in job https://hydra.nixos.org/build/233239995 at 2023-09-02 - stackcollapse-ghc # failure in job https://hydra.nixos.org/build/233250775 at 2023-09-02 - staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02 + - stagen # failure in job https://hydra.nixos.org/build/307611396 at 2025-09-19 - standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02 - standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02 - starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02 @@ -5817,10 +6016,10 @@ broken-packages: - stm-lifted # failure in job https://hydra.nixos.org/build/252726872 at 2024-03-16 - stm-promise # failure in job https://hydra.nixos.org/build/233204293 at 2023-09-02 - stm-stats # failure in job https://hydra.nixos.org/build/233214914 at 2023-09-02 + - stm-tlist # failure in job https://hydra.nixos.org/build/307522184 at 2025-09-19 - stochastic # failure in job https://hydra.nixos.org/build/233242019 at 2023-09-02 - Stomp # failure in job https://hydra.nixos.org/build/233252583 at 2023-09-02 - stooq-api # failure in job https://hydra.nixos.org/build/233200858 at 2023-09-02 - - stopwatch # failure in job https://hydra.nixos.org/build/252716540 at 2024-03-16 - storable # failure in job https://hydra.nixos.org/build/233228880 at 2023-09-02 - storable-offset # failure in job https://hydra.nixos.org/build/233242993 at 2023-09-02 - storable-static-array # failure in job https://hydra.nixos.org/build/233222724 at 2023-09-02 @@ -5851,26 +6050,27 @@ broken-packages: - streamly-binary # failure in job https://hydra.nixos.org/build/233240602 at 2023-09-02 - streamly-cassava # failure in job https://hydra.nixos.org/build/233237843 at 2023-09-02 - streamly-examples # failure in job https://hydra.nixos.org/build/252721153 at 2024-03-16 + - streamly-fsevents # failure in job https://hydra.nixos.org/build/307611411 at 2025-09-19 - streamly-lmdb # failure in job https://hydra.nixos.org/build/252731414 at 2024-03-16 - streamly-lz4 # failure in job https://hydra.nixos.org/build/233219321 at 2023-09-02 - streamly-posix # failure in job https://hydra.nixos.org/build/233194023 at 2023-09-02 + - streamly-process # failure in job https://hydra.nixos.org/build/307522202 at 2025-09-19 - streamly-statistics # failure in job https://hydra.nixos.org/build/252719066 at 2024-03-16 + - streamly-text # failure in job https://hydra.nixos.org/build/307611413 at 2025-09-19 - streamly-zip # failure in job https://hydra.nixos.org/build/295097269 at 2025-04-22 - streamproc # failure in job https://hydra.nixos.org/build/233196179 at 2023-09-02 - streamt # failure in job https://hydra.nixos.org/build/252724093 at 2024-03-16 - strelka-core # failure in job https://hydra.nixos.org/build/233218594 at 2023-09-02 + - strict-containers # failure in job https://hydra.nixos.org/build/307522197 at 2025-09-19 - strict-ghc-plugin # failure in job https://hydra.nixos.org/build/233246830 at 2023-09-02 - - strict-impl-params # failure in job https://hydra.nixos.org/build/252732248 at 2024-03-16 - strict-io # failure in job https://hydra.nixos.org/build/295097302 at 2025-04-22 - strict-mvar # failure in job https://hydra.nixos.org/build/273459853 at 2024-10-01 - strict-stm # failure in job https://hydra.nixos.org/build/273449297 at 2024-10-01 - strict-tuple-lens # failure in job https://hydra.nixos.org/build/233194548 at 2023-09-02 - strict-writer # failure in job https://hydra.nixos.org/build/252725649 at 2024-03-16 - StrictBench # failure in job https://hydra.nixos.org/build/233259575 at 2023-09-02 - - StrictCheck # failure in job https://hydra.nixos.org/build/233214649 at 2023-09-02 - strictly # failure in job https://hydra.nixos.org/build/233197142 at 2023-09-02 - string-conv-tests # failure in job https://hydra.nixos.org/build/233242710 at 2023-09-02 - - string-fromto # failure in job https://hydra.nixos.org/build/233223157 at 2023-09-02 - string-interpreter # failure in job https://hydra.nixos.org/build/252739490 at 2024-03-16 - string-isos # failure in job https://hydra.nixos.org/build/233252917 at 2023-09-02 - string-quote # failure in job https://hydra.nixos.org/build/233259595 at 2023-09-02 @@ -5880,10 +6080,10 @@ broken-packages: - stripe-core # failure in job https://hydra.nixos.org/build/233215702 at 2023-09-02 - stripe-hs # failure in job https://hydra.nixos.org/build/233203500 at 2023-09-02 - stripe-scotty # failure in job https://hydra.nixos.org/build/252711778 at 2024-03-16 - - stripe-wreq # failure in job https://hydra.nixos.org/build/295097337 at 2025-04-22 - strong-path # failure in job https://hydra.nixos.org/build/233225171 at 2023-09-02 - struct-inspector # failure in job https://hydra.nixos.org/build/252739623 at 2024-03-16 - structural-traversal # failure in job https://hydra.nixos.org/build/233235730 at 2023-09-02 + - structured # failure in job https://hydra.nixos.org/build/307522227 at 2025-09-19 - structured-cli # failure in job https://hydra.nixos.org/build/252734924 at 2024-03-16 - structures # failure in job https://hydra.nixos.org/build/233206488 at 2023-09-02 - stt # failure in job https://hydra.nixos.org/build/233233101 at 2023-09-02 @@ -5928,6 +6128,7 @@ broken-packages: - SVD2HS # failure in job https://hydra.nixos.org/build/233248575 at 2023-09-02 - svfactor # failure in job https://hydra.nixos.org/build/233256743 at 2023-09-02 - svg-builder-fork # failure in job https://hydra.nixos.org/build/233224461 at 2023-09-02 + - svgsym # failure in job https://hydra.nixos.org/build/307522251 at 2025-09-19 - svgutils # failure in job https://hydra.nixos.org/build/233193438 at 2023-09-02 - svm-light-utils # failure in job https://hydra.nixos.org/build/233219138 at 2023-09-02 - svm-simple # failure in job https://hydra.nixos.org/build/233235871 at 2023-09-02 @@ -5958,6 +6159,7 @@ broken-packages: - symantic-xml # failure in job https://hydra.nixos.org/build/233230860 at 2023-09-02 - symbolic-link # failure in job https://hydra.nixos.org/build/233255331 at 2023-09-02 - symengine # failure in job https://hydra.nixos.org/build/233203977 at 2023-09-02 + - symtegration # failure in job https://hydra.nixos.org/build/307522286 at 2025-09-19 - sync # failure in job https://hydra.nixos.org/build/233254114 at 2023-09-02 - sync-mht # failure in job https://hydra.nixos.org/build/233236022 at 2023-09-02 - syntactic # failure in job https://hydra.nixos.org/build/233210123 at 2023-09-02 @@ -5991,7 +6193,6 @@ broken-packages: - tag-bits # failure in job https://hydra.nixos.org/build/233245196 at 2023-09-02 - tagged-exception-core # failure in job https://hydra.nixos.org/build/233227946 at 2023-09-02 - tagged-timers # failure in job https://hydra.nixos.org/build/233238738 at 2023-09-02 - - taggy-lens # failure in job https://hydra.nixos.org/build/233253920 at 2023-09-02 - taglib-api # failure in job https://hydra.nixos.org/build/233259216 at 2023-09-02 - tagshare # failure in job https://hydra.nixos.org/build/252729876 at 2024-03-16 - tagsoup-ht # failure in job https://hydra.nixos.org/build/233233672 at 2023-09-02 @@ -6017,6 +6218,7 @@ broken-packages: - taskell # depends on old version of brick - TaskMonad # failure in job https://hydra.nixos.org/build/233219257 at 2023-09-02 - tasty-auto # failure in job https://hydra.nixos.org/build/233220008 at 2023-09-02 + - tasty-checklist # failure in job https://hydra.nixos.org/build/307522349 at 2025-09-19 - tasty-fail-fast # failure in job https://hydra.nixos.org/build/233200040 at 2023-09-02 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 @@ -6047,6 +6249,7 @@ broken-packages: - telegram-types # failure in job https://hydra.nixos.org/build/233598183 at 2023-09-02 - telegraph # failure in job https://hydra.nixos.org/build/233213772 at 2023-09-02 - teleport # failure in job https://hydra.nixos.org/build/233194305 at 2023-09-02 + - telescope # failure in job https://hydra.nixos.org/build/307611441 at 2025-09-19 - teleshell # failure in job https://hydra.nixos.org/build/233225954 at 2023-09-02 - tell # failure in job https://hydra.nixos.org/build/252712899 at 2024-03-16 - tellbot # failure in job https://hydra.nixos.org/build/233200225 at 2023-09-02 @@ -6075,6 +6278,7 @@ broken-packages: - term-rewriting # failure in job https://hydra.nixos.org/build/295097520 at 2025-04-22 - termbox-bindings # failure in job https://hydra.nixos.org/build/233257579 at 2023-09-02 - termination-combinators # failure in job https://hydra.nixos.org/build/233202329 at 2023-09-02 + - termonad # failure in job https://hydra.nixos.org/build/307611443 at 2025-09-19 - termplot # failure in job https://hydra.nixos.org/build/233245692 at 2023-09-02 - terntup # failure in job https://hydra.nixos.org/build/233203746 at 2023-09-02 - tersmu # failure in job https://hydra.nixos.org/build/233253842 at 2023-09-02 @@ -6092,7 +6296,6 @@ broken-packages: - test-shouldbe # failure in job https://hydra.nixos.org/build/233209475 at 2023-09-02 - testCom # failure in job https://hydra.nixos.org/build/233210118 at 2023-09-02 - TestExplode # failure in job https://hydra.nixos.org/build/233207327 at 2023-09-02 - - testing-tensor # failure in job https://hydra.nixos.org/build/295097635 at 2025-04-22 - testloop # failure in job https://hydra.nixos.org/build/233206527 at 2023-09-02 - testpack # failure in job https://hydra.nixos.org/build/233194859 at 2023-09-02 - testpattern # failure in job https://hydra.nixos.org/build/233225860 at 2023-09-02 @@ -6106,7 +6309,6 @@ broken-packages: - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02 - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02 - text-builder-lawful-conversions # failure in job https://hydra.nixos.org/build/299141710 at 2025-06-23 - - text-builder-time # failure in job https://hydra.nixos.org/build/295458315 at 2025-05-02 - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02 - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02 - text-format # failure in job https://hydra.nixos.org/build/295097568 at 2025-04-22 @@ -6122,6 +6324,7 @@ broken-packages: - text-register-machine # failure in job https://hydra.nixos.org/build/233239758 at 2023-09-02 - text-render # failure in job https://hydra.nixos.org/build/252713121 at 2024-03-16 - text-replace # failure in job https://hydra.nixos.org/build/252727577 at 2024-03-16 + - text-rope-zipper # failure in job https://hydra.nixos.org/build/307522479 at 2025-09-19 - text-stream-decode # failure in job https://hydra.nixos.org/build/233237533 at 2023-09-02 - text-trie # failure in job https://hydra.nixos.org/build/233231841 at 2023-09-02 - text-utf7 # failure in job https://hydra.nixos.org/build/233254420 at 2023-09-02 @@ -6181,6 +6384,7 @@ broken-packages: - tie-knot # failure in job https://hydra.nixos.org/build/233201321 at 2023-09-02 - tiempo # failure in job https://hydra.nixos.org/build/233250728 at 2023-09-02 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 + - tigerbeetle-hs # failure in job https://hydra.nixos.org/build/307611449 at 2025-09-19 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 @@ -6225,6 +6429,7 @@ broken-packages: - TLT # failure in job https://hydra.nixos.org/build/233193495 at 2023-09-02 - tmp-postgres # failure in job https://hydra.nixos.org/build/252731301 at 2024-03-16 - tmp-proc-example # failure in job https://hydra.nixos.org/build/233223028 at 2023-09-02 + - tmp-proc-zipkin # failure in job https://hydra.nixos.org/build/307611459 at 2025-09-19 - to-haskell # failure in job https://hydra.nixos.org/build/233195321 at 2023-09-02 - to-string-class # failure in job https://hydra.nixos.org/build/233244336 at 2023-09-02 - tofromxml # failure in job https://hydra.nixos.org/build/233257072 at 2023-09-02 @@ -6237,6 +6442,7 @@ broken-packages: - tokyocabinet-haskell # failure in job https://hydra.nixos.org/build/233193492 at 2023-09-02 - tokyotyrant-haskell # failure in job https://hydra.nixos.org/build/233256228 at 2023-09-02 - toml # failure in job https://hydra.nixos.org/build/233223844 at 2023-09-02 + - toml-test-drivers # failure in job https://hydra.nixos.org/build/307522616 at 2025-09-19 - tonalude # failure in job https://hydra.nixos.org/build/233204874 at 2023-09-02 - tonaparser # failure in job https://hydra.nixos.org/build/233224261 at 2023-09-02 - toodles # failure in job https://hydra.nixos.org/build/233245612 at 2023-09-02 @@ -6290,9 +6496,9 @@ broken-packages: - treap # failure in job https://hydra.nixos.org/build/233248089 at 2023-09-02 - tree-monad # failure in job https://hydra.nixos.org/build/233212246 at 2023-09-02 - tree-render-text # failure in job https://hydra.nixos.org/build/233240817 at 2023-09-02 + - tree-traversals # failure in job https://hydra.nixos.org/build/307522668 at 2025-09-19 - treemap # failure in job https://hydra.nixos.org/build/233207063 at 2023-09-02 - treemap-html # failure in job https://hydra.nixos.org/build/233248494 at 2023-09-02 - - TreeStructures # failure in job https://hydra.nixos.org/build/233213685 at 2023-09-02 - tremulous-query # failure in job https://hydra.nixos.org/build/233200947 at 2023-09-02 - TrendGraph # failure in job https://hydra.nixos.org/build/233258651 at 2023-09-02 - trhsx # failure in job https://hydra.nixos.org/build/233231297 at 2023-09-02 @@ -6303,6 +6509,7 @@ broken-packages: - trivia # failure in job https://hydra.nixos.org/build/233234176 at 2023-09-02 - tropical # failure in job https://hydra.nixos.org/build/233212835 at 2023-09-02 - tropical-geometry # failure in job https://hydra.nixos.org/build/234465815 at 2023-09-13 + - true-name # failure in job https://hydra.nixos.org/build/307522676 at 2025-09-19 - trust-chain # failure in job https://hydra.nixos.org/build/233252622 at 2023-09-02 - tsession # failure in job https://hydra.nixos.org/build/233259005 at 2023-09-02 - tslib # failure in job https://hydra.nixos.org/build/233225813 at 2023-09-02 @@ -6328,6 +6535,7 @@ broken-packages: - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 - twee # failure in job https://hydra.nixos.org/build/302807024 at 2025-07-27 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 + - twentyseven # failure in job https://hydra.nixos.org/build/307522761 at 2025-09-19 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 - twiml # failure in job https://hydra.nixos.org/build/233219327 at 2023-09-02 @@ -6373,8 +6581,8 @@ broken-packages: - typed-admin # failure in job https://hydra.nixos.org/build/296063081 at 2025-05-02 - typed-digits # failure in job https://hydra.nixos.org/build/233198266 at 2023-09-02 - typed-encoding # failure in job https://hydra.nixos.org/build/233208093 at 2023-09-02 - - typed-fsm # failure in job https://hydra.nixos.org/build/269663128 at 2024-08-19 - typed-process-effectful # failure in job https://hydra.nixos.org/build/236684332 at 2023-10-04 + - typed-protocols # failure in job https://hydra.nixos.org/build/307522744 at 2025-09-19 - typed-session # failure in job https://hydra.nixos.org/build/270089993 at 2024-08-31 - typed-session-state-algorithm # failure in job https://hydra.nixos.org/build/273462641 at 2024-10-01 - typed-spreadsheet # failure in job https://hydra.nixos.org/build/233248967 at 2023-09-02 @@ -6387,9 +6595,11 @@ broken-packages: - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 - types-compat # failure in job https://hydra.nixos.org/build/233249850 at 2023-09-02 + - typist # failure in job https://hydra.nixos.org/build/307522793 at 2025-09-19 - typograffiti # failure in job https://hydra.nixos.org/build/233195076 at 2023-09-02 - typson-core # failure in job https://hydra.nixos.org/build/233257835 at 2023-09-02 - tyro # failure in job https://hydra.nixos.org/build/233200171 at 2023-09-02 + - tztime # failure in job https://hydra.nixos.org/build/307522763 at 2025-09-19 - uacpid # failure in job https://hydra.nixos.org/build/252734266 at 2024-03-16 - uAgda # failure in job https://hydra.nixos.org/build/233252487 at 2023-09-02 - uberlast # failure in job https://hydra.nixos.org/build/233233074 at 2023-09-02 @@ -6402,14 +6612,14 @@ broken-packages: - ueberzug # failure in job https://hydra.nixos.org/build/233205559 at 2023-09-02 - uhexdump # failure in job https://hydra.nixos.org/build/233209647 at 2023-09-02 - uhttpc # failure in job https://hydra.nixos.org/build/233232481 at 2023-09-02 - - ui # failure in job https://hydra.nixos.org/build/295097879 at 2025-04-22 - ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02 - ukrainian-phonetics-basic-array # failure in job https://hydra.nixos.org/build/275136298 at 2024-10-21 - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02 + - uku # failure in job https://hydra.nixos.org/build/307522781 at 2025-09-19 + - ulid-tight # failure in job https://hydra.nixos.org/build/307522774 at 2025-09-19 - unac-bindings # failure in job https://hydra.nixos.org/build/236686523 at 2023-10-04 - unamb-custom # failure in job https://hydra.nixos.org/build/233197458 at 2023-09-02 - unbeliever # failure in job https://hydra.nixos.org/build/233221256 at 2023-09-02 - - unbound-generics-unify # failure in job https://hydra.nixos.org/build/283205015 at 2024-12-31 - unbounded-delays-units # failure in job https://hydra.nixos.org/build/233200989 at 2023-09-02 - unboxed # failure in job https://hydra.nixos.org/build/233219555 at 2023-09-02 - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 at 2023-09-02 @@ -6418,8 +6628,11 @@ broken-packages: - unescaping-print # failure in job https://hydra.nixos.org/build/252736030 at 2024-03-16 - unfix-binders # failure in job https://hydra.nixos.org/build/233259262 at 2023-09-02 - unfoldable # failure in job https://hydra.nixos.org/build/252721990 at 2024-03-16 + - unfork # failure in job https://hydra.nixos.org/build/307522805 at 2025-09-19 - unfree # failure in job https://hydra.nixos.org/build/295097900 at 2025-04-22 - uni-util # failure in job https://hydra.nixos.org/build/233219676 at 2023-09-02 + - unicode-data-names # failure in job https://hydra.nixos.org/build/307611472 at 2025-09-19 + - unicode-data-security # failure in job https://hydra.nixos.org/build/307611471 at 2025-09-19 - unicode-general-category # failure in job https://hydra.nixos.org/build/233250572 at 2023-09-02 - unicode-prelude # failure in job https://hydra.nixos.org/build/233241723 at 2023-09-02 - unicode-symbols # failure in job https://hydra.nixos.org/build/233241639 at 2023-09-02 @@ -6440,11 +6653,13 @@ broken-packages: - universal-binary # failure in job https://hydra.nixos.org/build/233240583 at 2023-09-02 - universe-instances-base # failure in job https://hydra.nixos.org/build/233197845 at 2023-09-02 - universe-instances-trans # failure in job https://hydra.nixos.org/build/233235623 at 2023-09-02 + - universum # failure in job https://hydra.nixos.org/build/307522842 at 2025-09-19 - unix-handle # failure in job https://hydra.nixos.org/build/233233273 at 2023-09-02 - unix-memory # failure in job https://hydra.nixos.org/build/252735802 at 2024-03-16 - unix-process-conduit # failure in job https://hydra.nixos.org/build/233191509 at 2023-09-02 - unix-recursive # failure in job https://hydra.nixos.org/build/233194742 at 2023-09-02 - unix-simple # failure in job https://hydra.nixos.org/build/295097959 at 2025-04-22 + - unleash-client-haskell-core # failure in job https://hydra.nixos.org/build/307522857 at 2025-09-19 - unlift # failure in job https://hydra.nixos.org/build/233217875 at 2023-09-02 - unlift-stm # failure in job https://hydra.nixos.org/build/233202388 at 2023-09-02 - unlifted-list # failure in job https://hydra.nixos.org/build/233205239 at 2023-09-02 @@ -6500,8 +6715,10 @@ broken-packages: - util-primitive # failure in job https://hydra.nixos.org/build/233258861 at 2023-09-02 - uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02 - uuagc-bootstrap # failure in job https://hydra.nixos.org/build/233254123 at 2023-09-02 + - uuagc-cabal # failure in job https://hydra.nixos.org/build/307522924 at 2025-09-19 - uuagc-diagrams # failure in job https://hydra.nixos.org/build/233247645 at 2023-09-02 - uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02 + - uusi # failure in job https://hydra.nixos.org/build/307522902 at 2025-09-19 - uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02 - uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02 - vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02 @@ -6523,6 +6740,7 @@ broken-packages: - variables # failure in job https://hydra.nixos.org/build/233237682 at 2023-09-02 - variadic # failure in job https://hydra.nixos.org/build/233209743 at 2023-09-02 - variation # failure in job https://hydra.nixos.org/build/233240549 at 2023-09-02 + - vary # failure in job https://hydra.nixos.org/build/307522948 at 2025-09-19 - vault-tool # failure in job https://hydra.nixos.org/build/233217613 at 2023-09-02 - vcache # failure in job https://hydra.nixos.org/build/233250925 at 2023-09-02 - vcatt # failure in job https://hydra.nixos.org/build/233236976 at 2023-09-02 @@ -6555,6 +6773,7 @@ broken-packages: - verilog # failure in job https://hydra.nixos.org/build/233211999 at 2023-09-02 - verismith # failure in job https://hydra.nixos.org/build/299186734 at 2025-06-23 - versioning # failure in job https://hydra.nixos.org/build/233205892 at 2023-09-02 + - vext # failure in job https://hydra.nixos.org/build/307522988 at 2025-09-19 - vformat # failure in job https://hydra.nixos.org/build/233222840 at 2023-09-02 - vgrep # failure in job https://hydra.nixos.org/build/233210982 at 2023-09-02 - vhd # failure in job https://hydra.nixos.org/build/233230229 at 2023-09-02 @@ -6589,10 +6808,11 @@ broken-packages: - vty-examples # failure in job https://hydra.nixos.org/build/233235872 at 2023-09-02 - vty-menu # failure in job https://hydra.nixos.org/build/233232391 at 2023-09-02 - vty-ui # failure in job https://hydra.nixos.org/build/233200900 at 2023-09-02 + - vulkan-utils # failure in job https://hydra.nixos.org/build/307522991 at 2025-09-19 - wacom-daemon # failure in job https://hydra.nixos.org/build/233213077 at 2023-09-02 - waddle # failure in job https://hydra.nixos.org/build/233239973 at 2023-09-02 - - wai-app-file-cgi # failure in job https://hydra.nixos.org/build/252733772 at 2024-03-16 - wai-control # failure in job https://hydra.nixos.org/build/295098171 at 2025-04-22 + - wai-env # failure in job https://hydra.nixos.org/build/307523102 at 2025-09-19 - wai-git-http # failure in job https://hydra.nixos.org/build/233191513 at 2023-09-02 - wai-graceful # failure in job https://hydra.nixos.org/build/233243180 at 2023-09-02 - wai-handler-devel # failure in job https://hydra.nixos.org/build/233226033 at 2023-09-02 @@ -6645,16 +6865,15 @@ broken-packages: - wavefront # failure in job https://hydra.nixos.org/build/233248071 at 2023-09-02 - wavefront-obj # failure in job https://hydra.nixos.org/build/233200951 at 2023-09-02 - weak-bag # failure in job https://hydra.nixos.org/build/233198097 at 2023-09-02 + - WeakSets # failure in job https://hydra.nixos.org/build/307516240 at 2025-09-19 - Weather # failure in job https://hydra.nixos.org/build/233197934 at 2023-09-02 - weather-api # failure in job https://hydra.nixos.org/build/233202108 at 2023-09-02 - web-css # failure in job https://hydra.nixos.org/build/233195455 at 2023-09-02 - web-encodings # failure in job https://hydra.nixos.org/build/233199718 at 2023-09-02 - - web-inv-route # failure in job https://hydra.nixos.org/build/252728701 at 2024-03-16 - web-output # failure in job https://hydra.nixos.org/build/233191936 at 2023-09-02 - web-page # failure in job https://hydra.nixos.org/build/233243334 at 2023-09-02 - web-plugins # failure in job https://hydra.nixos.org/build/233207596 at 2023-09-02 - web-push # failure in job https://hydra.nixos.org/build/233206721 at 2023-09-02 - - web-routes-happstack # failure in job https://hydra.nixos.org/build/295098198 at 2025-04-22 - web-routes-quasi # failure in job https://hydra.nixos.org/build/233222454 at 2023-09-02 - web-routes-transformers # failure in job https://hydra.nixos.org/build/233256428 at 2023-09-02 - web-routes-wai # failure in job https://hydra.nixos.org/build/295098187 at 2025-04-22 @@ -6669,12 +6888,13 @@ broken-packages: - webcrank # failure in job https://hydra.nixos.org/build/233212229 at 2023-09-02 - webcrank-dispatch # failure in job https://hydra.nixos.org/build/233209191 at 2023-09-02 - webdriver-angular # failure in job https://hydra.nixos.org/build/233212981 at 2023-09-02 - - webdriver-precore # failure in job https://hydra.nixos.org/build/296523789 at 2025-05-14 - webdriver-snoy # failure in job https://hydra.nixos.org/build/233251068 at 2023-09-02 - WeberLogic # failure in job https://hydra.nixos.org/build/233209283 at 2023-09-02 - webfinger-client # failure in job https://hydra.nixos.org/build/233252528 at 2023-09-02 + - webkit # failure in job https://hydra.nixos.org/build/307523072 at 2025-09-19 - webkit-javascriptcore # failure in job https://hydra.nixos.org/build/233208424 at 2023-09-02 - webkitgtk3 # failure in job https://hydra.nixos.org/build/233215712 at 2023-09-02 + - webkitgtk3-javascriptcore # failure in job https://hydra.nixos.org/build/307523066 at 2025-09-19 - webmention # failure in job https://hydra.nixos.org/build/233208899 at 2023-09-02 - Webrexp # failure in job https://hydra.nixos.org/build/233212376 at 2023-09-02 - webshow # failure in job https://hydra.nixos.org/build/233243842 at 2023-09-02 @@ -6696,13 +6916,14 @@ broken-packages: - wide-word-instances # failure in job https://hydra.nixos.org/build/233253084 at 2023-09-02 - wikicfp-scraper # failure in job https://hydra.nixos.org/build/233198432 at 2023-09-02 - WikimediaParser # failure in job https://hydra.nixos.org/build/233242393 at 2023-09-02 + - wild-bind-indicator # failure in job https://hydra.nixos.org/build/307611565 at 2025-09-19 - willow # failure in job https://hydra.nixos.org/build/233215807 at 2023-09-02 - windns # failure in job https://hydra.nixos.org/build/233242724 at 2023-09-02 - - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02 - wire-streams # failure in job https://hydra.nixos.org/build/299186735 at 2025-06-23 - wireguard-hs # failure in job https://hydra.nixos.org/build/233218722 at 2023-09-02 - wires # failure in job https://hydra.nixos.org/build/233192321 at 2023-09-02 - wiring # failure in job https://hydra.nixos.org/build/233191683 at 2023-09-02 + - with-location # failure in job https://hydra.nixos.org/build/307523118 at 2025-09-19 - witherable-class # failure in job https://hydra.nixos.org/build/295098236 at 2025-04-22 - witty # failure in job https://hydra.nixos.org/build/233194976 at 2023-09-02 - wkt # failure in job https://hydra.nixos.org/build/233220848 at 2023-09-02 @@ -6717,7 +6938,6 @@ broken-packages: - word16 # failure in job https://hydra.nixos.org/build/252737588 at 2024-03-16 - word24 # failure in job https://hydra.nixos.org/build/233259494 at 2023-09-02 - word2vec-model # failure in job https://hydra.nixos.org/build/233209500 at 2023-09-02 - - word8set # failure in job https://hydra.nixos.org/build/233246039 at 2023-09-02 - wordify # failure in job https://hydra.nixos.org/build/233229102 at 2023-09-02 - Wordlint # failure in job https://hydra.nixos.org/build/233233123 at 2023-09-02 - wordlist # failure in job https://hydra.nixos.org/build/233199456 at 2023-09-02 @@ -6757,6 +6977,7 @@ broken-packages: - wybor # failure in job https://hydra.nixos.org/build/252729784 at 2024-03-16 - X # failure in job https://hydra.nixos.org/build/233217783 at 2023-09-02 - x-dsp # failure in job https://hydra.nixos.org/build/233218091 at 2023-09-02 + - x-sum-type-boilerplate # failure in job https://hydra.nixos.org/build/307523148 at 2025-09-19 - X11-extras # failure in job https://hydra.nixos.org/build/233226031 at 2023-09-02 - X11-rm # failure in job https://hydra.nixos.org/build/233242806 at 2023-09-02 - X11-xdamage # failure in job https://hydra.nixos.org/build/233194342 at 2023-09-02 @@ -6779,7 +7000,6 @@ broken-packages: - xkbcommon # failure in job https://hydra.nixos.org/build/233237797 at 2023-09-02 - xkcd # failure in job https://hydra.nixos.org/build/233211690 at 2023-09-02 - xleb # failure in job https://hydra.nixos.org/build/233232785 at 2023-09-02 - - xls # failure in job https://hydra.nixos.org/build/233201430 at 2023-09-02 - xlsior # failure in job https://hydra.nixos.org/build/233199562 at 2023-09-02 - xlsx-tabular # failure in job https://hydra.nixos.org/build/233199137 at 2023-09-02 - xlsx-templater # failure in job https://hydra.nixos.org/build/233245940 at 2023-09-02 @@ -6787,6 +7007,7 @@ broken-packages: - xml-conduit-parse # failure in job https://hydra.nixos.org/build/233200360 at 2023-09-02 - xml-conduit-selectors # failure in job https://hydra.nixos.org/build/233223331 at 2023-09-02 - xml-conduit-stylist # failure in job https://hydra.nixos.org/build/233226507 at 2023-09-02 + - xml-conduit-writer # failure in job https://hydra.nixos.org/build/307611574 at 2025-09-19 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22 @@ -6796,8 +7017,10 @@ broken-packages: - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 - xml-prettify-text # failure in job https://hydra.nixos.org/build/233202586 at 2023-09-02 - xml-query # failure in job https://hydra.nixos.org/build/233194795 at 2023-09-02 + - xml-syntax # failure in job https://hydra.nixos.org/build/307611595 at 2025-09-19 - xml-to-json # failure in job https://hydra.nixos.org/build/233197489 at 2023-09-02 - xml-tydom-core # failure in job https://hydra.nixos.org/build/233206253 at 2023-09-02 + - xml-types-content # failure in job https://hydra.nixos.org/build/307611585 at 2025-09-19 - xml-verify # failure in job https://hydra.nixos.org/build/233237302 at 2023-09-02 - xml2json # failure in job https://hydra.nixos.org/build/233254605 at 2023-09-02 - XmlHtmlWriter # failure in job https://hydra.nixos.org/build/233213597 at 2023-09-02 @@ -6819,7 +7042,7 @@ broken-packages: - xslt # failure in job https://hydra.nixos.org/build/233225636 at 2023-09-02 - xtea # failure in job https://hydra.nixos.org/build/282175333 at 2024-12-23 - xxhash # failure in job https://hydra.nixos.org/build/233240335 at 2023-09-02 - - xxhash-ffi # failure in job https://hydra.nixos.org/build/295098345 at 2025-04-22 + - xz # failure in job https://hydra.nixos.org/build/307523211 at 2025-09-19 - y0l0bot # failure in job https://hydra.nixos.org/build/233212722 at 2023-09-02 - yabi-muno # failure in job https://hydra.nixos.org/build/233246871 at 2023-09-02 - yackage # failure in job https://hydra.nixos.org/build/233213393 at 2023-09-02 @@ -6843,6 +7066,8 @@ broken-packages: - yamlkeysdiff # failure in job https://hydra.nixos.org/build/233234710 at 2023-09-02 - yamlparse-applicative # failure in job https://hydra.nixos.org/build/252718434 at 2024-03-16 - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02 + - yamlscript # failure in job https://hydra.nixos.org/build/307523231 at 2025-09-19 + - yampa-canvas # failure in job https://hydra.nixos.org/build/307611616 at 2025-09-19 - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02 - yampa-gloss # failure in job https://hydra.nixos.org/build/295098349 at 2025-04-22 - yampa-glut # failure in job https://hydra.nixos.org/build/234458324 at 2023-09-13 @@ -6869,6 +7094,7 @@ broken-packages: - yesod-auth-bcryptdb # failure in job https://hydra.nixos.org/build/233209630 at 2023-09-02 - yesod-auth-deskcom # failure in job https://hydra.nixos.org/build/233230640 at 2023-09-02 - yesod-auth-fb # failure in job https://hydra.nixos.org/build/233224172 at 2023-09-02 + - yesod-auth-hashdb # failure in job https://hydra.nixos.org/build/307611599 at 2025-09-19 - yesod-auth-hmac-keccak # failure in job https://hydra.nixos.org/build/233224778 at 2023-09-02 - yesod-auth-kerberos # failure in job https://hydra.nixos.org/build/233245920 at 2023-09-02 - yesod-auth-ldap-mediocre # failure in job https://hydra.nixos.org/build/233195322 at 2023-09-02 @@ -6883,6 +7109,7 @@ broken-packages: - yesod-content-pdf # failure in job https://hydra.nixos.org/build/233210723 at 2023-09-02 - yesod-crud # failure in job https://hydra.nixos.org/build/233218383 at 2023-09-02 - yesod-crud-persist # failure in job https://hydra.nixos.org/build/233245131 at 2023-09-02 + - yesod-csp # failure in job https://hydra.nixos.org/build/307611592 at 2025-09-19 - yesod-datatables # failure in job https://hydra.nixos.org/build/233197763 at 2023-09-02 - yesod-dsl # failure in job https://hydra.nixos.org/build/233210879 at 2023-09-02 - yesod-fast-devel # failure in job https://hydra.nixos.org/build/233209381 at 2023-09-02 @@ -6896,6 +7123,7 @@ broken-packages: - yesod-katip # failure in job https://hydra.nixos.org/build/233236143 at 2023-09-02 - yesod-links # failure in job https://hydra.nixos.org/build/233257763 at 2023-09-02 - yesod-lucid # failure in job https://hydra.nixos.org/build/233231687 at 2023-09-02 + - yesod-media-simple # failure in job https://hydra.nixos.org/build/307611606 at 2025-09-19 - yesod-middleware-csp # failure in job https://hydra.nixos.org/build/295098382 at 2025-04-22 - yesod-paginate # failure in job https://hydra.nixos.org/build/233218563 at 2023-09-02 - yesod-pagination # failure in job https://hydra.nixos.org/build/233204022 at 2023-09-02 @@ -6930,6 +7158,7 @@ broken-packages: - yosys-rtl # failure in job https://hydra.nixos.org/build/269657756 at 2024-08-19 - yu-core # failure in job https://hydra.nixos.org/build/233202551 at 2023-09-02 - yu-tool # failure in job https://hydra.nixos.org/build/233216535 at 2023-09-02 + - yu-utils # failure in job https://hydra.nixos.org/build/307611648 at 2025-09-19 - yuiGrid # failure in job https://hydra.nixos.org/build/233223402 at 2023-09-02 - yxdb-utils # failure in job https://hydra.nixos.org/build/233210232 at 2023-09-02 - Z-Data # failure in job https://hydra.nixos.org/build/233256080 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 29abaea91b2f..4dfef1e27b2e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -25,20 +25,21 @@ # not work. # keep-sorted start skip_lines=1 case=no numeric=yes default-package-overrides: - - chs-cabal < 0.1.1.2 # Incompatible with Cabal < 3.12 - # 2024-12-23: last version to be compatible with Stackage LTS 22/23 (due to data-default) - - diagrams-input < 0.1.4 - - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 + - chs-cabal == 0.1.1.2 # matches Cabal 3.12 (GHC 9.10) + - extensions == 0.1.0.2 # matches Cabal 3.12 (GHC 9.10) # 2025-07-26: HLS doesn't support hiedb >= 0.7 yet - hiedb < 0.7 - # 2024-08-17: Stackage doesn't contain hnix-store-core >= 0.8 yet, so we need to restrict hnix-store-remote + # 2025-09-13: hnix 0.17.0 doesn't support hnix-store-core >= 0.8 + # https://github.com/haskell-nix/hnix/pull/1112 + - hnix-store-core < 0.7 - hnix-store-remote < 0.7 - # 2025-01-17: need to match stackage version of hosc - - hsc3 < 0.21 - # 2024-12-31: last version that's compatible with GHC < 9.9 - - htree < 0.2.0.0 - # 2025-06-11: last version that supports pandoc == 3.6.* which is prescribed by LTS 23 - - pandoc-crossref < 0.3.20 + # 2025-08-03: need to match stackage version of hosc + - hsc3 >= 0.21 && < 0.22 + # liquidhaskell-boot 0.9.10.1.2 requires this specific version of liquid-fixpoint + - liquid-fixpoint == 0.9.6.3.2 + # liquidhaskell(-boot) support one GHC at a time, so we choose the one matching the current GHC (9.10) + - liquidhaskell == 0.9.10.* + - liquidhaskell-boot == 0.9.10.* # keep-sorted end # keep-sorted start skip_lines=1 case=no numeric=yes @@ -47,15 +48,17 @@ extra-packages: - ansi-wl-pprint >= 0.6 && < 0.7 # 2025-07-07: used by gren <= 0.5.4 - attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now - Cabal == 3.10.* - - Cabal == 3.12.* # version required for cabal-install and other packages + - Cabal == 3.12.* + - Cabal == 3.14.* + - Cabal == 3.16.* # version required for cabal-install and other packages + - cabal-add == 0.1 # 2025-09-09: Only needed for hls 2.11 can be removed once we are past it. - Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8 - Cabal-syntax == 3.8.* # version required for ormolu and fourmolu on ghc 9.0 - Cabal-syntax == 3.10.* - - Cabal-syntax == 3.12.* # version required for cabal-install and other packages - - commonmark-pandoc < 0.2.3 # 2025-04-06: Needed for pandoc 3.6 - - extensions == 0.1.0.2 # 2024-10-20: for GHC 9.10/Cabal 3.12 + - Cabal-syntax == 3.12.* + - Cabal-syntax == 3.14.* + - Cabal-syntax == 3.16.* # version required for cabal-install and other packages - fourmolu == 0.14.0.0 # 2023-11-13: for ghc-lib-parser 9.6 compat - - fourmolu == 0.16.0.0 # 2025-01-27: for ghc 9.10 compat - fsnotify < 0.4 # 2024-04-22: required by spago-0.21 - fuzzyset == 0.2.4 # 2023-12-20: Needed for building postgrest > 10 - ghc-exactprint == 0.6.* # 2022-12-12: needed for GHC < 9.2 @@ -69,14 +72,16 @@ extra-packages: - ghc-lib == 9.10.* # 2024-12-30: preserve for GHC 9.10/ghc-tags 1.9 - ghc-lib-parser == 9.2.* # 2022-02-17: preserve for GHC 8.10, 9.0 - ghc-lib-parser == 9.6.* # 2024-05-19: preserve for GHC 9.2, 9.4 - - ghc-lib-parser == 9.10.* # 2024-12-26: preserve for GHC 9.10 + - ghc-lib-parser == 9.10.* # 2024-12-26: preserve for GHC 9.6, 9.8, 9.10 - ghc-lib-parser-ex == 9.2.* # 2022-07-13: preserve for GHC 8.10, 9.0 - ghc-lib-parser-ex == 9.6.* # 2024-05-19: preserve for GHC 9.2, 9.4 - - ghc-lib-parser-ex == 9.10.* # 2024-12-26: preserve for 9.10 HLS + - ghc-lib-parser-ex == 9.10.* # 2024-12-26: preserve for GHC 9.6, 9.8, 9.10 - ghc-tags == 1.5.* # 2023-02-18: preserve for ghc-lib == 9.2.* - ghc-tags == 1.7.* # 2023-02-18: preserve for ghc-lib == 9.6.* - ghc-tags == 1.8.* # 2023-02-18: preserve for ghc-lib == 9.8.* + - ghc-typelits-natnormalise < 0.8 # 2025-09-15: Stackage is stuck at 0.7.10 - happy == 1.20.* # for ghc-lib-parser == 9.6.* + - hashable < 1.5 # 2025-07-30: hashable >= 1.5 requires GHC >= 9.6 - hasql < 1.7 # 2025-01-19: Needed for building postgrest - hasql-dynamic-statements < 0.3.1.6 # 2025-01-19: Needed for building postgrest - hasql-implicits < 0.2 # 2025-01-19: Needed for building postgrest @@ -84,7 +89,6 @@ extra-packages: - hasql-pool < 1.1 # 2025-01-19: Needed for building postgrest - hasql-transaction < 1.1.1 # 2025-01-19: Needed for building postgrest - hlint == 3.6.* # 2025-04-14: needed for hls with ghc-lib-parser 9.6 - - hnix-store-core < 0.7 # 2023-12-11: required by hnix-store-remote 0.6 - hspec-megaparsec == 2.2.0 # 2023-11-18: Latest version compatible with ghc 9.0 - language-javascript == 0.7.0.0 # required by purescript - lsp < 2.5 # 2024-07-08: need for koka @@ -93,7 +97,7 @@ extra-packages: - network-run == 0.4.0 # 2024-10-20: for GHC 9.10/network == 3.1.* - ormolu == 0.5.2.0 # 2023-08-08: preserve for ghc 9.0 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat - - ormolu == 0.7.7.0 # 2025-01-27: for ghc 9.10 compat + - os-string == 1.* # 2025-07-30: dummy package we need for pre os-string GHCs - postgresql-binary < 0.14 # 2025-01-19: Needed for building postgrest - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2 @@ -104,6 +108,9 @@ extra-packages: - stylish-haskell == 0.14.5.0 # 2025-04-14: needed for hls with ghc-lib 9.6 - stylish-haskell == 0.15.0.1 # 2025-04-14: needed for hls with ghc-lib 9.10 - tar == 0.6.0.0 # 2025-02-08: last version to not require os-string (which can't be built with GHC < 9.2) + - tar == 0.6.3.0 # 2025-08-17: last version to not require file-io and directory-ospath-streaming (for GHC < 9.6) + - text-builder < 1 # 2025-08-27: Needed for building postgrest + - text-builder-dev < 0.4 # 2025-08-27: Needed for building postgrest - text-metrics < 0.3.3 # 2025-02-08: >= 0.3.3 uses GHC2021 - versions < 6 # 2024-04-22: required by spago-0.21 - weeder == 2.3.* # 2022-05-31: preserve for GHC 9.0.2 @@ -143,7 +150,6 @@ package-maintainers: - jsaddle-dom - jsaddle-hello - jsaddle-warp - - jsaddle-webkit2gtk - jsaddle-wkwebview - json-sop - large-generics @@ -177,6 +183,12 @@ package-maintainers: - BNFC-meta - alex-meta - happy-meta + - liquid-fixpoint + - liquidhaskell + - liquidhaskell-boot + - smtlib-backends + - smtlib-backends-process + - smtlib-backends-tests - vector-hashtables arturcygan: - hevm @@ -362,6 +374,8 @@ package-maintainers: - pdftotext - warp-systemd - amazonka + - libssh2 + - sitemap ncfavier: - Agda - irc-client @@ -501,6 +515,7 @@ package-maintainers: - regex-rure - jacinda - citeproc + - mighttpd2 # owothia - irc-client - chatter @@ -913,11 +928,17 @@ dont-distribute-packages: - yices-easy - yices-painless + # These packages don’t build because they use deprecated libsoup 2.4 versions. + - jsaddle-webkit2gtk + - gi-javascriptcore4 + - gi-soup2 + - gi-webkit2 + - webkit2gtk3-javascriptcore + # These packages don’t build because they use deprecated webkit versions. - diagrams-hsqml - dialog - ghcjs-dom-webkit - - gi-webkit - hsqml - hsqml-datamodel - hsqml-datamodel-vinyl @@ -927,7 +948,6 @@ dont-distribute-packages: - hsqml-demo-samples - hsqml-morris - hstorchat - - jsaddle-webkitgtk - jsc - lambdacat - manatee-all @@ -936,8 +956,6 @@ dont-distribute-packages: - markup-preview - spike - web-browser-in-haskell - - webkit - - webkitgtk3-javascriptcore - websnap # mesos was removed from nixpkgs diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml index 16b83fc122c7..8732dc0f3ce8 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml @@ -1,4 +1,4 @@ -# Stackage LTS 23.27 +# Stackage LTS 24.10 # This file is auto-generated by # maintainers/scripts/haskell/update-stackage.sh default-package-overrides: @@ -8,7 +8,7 @@ default-package-overrides: - AC-Angle ==1.0 - acc ==0.2.0.3 - ace ==0.6 - - acid-state ==0.16.1.3 + - acid-state ==0.16.1.4 - action-permutations ==0.0.0.1 - active ==0.2.1 - ad ==4.5.6 @@ -20,13 +20,13 @@ default-package-overrides: - aern2-real ==0.2.16.1 - aeson ==2.2.3.0 - aeson-attoparsec ==0.0.0 + - aeson-better-errors ==0.9.1.3 - aeson-casing ==0.2.0.0 - aeson-combinators ==0.1.2.1 - aeson-diff ==1.1.0.13 - - aeson-extra ==0.5.1.3 + - aeson-gadt-th ==0.2.5.4 - aeson-generic-compat ==0.0.2.0 - - aeson-jsonpath ==0.2.0.0 - - aeson-optics ==1.2.1 + - aeson-jsonpath ==0.3.0.2 - aeson-pretty ==0.8.10 - aeson-qq ==0.8.4 - aeson-schemas ==1.4.3.0 @@ -36,15 +36,19 @@ default-package-overrides: - aeson-warning-parser ==0.1.1 - aeson-yak ==0.1.1.3 - aeson-yaml ==1.1.0.1 + - AesonBson ==0.4.1 + - aftovolio ==0.8.0.0 - agda2lagda ==0.2023.6.9 - agreeing ==0.2.2.0 - alarmclock ==0.7.0.7 - - alex ==3.5.3.0 + - alex ==3.5.4.0 - alex-meta ==0.3.0.13 - alex-tools ==0.6.1 + - alfred-margaret ==2.1.0.2 - algebra ==4.3.1 - algebraic-graphs ==0.7 - align-audio ==0.0.0.1 + - Allure ==0.11.0.0 - almost-fix ==0.0.2 - alsa-core ==0.5.0.1 - alsa-mixer ==0.3.0.1 @@ -54,13 +58,15 @@ default-package-overrides: - alternators ==1.0.0.0 - ALUT ==2.4.0.3 - amqp ==0.24.0 + - amqp-utils ==0.6.7.2 - annotated-exception ==0.3.0.4 - annotated-wl-pprint ==0.7.0 - - ansi-terminal ==1.1.2 + - ansi-terminal ==1.1.3 - ansi-terminal-game ==1.9.3.0 - - ansi-terminal-types ==1.1 + - ansi-terminal-types ==1.1.3 - ansi-wl-pprint ==1.0.2 - - ANum ==0.2.0.2 + - ansigraph ==0.3.0.5 + - ANum ==0.2.0.4 - aos-signature ==0.1.1 - ap-normalize ==0.1.0.1 - apecs ==0.9.6 @@ -72,17 +78,15 @@ default-package-overrides: - appendful-persistent ==0.1.0.1 - appendmap ==0.1.5 - apply-merge ==0.1.1.0 - - apply-refact ==0.14.0.0 - apportionment ==0.0.0.4 - approximate ==0.3.5 - approximate-equality ==1.1.0.2 - - arbor-lru-cache ==0.1.1.1 - - arithmoi ==0.13.1.0 + - arithmoi ==0.13.2.0 + - array-chunks ==0.1.4.2 - array-memoize ==0.6.0 - arrow-extras ==0.1.0.1 - arrows ==0.4.4.2 - ascii-char ==1.0.1.0 - - ascii-group ==1.0.0.17 - ascii-progress ==0.3.3.0 - asn1-encoding ==0.9.6 - asn1-parse ==0.9.5 @@ -116,13 +120,13 @@ default-package-overrides: - authenticate ==1.3.5.2 - authenticate-oauth ==1.7 - auto-update ==0.2.6 - - autodocodec ==0.4.2.2 - - autodocodec-nix ==0.0.1.5 - - autodocodec-openapi3 ==0.2.1.4 + - autodocodec ==0.5.0.0 + - autodocodec-nix ==0.1.0.0 + - autodocodec-openapi3 ==0.3.0.1 - autodocodec-schema ==0.2.0.1 - - autodocodec-servant-multipart ==0.0.0.1 + - autodocodec-servant-multipart ==0.0.0.2 - autodocodec-swagger2 ==0.1.0.0 - - autodocodec-yaml ==0.4.0.1 + - autodocodec-yaml ==0.4.0.2 - autoexporter ==2.0.0.15 - automaton ==1.5 - avro ==0.6.2.1 @@ -135,11 +139,11 @@ default-package-overrides: - aws-xray-client-wai ==0.1.0.2 - backprop ==0.2.7.2 - backtracking ==0.1.0 - - bank-holiday-germany ==1.3.1.0 + - bank-holiday-germany ==2.1.0.1 - bank-holidays-england ==0.2.0.11 - barbies ==2.1.1.0 - - base-compat ==0.13.1 - - base-compat-batteries ==0.13.1 + - base-compat ==0.14.1 + - base-compat-batteries ==0.14.1 - base-orphans ==0.9.3 - base-prelude ==1.6.1.1 - base-unicode-symbols ==0.2.4.2 @@ -158,17 +162,18 @@ default-package-overrides: - battleship-combinatorics ==0.0.1 - bazel-runfiles ==0.12 - bbdb ==0.8 - - bcp47 ==0.2.0.6 - - bcp47-orphans ==0.1.0.6 + - bcp47 ==0.3.0.0 + - bcp47-orphans ==0.1.3.0 - bcrypt ==0.0.11 - beam-core ==0.10.4.0 - - beam-migrate ==0.5.3.1 - - beam-postgres ==0.5.4.2 - - beam-sqlite ==0.5.4.0 + - beam-migrate ==0.5.3.2 + - beam-postgres ==0.5.4.4 + - beam-sqlite ==0.5.4.1 - bech32 ==1.1.9 - bech32-th ==1.1.9 + - bench ==1.0.13 - bench-show ==0.3.2 - - benchpress ==0.2.2.25 + - benchpress ==0.2.3.0 - bencode ==0.6.1.1 - bencoding ==0.4.5.6 - benri-hspec ==0.1.0.3 @@ -182,15 +187,15 @@ default-package-overrides: - bin ==0.1.4 - binance-exports ==0.1.2.0 - binary-conduit ==1.3.1 - - binary-generic-combinators ==0.4.4.0 + - binary-generic-combinators ==0.4.4.1 - binary-ieee754 ==0.1.0.0 - binary-instances ==1.0.6 - binary-list ==1.1.1.2 - binary-orphans ==1.0.5 - binary-parser ==0.5.7.7 + - binary-parsers ==0.2.4.0 - binary-search ==2.0.0 - binary-shared ==0.8.3 - - binary-tagged ==0.3.1 - binaryen ==0.0.6.0 - bindings-DSL ==1.0.25 - bindings-GLFW ==3.3.9.2 @@ -211,7 +216,7 @@ default-package-overrides: - blas-ffi ==0.1 - blas-hs ==0.1.1.0 - blaze-bootstrap ==0.1.0.1 - - blaze-builder ==0.4.3 + - blaze-builder ==0.4.4.1 - blaze-colonnade ==1.2.3.0 - blaze-html ==0.9.2.0 - blaze-markup ==0.8.3.0 @@ -220,18 +225,17 @@ default-package-overrides: - bloodhound ==0.23.0.1 - bloomfilter ==2.0.1.2 - bluefin ==0.0.16.0 - - bluefin-internal ==0.0.15.0 + - bluefin-internal ==0.1.0.0 - bm ==0.2.0.0 - bmp ==1.2.6.4 - bnb-staking-csvs ==0.2.2.0 - - BNFC ==2.9.5 + - BNFC ==2.9.6.1 - BNFC-meta ==0.6.1 - board-games ==0.4 - bodhi ==0.1.0 - boltzmann-samplers ==0.1.1.0 - Boolean ==0.2.4 - boolsimplifier ==0.1.8 - - boomerang ==1.4.9.3 - boomwhacker ==0.0.2 - bordacount ==0.1.0.0 - boring ==0.2.2 @@ -240,26 +244,28 @@ default-package-overrides: - bounded-queue ==1.0.0 - BoundedChan ==1.0.3.0 - boundingboxes ==0.2.3 - - box ==0.9.3.2 - - box-socket ==0.5.2.0 + - bower-json ==1.1.0.0 + - bowtie ==0.7.0 + - box ==0.9.3.3 + - box-socket ==0.5.2.1 - boxes ==0.1.5 - - breakpoint ==0.1.4.0 - - brick ==2.4 - - brotli ==0.0.0.2 + - breakpoint ==0.1.5.0 + - brick ==2.9 + - brotli ==0.0.0.3 - brotli-streams ==0.0.0.0 - bsb-http-chunked ==0.0.0.4 - bson ==0.4.0.1 - bson-lens ==0.1.1 - btrfs ==0.2.1.0 - buffer-pipe ==0.0 - - bugsnag ==1.1.0.2 + - bugsnag ==1.2.0.1 - bugsnag-hs ==0.2.0.12 - bugsnag-wai ==1.0.1.1 - bugsnag-yesod ==1.0.1.0 - bugzilla-redhat ==1.0.1.1 - burrito ==2.0.1.14 + - butcher ==1.3.3.2 - bv ==0.5 - - bv-little ==1.3.2 - bv-sized ==1.0.6 - byte-count-reader ==0.10.1.12 - byte-order ==0.1.3.1 @@ -271,9 +277,11 @@ default-package-overrides: - bytes ==0.17.4 - byteset ==0.1.1.2 - byteslice ==0.2.15.0 - - bytesmith ==0.3.11.1 + - bytesmith ==0.3.13.0 + - bytestring-aeson-orphans ==0.1.0.2 - bytestring-builder ==0.10.8.2.0 - bytestring-conversion ==0.3.2 + - bytestring-encodings ==0.2.0.2 - bytestring-lexing ==0.5.0.15 - bytestring-strict-builder ==0.4.5.8 - bytestring-to-vector ==0.3.0.1 @@ -289,29 +297,29 @@ default-package-overrides: - c14n ==0.1.0.3 - c2hs ==0.28.8 - ca-province-codes ==1.0.0.0 - - cabal-add ==0.1 + - cabal-add ==0.2 - cabal-appimage ==0.4.1.0 - cabal-clean ==0.2.20230609 - cabal-debian ==5.2.6 - cabal-doctest ==1.0.11 - cabal-file ==0.1.1 - - cabal-fix ==0.1.0.0 - cabal-flatpak ==0.1.2 - - cabal-gild ==1.5.0.3 - - cabal-install-parsers ==0.6.1.1 - - cabal-plan ==0.7.6.0 - - cabal-rpm ==2.2.1 + - cabal-gild ==1.6.0.2 + - cabal-install-parsers ==0.6.2 + - cabal-plan ==0.7.6.1 + - cabal-rpm ==2.3.0 - cabal-sort ==0.1.2.1 - cabal2spec ==2.7.1 - cache ==0.1.3.0 - cached-json-file ==0.1.1 - - cacophony ==0.10.1 + - cacophony ==0.11.0 - cairo ==0.13.12.0 - cairo-image ==0.1.0.5 - calendar-recycling ==0.0.0.1 - - call-alloy ==0.5.0.1 + - call-alloy ==0.6.0.2 - call-plantuml ==0.0.1.3 - call-stack ==0.4.0 + - calligraphy ==0.1.8 - can-i-haz ==0.3.1.1 - capability ==0.5.0.1 - cardano-coin-selection ==1.0.1 @@ -322,11 +330,12 @@ default-package-overrides: - cased ==0.1.0.0 - cases ==0.1.4.4 - casing ==0.1.4.1 - - cassava ==0.5.4.0 + - cassava ==0.5.4.1 - cassava-conduit ==0.6.6 - cassava-megaparsec ==2.1.1 - cast ==0.1.0.2 - caster ==0.0.3.0 + - cauldron ==0.9.0.1 - cayley-client ==0.4.19.4 - cborg ==0.2.10.0 - cborg-json ==0.2.6.0 @@ -343,57 +352,57 @@ default-package-overrides: - character-cases ==0.1.0.6 - character-ps ==0.1 - charset ==0.3.12 + - charsetdetect-ae ==1.1.0.4 - Chart ==1.9.5 - Chart-cairo ==1.9.4.1 - Chart-diagrams ==1.9.5.1 - - chart-svg ==0.7.0.0 + - chart-svg ==0.8.2.1 - ChasingBottoms ==1.3.1.16 - check-email ==1.0.2 - checkers ==0.6.0 - checksum ==0.0.0.1 - chell ==0.5.0.2 - chell-hunit ==0.3.0.2 - - chell-quickcheck ==0.2.5.4 - chimera ==0.4.1.0 - choice ==0.2.4.1 - chronologique ==0.3.1.3 - - chronos ==1.1.6.2 + - chronos ==1.1.7.0 - chunked-data ==0.3.1 - cipher-aes ==0.2.11 - cipher-camellia ==0.0.2 - cipher-rc4 ==0.1.4 - circle-packing ==0.1.0.6 - circular ==0.4.0.3 - - citeproc ==0.8.1.1 - - clash-ghc ==1.8.2 - - clash-lib ==1.8.2 + - citeproc ==0.9.0.1 - clash-prelude ==1.8.2 - clash-prelude-hedgehog ==1.8.2 - classy-prelude ==1.5.0.3 - classy-prelude-conduit ==1.5.0 - classy-prelude-yesod ==1.5.0 - - clay ==0.15.0 + - clay ==0.16.1 + - cli-arguments ==0.7.0.0 - clientsession ==0.9.3.0 - Clipboard ==2.3.2.2 - clock ==0.8.4 - - closed ==0.2.0.2 + - closed ==0.2.1.0 - clumpiness ==0.17.0.2 - ClustalParser ==1.3.0 - cmark ==0.6.1 - cmark-gfm ==0.2.6 - cmark-lucid ==0.1.0.0 - cmdargs ==0.10.22 - - co-log ==0.6.1.2 + - co-log ==0.7.0.0 + - co-log-concurrent ==0.5.1.1 - co-log-core ==0.3.2.5 - co-log-polysemy ==0.0.1.6 - - code-conjure ==0.5.16 + - code-conjure ==0.7.8 - code-page ==0.2.1 - codec-beam ==0.2.0 - coinor-clp ==0.0.0.2 - cointracking-imports ==0.1.0.2 - collect-errors ==0.1.6.0 - colonnade ==1.2.0.2 - - Color ==0.3.3 + - Color ==0.4.0 - colorful-monoids ==0.2.1.3 - colorize-haskell ==1.0.1 - colour ==2.3.6 @@ -415,7 +424,6 @@ default-package-overrides: - compact ==0.2.0.0 - compactmap ==0.1.4.6 - companion ==0.1.0 - - compdata ==0.13.1 - compensated ==0.8.3 - compiler-warnings ==0.1.0 - componentm ==0.0.0.2 @@ -440,23 +448,22 @@ default-package-overrides: - conduit-extra ==1.3.8 - conduit-parse ==0.2.1.1 - conduit-zstd ==0.0.2.0 - - conferer ==1.1.0.0 - - conferer-aeson ==1.1.0.2 - config-ini ==0.2.7.0 - config-value ==0.8.3 - configuration-tools ==0.7.1 - configurator ==0.3.0.0 - configurator-export ==0.1.0.1 - - configurator-pg ==0.2.10 + - constrained-categories ==0.4.2.0 - constraint-tuples ==0.2 - constraints ==0.14.2 - constraints-extras ==0.4.0.2 - construct ==0.3.2 - - context ==0.2.1.0 + - consumers ==2.3.3.1 + - context ==0.2.1.1 - context-http-client ==0.2.0.2 - context-resource ==0.2.0.2 - context-wai-middleware ==0.2.0.2 - - contiguous ==0.6.4.2 + - contiguous ==0.6.5.0 - contravariant ==1.5.5 - contravariant-extras ==0.3.5.4 - control-bool ==0.2.1 @@ -465,33 +472,34 @@ default-package-overrides: - control-monad-omega ==0.3.3 - convertible ==1.1.1.1 - cookie ==0.5.1 - - copilot ==4.1 - - copilot-c99 ==4.1 - - copilot-core ==4.1 - - copilot-interpreter ==4.1 - - copilot-language ==4.1 - - copilot-libraries ==4.1 - - copilot-prettyprinter ==4.1 - - copilot-theorem ==4.1 + - copilot ==4.5.1 + - copilot-c99 ==4.5.1 + - copilot-core ==4.5.1 + - copilot-interpreter ==4.5.1 + - copilot-language ==4.5.1 + - copilot-libraries ==4.5.1 + - copilot-prettyprinter ==4.5.1 + - copilot-theorem ==4.5.1 - copr-api ==0.2.0 - core-data ==0.3.9.1 - core-program ==0.7.0.0 - core-telemetry ==0.2.9.4 - core-text ==0.3.8.1 - countable ==1.2 + - countdown-numbers-game ==0.0.0.1 - country ==0.2.5.0 - covariance ==0.2.0.1 - cpphs ==1.20.9.1 - cpu ==0.1.2 + - cpuinfo ==0.1.0.3 - cql ==4.0.4 - cql-io ==1.1.1 - crackNum ==3.15 - crc32c ==0.2.2 - - credential-store ==0.1.2 + - crdt-event-fold ==1.8.1.2 - criterion ==1.6.4.0 - criterion-measurement ==0.2.3.0 - cron ==0.7.2 - - crypt-sha512 ==0 - crypto-api ==0.13.3 - crypto-api-tests ==0.3 - crypto-cipher-tests ==0.0.11 @@ -508,33 +516,35 @@ default-package-overrides: - cryptohash-sha512 ==0.11.102.0 - crypton ==1.0.4 - crypton-conduit ==0.2.3 - - crypton-connection ==0.4.4 + - crypton-connection ==0.4.5 + - crypton-pem ==0.3.0 + - crypton-socks ==0.6.2 - crypton-x509 ==1.7.7 - - crypton-x509-store ==1.6.10 + - crypton-x509-store ==1.6.11 - crypton-x509-system ==1.6.7 - crypton-x509-validation ==1.6.14 - cryptonite ==0.30 - cryptonite-conduit ==0.2.2 - cryptonite-openssl ==0.7 - csp ==1.4.0 + - css-syntax ==0.1.0.2 - css-text ==0.1.3.0 - csv ==0.1.2 - csv-conduit ==1.0.1.1 - ctrie ==0.2 - cubicbezier ==0.6.0.7 - cubicspline ==0.1.2 - - cuda ==0.11.0.1 - cue-sheet ==2.0.2 - curl ==1.3.8 - - curly-expander ==0.3.0.4 - currency ==0.2.0.0 - - currycarbon ==0.3.0.1 + - currycarbon ==0.4.0.1 - cursor ==0.3.2.0 - cursor-brick ==0.1.0.1 - cursor-fuzzy-time ==0.1.0.0 - cursor-gen ==0.4.0.0 - cutter ==0.0 - cyclotomic ==1.1.2 + - czipwith ==1.0.1.4 - data-accessor ==0.2.3.1 - data-accessor-mtl ==0.2.0.5 - data-accessor-transformers ==0.2.1.8 @@ -544,22 +554,15 @@ default-package-overrides: - data-checked ==0.3 - data-clist ==0.2 - data-compat ==0.1.0.5 - - data-default ==0.7.1.3 - - data-default-class ==0.1.2.2 - - data-default-instances-base ==0.1.0.3 - - data-default-instances-bytestring ==0.0.1 - - data-default-instances-case-insensitive ==0.0.1 - - data-default-instances-containers ==0.1.0.3 - - data-default-instances-dlist ==0.0.1.2 - - data-default-instances-old-locale ==0.0.1.2 - - data-default-instances-unordered-containers ==0.0.1 - - data-default-instances-vector ==0.0.1 + - data-default ==0.8.0.1 + - data-default-class ==0.2.0.0 - data-diverse ==4.7.1.0 - data-dword ==0.3.2.1 - - data-effects ==0.3.0.1 - - data-effects-core ==0.2.0.0 - - data-effects-th ==0.2.0.0 + - data-effects ==0.4.2.0 + - data-effects-core ==0.4.3.0 + - data-effects-th ==0.4.2.1 - data-endian ==0.1.1 + - data-findcycle ==0.1.2.0 - data-fix ==0.3.4 - data-functor-logistic ==0.0 - data-has ==0.4.0.0 @@ -572,17 +575,18 @@ default-package-overrides: - data-msgpack-types ==0.0.3 - data-or ==1.0.0.7 - data-ordlist ==0.4.7.0 + - data-prometheus ==0.1.0.0 - data-ref ==0.1 - data-reify ==0.6.4 - data-serializer ==0.3.5 - data-sketches ==0.3.1.0 - data-sketches-core ==0.1.0.0 - data-textual ==0.3.0.3 + - dataframe ==0.2.0.2 - dataurl ==0.1.0.0 - DAV ==1.3.4 - dbcleaner ==0.1.3 - - DBFunctor ==0.1.2.1 - - dbus ==1.3.11 + - dbus ==1.4.1 - dbus-hslogger ==0.1.0.1 - debian ==4.0.5 - debian-build ==0.10.2.1 @@ -591,13 +595,16 @@ default-package-overrides: - decidable ==0.3.1.1 - Decimal ==0.5.2 - declarative ==0.5.4 - - deepseq-generics ==0.2.0.0 + - deepseq-generics ==0.2.0.1 - deferred-folds ==0.9.18.7 - defun-core ==0.1.0.1 - dejafu ==2.4.0.7 + - delta-types ==1.0.0.0 - dense-linear-algebra ==0.1.0.0 - dependent-map ==0.4.0.0 + - dependent-monoidal-map ==0.1.1.5 - dependent-sum ==0.7.2.0 + - dependent-sum-aeson-orphans ==0.3.1.2 - dependent-sum-template ==0.2.0.2 - depq ==0.4.2 - deque ==0.4.4.2 @@ -609,32 +616,35 @@ default-package-overrides: - deriving-trans ==0.9.1.0 - detour-via-sci ==1.0.0 - df1 ==0.4.3 - - dhall ==1.42.2 + - dhall ==1.42.3 - di ==1.3 - di-core ==1.0.4 - di-df1 ==1.2.1 - di-handle ==1.0.1 - di-monad ==1.3.5 - diagrams ==1.4.2 + - diagrams-braille ==0.1.2 - diagrams-builder ==0.8.0.6 - - diagrams-cairo ==1.4.2.1 - - diagrams-canvas ==1.4.1.2 - - diagrams-contrib ==1.4.5.1 + - diagrams-cairo ==1.5 + - diagrams-canvas ==1.4.2 + - diagrams-contrib ==1.4.6 - diagrams-core ==1.5.1.1 - - diagrams-lib ==1.4.6.2 - - diagrams-postscript ==1.5.1.1 - - diagrams-rasterific ==1.4.2.3 + - diagrams-gtk ==1.4 + - diagrams-lib ==1.5.0.1 + - diagrams-postscript ==1.5.3 + - diagrams-rasterific ==1.5 - diagrams-solve ==0.1.3.1 - - diagrams-svg ==1.4.4 + - diagrams-svg ==1.5 - dice ==0.1.1 - dictionary-sharing ==0.1.0.0 - - Diff ==0.5 + - Diff ==1.0.2 - diff-loc ==0.1.0.0 - digest ==0.0.2.1 - digits ==0.3.1 + - digraph ==0.3.2 - dimensional ==1.6.1 - direct-sqlite ==2.3.29 - - directory-ospath-streaming ==0.1.0.3 + - directory-ospath-streaming ==0.2.2 - directory-tree ==0.12.1 - dirichlet ==0.1.0.7 - discount ==0.1.1 @@ -657,24 +667,24 @@ default-package-overrides: - distributive ==0.6.2.1 - djinn-lib ==0.0.1.4 - djot ==0.1.2.2 - - dl-fedora ==1.2.1 + - dl-fedora ==2.0.1 - dlist ==1.0 - dlist-instances ==0.1.1.1 - - dlist-nonempty ==0.1.3 - dns ==4.2.0 - do-list ==1.0.1 - do-notation ==0.1.0.2 + - dobutokO2 ==0.45.3.0 - dockerfile ==0.2.0 - - doclayout ==0.5 + - doclayout ==0.5.0.1 - docopt ==0.7.0.8 - doctemplates ==0.11.0.1 - - doctest ==0.22.6 + - doctest ==0.24.2 - doctest-discover ==0.2.0.0 - doctest-driver-gen ==0.3.0.8 - doctest-exitcode-stdio ==0.0.0.1 - doctest-extract ==0.1.2 - doctest-lib ==0.1.1.1 - - doctest-parallel ==0.3.1.1 + - doctest-parallel ==0.4 - doldol ==0.4.1.2 - domain ==0.1.1.5 - domain-aeson ==0.1.1.2 @@ -682,39 +692,40 @@ default-package-overrides: - domain-core ==0.1.0.4 - domain-optics ==0.1.0.4 - dot ==0.3 - - dotenv ==0.12.0.0 - dotgen ==0.4.3 - dotnet-timespan ==0.0.1.0 - - dotparse ==0.1.2.2 + - dotparse ==0.1.2.3 - double-conversion ==2.0.5.0 - download ==0.3.2.7 - download-curl ==0.1.4 - DPutils ==0.1.1.0 - - drawille ==0.1.3.0 - drifter ==0.3.0 - drifter-postgresql ==0.2.1 - drifter-sqlite ==0.1.0.0 - dsp ==0.2.5.2 - dual-tree ==0.2.3.1 - dublincore-xml-conduit ==0.1.0.3 + - dunai ==0.14.1 - duration ==0.2.0.0 - - dvorak ==0.1.0.0 - dynamic-state ==0.3.2 - dyre ==0.9.2 - eap ==0.9.0.2 - Earley ==0.13.0.1 - easy-file ==0.2.5 - easy-logger ==0.1.0.7 + - easyplot ==1.0 - Ebnf2ps ==1.0.15 + - ech-config ==0.0.1 - echo ==0.1.4 - ecstasy ==0.2.1.0 - ed25519 ==0.0.5.0 + - ede ==0.3.4.0 - edit-distance ==0.2.2.1 - edit-distance-vector ==1.0.0.4 - editor-open ==0.6.0.0 - - effectful ==2.5.1.0 - - effectful-core ==2.5.1.0 - - effectful-plugin ==1.1.0.4 + - effectful ==2.6.1.0 + - effectful-core ==2.6.1.0 + - effectful-plugin ==2.0.0.1 - effectful-th ==1.0.0.3 - egison-pattern-src ==0.2.1.2 - either ==5.0.3 @@ -723,13 +734,13 @@ default-package-overrides: - ekg-core ==0.1.2.0 - ekg-json ==0.1.1.1 - ekg-statsd ==0.2.6.2 + - ekg-wai ==0.1.2.0 - elerea ==2.9.0 - elf ==0.31 - - eliminators ==0.9.4 + - eliminators ==0.9.5 - elm-bridge ==0.8.4 - elm-core-sources ==1.0.0 - elm-export ==0.6.0.1 - - elm-street ==0.2.2.1 - elm-syntax ==0.3.3.0 - elm2nix ==0.4.0 - elynx ==0.8.0.0 @@ -738,12 +749,13 @@ default-package-overrides: - elynx-seq ==0.8.0.0 - elynx-tools ==0.8.0.0 - elynx-tree ==0.7.2.2 - - emacs-module ==0.2.1 + - emacs-module ==0.2.1.1 - email-validate ==2.3.2.21 - emd ==0.2.0.0 - emojis ==0.1.4.1 - enclosed-exceptions ==1.0.3 - - encoding ==0.8.10 + - encoding ==0.10.2 + - end-of-exe ==0.1.2.0 - ENIG ==0.0.1.0 - entropy ==0.4.1.11 - enum-subset-generate ==0.1.0.3 @@ -757,7 +769,7 @@ default-package-overrides: - eq ==4.3 - equal-files ==0.0.5.4 - equational-reasoning ==0.7.1.0 - - equivalence ==0.4.1 + - equivalence ==0.4.1.1 - erf ==2.0.0.0 - errata ==0.4.0.3 - error ==1.0.0.0 @@ -766,13 +778,13 @@ default-package-overrides: - errorcall-eq-instance ==0.3.0 - errors ==2.3.0 - errors-ext ==0.4.2 - - ersatz ==0.5 - - esqueleto ==3.5.14.0 - - essence-of-live-coding ==0.2.8 - - essence-of-live-coding-gloss ==0.2.8 - - essence-of-live-coding-pulse ==0.2.8 - - essence-of-live-coding-quickcheck ==0.2.8 - - essence-of-live-coding-warp ==0.2.8 + - ersatz ==0.6 + - esqueleto ==3.6.0.0 + - essence-of-live-coding ==0.2.9 + - essence-of-live-coding-gloss ==0.2.9 + - essence-of-live-coding-pulse ==0.2.9 + - essence-of-live-coding-quickcheck ==0.2.9 + - essence-of-live-coding-warp ==0.2.9 - event-list ==0.1.3 - every ==0.0.1 - evm-opcodes ==0.2.0 @@ -789,19 +801,17 @@ default-package-overrides: - exon ==1.7.2.0 - exp-pairs ==0.2.1.1 - expiring-cache-map ==0.0.6.1 - - explainable-predicates ==0.1.2.4 - explicit-exception ==0.2 - express ==1.0.18 - extended-reals ==0.2.7.0 - - extensible ==0.9.2 - - extensible-effects ==5.0.0.1 - extensible-exceptions ==0.1.1.4 - - extra ==1.7.16 + - extra ==1.8 - extra-data-yj ==0.1.0.0 - extractable-singleton ==0.0.1 - extrapolate ==0.4.6 - fail ==4.9.0.0 - FailT ==0.1.2.0 + - fakedata ==1.0.5 - fakedata-parser ==0.1.0.0 - fakefs ==0.3.0.2 - fakepull ==0.3.0.2 @@ -812,19 +822,19 @@ default-package-overrides: - fast-logger ==3.2.6 - fast-math ==1.0.2 - fast-myers-diff ==0.0.1 + - fbrnch ==1.7.1 - fcf-family ==0.2.0.2 - fdo-notify ==0.3.1 - feature-flags ==0.1.0.1 - fedora-krb ==0.1.0 - - fedora-releases ==0.2.1 - - fedora-repoquery ==0.7.3 + - fedora-releases ==0.3.0 + - fedora-repoquery ==0.7.4 - feed ==1.3.2.1 - FenwickTree ==0.1.2.1 - fft ==0.1.8.7 - fftw-ffi ==0.1 - fgl ==5.8.3.0 - - fgl-arbitrary ==0.2.0.6 - - fields-and-cases ==0.2.0.0 + - fgl-visualize ==0.1.0.1 - fields-json ==0.4.0.0 - file-embed ==0.0.16.0 - file-embed-lzma ==0.1 @@ -832,29 +842,31 @@ default-package-overrides: - file-modules ==0.1.2.4 - file-path-th ==0.1.0.0 - filecache ==0.5.2 - - filelock ==0.1.1.7 + - filelock ==0.1.1.8 - filemanip ==0.3.6.3 + - filepath-bytestring ==1.5.2.0.3 - filepattern ==0.1.3 - fileplow ==0.1.0.0 - filter-logger ==0.6.0.0 - filtrable ==0.1.6.0 - fin ==0.3.2 - FindBin ==0.0.5 - - fingertree ==0.1.6.1 + - fingertree ==0.1.6.2 - finite-typelits ==0.2.1.0 - first-class-families ==0.8.1.0 - fits-parse ==0.4.2 - fitspec ==0.4.10 - fix-whitespace ==0.1 - fixed ==0.3 + - fixed-generic ==0.1.0.2 - fixed-length ==0.2.3.1 - - fixed-vector ==1.2.3.0 - - fixed-vector-hetero ==0.6.2.0 + - fixed-vector ==2.0.0.0 + - fixed-vector-hetero ==0.7.0.0 - flac ==0.2.1 - flac-picture ==0.1.3 - flags-applicative ==0.1.0.3 - flat ==0.6 - - flatparse ==0.5.2.1 + - flatparse ==0.5.3.0 - flay ==0.5 - flexible-defaults ==0.0.3 - FloatingHex ==0.5 @@ -867,22 +879,20 @@ default-package-overrides: - focus ==1.0.3.2 - focuslist ==0.1.1.0 - fold-debounce ==0.2.0.16 + - fold-debounce-conduit ==0.2.0.8 - foldable1-classes-compat ==0.1.2 - foldl ==1.4.18 - folds ==0.7.8 - FontyFruity ==0.5.3.5 - - force-layout ==0.4.0.6 + - force-layout ==0.4.1 - foreign-store ==0.2.1 - ForestStructures ==0.0.1.1 - forkable-monad ==0.2.0.3 - forma ==1.2.0 - format-numbers ==0.1.0.1 - - formatn ==0.3.1.0 + - formatn ==0.3.2.0 - formatting ==7.2.0 - - fortran-src ==0.16.7 - foundation ==0.0.30 - - fourmolu ==0.15.0.0 - - Frames ==0.7.4.2 - free ==5.2 - free-alacarte ==1.0.0.9 - free-categories ==0.2.0.2 @@ -890,17 +900,15 @@ default-package-overrides: - free-vl ==0.1.4 - freenect ==1.2.1 - freer-par-monad ==0.1.0.0 - - freer-simple ==1.2.1.2 - freetype2 ==0.2.0 - friendly-time ==0.4.1 - frisby ==0.2.5 - from-sum ==0.2.3.0 - frontmatter ==0.1.0.2 - - fsnotify ==0.4.3.0 + - fsnotify ==0.4.4.0 - ftp-client ==0.5.1.6 - funcmp ==1.9 - function-builder ==0.3.0.1 - - functor-classes-compat ==2.0.0.2 - functor-combinators ==0.4.1.4 - functor-products ==0.1.2.2 - fused-effects ==1.1.2.5 @@ -909,22 +917,25 @@ default-package-overrides: - fuzzcheck ==0.1.1 - fuzzy ==0.1.1.0 - fuzzy-dates ==0.1.1.2 - - fuzzy-time ==0.3.0.0 + - fuzzy-time ==0.3.0.1 - fuzzyset ==0.3.2 - - gauge ==0.2.5 - gd ==3000.7.3 - gdp ==0.0.3.0 - gemini-exports ==0.1.0.2 - general-games ==1.1.1 + - generic-aeson ==0.2.0.14 - generic-arbitrary ==1.0.1.2 + - generic-case ==0.1.1.1 - generic-constraints ==1.1.1.1 - generic-data ==1.1.0.2 - generic-data-functions ==0.6.0 - generic-data-surgery ==0.3.0.0 - generic-deriving ==1.14.6 + - generic-enumeration ==0.1.0.4 - generic-functor ==1.1.0.0 - generic-lens ==2.2.2.0 - generic-lens-core ==2.2.1.0 + - generic-lexicographic-order ==0.1.0.1 - generic-monoid ==0.1.0.1 - generic-optics ==2.2.1.0 - generic-random ==1.5.0.1 @@ -935,7 +946,6 @@ default-package-overrides: - generics-eot ==0.4.0.1 - generics-sop ==0.5.1.4 - generics-sop-lens ==0.2.1 - - geniplate-mirror ==0.7.10 - genvalidity ==1.1.1.0 - genvalidity-aeson ==1.0.0.1 - genvalidity-appendful ==0.1.0.0 @@ -968,29 +978,32 @@ default-package-overrides: - genvalidity-unordered-containers ==1.0.0.1 - genvalidity-uuid ==1.0.0.1 - genvalidity-vector ==1.0.0.0 - - geodetics ==0.1.2 + - geodetics ==1.1.0 + - geoip2 ==0.4.1.3 - getopt-generics ==0.13.1.0 - ghc-bignum-orphans ==0.1.1 - ghc-byteorder ==4.11.0.0.10 - ghc-check ==0.5.0.8 + - ghc-compact ==0.1.0.0 - ghc-core ==0.5.6 - ghc-events ==0.20.0.0 - - ghc-exactprint ==1.8.0.0 + - ghc-exactprint ==1.10.0.0 - ghc-hs-meta ==0.1.5.0 - - ghc-lib ==9.8.5.20250214 - - ghc-lib-parser ==9.8.5.20250214 - - ghc-lib-parser-ex ==9.8.0.2 + - ghc-lib ==9.12.2.20250421 + - ghc-lib-parser ==9.12.2.20250421 + - ghc-lib-parser-ex ==9.12.0.0 - ghc-parser ==0.2.7.0 - ghc-paths ==0.1.0.12 - ghc-source-gen ==0.4.6.0 - - ghc-syntax-highlighter ==0.0.11.0 + - ghc-syntax-highlighter ==0.0.13.0 - ghc-tcplugins-extra ==0.4.6 - ghc-trace-events ==0.1.2.10 - ghc-typelits-extra ==0.4.8 - ghc-typelits-knownnat ==0.7.13 - ghc-typelits-natnormalise ==0.7.10 - - ghc-typelits-presburger ==0.7.4.1 + - ghc-typelits-presburger ==0.7.4.2 - ghci-hexcalc ==0.1.1.0 + - ghci4luatex ==0.1.2 - ghcid ==0.8.9 - ghcjs-codemirror ==0.0.0.2 - ghcjs-dom ==0.9.9.2 @@ -1005,11 +1018,11 @@ default-package-overrides: - gi-dbusmenu ==0.4.14 - gi-dbusmenugtk3 ==0.4.16 - gi-freetype2 ==2.0.5 - - gi-gdk ==3.0.30 + - gi-gdk ==4.0.10 - gi-gdk3 ==3.0.30 - gi-gdk4 ==4.0.10 - gi-gdkpixbuf ==2.0.32 - - gi-gdkx11 ==3.0.17 + - gi-gdkx11 ==4.0.9 - gi-gdkx113 ==3.0.17 - gi-gdkx114 ==4.0.9 - gi-gio ==2.0.38 @@ -1018,36 +1031,36 @@ default-package-overrides: - gi-gobject ==2.0.31 - gi-graphene ==1.0.8 - gi-gsk ==4.0.9 - - gi-gtk ==3.0.44 - - gi-gtk-hs ==0.3.17 + - gi-gtk ==4.0.12 - gi-gtk3 ==3.0.44 - gi-gtk4 ==4.0.12 - - gi-gtksource ==3.0.30 - - gi-gtksource3 ==3.0.30 + - gi-gtksource ==5.0.2 + - gi-gtksource5 ==5.0.2 - gi-harfbuzz ==0.0.10 + - gi-javascriptcore ==6.0.5 + - gi-javascriptcore6 ==6.0.5 - gi-pango ==1.0.30 - - gi-soup ==2.4.30 - - gi-soup2 ==2.4.30 + - gi-soup ==3.0.4 + - gi-soup3 ==3.0.5 - gi-vte ==2.91.35 - gi-xlib ==2.0.14 + - ginger ==0.10.6.0 - gio ==0.13.12.0 - git-lfs ==1.2.5 - git-mediate ==1.1.0 - githash ==0.1.7.0 - - github ==0.29 + - github ==0.30.0.1 - github-release ==2.0.0.14 - github-rest ==1.2.1 - github-types ==0.2.1 - - github-webhooks ==0.17.0 - - gitlab-haskell ==1.0.2.2 - - gitlib ==3.1.3 - - gitlib-libgit2 ==3.1.2.1 - - gitlib-test ==3.1.2 + - github-webhooks ==0.18.0 + - gitlab-haskell ==1.1.0.0 - gitrev ==1.3.1 - gl ==0.9.1 - glabrous ==2.0.6.4 - glasso ==0.1.0 - GLFW-b ==3.3.9.1 + - glfw-group ==0.1.0.6 - glib ==0.13.12.0 - glib-stopgap ==0.1.0.1 - Glob ==0.10.2 @@ -1059,6 +1072,91 @@ default-package-overrides: - GLURaw ==2.0.0.5 - GLUT ==2.7.0.16 - gnuplot ==0.5.7 + - gogol ==1.0.0.0 + - gogol-adexchange-buyer ==1.0.0 + - gogol-adexchange-seller ==1.0.0 + - gogol-admin-datatransfer ==1.0.0 + - gogol-admin-directory ==1.0.0 + - gogol-admin-reports ==1.0.0 + - gogol-adsense ==1.0.0 + - gogol-adsense-host ==1.0.0 + - gogol-analytics ==1.0.0 + - gogol-android-enterprise ==1.0.0 + - gogol-android-publisher ==1.0.0 + - gogol-appengine ==1.0.0 + - gogol-apps-activity ==1.0.0 + - gogol-apps-calendar ==1.0.0 + - gogol-apps-licensing ==1.0.0 + - gogol-apps-reseller ==1.0.0 + - gogol-apps-tasks ==1.0.0 + - gogol-appstate ==1.0.0 + - gogol-bigquery ==1.0.0 + - gogol-billing ==1.0.0 + - gogol-blogger ==1.0.0 + - gogol-books ==1.0.0 + - gogol-civicinfo ==1.0.0 + - gogol-classroom ==1.0.0 + - gogol-cloudtrace ==1.0.0 + - gogol-compute ==1.0.0 + - gogol-container ==1.0.0 + - gogol-core ==1.0.0.0 + - gogol-customsearch ==1.0.0 + - gogol-dataflow ==1.0.0 + - gogol-dataproc ==1.0.0 + - gogol-datastore ==1.0.0 + - gogol-debugger ==1.0.0 + - gogol-deploymentmanager ==1.0.0 + - gogol-dfareporting ==1.0.0 + - gogol-discovery ==1.0.0 + - gogol-dns ==1.0.0 + - gogol-doubleclick-bids ==1.0.0 + - gogol-doubleclick-search ==1.0.0 + - gogol-drive ==1.0.0 + - gogol-firebase-rules ==1.0.0 + - gogol-fitness ==1.0.0 + - gogol-fonts ==1.0.0 + - gogol-fusiontables ==1.0.0 + - gogol-games ==1.0.0 + - gogol-games-configuration ==1.0.0 + - gogol-games-management ==1.0.0 + - gogol-genomics ==1.0.0 + - gogol-gmail ==1.0.0 + - gogol-groups-migration ==1.0.0 + - gogol-groups-settings ==1.0.0 + - gogol-identity-toolkit ==1.0.0 + - gogol-kgsearch ==1.0.0 + - gogol-logging ==1.0.0 + - gogol-mirror ==1.0.0 + - gogol-monitoring ==1.0.0 + - gogol-oauth2 ==1.0.0 + - gogol-pagespeed ==1.0.0 + - gogol-partners ==1.0.0 + - gogol-people ==1.0.0 + - gogol-play-moviespartner ==1.0.0 + - gogol-plus ==1.0.0 + - gogol-plus-domains ==1.0.0 + - gogol-proximitybeacon ==1.0.0 + - gogol-pubsub ==1.0.0 + - gogol-qpxexpress ==1.0.0 + - gogol-replicapool ==1.0.0 + - gogol-replicapool-updater ==1.0.0 + - gogol-resourcemanager ==1.0.0 + - gogol-script ==1.0.0 + - gogol-sheets ==1.0.0 + - gogol-shopping-content ==1.0.0 + - gogol-siteverification ==1.0.0 + - gogol-spectrum ==1.0.0 + - gogol-sqladmin ==1.0.0 + - gogol-storage ==1.0.0 + - gogol-storage-transfer ==1.0.0 + - gogol-tagmanager ==1.0.0 + - gogol-translate ==1.0.0 + - gogol-urlshortener ==1.0.0 + - gogol-vision ==1.0.0 + - gogol-webmaster-tools ==1.0.0 + - gogol-youtube ==1.0.0 + - gogol-youtube-analytics ==1.0.0 + - gogol-youtube-reporting ==1.0.0 - goldplate ==0.2.2.1 - google-isbn ==1.0.3 - google-oauth2-jwt ==0.3.3.1 @@ -1077,22 +1175,21 @@ default-package-overrides: - greskell-core ==1.0.0.6 - greskell-websocket ==1.0.0.4 - gridtables ==0.1.0.0 - - grisette ==0.9.0.0 + - grisette ==0.13.0.1 - groom ==0.1.2.1 - group-by-date ==0.1.0.5 - groups ==0.5.3 - gtk ==0.15.10 - - gtk-sni-tray ==0.1.8.1 - - gtk-strut ==0.1.3.2 - gtk2hs-buildtools ==0.13.12.0 - gtk3 ==0.15.10 - guarded-allocation ==0.0.1 - - hackage-cli ==0.1.0.3 - - hackage-security ==0.6.3.1 - - hackage-security-HTTP ==0.1.1.2 + - hackage-cli ==0.1.0.4 + - hackage-revdeps ==0.1 + - hackage-security ==0.6.3.2 + - hackage-security-HTTP ==0.1.1.3 - haddock-library ==1.11.0 - haha ==0.3.1.1 - - hakyll ==4.16.6.0 + - hakyll ==4.16.7.1 - hakyll-convert ==0.3.0.5 - hal ==1.1 - half ==0.3.3 @@ -1100,49 +1197,49 @@ default-package-overrides: - hamlet ==1.2.0 - hamtsolo ==1.0.4 - HandsomeSoup ==0.4.2 - - handwriting ==0.1.0.3 - happstack-jmacro ==7.0.12.6 - - happstack-server ==7.9.2.1 - - happstack-server-tls ==7.2.1.6 - - happy ==2.0.2 - - happy-lib ==2.0.2 + - happstack-server ==7.9.3 + - happstack-server-tls ==7.2.1.7 + - happy ==2.1.7 + - happy-lib ==2.1.7 - happy-meta ==0.2.1.0 - - harpie ==0.1.2.0 - - harpie-numhask ==0.1.0.1 + - harpie ==0.1.3.0 + - harpie-numhask ==0.1.0.2 - has-transformers ==0.1.0.4 - HasBigDecimal ==0.2.0.0 - - hashable ==1.4.7.0 - - hashids ==1.1.1.0 + - hashable ==1.5.0.0 - hashmap ==1.3.3 - - hashtables ==1.3.1 - - haskell-gi ==0.26.16 + - hashtables ==1.4.2 + - haskell-gi ==0.26.17 - haskell-gi-base ==0.26.9 - haskell-gi-overloading ==1.0 - - haskell-lexer ==1.1.2 - - haskell-src ==1.0.4.1 + - haskell-lexer ==1.2.1 + - haskell-src ==1.0.4.2 - haskell-src-exts ==1.23.1 - haskell-src-exts-simple ==1.23.1.0 - haskell-src-exts-util ==0.2.5 - haskell-src-meta ==0.8.15 + - HaskellNet ==0.6.2 + - HaskellNet-SSL ==0.4.0.2 - haskey-btree ==0.3.0.1 - haskintex ==0.8.0.3 - - haskoin-core ==1.1.0 - - haskoin-node ==1.1.4 - - haskoin-store-data ==1.4.0 + - haskoin-core ==1.2.2 + - haskoin-store-data ==1.5.16 - hasktags ==0.73.0 - - hasql ==1.8.1.4 + - hasql ==1.9.3.1 - hasql-dynamic-statements ==0.3.1.8 - hasql-implicits ==0.2.0.1 - hasql-interpolate ==1.0.1.0 - hasql-listen-notify ==0.1.0.1 - hasql-migration ==0.3.1 - - hasql-notifications ==0.2.3.2 - - hasql-optparse-applicative ==0.8.0.1 - - hasql-pool ==1.2.0.3 + - hasql-optparse-applicative ==0.9 + - hasql-pool ==1.3.0.3 - hasql-th ==0.4.0.23 - - hasql-transaction ==1.1.1.2 + - hasql-transaction ==1.2.1 + - Hastructure ==0.50.4 - hasty-hamiltonian ==1.3.4 - - HaTeX ==3.22.4.2 + - HaTeX ==3.23.0.1 + - haveibeenpwned ==0.2.0.3 - HaXml ==1.25.14 - haxr ==3000.11.5.1 - Hclip ==3.0.0.4 @@ -1158,19 +1255,20 @@ default-package-overrides: - hedgehog ==1.5 - hedgehog-classes ==0.2.5.4 - hedgehog-corpus ==0.2.0 + - hedgehog-fakedata ==0.0.1.5 - hedgehog-fn ==1.0 - hedgehog-quickcheck ==0.1.1 - hedis ==0.15.2 - hedn ==0.3.0.4 - - heftia ==0.5.0.0 - - heftia-effects ==0.5.0.0 - - hegg ==0.5.0.0 + - heftia ==0.7.0.0 + - heftia-effects ==0.7.0.0 - heist ==1.1.1.2 - here ==1.2.14 - heredoc ==0.2.0.0 - hetero-parameter-list ==0.1.0.21 - hetero-parameter-list-with-typelevel-tools ==0.1.0.1 - heterocephalus ==1.0.5.7 + - hetzner ==0.7.2.1 - hex ==0.2.0 - hex-text ==0.1.0.9 - hexml ==0.3.5 @@ -1179,9 +1277,8 @@ default-package-overrides: - hformat ==0.3.3.1 - hfsevents ==0.1.8 - hgal ==2.0.0.3 - - hi-file-parser ==0.1.7.0 + - hi-file-parser ==0.1.8.0 - hidapi ==0.1.8 - - hindent ==6.2.1 - hinfo ==0.0.3.0 - hinotify ==0.4.2 - hint ==0.9.0.8 @@ -1189,47 +1286,46 @@ default-package-overrides: - hjsmin ==0.2.1 - hkd-default ==1.1.0.0 - hkgr ==0.4.8 - - hledger ==1.40 + - hledger ==1.43.2 - hledger-iadd ==1.3.21 - hledger-interest ==1.6.7 - - hledger-lib ==1.40 + - hledger-lib ==1.43.2 - hledger-stockquotes ==0.1.3.2 - - hledger-ui ==1.40 - - hledger-web ==1.40 + - hledger-ui ==1.43.2 + - hledger-web ==1.43.2 - hlibcpuid ==0.2.0 - hlibgit2 ==0.18.0.16 - hlibsass ==0.1.10.1 - - hlint ==3.8 + - hlint ==3.10 - hmatrix ==0.20.2 - hmatrix-backprop ==0.1.3.0 - hmatrix-gsl ==0.19.0.1 - hmatrix-gsl-stats ==0.4.1.8 - hmatrix-morpheus ==0.1.1.2 + - hmatrix-repa ==0.1.2.2 - hmatrix-special ==0.19.0.0 - hmatrix-vector-sized ==0.1.3.0 - - hmm-lapack ==0.5.0.1 - - HMock ==0.5.1.2 - hmpfr ==0.4.5 - - hnix-store-core ==0.8.0.0 - hoare ==0.1.1.0 - - hoauth2 ==2.14.0 + - hoauth2 ==2.14.3 - hoogle ==5.0.18.4 - hopenssl ==2.2.5 - horizontal-rule ==0.7.0.0 - - hosc ==0.20 + - hosc ==0.21.1 - hostname ==1.0 - hostname-validate ==1.0.0 - hourglass ==0.2.12 - hourglass-orphans ==0.1.0.0 - hp2pretty ==0.10.1 - - hpack ==0.37.0 - - hpc-codecov ==0.6.2.0 - - hpc-lcov ==1.1.2 + - hpack ==0.38.2 + - hpc-codecov ==0.6.3.0 + - hpc-lcov ==1.2.0 - HPDF ==1.7 + - hpke ==0.0.0 - hpp ==0.6.5 - hpqtypes ==1.12.0.0 - - hpqtypes-extras ==1.16.4.4 - - hquantlib-time ==0.1.1 + - hpqtypes-extras ==1.18.0.0 + - hquantlib-time ==0.1.2 - hreader ==1.1.1 - hreader-lens ==0.1.3.0 - hruby ==0.5.1.0 @@ -1249,7 +1345,7 @@ default-package-overrides: - hsini ==0.5.2.2 - hsinstall ==2.8 - HSlippyMap ==3.0.1 - - hslogger ==1.3.1.2 + - hslogger ==1.3.2.0 - hslua ==2.3.1 - hslua-aeson ==2.3.1.1 - hslua-classes ==2.3.1 @@ -1323,11 +1419,11 @@ default-package-overrides: - http-date ==0.0.11 - http-directory ==0.1.11 - http-download ==0.2.1.0 - - http-io-streams ==0.1.7.0 + - http-io-streams ==0.1.7.2 - http-link-header ==1.2.3 - http-media ==0.8.1.1 - http-query ==0.1.3 - - http-reverse-proxy ==0.6.1.0 + - http-reverse-proxy ==0.6.2.0 - http-semantics ==0.3.0 - http-streams ==0.8.9.9 - http-types ==0.12.4 @@ -1345,13 +1441,11 @@ default-package-overrides: - hw-excess ==0.2.3.0 - hw-hedgehog ==0.1.1.1 - hw-int ==0.0.2.0 - - hw-json-simd ==0.1.1.2 - hw-kafka-client ==5.3.0 - hw-mquery ==0.2.1.2 - hw-parser ==0.1.1.0 - hw-prim ==0.6.3.2 - hw-rankselect-base ==0.3.4.1 - - hw-streams ==0.0.1.1 - hw-string-parse ==0.0.0.5 - hweblib ==0.6.3 - hwk ==0.6 @@ -1364,9 +1458,10 @@ default-package-overrides: - hxt-regex-xmlschema ==9.2.0.7 - hxt-tagsoup ==9.1.4 - hxt-unicode ==9.0.2.4 + - hxt-xpath ==9.1.2.2 - hybrid-vectors ==0.2.5 - - hyper ==0.2.1.1 - - hyperloglog ==0.4.6 + - hyperbole ==0.4.3 + - hyperloglog ==0.5 - hyphenation ==0.8.3 - iconv ==0.4.1.3 - identicon ==0.2.3 @@ -1374,15 +1469,15 @@ default-package-overrides: - if ==0.1.0.0 - IfElse ==0.85 - iff ==0.0.6.1 - - ihaskell ==0.11.0.0 + - ihaskell ==0.12.0.0 - ihaskell-hvega ==0.5.0.6 - ihs ==0.1.0.3 - - ilist ==0.4.0.1 - imagesize-conduit ==1.1 - Imlib ==0.1.2 - immortal ==0.3 - immortal-queue ==0.1.0.1 - imp ==1.0.3.3 + - ImpSpec ==0.1.0.0 - inbox ==0.2.0 - incipit-base ==0.6.1.1 - incipit-core ==0.6.1.1 @@ -1397,6 +1492,7 @@ default-package-overrides: - indexed-transformers ==0.1.0.4 - indexed-traversable ==0.1.4 - indexed-traversable-instances ==0.1.2 + - inf-backprop ==0.1.1.0 - infer-license ==0.2.0 - infinite-list ==0.1.2 - influxdb ==1.9.3.2 @@ -1406,14 +1502,14 @@ default-package-overrides: - inline-c-cpp ==0.5.0.2 - input-parsers ==0.3.0.2 - insert-ordered-containers ==0.2.7 - - inspection-testing ==0.5.0.3 + - inspection-testing ==0.6.2 - int-cast ==0.2.0.0 - int-supply ==1.0.0 - integer-conversion ==0.1.1 - integer-logarithms ==1.0.4 - - integer-roots ==1.0.2.0 - - integer-types ==0.1.4.1 + - integer-roots ==1.0.3.0 - integration ==0.2.1 + - intermediate-structures ==0.1.2.0 - intern ==0.9.6 - interpolate ==0.2.1 - interpolatedstring-perl6 ==1.0.2 @@ -1442,6 +1538,7 @@ default-package-overrides: - ipython-kernel ==0.11.0.0 - irc ==0.6.1.1 - irc-ctcp ==0.1.3.1 + - iri ==0.5.1.1 - isbn ==1.1.0.5 - islink ==0.1.0.0 - iso3166-country-codes ==0.20140203.8 @@ -1461,35 +1558,34 @@ default-package-overrides: - js-chart ==2.9.4.1 - js-dgtable ==0.5.2 - js-flot ==0.8.3 - - js-jquery ==3.3.1 + - js-jquery ==3.7.1 - jsaddle ==0.9.9.3 - jsaddle-dom ==0.9.9.2 + - jsaddle-warp ==0.9.9.5 - json ==0.11 - json-feed ==2.0.0.15 - json-rpc ==1.1.2 - json-spec ==1.1.1.2 - json-spec-elm ==0.4.0.6 - - json-spec-elm-servant ==0.4.3.0 - - json-spec-openapi ==1.0.1.1 + - json-spec-elm-servant ==0.4.4.1 + - json-spec-openapi ==1.0.1.3 - json-stream ==0.4.6.0 - jsonifier ==0.2.1.3 - jsonpath ==0.3.0.0 - JuicyCairo ==0.1.0.1 - JuicyPixels ==3.3.9 - JuicyPixels-extra ==0.6.0 - - JuicyPixels-scale-dct ==0.1.2 - junit-xml ==0.1.0.4 - justified-containers ==0.3.0.0 - kan-extensions ==5.2.7 - kansas-comet ==0.4.3 - - katip ==0.8.8.2 + - katip ==0.8.8.4 - katip-logstash ==0.1.0.2 - katip-wai ==0.2.0.0 - kazura-queue ==0.1.0.4 - kdt ==0.2.6 - keep-alive ==0.2.1.0 - - keter ==2.1.9 - - keuringsdienst ==1.0.2.2 + - keter ==2.1.10 - keycode ==0.2.3 - keyed-vals ==0.2.3.2 - keyed-vals-hspec-tests ==0.2.3.2 @@ -1498,36 +1594,37 @@ default-package-overrides: - keys ==3.12.4 - ki ==1.0.1.2 - ki-unlifted ==1.0.0.2 - - kind-apply ==0.4.0.0 + - kind-apply ==0.4.0.1 - kind-generics ==0.5.0.0 - kmeans ==0.1.3 - knob ==0.2.2 - koji ==0.0.2 - - koji-tool ==1.2 + - koji-tool ==1.3 - kvitable ==1.1.0.1 - labels ==0.3.3 - lackey ==2.0.0.11 + - lambdabot-core ==5.3.1.2 + - lambdabot-irc-plugins ==5.3.1.2 + - LambdaHack ==0.11.0.1 - lame ==0.2.2 - language-avro ==0.1.4.0 + - language-bash ==0.11.1 - language-c ==0.10.0 - language-c-quote ==0.13.0.2 - language-c99 ==0.2.0 - language-c99-simple ==0.3.0 - language-c99-util ==0.2.0 - - language-docker ==13.0.0 + - language-docker ==14.0.1 - language-dot ==0.1.2 - language-glsl ==0.3.0 - language-java ==0.2.9 - language-javascript ==0.7.1.0 - language-lua ==0.11.0.2 - language-protobuf ==1.0.1 - - language-thrift ==0.13.0.0 - - lapack ==0.5.2 - lapack-carray ==0.0.3 - lapack-comfort-array ==0.0.1.1 - lapack-ffi ==0.0.3 - lapack-ffi-tools ==0.1.3.2 - - lapack-hmatrix ==0.0.0.2 - large-hashable ==0.1.2.0 - largeword ==1.2.5 - latex ==0.1.0.4 @@ -1536,10 +1633,9 @@ default-package-overrides: - lawful-conversions ==0.1.7 - lazy-csv ==0.5.1 - lazyio ==0.1.0.4 - - lazyppl ==1.0 - lazysmallcheck ==0.6 - lca ==0.4 - - leancheck ==1.0.2 + - leancheck ==1.0.4 - leancheck-instances ==0.0.8 - leapseconds-announced ==2017.1.0.1 - learn-physics ==0.6.7 @@ -1563,32 +1659,38 @@ default-package-overrides: - libffi ==0.2.1 - libmpd ==0.10.0.1 - liboath-hs ==0.0.1.2 + - libsodium-bindings ==0.0.3.0 - libyaml ==0.1.4 - libyaml-clib ==0.2.5 - lift-generics ==0.3 - lift-type ==0.1.2.0 - lifted-async ==0.10.2.7 - lifted-base ==0.2.3.12 + - lifted-threads ==1.0 - linear ==1.23.2 - - linear-base ==0.4.0 - - linear-circuit ==0.1.0.4 + - linear-base ==0.5.0 - linear-generics ==0.2.3 + - linear-geo ==0.1.0.0 - linear-programming ==0.0.1 - linebreak ==1.1.0.4 - linux-capabilities ==0.1.1.0 - linux-file-extents ==0.2.0.1 - - linux-namespaces ==0.1.3.1 + - linux-namespaces ==0.2.0.1 + - liquid-fixpoint ==0.9.6.3.2 + - liquidhaskell ==0.9.10.1.2 + - liquidhaskell-boot ==0.9.10.1.2 - List ==0.6.2 - list-predicate ==0.1.0.1 - list-shuffle ==1.0.0.1 - list-t ==1.0.5.7 - list-transformer ==1.1.1 - list-witnesses ==0.1.4.1 - - ListLike ==4.7.8.3 + - ListLike ==4.7.8.4 + - lists-flines ==0.1.3.0 - listsafe ==0.1.0.1 - ListTree ==0.2.3 - ListZipper ==1.2.0.2 - - literatex ==0.3.0.0 + - literatex ==0.4.0.0 - lmdb ==0.2.5 - load-env ==0.2.1.0 - locators ==0.3.0.5 @@ -1599,7 +1701,7 @@ default-package-overrides: - logfloat ==0.14.0 - logger-thread ==0.1.0.2 - logging ==3.0.6 - - logging-effect ==1.4.0 + - logging-effect ==1.4.1 - logging-facade ==0.3.1 - logging-facade-syslog ==1 - logict ==0.8.2.0 @@ -1608,9 +1710,9 @@ default-package-overrides: - lpeg ==1.1.0 - LPFP ==1.1.5 - LPFP-core ==1.1.5 + - lr-acts ==0.0.1 - lrucache ==1.2.0.1 - - lrucaching ==0.3.4 - - lsql-csv ==0.1.0.6 + - lsfrom ==2.0 - lua ==2.3.3 - lua-arbitrary ==1.0.1.1 - lucid ==2.11.20250303 @@ -1620,27 +1722,31 @@ default-package-overrides: - lukko ==0.1.2 - lumberjack ==1.0.3.0 - lz4 ==0.2.3.1 + - lz4-frame-conduit ==0.1.0.2 - lzma ==0.0.1.1 - lzma-clib ==5.2.2 - machines ==0.7.4 - magic ==1.1 - - magico ==0.0.2.3 + - mail-pool ==2.3.1 - mailtrap ==0.1.2.2 - main-tester ==0.2.0.1 - mainland-pretty ==0.7.1.1 - managed ==1.0.10 + - mandrill ==0.5.8.0 + - manifolds-core ==0.6.1.1 + - Mantissa ==0.1.0.0 - map-syntax ==0.3 - - mappings ==0.3.1.0 + - mappings ==0.3.2.0 - markdown ==0.1.17.5 - markdown-unlit ==0.6.0 - markov-chain ==0.0.3.4 - markov-chain-usage-model ==0.0.0 - - markup-parse ==0.1.1.1 + - markup-parse ==0.2.1.0 - massiv ==1.0.5.0 - massiv-io ==1.0.0.1 - massiv-serialise ==1.0.0.2 - massiv-test ==1.1.0.1 - - matchable ==0.1.2.1 + - matchable ==0.2 - math-extras ==0.1.1.0 - math-functions ==0.3.4.4 - mathexpr ==0.3.1.0 @@ -1655,17 +1761,19 @@ default-package-overrides: - mbox-utility ==0.0.3.1 - mcmc ==0.8.3.1 - mcmc-types ==1.0.3 - - mealy ==0.5.0.0 + - mcp-server ==0.1.0.15 + - mealy ==0.5.0.1 - med-module ==0.1.3 - median-stream ==0.7.0.0 - - megaparsec ==9.6.1 - - megaparsec-tests ==9.6.1 + - megaparsec ==9.7.0 + - megaparsec-tests ==9.7.0 - melf ==1.3.1 - - mem-info ==0.3.1.0 + - mem-info ==0.4.1.1 - membership ==0.0.1 - memcache ==0.3.0.2 - memory ==0.18.0 - MemoTrie ==0.6.11 + - mempack ==0.1.2.0 - mergeful ==0.3.0.0 - mergeful-persistent ==0.3.0.1 - mergeless ==0.4.0.0 @@ -1676,13 +1784,13 @@ default-package-overrides: - messagepack ==0.5.5 - metrics ==0.4.1.1 - mfsolve ==0.3.2.2 - - microaeson ==0.1.0.2 - - microlens ==0.4.13.1 + - microaeson ==0.1.0.3 + - microlens ==0.4.14.0 - microlens-aeson ==2.5.2 - microlens-contra ==0.1.0.3 - - microlens-ghc ==0.4.14.3 - - microlens-mtl ==0.2.0.3 - - microlens-platform ==0.4.3.6 + - microlens-ghc ==0.4.15.1 + - microlens-mtl ==0.2.1.0 + - microlens-platform ==0.4.4.1 - microlens-th ==0.4.3.17 - microspec ==0.2.1.3 - microstache ==1.0.3 @@ -1694,12 +1802,13 @@ default-package-overrides: - mime-mail ==0.5.1 - mime-mail-ses ==0.4.3 - mime-types ==0.1.2.0 - - min-max-pqueue ==0.1.0.2 - minimal-configuration ==0.1.4 - minimorph ==0.3.0.1 + - minisat ==0.1.4 - minisat-solver ==0.1 - miniterion ==0.1.1.1 - miniutter ==0.5.1.2 + - minmax ==0.1.1.0 - mintty ==0.1.4 - misfortune ==0.1.2.1 - miso ==1.8.7.0 @@ -1711,18 +1820,23 @@ default-package-overrides: - mmark-cli ==0.0.5.2 - mmark-ext ==0.2.1.5 - mmorph ==1.2.1 + - mmsyn2-array ==0.3.1.1 + - mmsyn7l ==0.9.2.0 + - mmsyn7ukr-array ==0.3.0.0 + - mmsyn7ukr-common ==0.3.1.0 - mnist-idx ==0.1.3.2 - mnist-idx-conduit ==0.4.0.0 - mockcat ==0.5.2.0 - mockery ==0.3.5 - - mod ==0.2.0.1 + - mod ==0.2.1.0 - modern-uri ==0.3.6.1 - modular ==0.1.0.8 - moffy ==0.1.1.0 - moffy-samples ==0.1.0.3 - moffy-samples-events ==0.2.2.5 - - monad-bayes ==1.3.0.4 - - monad-chronicle ==1.0.2 + - moffy-samples-gtk3 ==0.1.0.0 + - moffy-samples-gtk3-run ==0.1.0.7 + - monad-chronicle ==1.1 - monad-control ==1.0.3.1 - monad-control-aligned ==0.0.2.1 - monad-control-identity ==0.2.0.0 @@ -1730,7 +1844,8 @@ default-package-overrides: - monad-extras ==0.6.0 - monad-interleave ==0.2.0.1 - monad-logger ==0.3.42 - - monad-logger-aeson ==0.4.1.3 + - monad-logger-aeson ==0.4.1.4 + - monad-logger-extras ==0.1.1.2 - monad-logger-json ==0.1.0.0 - monad-logger-logstash ==0.2.0.2 - monad-logger-syslog ==0.1.6.1 @@ -1747,25 +1862,28 @@ default-package-overrides: - monad-time ==0.4.0.0 - monadlist ==0.0.2 - monadoid ==0.0.3 - - monadology ==0.3 + - monadology ==0.4 - MonadPrompt ==1.0.0.5 - MonadRandom ==0.6.2 - monads-tf ==0.3.0.1 - mongoDB ==2.7.1.4 - mono-traversable ==1.0.21.0 - mono-traversable-instances ==0.1.1.0 - - mono-traversable-keys ==0.3.0 - - monoid-extras ==0.6.5 + - monoid-extras ==0.7 + - monoid-insertleft ==0.1.0.1 + - monoid-map ==0.2.0.1 - monoid-subclasses ==1.2.6 - monoid-transformer ==0.0.4 - monoidal-containers ==0.6.6.0 - monoidal-functors ==0.2.3.0 - - monoidmap ==0.0.4.3 + - monoidmap ==0.0.4.4 + - monoidmap-aeson ==0.0.0.6 + - monoidmap-examples ==0.0.0.1 + - monoidmap-internal ==0.0.0.1 + - monoidmap-quickcheck ==0.0.0.3 - more-containers ==0.2.2.2 - - morpheus-graphql ==0.28.1 - morpheus-graphql-app ==0.28.1 - morpheus-graphql-client ==0.28.1 - - morpheus-graphql-code-gen ==0.28.1 - morpheus-graphql-code-gen-utils ==0.28.1 - morpheus-graphql-core ==0.28.1 - morpheus-graphql-server ==0.28.1 @@ -1776,11 +1894,11 @@ default-package-overrides: - mpi-hs-binary ==0.1.1.0 - mpi-hs-cereal ==0.1.0.0 - msgpack ==1.0.1.0 + - mstate ==0.2.11 - mt19937 ==0.1.1 - mtl-compat ==0.2.2 - mtl-misc-yj ==0.1.0.4 - mtl-prelude ==2.0.3.2 - - multi-containers ==0.2 - multiarg ==0.30.0.10 - multimap ==1.2.1 - multipart ==0.2.1 @@ -1797,8 +1915,6 @@ default-package-overrides: - mx-state-codes ==1.0.0.0 - myers-diff ==0.3.0.2 - mysql ==0.2.1 - - mysql-haskell ==1.1.6 - - mysql-haskell-nem ==0.1.0.0 - mysql-json-table ==0.1.4.1 - mysql-simple ==0.4.9 - n-tuple ==0.0.3 @@ -1809,30 +1925,31 @@ default-package-overrides: - named-text ==1.2.1.0 - names-th ==0.3.0.1 - nano-erl ==0.1.0.1 - - NanoID ==3.4.0.2 + - NanoID ==3.4.1.1 - nanospec ==0.2.2 - - nanovg ==0.8.1.0 - nats ==1.1.2 - natural-arithmetic ==0.2.3.0 - natural-induction ==0.2.0.0 - natural-sort ==0.1.2 - natural-transformation ==0.4.1 - neat-interpolation ==0.5.1.4 + - nerd-font-icons ==0.1.0.0 - netcode-io ==0.0.3 - netlib-carray ==0.1 - netlib-comfort-array ==0.0.0.2 - netlib-ffi ==0.1.2 - netpbm ==1.0.4 - - netrc ==0.2.0.1 + - netrc ==0.2.0.2 - nettle ==0.3.1.1 - netwire ==5.0.3 - netwire-input ==0.0.7 - netwire-input-glfw ==0.0.12 - - network ==3.2.7.0 + - network ==3.2.8.0 - network-bsd ==2.8.1.0 - network-byte-order ==0.1.7 - network-conduit-tls ==1.4.0.1 - network-control ==0.1.7 + - network-house ==0.1.0.3 - network-info ==0.2.1 - network-ip ==0.3.0.3 - network-messagepack-rpc ==0.1.2.0 @@ -1851,8 +1968,9 @@ default-package-overrides: - nfc ==0.1.1 - nicify-lib ==1.0.1 - NineP ==0.0.2.1 - - nix-derivation ==1.1.3 + - nix-narinfo ==0.1.1.2 - nix-paths ==1.0.1 + - no-recursion ==0.1.2.3 - no-value ==1.0.0.0 - NoHoed ==0.1.1 - non-empty ==0.3.5 @@ -1865,37 +1983,52 @@ default-package-overrides: - nonempty-vector ==0.2.4 - nonempty-zipper ==1.0.1.1 - normaldistribution ==1.1.0.3 - - nothunks ==0.3.0.0 + - nothunks ==0.3.1 - nowdoc ==0.1.1.0 - - nqe ==0.6.6 - nsis ==0.3.3 - numbers ==3000.2.0.2 - numeric-extras ==0.1 - numeric-limits ==0.1.0.0 - numeric-prelude ==0.4.4 - numeric-quest ==0.2.0.2 - - numhask ==0.12.1.0 - - numhask-array ==0.11.1.0 - - numhask-space ==0.11.1.0 + - numhask ==0.13.1.0 + - numhask-space ==0.13.1.0 - NumInstances ==1.4 - numtype-dk ==0.5.0.3 - - nuxeo ==0.3.2 - nvim-hs ==2.3.2.4 - nvim-hs-contrib ==2.0.0.2 - nvim-hs-ghcid ==2.0.1.0 - - nvvm ==0.10.0.1 - o-clock ==1.4.0.1 - ObjectName ==1.1.0.2 - oblivious-transfer ==0.1.0 - odbc ==0.3.0 - - ods2csv ==0.1.0.1 + - ods2csv ==0.1.0.2 + - oeis ==0.3.10.1 - oeis2 ==1.0.9 - ofx ==0.4.4.0 + - ogma-cli ==1.7.0 + - ogma-core ==1.7.0 + - ogma-extra ==1.7.0 + - ogma-language-c ==1.7.0 + - ogma-language-copilot ==1.7.0 + - ogma-language-csv ==1.7.0 + - ogma-language-jsonspec ==1.7.0 + - ogma-language-lustre ==1.7.0 + - ogma-language-smv ==1.7.0 + - ogma-language-xlsx ==1.7.0 + - ogma-language-xmlspec ==1.7.0 + - ogma-spec ==1.7.0 - old-locale ==1.0.0.7 - old-time ==1.1.0.4 - - ollama-haskell ==0.1.3.0 - - om-elm ==2.0.1.0 + - ollama-haskell ==0.2.0.0 + - om-doh ==0.1.0.4 + - om-elm ==2.0.1.1 + - om-fail ==0.1.0.6 + - om-fork ==0.7.1.12 + - om-http ==0.5.0.1 + - om-logging ==1.1.0.10 - om-show ==0.1.2.11 + - om-time ==0.3.1.1 - once ==0.4 - one-liner ==2.1 - one-liner-instances ==0.1.3.0 @@ -1903,9 +2036,9 @@ default-package-overrides: - Only ==0.1 - oo-prototypes ==0.1.0.0 - oops ==0.2.0.1 - - opaleye ==0.10.5.0 - - open-browser ==0.2.1.1 - - open-witness ==0.6 + - opaleye ==0.10.7.0 + - open-browser ==0.4.0.0 + - open-witness ==0.7 - OpenAL ==1.7.0.5 - openapi3 ==3.2.4 - openexr-write ==0.1.0.2 @@ -1920,14 +2053,14 @@ default-package-overrides: - opentelemetry-wai ==0.8.0 - operational ==0.2.4.2 - opml-conduit ==0.9.0.0 - - opt-env-conf ==0.8.0.0 + - opt-env-conf ==0.9.0.0 - optics ==0.4.2.1 - optics-core ==0.4.1.1 - optics-extra ==0.4.2.1 - optics-operators ==0.1.0.1 - optics-th ==0.4.1 - optics-vl ==0.2.1 - - optima ==0.4.0.5 + - optima ==0.4.0.7 - optional-args ==1.0.2 - options ==1.2.1.2 - optparse-applicative ==0.18.1.0 @@ -1937,8 +2070,6 @@ default-package-overrides: - optparse-text ==0.1.1.0 - ordered-containers ==0.2.4 - OrderedBits ==0.0.2.0 - - ormolu ==0.7.4.0 - - os-string ==2.0.7 - overhang ==1.0.0 - packcheck ==0.7.1 - pager ==0.1.1.0 @@ -1946,9 +2077,9 @@ default-package-overrides: - pagure ==0.2.1 - pagure-cli ==0.2.2 - palette ==0.3.0.4 - - pandoc ==3.6 - - pandoc-cli ==3.6 - - pandoc-lua-engine ==0.4.1.1 + - pandoc ==3.7.0.2 + - pandoc-cli ==3.7.0.2 + - pandoc-lua-engine ==0.4.3 - pandoc-lua-marshal ==0.3.1 - pandoc-plot ==1.9.1 - pandoc-server ==0.1.0.11 @@ -1961,6 +2092,7 @@ default-package-overrides: - parallel-io ==0.3.5 - parameterized ==0.5.0.0 - parameterized-utils ==2.1.10.0 + - paramtree ==0.1.2 - park-bench ==0.1.1.0 - parseargs ==0.2.0.9 - parsec-class ==1.0.1.0 @@ -1969,16 +2101,18 @@ default-package-overrides: - ParsecTools ==0.0.2.0 - parser-combinators ==1.3.0 - parser-combinators-tests ==1.3.0 + - parser-regex ==0.3.0.0 - parsers ==0.12.12 - partial-handler ==1.0.3 - partial-isomorphisms ==0.2.4.0 - - partial-order ==0.2.0.0 - - partialord ==0.0.2 + - partialord ==0.1.1 - password ==3.1.0.1 - password-instances ==3.0.0.0 - password-types ==1.0.0.0 - - path ==0.9.5 + - patch ==0.0.8.4 + - path ==0.9.6 - path-binary-instance ==0.1.0.1 + - path-dhall-instance ==0.2.1.0 - path-extensions ==0.1.1.0 - path-extra ==0.3.1 - path-io ==1.8.2 @@ -1988,7 +2122,7 @@ default-package-overrides: - pathtype ==0.8.1.3 - pathwalk ==0.3.1.2 - patience ==0.3 - - patrol ==1.0.1.0 + - patrol ==1.1.0.0 - pava ==0.1.1.4 - pcg-random ==0.1.4.0 - pcre-heavy ==1.0.0.4 @@ -1999,36 +2133,35 @@ default-package-overrides: - pdf-toolbox-content ==0.1.2 - pdf-toolbox-core ==0.1.3 - pdf-toolbox-document ==0.1.4 - - peano ==0.1.0.2 + - peano ==0.1.0.3 - pedersen-commitment ==0.2.0 - pem ==0.2.4 - percent-format ==0.0.4 - - perf ==0.13.0.0 + - perf ==0.14.0.3 - perfect-hash-generator ==1.0.0 - persistable-record ==0.6.0.6 - persistable-types-HDBC-pg ==0.0.3.5 - - persistent ==2.14.6.3 + - persistent ==2.17.1.0 - persistent-discover ==0.1.0.7 - persistent-documentation ==0.1.0.6 - persistent-lens ==1.0.0 - persistent-mongoDB ==2.13.1.0 - - persistent-mtl ==0.5.1 + - persistent-mtl ==0.5.2 - persistent-mysql ==2.13.1.5 - persistent-pagination ==0.1.1.2 - - persistent-postgresql ==2.13.6.2 - - persistent-qq ==2.12.0.6 + - persistent-postgresql ==2.13.7.0 + - persistent-qq ==2.12.0.7 - persistent-redis ==2.13.0.2 - - persistent-sqlite ==2.13.3.0 + - persistent-sqlite ==2.13.3.1 - persistent-template ==2.12.0.0 - - persistent-test ==2.13.1.3 + - persistent-test ==2.13.2.0 - persistent-typed-db ==0.1.0.7 - - pfile ==0.1.0.1 - pg-harness-client ==0.6.0 - pg-transact ==0.3.2.0 - phantom-state ==0.2.1.5 - - phatsort ==0.6.0.0 - pid1 ==0.1.3.1 - pinch ==0.5.2.0 + - pinecone ==1.0.0 - pipes ==4.3.16 - pipes-aeson ==0.4.2 - pipes-attoparsec ==0.6.0 @@ -2040,6 +2173,7 @@ default-package-overrides: - pipes-fastx ==0.3.0.0 - pipes-fluid ==0.6.0.1 - pipes-group ==1.0.12 + - pipes-http ==1.0.6 - pipes-mongodb ==0.1.0.0 - pipes-ordered-zip ==1.2.1 - pipes-parse ==3.0.9 @@ -2066,6 +2200,8 @@ default-package-overrides: - polysemy-fs ==0.1.0.0 - polysemy-plugin ==0.4.5.3 - polysemy-webserver ==0.2.1.2 + - pontarius-xmpp ==0.5.7.2 + - pontarius-xmpp-extras ==0.1.0.12 - pooled-io ==0.0.2.3 - port-utils ==0.2.1.0 - portable-lines ==0.1 @@ -2074,19 +2210,18 @@ default-package-overrides: - possibly ==1.0.0.0 - post-mess-age ==0.2.1.0 - postgres-options ==0.2.2.0 - - postgresql-binary ==0.14.0.1 + - postgresql-binary ==0.14.2 - postgresql-libpq ==0.11.0.0 - postgresql-libpq-configure ==0.11 - postgresql-libpq-notify ==0.2.0.0 - postgresql-migration ==0.2.1.8 - postgresql-schema ==0.1.14 - - postgresql-simple ==0.7.0.0 - - postgresql-simple-url ==0.2.1.0 - - postgresql-syntax ==0.4.1.2 + - postgresql-simple ==0.7.0.1 + - postgresql-syntax ==0.4.1.3 - postgresql-typed ==0.6.2.5 - pptable ==0.3.0.0 - pqueue ==1.5.0.0 - - prairie ==0.0.4.0 + - prairie ==0.1.0.0 - pred-set ==0.0.1 - prefix-units ==0.3.0.1 - prelude-compat ==0.0.0.2 @@ -2098,7 +2233,7 @@ default-package-overrides: - pretty-simple ==4.1.3.0 - pretty-sop ==0.2.0.3 - pretty-terminal ==0.1.0.0 - - prettychart ==0.2.2.0 + - prettychart ==0.3.0.2 - prettyclass ==1.0.0.0 - prettyprinter ==1.7.1 - prettyprinter-ansi-terminal ==1.1.3 @@ -2116,9 +2251,10 @@ default-package-overrides: - primitive-offset ==0.2.0.1 - primitive-serial ==0.1 - primitive-unaligned ==0.1.1.2 - - primitive-unlifted ==2.1.0.0 + - primitive-unlifted ==2.2.0.0 - print-console-colors ==0.1.0.0 - probability ==0.2.8 + - probability-polynomial ==1.0.0.1 - process-extras ==0.7.4 - product-isomorphic ==0.0.3.4 - product-profunctors ==0.11.1.1 @@ -2129,12 +2265,12 @@ default-package-overrides: - prometheus-client ==1.1.1 - prometheus-metrics-ghc ==1.0.1.2 - promises ==0.3 + - prompt-hs ==1.0.3.1 - prospect ==0.1.0.0 - proto-lens ==0.7.1.6 - - proto-lens-arbitrary ==0.1.2.14 - proto-lens-optparse ==0.1.1.13 - - proto-lens-protobuf-types ==0.7.2.1 - - proto-lens-protoc ==0.8.0.1 + - proto-lens-protobuf-types ==0.7.2.2 + - proto-lens-protoc ==0.9.0.0 - proto-lens-runtime ==0.7.0.7 - proto-lens-setup ==0.4.0.9 - protobuf ==0.2.1.3 @@ -2143,30 +2279,35 @@ default-package-overrides: - protocol-radius-test ==0.1.0.1 - protolude ==0.3.5 - proxied ==0.3.2 + - pseudo-boolean ==0.1.12.0 - psql-helpers ==0.1.0.0 - - PSQueue ==1.2.1 - - psqueues ==0.2.8.1 + - PSQueue ==1.2.2 + - psqueues ==0.2.8.2 - pthread ==0.2.1 - ptr ==0.16.8.7 - ptr-poker ==0.1.2.16 - pulse-simple ==0.1.14 - pureMD5 ==2.1.4 + - puresat ==0.1 - purescript-bridge ==0.15.0.0 - - pusher-http-haskell ==2.1.0.20 + - pusher-http-haskell ==2.1.0.21 - pvar ==1.0.0.0 - pwstore-fast ==2.4.4 - PyF ==0.11.4.0 - qchas ==1.1.0.1 - quaalude ==0.0.0.1 - - quadratic-irrational ==0.1.1 + - quadratic-irrational ==0.1.2 + - quantizer ==0.4.0.0 - QuasiText ==0.1.2.6 + - queue-sheet ==0.8.0.1 - queues ==1.0.0 - quickbench ==1.0.1 - - QuickCheck ==2.14.3 + - QuickCheck ==2.15.0.1 - quickcheck-arbitrary-adt ==0.3.1.0 - quickcheck-assertions ==0.3.0 - quickcheck-classes ==0.6.5.0 - quickcheck-classes-base ==0.6.2.0 + - quickcheck-dynamic ==4.0.1 - quickcheck-groups ==0.0.1.5 - quickcheck-higherorder ==0.1.0.1 - quickcheck-instances ==0.3.33 @@ -2174,7 +2315,8 @@ default-package-overrides: - quickcheck-monoid-subclasses ==0.3.0.6 - quickcheck-quid ==0.0.1.8 - quickcheck-simple ==0.1.1.1 - - quickcheck-state-machine ==0.10.1 + - quickcheck-special ==0.1.0.6 + - quickcheck-state-machine ==0.10.2 - quickcheck-text ==0.1.2.1 - quickcheck-transformer ==0.3.1.2 - quickcheck-unicode ==1.0.1.0 @@ -2196,8 +2338,8 @@ default-package-overrides: - random-tree ==0.6.0.5 - range ==0.3.0.2 - range-set-list ==0.1.4 - - ranged-list ==0.1.2.1 - - Ranged-sets ==0.4.0 + - ranged-list ==0.1.2.3 + - Ranged-sets ==0.5.0 - ranges ==0.2.4 - rank1dynamic ==0.4.3 - rank2classes ==1.5.4 @@ -2208,14 +2350,14 @@ default-package-overrides: - ratel-wai ==2.0.0.10 - ratio-int ==0.1.2 - rattle ==0.2 - - rattletrap ==14.1.3 - - Rattus ==0.5.1.1 + - rattletrap ==14.1.4 - raw-strings-qq ==1.1 - rawfilepath ==1.1.1 - rawstring-qm ==0.2.3.1 - rcu ==0.2.7 - rdf ==0.1.0.8 - rdtsc ==1.3.0.1 + - re2 ==0.3 - reactive-balsa ==0.4.0.1 - reactive-banana ==1.3.2.0 - reactive-banana-bunch ==1.0.0.1 @@ -2227,11 +2369,11 @@ default-package-overrides: - real-dice ==0.1.0.5 - rebase ==1.21.2 - rec-def ==0.2.2 - - record-dot-preprocessor ==0.2.17 - record-hasfield ==1.0.1 + - recover-rtti ==0.5.1 - recursion-schemes ==5.2.3 - recv ==0.1.1 - - redact ==0.5.0.0 + - redact ==0.6.0.0 - reddit-scrape ==0.0.1 - redis-glob ==0.1.0.11 - redis-resp ==1.0.0 @@ -2240,7 +2382,12 @@ default-package-overrides: - ref-tf ==0.5.0.1 - refact ==0.3.0.2 - refined ==0.8.2 + - refined-containers ==0.1.2.0 - reflection ==2.1.9 + - reflex ==0.9.3.4 + - reflex-dom-core ==0.8.1.4 + - reflex-fsnotify ==0.3.0.2 + - reflex-gadt-api ==0.2.2.3 - RefSerialize ==0.4.0 - regex ==1.1.0.2 - regex-applicative ==0.3.4 @@ -2254,9 +2401,6 @@ default-package-overrides: - regex-with-pcre ==1.1.0.2 - registry ==0.6.3.2 - registry-aeson ==0.3.1.2 - - registry-hedgehog ==0.8.2.2 - - registry-hedgehog-aeson ==0.3.1.2 - - regression-simple ==0.2.1 - reinterpret-cast ==0.1.0 - relapse ==1.0.0.1 - relational-query ==0.12.3.1 @@ -2264,9 +2408,12 @@ default-package-overrides: - relational-record ==0.2.2.0 - relational-schemas ==0.1.8.1 - reliable-io ==0.0.2 - - relude ==1.2.2.0 + - relude ==1.2.2.2 - renderable ==0.2.0.1 - reorder-expression ==0.1.0.2 + - repa ==3.4.2.0 + - repa-algorithms ==3.4.2.0 + - repa-io ==3.4.2.0 - replace-attoparsec ==1.5.0.0 - replace-megaparsec ==1.5.0.1 - repline ==0.4.3.0 @@ -2275,22 +2422,23 @@ default-package-overrides: - rerebase ==1.21.2 - rerefined ==0.8.0 - reroute ==0.7.0.0 - - resistor-cube ==0.0.1.4 - - resolv ==0.2.0.2 + - resolv ==0.2.0.3 - resource-pool ==0.4.0.0 - resourcet ==1.3.0 - rest-rewrite ==0.4.5 - result ==0.2.6.0 - retry ==0.9.3.1 + - rev-scientific ==0.2.1.0 - rev-state ==0.2.0.1 - rex ==0.6.2 - rfc1751 ==0.1.4 - rfc5051 ==0.2 - rg ==1.4.0.0 + - rhbzquery ==0.4.5 - rhine ==1.5 - - rhine-bayes ==1.5 - rhine-gloss ==1.5 - rhine-terminal ==1.5 + - rhythmic-sequences ==0.8.0.0 - riak-protobuf ==0.25.0.0 - richenv ==0.1.0.3 - rio ==0.1.22.0 @@ -2314,12 +2462,10 @@ default-package-overrides: - rrb-vector ==0.2.2.1 - RSA ==2.4.1 - rss ==3000.2.0.8 - - rss-conduit ==0.6.0.1 - - run-haskell-module ==0.0.2 - run-st ==0.1.3.3 - runmemo ==1.0.0.1 - rvar ==0.3.0.2 - - rzk ==0.7.5 + - rzk ==0.7.6 - s-cargot ==0.1.6.0 - s3-signer ==0.5.0.0 - safe ==0.3.21 @@ -2334,26 +2480,27 @@ default-package-overrides: - safe-gen ==1.0.1 - safe-json ==1.2.1.0 - safe-money ==0.9.1 - - safecopy ==0.10.4.2 + - safecopy ==0.10.4.3 - safeio ==0.0.6.0 - SafeSemaphore ==0.10.1 + - saltine ==0.2.2.0 - salve ==2.0.0.8 - sample-frame ==0.0.4 - sample-frame-np ==0.0.5 - sampling ==0.3.5 - samsort ==0.1.0.0 - sandi ==0.5 - - sandwich ==0.3.0.4 + - sandwich ==0.3.0.5 - sandwich-contexts ==0.3.0.3 - sandwich-hedgehog ==0.1.3.1 - - sandwich-quickcheck ==0.1.0.7 + - sandwich-quickcheck ==0.2.0.0 - sandwich-slack ==0.1.2.0 - sandwich-webdriver ==0.3.0.1 - - saturn ==1.0.0.8 + - saturn ==1.0.0.9 - say ==0.1.0.1 - sayable ==1.2.5.0 - - sbp ==6.2.1 - - sbv ==11.0 + - sbp ==6.2.2 + - sbv ==11.7 - scalpel ==0.6.2.2 - scalpel-core ==0.6.2.2 - scanf ==0.1.0.0 @@ -2364,10 +2511,16 @@ default-package-overrides: - scientist ==0.0.0.0 - scotty ==0.22 - scrypt ==0.5.0 + - sdl2 ==2.5.5.1 + - sdl2-gfx ==0.3.0.0 + - sdl2-image ==2.1.0.0 + - sdl2-mixer ==1.2.0.0 + - sdl2-ttf ==2.1.3 - search-algorithms ==0.3.4 - secp256k1-haskell ==1.4.6 - securemem ==0.1.10 - - select-rpms ==0.2.0 + - sel ==0.1.0.0 + - select-rpms ==0.3.1 - selections ==0.3.0.0 - selective ==0.7.0.1 - semialign ==1.3.1 @@ -2381,8 +2534,8 @@ default-package-overrides: - seqalign ==0.2.0.4 - seqid ==0.6.3 - seqid-streams ==0.7.2 - - sequence-formats ==1.10.0.0 - - sequenceTools ==1.5.3.1 + - sequence-formats ==1.11.0.2 + - sequenceTools ==1.6.0.0 - serialise ==0.2.6.1 - servant ==0.20.3.0 - servant-auth ==0.4.2.0 @@ -2411,7 +2564,6 @@ default-package-overrides: - servant-multipart-client ==0.12.2 - servant-openapi3 ==2.0.1.6 - servant-pipes ==0.16.1 - - servant-quickcheck ==0.1.1.0 - servant-rate-limit ==0.2.0.0 - servant-rawm ==1.0.0.0 - servant-server ==0.20.3.0 @@ -2419,37 +2571,37 @@ default-package-overrides: - servant-swagger ==1.2.1 - servant-swagger-ui ==0.3.5.5.0.1 - servant-swagger-ui-core ==0.3.5 + - servant-swagger-ui-redoc ==0.3.5 - servant-websockets ==2.0.0 - servant-xml ==1.0.3 - serversession ==1.0.3 - serversession-backend-acid-state ==1.0.5 - - serversession-backend-persistent ==2.0.3 - serversession-backend-redis ==1.0.5 - serversession-frontend-wai ==1.0.1 - serversession-frontend-yesod ==1.0.1 - servius ==1.2.3.0 - ses-html ==0.4.0.0 - set-cover ==0.1.1.1 - - set-monad ==0.3.0.0 - setenv ==0.1.1.3 - setlocale ==1.0.0.10 - sexp-grammar ==2.3.4.2 - SHA ==1.6.4.4 - shake ==0.19.8 - shake-plus ==0.3.4.0 - - shakespeare ==2.1.4 + - shakespeare ==2.1.0.1 - shakespeare-text ==1.1.0 - shared-memory ==0.2.0.1 - shell-conduit ==5.0.0 - shell-escape ==0.2.0 - shell-utility ==0.1 - - shellify ==0.11.0.4 + - shellify ==0.14.0.2 - shellmet ==0.0.5.0 - shelltestrunner ==1.10 - - shellwords ==0.1.4.3 - - shelly ==1.12.1 + - shellwords ==0.1.4.4 + - shelly ==1.12.1.1 - should-not-typecheck ==2.1.0 - show-combinators ==0.2.0.0 + - shower ==0.2.0.4 - siggy-chardust ==1.0.0 - signal ==0.1.0.4 - silently ==1.2.5.4 @@ -2462,6 +2614,7 @@ default-package-overrides: - simple-expr ==0.1.1.0 - simple-media-timestamp ==0.2.1.0 - simple-media-timestamp-attoparsec ==0.1.0.0 + - simple-pango ==0.1.0.2 - simple-prompt ==0.2.3 - simple-reflect ==0.3.3 - simple-sendfile ==0.2.32 @@ -2473,33 +2626,42 @@ default-package-overrides: - singleton-bool ==0.1.8 - singleton-nats ==0.4.7 - singletons ==3.0.4 - - singletons-base ==3.3 - - singletons-presburger ==0.7.4.0 - - singletons-th ==3.3 + - singletons-base ==3.4 + - singletons-presburger ==0.7.4.1 + - singletons-th ==3.4 - Sit ==0.2023.8.3 - sitemap-gen ==0.1.0.0 - size-based ==0.1.3.3 - sized ==1.1.0.2 - skein ==1.0.9.4 + - skeletest ==0.2.1 - skews ==0.1.0.3 - skip-var ==0.1.1.0 - - skylighting ==0.14.5 - - skylighting-core ==0.14.5 + - skylighting ==0.14.7 + - skylighting-core ==0.14.7 - skylighting-format-ansi ==0.1 - skylighting-format-blaze-html ==0.1.1.3 - skylighting-format-context ==0.1.0.2 - skylighting-format-latex ==0.1 + - skylighting-format-typst ==0.1 + - slack-web ==2.2.0.0 - slave-thread ==1.1.0.3 - slick ==1.3.1.0 - slist ==0.2.1.0 - slynx ==0.8.0.0 - smallcheck ==1.2.1.1 + - smith ==0.2.0.0 + - smtlib-backends ==0.4 + - smtlib-backends-process ==0.3 + - smtlib-backends-tests ==0.3 - smtp-mail ==0.5.0.0 - snap ==1.1.3.3 - snap-blaze ==0.2.1.5 - snap-core ==1.0.5.1 - snap-server ==1.1.2.1 + - snappy ==0.2.0.4 - snowflake ==0.1.1.1 + - socket ==0.8.3.0 - socks ==0.6.1 - solana-staking-csvs ==0.1.3.0 - some ==1.0.6 @@ -2511,6 +2673,8 @@ default-package-overrides: - sourcemap ==0.1.7 - sox ==0.2.3.2 - soxlib ==0.0.3.2 + - spacecookie ==1.0.0.3 + - spdx ==1.1 - special-values ==0.1.0.0 - speculate ==0.4.20 - specup ==0.2.0.6 @@ -2521,7 +2685,7 @@ default-package-overrides: - split ==0.2.5 - split-record ==0.1.1.4 - splitmix ==0.1.3.1 - - splitmix-distributions ==1.0.0 + - splitmix-distributions ==1.1.0 - Spock-api ==0.14.0.0 - spoon ==0.3.1 - spreadsheet ==0.1.3.10 @@ -2530,9 +2694,9 @@ default-package-overrides: - sqlite-simple ==0.4.19.0 - squeather ==0.8.0.0 - srcloc ==0.6.0.1 - - srtree ==2.0.0.2 + - srtree ==2.0.1.5 - stache ==2.3.4 - - stack-all ==0.6.4 + - stack-all ==0.7.1 - stack-clean-old ==0.5.1 - stack-templatizer ==0.1.1.0 - stamina ==0.1.0.3 @@ -2545,8 +2709,9 @@ default-package-overrides: - static-text ==0.2.0.7 - statistics ==0.16.3.0 - statistics-linreg ==0.3 + - statsd-rupp ==0.5.0.1 - status-notifier-item ==0.3.1.0 - - step-function ==0.2.0.1 + - step-function ==0.2.1 - stitch ==0.6.0.0 - stm-chans ==3.0.0.9 - stm-conduit ==4.0.1 @@ -2556,9 +2721,10 @@ default-package-overrides: - stm-hamt ==1.2.1.1 - stm-split ==0.0.2.1 - stm-supply ==0.2.0.0 - - STMonadTrans ==0.4.8 + - STMonadTrans ==0.4.8.1 - storable-complex ==0.2.3.0 - storable-endian ==0.2.6.1 + - storable-generic ==0.1.0.5 - storable-hetero-list ==0.1.0.4 - storable-peek-poke ==0.1.0.2 - storable-record ==0.0.7 @@ -2566,14 +2732,19 @@ default-package-overrides: - storablevector ==0.2.13.2 - store ==0.7.20 - store-core ==0.4.4.7 + - store-streaming ==0.2.0.5 - stratosphere ==0.60.0 - Stream ==0.4.7.2 - streaming ==0.2.4.0 - streaming-attoparsec ==1.0.0.1 + - streaming-binary ==0.3.0.1 - streaming-bytestring ==0.3.4 - streaming-commons ==0.2.3.0 - streaming-wai ==0.1.1 + - streamly ==0.10.1 + - streamly-bytestring ==0.2.3 - streamly-core ==0.2.3 + - streamly-process ==0.3.1 - streams ==3.3.3 - strict ==0.5.1 - strict-base-types ==0.8.1 @@ -2582,33 +2753,37 @@ default-package-overrides: - strict-list ==0.1.7.6 - strict-mutable-base ==1.1.0.0 - strict-tuple ==0.1.5.4 - - strict-wrapper ==0.0.1.0 + - strict-wrapper ==0.0.2.0 - string-class ==0.1.7.2 - string-combinators ==0.6.0.5 - string-conv ==0.2.0 - string-conversions ==0.4.0.1 - string-interpolate ==0.3.4.0 - string-qq ==0.0.6 + - string-random ==0.1.4.5 - string-transform ==1.1.1 - string-variants ==0.3.1.1 - stringable ==0.1.3 - stringbuilder ==0.5.1 - stringprep ==1.0.0 - stringsearch ==0.3.6.6 - - strive ==6.0.0.12 - - strongweak ==0.11.0 + - strive ==6.0.0.17 + - strongweak ==0.12.0 - structs ==0.1.9 - - structured ==0.1.1 - - stylish-haskell ==0.14.6.0 - - subcategories ==0.2.1.1 + - stylish-haskell ==0.15.1.0 + - subcategories ==0.2.1.2 - sundown ==0.6 - svg-builder ==0.1.1 - svg-tree ==0.6.2.4 - - SVGFonts ==1.8.0.1 + - SVGFonts ==1.8.1 - swagger2 ==2.8.10 - swish ==0.10.10.0 + - swizzle ==0.1.0.4 + - swizzle-lens ==0.1.0.0 + - swizzle-modify ==0.1.0.0 + - swizzle-set ==0.2.0.0 - syb ==0.7.2.4 - - sydtest ==0.19.0.0 + - sydtest ==0.20.0.0 - sydtest-aeson ==0.2.0.1 - sydtest-amqp ==0.1.0.0 - sydtest-autodocodec ==0.0.0.0 @@ -2629,6 +2804,7 @@ default-package-overrides: - sydtest-webdriver-yesod ==0.0.0.1 - sydtest-yesod ==0.3.0.3 - symbol ==0.2.4.1 + - symbolize ==1.0.3.1 - symengine ==0.1.2.0 - symmetry-operations-symbols ==0.0.2.1 - symparsec ==1.1.1 @@ -2643,9 +2819,10 @@ default-package-overrides: - system-info ==0.5.2 - system-linux-proc ==0.1.1.1 - systemd ==2.4.0 + - table-layout ==1.0.0.2 - tabular ==0.2.2.8 - tagchup ==0.4.1.2 - - tagged ==0.8.8 + - tagged ==0.8.9 - tagged-binary ==0.2.0.1 - tagged-identity ==0.1.5 - tagged-transformer ==0.8.3 @@ -2653,14 +2830,13 @@ default-package-overrides: - tagstream-conduit ==0.5.6 - tao ==1.0.0 - tao-example ==1.0.0 - - tar ==0.6.3.0 + - tar ==0.6.4.0 - tar-conduit ==0.4.1 - tardis ==0.5.0 - tasty ==1.5.3 - tasty-ant-xml ==1.1.9 - tasty-autocollect ==0.4.4 - tasty-bench ==0.4.1 - - tasty-bench-fit ==0.1.1 - tasty-checklist ==1.0.6.0 - tasty-dejafu ==2.1.0.2 - tasty-discover ==5.0.2 @@ -2679,11 +2855,11 @@ default-package-overrides: - tasty-lua ==1.1.1.1 - tasty-papi ==0.1.2.0 - tasty-program ==1.1.0 - - tasty-quickcheck ==0.11 + - tasty-quickcheck ==0.11.1 - tasty-rerun ==1.1.20 - - tasty-silver ==3.3.2 + - tasty-silver ==3.3.2.1 - tasty-smallcheck ==0.8.2 - - tasty-sugar ==2.2.2.0 + - tasty-sugar ==2.2.2.1 - tasty-tap ==0.1.0 - tasty-th ==0.1.7 - tasty-wai ==0.1.2.0 @@ -2700,7 +2876,7 @@ default-package-overrides: - temporary-rc ==1.2.0.3 - temporary-resourcet ==0.1.0.1 - tensorflow-test ==0.1.0.0 - - tensort ==1.0.1.4 + - tensort ==1.1.0.0 - termbox ==2.0.0.2 - termbox-banana ==2.0.0.1 - termbox-bindings-c ==0.1.0.2 @@ -2709,7 +2885,6 @@ default-package-overrides: - terminal ==0.2.0.0 - terminal-progress-bar ==0.4.2 - terminal-size ==0.3.4 - - termonad ==4.6.0.0 - test-certs ==0.1.1.1 - test-framework ==0.8.2.2 - test-framework-hunit ==0.3.0.2 @@ -2719,13 +2894,17 @@ default-package-overrides: - test-fun ==0.1.0.0 - testing-feat ==1.1.1.1 - testing-type-modifiers ==0.1.0.1 - - texmath ==0.12.10.1 + - texmath ==0.12.10.3 - text-ansi ==0.3.0.1 - text-binary ==0.2.1.1 - - text-builder ==0.6.10 - - text-builder-dev ==0.3.10 + - text-builder ==1.0.0.4 + - text-builder-core ==0.1.1.1 + - text-builder-dev ==0.4 - text-builder-linear ==0.1.3 - text-conversions ==0.3.1.1 + - text-convert ==0.1.0.1 + - text-display ==1.0.0.0 + - text-encode ==0.2.0.0 - text-icu ==0.8.0.5 - text-iso8601 ==0.1.1 - text-latin1 ==0.3.1 @@ -2736,7 +2915,7 @@ default-package-overrides: - text-postgresql ==0.0.3.1 - text-printer ==0.5.0.2 - text-regex-replace ==0.1.1.5 - - text-rope ==0.2 + - text-rope ==0.3 - text-short ==0.1.6 - text-show ==3.11.2 - text-show-instances ==3.9.10 @@ -2750,7 +2929,7 @@ default-package-overrides: - th-constraint-compat ==0.0.1.0 - th-data-compat ==0.1.3.1 - th-deepstrict ==0.1.1.0 - - th-desugar ==1.16 + - th-desugar ==1.17 - th-env ==0.1.1 - th-expand-syns ==0.4.12.0 - th-extras ==0.0.0.8 @@ -2775,10 +2954,12 @@ default-package-overrides: - threads ==0.5.1.8 - threads-extras ==0.1.0.3 - threepenny-gui ==0.9.4.2 - - tidal ==1.9.5 - - tidal-link ==1.0.3 + - thyme ==0.4.1 + - tidal ==1.10.1 + - tidal-core ==1.10.1 + - tidal-link ==1.2.0 - tile ==0.3.0.0 - - time-compat ==1.9.7 + - time-compat ==1.9.8 - time-domain ==0.1.0.5 - time-lens ==0.4.0.2 - time-locale-compat ==0.1.1.5 @@ -2797,18 +2978,19 @@ default-package-overrides: - timezone-series ==0.1.13 - titlecase ==1.0.1 - tldr ==0.9.2 - - tls ==2.1.1 + - tls ==2.1.8 - tls-session-manager ==0.0.8 - tlynx ==0.8.0.0 - tmapchan ==0.0.3 - tmapmvar ==0.0.4 - tmp-proc ==0.7.2.2 - tmp-proc-postgres ==0.7.2.4 + - tmp-proc-rabbitmq ==0.7.2.4 - tmp-proc-redis ==0.7.2.4 - token-bucket ==0.1.0.1 - tokenize ==0.3.0.1 - toml-parser ==2.0.1.2 - - toml-reader ==0.2.2.0 + - toml-reader ==0.3.0.0 - toml-reader-parse ==0.1.1.1 - tomland ==1.3.3.3 - tools-yj ==0.1.0.45 @@ -2829,9 +3011,8 @@ default-package-overrides: - trifecta ==2.1.4 - trimdent ==0.1.0.0 - trivial-constraint ==0.7.0.0 - - true-name ==0.2.0.0 - tsv2csv ==0.1.0.2 - - ttc ==1.4.0.0 + - ttc ==1.5.0.0 - ttrie ==0.1.2.2 - tuple ==0.3.0.2 - tuple-sop ==0.3.1.0 @@ -2859,15 +3040,15 @@ default-package-overrides: - type-rig ==0.1 - type-set ==0.1.0.0 - type-spec ==0.4.0.0 - - typecheck-plugin-nat-simple ==0.1.0.9 + - typecheck-plugin-nat-simple ==0.1.0.11 - typed-process ==0.2.13.0 - typed-uuid ==0.2.0.0 - typelevel-tools-yj ==0.1.0.9 - typelits-witnesses ==0.4.1.0 - typenums ==0.1.4 - typography-geometry ==1.0.1.0 - - typst ==0.6.1 - - typst-symbols ==0.1.7 + - typst ==0.8.0.2 + - typst-symbols ==0.1.8.1 - tz ==0.1.3.6 - tzdata ==0.2.20250115.0 - tztime ==0.1.1.0 @@ -2881,6 +3062,7 @@ default-package-overrides: - unboxing-vector ==0.2.0.0 - uncaught-exception ==0.1.0 - uncertain ==0.4.0.1 + - unconditional-jump ==1.0.0 - unconstrained ==0.1.0.2 - unexceptionalio ==0.5.1 - unexceptionalio-trans ==0.5.2 @@ -2891,16 +3073,16 @@ default-package-overrides: - unicode-transforms ==0.4.0.1 - unidecode ==0.1.0.4 - unification-fd ==0.12.0.2 - - union ==0.1.2 + - union ==0.1.3 - union-angle ==0.1.0.1 - - union-color ==0.1.2.1 + - union-color ==0.1.4.0 - union-find-array ==0.1.0.4 - unipatterns ==0.0.0.0 - uniplate ==1.6.13 - uniq-deep ==1.2.1 - - unique ==0.0.1 - unique-logic ==0.4.0.1 - - unique-logic-tf ==0.5.1 + - unique-logic-tf ==0.5.1.1 + - uniqueness-periods-vector-stats ==0.4.0.0 - unit-constraint ==0.0.0 - units ==2.4.1.5 - units-defs ==2.2.1 @@ -2911,26 +3093,24 @@ default-package-overrides: - universe-instances-extended ==1.1.4 - universe-reverse-instances ==1.1.2 - universe-some ==1.2.2 - - universum ==1.8.2.2 - unix-bytestring ==0.4.0.3 - - unix-compat ==0.7.4 + - unix-compat ==0.7.4.1 - unix-time ==0.4.17 - unjson ==0.15.4 - unlifted ==0.2.3.0 - unliftio ==0.2.25.1 - unliftio-core ==0.2.1.0 - unliftio-path ==0.0.2.0 - - unliftio-pool ==0.4.3.0 + - unliftio-pool ==0.4.3.1 - unliftio-streams ==0.2.0.0 - unlit ==0.4.0.0 - unordered-containers ==0.2.20 - unsafe ==0.0 - - uri-bytestring ==0.3.3.1 + - uri-bytestring ==0.4.0.1 - uri-bytestring-aeson ==0.1.0.9 - uri-encode ==1.5.0.7 - url ==2.1.3 - urlpath ==11.0.2 - - userid ==0.1.3.8 - users ==0.5.0.0 - users-test ==0.5.0.1 - utf8-light ==0.4.4.0 @@ -2959,8 +3139,10 @@ default-package-overrides: - validity-uuid ==0.1.0.3 - validity-vector ==0.2.0.3 - valor ==1.0.0.0 + - vary ==0.1.1.3 - varying ==0.8.1.0 - vault ==0.3.1.5 + - vcr ==0.1.0 - vcs-ignore ==0.0.2.0 - vec ==0.5.1 - vector ==0.13.2.0 @@ -2969,18 +3151,22 @@ default-package-overrides: - vector-buffer ==0.4.1 - vector-builder ==0.3.8.6 - vector-bytes-instances ==0.1.1 - - vector-extras ==0.2.8.2 + - vector-extras ==0.3 + - vector-fftw ==0.1.4.1 - vector-hashtables ==0.1.2.1 - vector-instances ==3.4.3 - vector-mmap ==0.0.3 + - vector-quicksort ==0.2 - vector-rotcev ==0.1.0.2 - vector-sized ==1.6.1 - - vector-space ==0.16 + - vector-space ==0.19 - vector-split ==1.0.0.4 - vector-stream ==0.1.0.1 - vector-th-unbox ==0.2.2 + - verbosity ==0.4.0.0 - verset ==0.0.1.11 - versions ==6.0.8 + - vessel ==0.3.0.2 - vformat ==0.14.1.0 - vformat-time ==0.1.0.0 - ViennaRNAParser ==1.3.3 @@ -2990,10 +3176,10 @@ default-package-overrides: - vivid-osc ==0.5.0.0 - vivid-supercollider ==0.4.1.2 - void ==0.7.3 - - vty ==6.2 + - vty ==6.4 - vty-crossplatform ==0.4.0.0 - vty-unix ==0.2.0.0 - - vty-windows ==0.2.0.4 + - vty-windows ==0.2.0.3 - wai ==3.2.4 - wai-app-static ==3.1.9 - wai-cli ==0.2.3 @@ -3001,7 +3187,7 @@ default-package-overrides: - wai-cors ==0.2.7 - wai-enforce-https ==1.0.0.0 - wai-eventsource ==3.0.0 - - wai-extra ==3.1.16 + - wai-extra ==3.1.18 - wai-feature-flags ==0.1.0.8 - wai-handler-launch ==3.0.3.1 - wai-logger ==2.5.0 @@ -3024,23 +3210,25 @@ default-package-overrides: - wai-transformers ==0.1.0 - wai-websockets ==3.0.1.2 - wakame ==0.1.0.0 - - warp ==3.4.8 - - warp-tls ==3.4.9 + - warp ==3.4.9 + - warp-tls ==3.4.13 - wave ==0.2.1 - wcwidth ==0.0.2 - - web-rep ==0.12.3.0 + - web-cookiejar ==0.1.3.0 + - web-rep ==0.14.0.0 - web-routes ==0.27.16 - - web-routes-boomerang ==0.28.4.5 - - web-routes-th ==0.22.8.2 + - web-routes-th ==0.22.8.3 + - web-view ==0.7.0 - webdriver ==0.12.0.1 + - webdriver-precore ==0.1.0.2 - webdriver-wrapper ==0.2.0.1 - webex-teams-api ==0.2.0.1 - webex-teams-conduit ==0.2.0.1 - - webgear-core ==1.3.1 - - webgear-openapi ==1.3.1 - - webgear-server ==1.3.1 - - webgear-swagger ==1.3.1 - - webgear-swagger-ui ==1.3.1 + - webgear-core ==1.4.0 + - webgear-openapi ==1.4.0 + - webgear-server ==1.4.0 + - webgear-swagger ==1.4.0 + - webgear-swagger-ui ==1.4.0 - webpage ==0.0.5.1 - webrtc-vad ==0.1.0.3 - websockets ==0.13.0.0 @@ -3050,24 +3238,24 @@ default-package-overrides: - welford-online-mean-variance ==0.2.0.0 - what4 ==1.6.3 - wherefrom-compat ==0.1.1.1 - - wide-word ==0.1.7.1 + - which ==0.2.0.3 + - wide-word ==0.1.8.1 - wild-bind ==0.1.2.12 - wild-bind-x11 ==0.2.0.17 - Win32-notify ==0.3.0.3 - windns ==0.1.0.1 - - witch ==1.2.4.0 - - with-location ==0.1.0 + - witch ==1.3.0.6 - with-utf8 ==1.1.0.0 - withdependencies ==0.3.1 - witherable ==0.5 - within ==0.2.0.1 - - witness ==0.6.2 + - witness ==0.7 - wizards ==1.0.3 - wkt-types ==0.1.0.0 - wl-pprint ==1.2.1 - wl-pprint-annotated ==0.1.0.1 - wl-pprint-text ==1.2.0.2 - - wled-json ==0.0.1.1 + - wled-json ==0.1.0.0 - word-compat ==0.0.6 - word-trie ==0.3.0 - word-wrap ==0.5 @@ -3079,7 +3267,7 @@ default-package-overrides: - wreq-stringless ==0.5.9.1 - writer-cps-transformers ==0.5.6.1 - ws ==0.0.6 - - wuss ==2.0.2.0 + - wuss ==2.0.2.5 - X11 ==1.10.3 - X11-xft ==0.3.4 - x11-xim ==0.0.9.0 @@ -3088,15 +3276,16 @@ default-package-overrides: - xdg-desktop-entry ==0.1.1.2 - xdg-userdirs ==0.1.0.2 - xeno ==0.6 + - xls ==0.1.3 - xlsx ==1.1.4 - xml ==1.3.14 - xml-basic ==0.1.3.3 - - xml-conduit ==1.9.1.4 - - xml-conduit-writer ==0.1.1.5 + - xml-conduit ==1.10.0.1 - xml-hamlet ==0.5.0.2 - xml-helpers ==1.0.0 - xml-html-qq ==0.1.0.1 - xml-indexed-cursor ==0.1.1.0 + - xml-parser ==0.1.1.2 - xml-picklers ==0.3.6 - xml-to-json-fast ==2.0.0 - xml-types ==0.3.8 @@ -3109,11 +3298,16 @@ default-package-overrides: - xmonad-contrib ==0.18.1 - xor ==0.0.1.3 - xss-sanitize ==0.3.7.2 - - xxhash-ffi ==0.3 + - xxhash-ffi ==0.3.1 - yaml ==0.11.11.2 - - yaml-unscrambler ==0.1.0.19 - - Yampa ==0.14.12 + - yaml-unscrambler ==0.1.0.20 + - Yampa ==0.15 - yarn-lock ==0.6.5 + - yaya ==0.6.2.3 + - yaya-containers ==0.1.2.2 + - yaya-hedgehog ==0.3.0.5 + - yaya-quickcheck ==0.2.0.3 + - yaya-unsafe ==0.4.1.4 - yes-precure5-command ==5.5.3 - yeshql-core ==4.2.0.0 - yesod ==1.6.2.1 @@ -3122,8 +3316,7 @@ default-package-overrides: - yesod-auth-hashdb ==1.7.1.7 - yesod-auth-oauth2 ==0.7.4.0 - yesod-bin ==1.6.2.3 - - yesod-core ==1.6.27.0 - - yesod-csp ==0.2.6.0 + - yesod-core ==1.6.27.1 - yesod-eventsource ==1.6.0.1 - yesod-form ==1.7.9 - yesod-form-bootstrap4 ==3.0.1.1 @@ -3138,7 +3331,7 @@ default-package-overrides: - yesod-routes-flow ==3.0.0.2 - yesod-sitemap ==1.6.0 - yesod-static ==1.6.1.0 - - yesod-test ==1.6.16 + - yesod-test ==1.6.19 - yesod-websockets ==0.3.0.3 - yggdrasil-schema ==1.0.0.6 - yi ==0.19.3 @@ -3157,16 +3350,18 @@ default-package-overrides: - yjtools ==0.9.18 - yoga ==0.0.0.8 - youtube ==0.2.1.1 + - zenacy-html ==2.1.2 + - zenacy-unicode ==1.0.3 - zenc ==0.1.2 - zeromq4-haskell ==0.8.0 - zeromq4-patterns ==0.3.1.0 - zigzag ==0.1.0.0 - zim-parser ==0.2.1.0 - - zip ==2.1.0 + - zip ==2.2.1 - zip-archive ==0.4.3.2 - zip-stream ==0.2.2.0 - zippers ==0.3.2 - - zlib ==0.7.1.0 + - zlib ==0.7.1.1 - zlib-bindings ==0.1.1.5 - zlib-clib ==1.3.1 - zot ==0.0.3 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index 6c2b389503a2..78e83a5ddae6 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -12,10 +12,20 @@ dont-distribute-packages: - ac-machine-conduit - accelerate-arithmetic - accelerate-fourier + - accelerate-io + - accelerate-io-array + - accelerate-io-bmp + - accelerate-io-bytestring + - accelerate-io-cereal + - accelerate-io-JuicyPixels + - accelerate-io-repa + - accelerate-io-serialise + - accelerate-io-vector - accelerate-llvm - accelerate-llvm-native - accelerate-typelits - access-token-provider + - acme-circular-containers - acme-php - acme-safe - activehs @@ -35,7 +45,6 @@ dont-distribute-packages: - AERN-RnToRm - AERN-RnToRm-Plot - aeson-native - - aeson_1_5_6_0 - affine - afis - afv @@ -58,7 +67,6 @@ dont-distribute-packages: - AlignmentAlgorithms - alloy-proxy-fd - alms - - alpha - alsa-gui - alsa-pcm-tests - alsa-seq-tests @@ -120,8 +128,13 @@ dont-distribute-packages: - arithmetic-circuits - array-forth - arraylist + - arx + - ascii - ascii-cows + - ascii-numbers + - ascii-superset - ascii-table + - ascii-th - asic - ASN1 - assert4hs @@ -136,13 +149,11 @@ dont-distribute-packages: - atlassian-connect-core - atmos-dimensional-tf - atom-msp430 - - atomic-css - atomic-primops-foreign - atp - attenuation-profunctors - AttoJson - attoparsec-enumerator - - attoparsec-isotropic - attoparsec-iteratee - attoparsec-text-enumerator - atuin @@ -159,7 +170,6 @@ dont-distribute-packages: - aviation-cessna172-weight-balance - aviation-navigation - aviation-weight-balance - - AvlTree - awesomium - awesomium-glut - aws-configuration-tools @@ -195,13 +205,11 @@ dont-distribute-packages: - bamboo-plugin-photo - bamboo-theme-blueprint - bamboo-theme-mini-html5 - - bamse - bamstats - barley - Barracuda - base32-bytestring - baserock-schema - - base_4_21_0_0 - BASIC - basic - batchd @@ -233,6 +241,7 @@ dont-distribute-packages: - binary-file - binary-protocol-zmq - binary-streams + - binary-tagged - binding-gtk - binding-wx - bindings-apr-util @@ -269,6 +278,7 @@ dont-distribute-packages: - birch-beer - bird - BirdPP + - bisc - biscuit-servant - bishbosh - bit-array @@ -281,9 +291,12 @@ dont-distribute-packages: - Bitly - bitly-cli - bitmaps + - bits-extra - bittorrent - bla - blakesum-demo + - Blammo + - Blammo-wai - BlastHTTP - blastxml - blatex @@ -293,8 +306,10 @@ dont-distribute-packages: - blink1 - blip - Blobs + - blockio - blogination - BlogLiterately-diagrams + - bloomfilter-blocked - bloxorz - blubber - bluetile @@ -313,7 +328,6 @@ dont-distribute-packages: - boots-cloud - boots-web - borel - - botan-low - both - bound-gen - BPS @@ -323,6 +337,7 @@ dont-distribute-packages: - bricks-parsec - bricks-rendering - bricks-syntax + - brillo-examples - bronyradiogermany-streaming - btc-lsp - btree @@ -335,6 +350,7 @@ dont-distribute-packages: - buster-gtk - buster-network - butterflies + - bv-little - bytable - bytestring-read - bytetrie @@ -419,6 +435,7 @@ dont-distribute-packages: - cheapskate-highlight - cheapskate-terminal - check-pvp + - chessIO - chevalier-common - chiasma-test - chitauri @@ -465,10 +482,8 @@ dont-distribute-packages: - clickhouse-haskell - clifford - clippings - - clod - cloud-haskell - cloud-seeder - - cloudevents-haskell - cloudyfs - clr-bindings - clr-inline @@ -500,6 +515,7 @@ dont-distribute-packages: - color-counter - colorless-http-client - colorless-scotty + - colour-accelerate - colour-space - columbia - columnar @@ -512,6 +528,7 @@ dont-distribute-packages: - comonad-random - ComonadSheet - compact-mutable + - compdata-automata - compdoc - compdoc-dhall-decoder - complexity @@ -541,10 +558,14 @@ dont-distribute-packages: - conduit-throttle - conduit-vfs-zip - confcrypt + - conferer-aeson + - conferer-dhall + - conferer-hedis - conferer-provider-dhall - conferer-provider-yaml - conferer-source-dhall - conferer-source-yaml + - conferer-yaml - conffmt - confide - config-select @@ -563,8 +584,6 @@ dont-distribute-packages: - container - containers-accelerate - content-store - - continuum - - continuum-client - control - control-monad-attempt - control-monad-exception @@ -575,7 +594,6 @@ dont-distribute-packages: - conversion-text - conversions - convert - - convert-annotation - convertible-ascii - convertible-text - coordinate @@ -608,6 +626,9 @@ dont-distribute-packages: - crf-chain2-tiers - criu-rpc - cron-compat + - crucible-llvm + - crux + - crux-llvm - crypto-classical - crypto-conduit - crypto-pubkey @@ -694,6 +715,7 @@ dont-distribute-packages: - definitive-parser - definitive-reactive - definitive-sound + - defun - deka-tests - delicious - delimited-text @@ -719,6 +741,7 @@ dont-distribute-packages: - dfinity-radix-tree - dhall-lex - dhall-secret + - dhscanner-kbgen - dia-functions - diagrams-html5 - diagrams-wx @@ -747,7 +770,7 @@ dont-distribute-packages: - distribution-plot - dixi - dl-fedora - - dl-fedora_2_0_1 + - dl-fedora_2_1 - dmenu-pkill - dmenu-pmount - dmenu-search @@ -763,6 +786,7 @@ dont-distribute-packages: - DocTest - dojang - DOM + - dom-parser - domaindriven - dormouse-client - dovetail @@ -811,6 +835,7 @@ dont-distribute-packages: - EditTimeReport - effect-monad - effective-aspects-mzv + - effects-parser - egison - egison-quote - egison-tutorial @@ -884,7 +909,6 @@ dont-distribute-packages: - exference - exist - exist-instances - - expand - expat-enumerator - expiring-containers - explicit-iomodes-bytestring @@ -897,6 +921,7 @@ dont-distribute-packages: - extensible-skeleton - extract-dependencies - factual-api + - fadno - FailureT - fair - fallingblocks @@ -950,12 +975,12 @@ dont-distribute-packages: - findhttp - finitary-derive - finite-table + - FiniteCategories - FiniteMap - firstify - FirstOrderTheory - fishfood - fix-parser-simple - - fixed-generic - fixed-point-vector - fixed-point-vector-space - fixhs @@ -1005,9 +1030,12 @@ dont-distribute-packages: - Frank - freckle-app - freckle-ecs + - freckle-exception - freckle-http + - freckle-kafka - freckle-memcached - freckle-otel + - freckle-prelude - freckle-stats - free-functors - free-game @@ -1025,6 +1053,7 @@ dont-distribute-packages: - frpnow-gtk - frpnow-gtk3 - frpnow-vty + - fs-sim - ftdi - ftp-client-conduit - FTPLine @@ -1040,6 +1069,7 @@ dont-distribute-packages: - functor-monad - funflow - funflow-nix + - fungll-combinators - funion - funsat - fwgl-glfw @@ -1083,21 +1113,23 @@ dont-distribute-packages: - getemx - ghc-debugger - ghc-dump-util - - ghc-experimental - ghc-imported-from - ghc-instances - ghc-mod - ghc-plugs-out - ghc-session + - ghci-pretty - ghcjs-dom-webkit - ghcjs-hplay - ght - gi-cairo-again - gi-ges - gi-gstpbutils + - gi-gtk-declarative-app-simple - git-config - git-fmt - git-gpush + - git-monitor - git-object - git-remote-ipfs - git-sanity @@ -1105,7 +1137,10 @@ dont-distribute-packages: - github-data - github-webhook-handler-snap - gitlib-cross + - gitlib-libgit2 - gitlib-s3 + - gitlib-sample + - gitlib-test - gitson - givegif - gladexml-accessor @@ -1114,6 +1149,7 @@ dont-distribute-packages: - glazier-react - glazier-react-examples - glazier-react-widget + - glean - GLFW-OGL - GLFW-task - global @@ -1125,7 +1161,7 @@ dont-distribute-packages: - gloss-raster-accelerate - gloss-sodium - gltf-loader - - gmap + - glue-example - gmndl - gnome-desktop - gnomevfs @@ -1137,6 +1173,7 @@ dont-distribute-packages: - goatee-gtk - google-drive - google-mail-filters + - google-maps-geocoding - GoogleDirections - googleplus - GoogleSB @@ -1157,10 +1194,6 @@ dont-distribute-packages: - GPipe-TextureLoad - gps - gps2htmlReport - - gpu-vulkan - - gpu-vulkan-khr-surface - - gpu-vulkan-khr-surface-glfw - - gpu-vulkan-khr-swapchain - GPX - grab-form - graflog @@ -1194,7 +1227,6 @@ dont-distribute-packages: - gridland - grisette - grisette-monad-coroutine - - grisette_0_13_0_0 - gross - groundhog-converters - groundhog-inspector @@ -1216,6 +1248,7 @@ dont-distribute-packages: - gtfs - gtfs-realtime - gtk-serialized-event + - gtk-sni-tray - gtk2hs-cast-glade - gtk2hs-cast-gnomevfs - gtk2hs-cast-gtk @@ -1229,7 +1262,6 @@ dont-distribute-packages: - guarded-rewriting - GuiHaskell - GuiTV - - H - h3spec - habit - hablo @@ -1306,6 +1338,7 @@ dont-distribute-packages: - HasGP - hash-addressed - hash-addressed-cli + - hashable-accelerate - Hashell - hashflare - hask-home @@ -1317,6 +1350,8 @@ dont-distribute-packages: - haskell-admin-managed-functions - haskell-aliyun - haskell-bitmex-client + - haskell-debug-adapter + - haskell-debugger - haskell-docs - haskell-eigen-util - haskell-ftp @@ -1386,10 +1421,10 @@ dont-distribute-packages: - haskus-web - haslo - hasloGUI - - hasmtlib - hasql-postgres - hasql-postgres-options - hasql-queue + - hasql-streams-core - hasql-streams-example - hastache-aeson - haste-app @@ -1488,6 +1523,7 @@ dont-distribute-packages: - hgeometry-ipe - hgeometry-svg - hgithub + - hgraph - hiccup - hie-core - hierarchical-clustering-diagrams @@ -1518,6 +1554,7 @@ dont-distribute-packages: - hist-pl-lmf - hit - hit-graph + - hjpath - HJScript - hjsonschema - hjugement-cli @@ -1536,6 +1573,8 @@ dont-distribute-packages: - hmeap - hmeap-utils - hmep + - HMock + - hMPC - hmt-diagrams - HNM - hnormalise @@ -1549,6 +1588,7 @@ dont-distribute-packages: - Holumbus-Storage - holy-project - hommage + - homotuple - HongoDB - hood - hoodie @@ -1563,6 +1603,7 @@ dont-distribute-packages: - hoppy-docs - hoppy-runtime - hoppy-std + - horde-ad - hotswap - hp2any-graph - hp2any-manager @@ -1581,7 +1622,6 @@ dont-distribute-packages: - HPong - hpqtypes-effectful - hpqtypes-extras - - hpqtypes-extras_1_18_0_0 - hprotoc - hprotoc-fork - hps @@ -1628,9 +1668,7 @@ dont-distribute-packages: - hscassandra - hscope - hsdev - - hsec-core - Hsed - - hsendxmpp - hsfacter - HSGEP - HSHHelpers @@ -1649,9 +1687,6 @@ dont-distribute-packages: - hsql-odbc - hsql-postgresql - hsql-sqlite3 - - hsqml-datamodel-vinyl - - hsqml-demo-morris - - hsqml-morris - hsreadability - hssourceinfo - hssqlppp-th @@ -1697,15 +1732,20 @@ dont-distribute-packages: - huzzy - hw-all - hw-balancedparens + - hw-bits - hw-eliasfano - hw-excess + - hw-int + - hw-ip - hw-json - hw-json-demo - hw-json-lens - hw-json-simple-cursor - hw-json-standard-cursor + - hw-kafka-avro - hw-rankselect - hw-simd + - hw-streams - hw-succinct - hw-uri - hworker-ses @@ -1745,8 +1785,8 @@ dont-distribute-packages: - ifscs - ige-mac-integration - igrf - - ihaskell-inline-r - ihaskell-rlangqq + - ihaskell-symtegration - ihttp - imap - imbib @@ -1801,12 +1841,12 @@ dont-distribute-packages: - ipatch - ipc - ipld-cid + - ipprint - iptadmin - irc-fun-bot - irc-fun-client - irc-fun-color - irc-fun-messages - - iri-orphans - ironforge - isevaluated - ismtp @@ -1856,6 +1896,7 @@ dont-distribute-packages: - jordan-servant-client - jordan-servant-openapi - jordan-servant-server + - jsaddle-webkitgtk - jsc - JsContracts - jsmw @@ -1931,16 +1972,15 @@ dont-distribute-packages: - kit - kmeans-par - kmeans-vector - - knead - knit-haskell - koji-install - koji-tool - - koji-tool_1_3 - korfu - ks-test - kubernetes-client - kure-your-boilerplate - kurita + - kvitable - laborantin-hs - labsat - labyrinth @@ -1969,8 +2009,8 @@ dont-distribute-packages: - lame-tester - landlock - lang - - langchain-hs - language-ats + - language-avro - language-boogie - language-ecmascript-analysis - language-eiffel @@ -2027,7 +2067,6 @@ dont-distribute-packages: - libraft - librarian - librato - - libssh2-conduit - libxml-enumerator - lifted-base-tf - lightning-haskell @@ -2048,16 +2087,11 @@ dont-distribute-packages: - liquid-base - liquid-bytestring - liquid-containers - - liquid-ghc-prim - - liquid-parallel - liquid-platform - - liquid-prelude - - liquid-vector - - liquidhaskell - - liquidhaskell-boot - liquidhaskell-cabal-demo - list-t-attoparsec - list-t-html-parser + - list-tuple - listenbrainz-client - ListT - liszt @@ -2068,7 +2102,6 @@ dont-distribute-packages: - llvm-base-types - llvm-base-util - llvm-data-interop - - llvm-dsl - llvm-general - llvm-general-quote - llvm-hs-pretty @@ -2109,6 +2142,7 @@ dont-distribute-packages: - lrucaching-haxl - ls-usb - LslPlus + - lsm-tree - lsystem - luachunk - lucid-colonnade @@ -2151,6 +2185,7 @@ dont-distribute-packages: - manatee-template - manatee-terminal - manatee-welcome + - mangle - mangopay - mangrove - manifold-random @@ -2159,6 +2194,7 @@ dont-distribute-packages: - markdown-pap - markdown2svg - markov-processes + - markup-preview - marmalade-upload - marquise - marvin @@ -2197,13 +2233,17 @@ dont-distribute-packages: - metar - metar-http - Metrics + - metro + - metro-socket + - metro-transport-crypto + - metro-transport-websockets + - metro-transport-xor - metronome - MFlow - Mhailist - Michelangelo - micro-gateway - microformats2-types - - MicroHs - MicrosoftTranslator - midimory - mig-server @@ -2230,6 +2270,7 @@ dont-distribute-packages: - mmsyn7s - mmsyn7ukr - mmtl-base + - mmzk-env - moan - modify-fasta - modsplit @@ -2255,10 +2296,9 @@ dont-distribute-packages: - mongrel2-handler - monky - Monocle - - monoidmap-aeson - - monoidmap-examples - - monoidmap-quickcheck + - monomer - monomer-flatpak-example + - monomer-hagrid - monte-carlo - moo - moo-nad @@ -2266,6 +2306,7 @@ dont-distribute-packages: - morley-client - morley-prelude - morley-upgradeable + - morpheus-graphql - morphisms-functors-inventory - motor - motor-diagrams @@ -2276,6 +2317,7 @@ dont-distribute-packages: - mpretty - mprover - mps + - mptcp - mptcpanalyzer - msgpack-arbitrary - msgpack-binary @@ -2318,7 +2360,6 @@ dont-distribute-packages: - multirec-binary - multisetrewrite - Munkres-simple - - murder - murmurhash3 - mushu - music-graphics @@ -2334,6 +2375,7 @@ dont-distribute-packages: - MutationOrder - mute-unmute - mvclient + - mwc-random-accelerate - mwc-random-monad - mxnet-dataiter - mxnet-examples @@ -2349,6 +2391,7 @@ dont-distribute-packages: - nakadi-client - named-servant-client - named-servant-server + - named-text - nanq - NaperianNetCDF - national-australia-bank @@ -2360,6 +2403,8 @@ dont-distribute-packages: - nero-wai - nero-warp - nested-routes + - net-mqtt-lens + - net-mqtt-rpc - net-spider-cli - net-spider-pangraph - net-spider-rpl @@ -2441,7 +2486,6 @@ dont-distribute-packages: - oath - oauth2-jwt-bearer - obdd - - oberon0 - obj - objectid - objective @@ -2456,7 +2500,6 @@ dont-distribute-packages: - ogma-language-fret-cs - ogma-language-fret-reqs - ois-input-manager - - ollama-holes-plugin - olwrapper - om-kubernetes - online-csv @@ -2524,7 +2567,6 @@ dont-distribute-packages: - partage - partial-semigroup-test - passman-cli - - patch-image - pathfindingcore - patterns - paypal-rest-client @@ -2542,6 +2584,7 @@ dont-distribute-packages: - penny-bin - penny-lib - peparser + - perceptual-hash - perdure - perf-analysis - perfecthash @@ -2557,11 +2600,13 @@ dont-distribute-packages: - persistent-hssqlppp - persistent-iproute - persistent-map + - persistent-postgresql_2_14_0_0 - persistent-protobuf - persona-idp - peyotls - peyotls-codec - pg-entity + - phatsort - phladiprelio-general-shared - phladiprelio-general-simple - phladiprelio-ukrainian-shared @@ -2585,10 +2630,10 @@ dont-distribute-packages: - pianola - pier - pine + - ping - pinpon - pipe-enumerator - pipes-attoparsec-streaming - - pipes-cacophony - pipes-cereal-plus - pipes-conduit - pipes-courier @@ -2613,6 +2658,7 @@ dont-distribute-packages: - pms-domain-service - pms-infra-cmdrun - pms-infra-procspawn + - pms-infra-serial - pms-infra-socket - pms-infra-watch - pms-infrastructure @@ -2625,8 +2671,8 @@ dont-distribute-packages: - pointless-rewrite - poker - polh-lexicon - - poly-rec - polydata + - polynomial-algebra - polysemy-account - polysemy-account-api - polysemy-db @@ -2660,6 +2706,7 @@ dont-distribute-packages: - poseidon - poseidon-postgis - postgresql-common-persistent + - postgresql-pure - postgresql-simple-ltree - postgresql-simple-queue - postgresql-simple-typed @@ -2733,7 +2780,6 @@ dont-distribute-packages: - pure-cdb - pure-priority-queue-tests - purescript-iso - - pursuit-client - push-notify - push-notify-ccs - push-notify-general @@ -2752,6 +2798,7 @@ dont-distribute-packages: - qtah-qt5 - qtah-qt6 - quantfin + - quantification-aeson - Quelea - queryparser - queryparser-demo @@ -2798,7 +2845,6 @@ dont-distribute-packages: - random-extras - random-hypergeometric - range-space - - ranged-list_0_1_2_3 - Ranka - rasa - rasa-example-config @@ -2848,8 +2894,6 @@ dont-distribute-packages: - reflex-localize - reflex-monad-auth - reflex-process - - reform-blaze - - reform-happstack - refractor - refurb - reg-alloc-graph-color @@ -2864,6 +2908,10 @@ dont-distribute-packages: - regions-monadsfd - regions-monadstf - regions-mtl + - registry + - registry-aeson + - registry-hedgehog + - registry-hedgehog-aeson - regular-extras - regular-web - regular-xmlpickler @@ -2909,6 +2957,7 @@ dont-distribute-packages: - rfc-psql - rfc-redis - rfc-servant + - rhine-bayes - rhythm-game-tutorial - rib - ribosome @@ -2952,6 +3001,8 @@ dont-distribute-packages: - rose-trie - roshask - rosmsg-bin + - rounded + - rounded-hw - roundtrip-xml - route-generator - route-planning @@ -2992,8 +3043,8 @@ dont-distribute-packages: - sandwich-contexts-kubernetes - sandwich-contexts-minio - sandwich-webdriver + - sandwich-webdriver_0_4_0_1 - sarsi - - sasha - sasl - sat-micro-hs - satchmo-examples @@ -3033,6 +3084,7 @@ dont-distribute-packages: - scrapbook - SCRIPTWriter - scroll + - scubature - Scurry - sdl2-sprite - sdp-binary @@ -3050,6 +3102,8 @@ dont-distribute-packages: - secrm - sednaDBXML - seitz-symbol + - selda-json + - selda-sqlite - SelectSequencesFromMSA - selenium-server - semantic-source @@ -3064,7 +3118,6 @@ dont-distribute-packages: - seqloc - seqloc-datafiles - sequor - - serdoc-binary - serpentine - serv - serv-wai @@ -3092,6 +3145,7 @@ dont-distribute-packages: - servant-pushbullet-client - servant-rate-limit - servant-reason + - servant-routes-golden - servant-serialization - servant-server-namedargs - servant-snap @@ -3166,10 +3220,11 @@ dont-distribute-packages: - SimpleServer - simseq - singletons-base_3_5 + - singletons-presburger - siphon - siren-json - sirkel - - sitemap + - sized - skeleton - skeletons - skylark-client @@ -3188,7 +3243,6 @@ dont-distribute-packages: - smith-client - Smooth - smt - - smtlib-backends-z3 - smtlib2-debug - smtlib2-pipe - smtlib2-quickcheck @@ -3297,6 +3351,7 @@ dont-distribute-packages: - steeloverseer - stern-brocot - STLinkUSB + - stm-sbchan - STM32-Zombie - stmcontrol - StockholmAlignment @@ -3314,6 +3369,8 @@ dont-distribute-packages: - streaming-sort - strelka - strelka-wai + - strict-containers-lens + - strict-containers-serialise - strict-data - string-typelits - stripe-haskell @@ -3369,12 +3426,12 @@ dont-distribute-packages: - syntax-example-json - syntax-pretty - syntax-printer - - SyntaxMacros - syntaxnet-haskell - sys-process - systemstats - t3-client - ta + - taffybar - tag-stream - tagged-list - tagged-th @@ -3396,11 +3453,13 @@ dont-distribute-packages: - tasklite - tasklite-core - tasty-bdd + - tasty-bench-fit - tasty-groundhog-converters - tasty-integrate - tasty-jenkins-xml - tasty-laws - tasty-lens + - tasty-sugar - TastyTLT - tateti-tateti - Taxonomy @@ -3412,7 +3471,6 @@ dont-distribute-packages: - techlab - telegram-bot - telegram-raw-api - - telescope - ten-lens - ten-unordered-containers - terminal-text @@ -3461,7 +3519,6 @@ dont-distribute-packages: - toboggan - todos - toktok - - toml-reader_0_3_0_0 - tomlcheck - tonatona - tonatona-google-server-api @@ -3471,12 +3528,12 @@ dont-distribute-packages: - tonatona-servant - too-many-cells - top + - topaz - total-map - toxcore - toxcore-c - toysolver - tpb - - trace-embrace - tracing-control - trajectory - trans-fx-data @@ -3511,6 +3568,7 @@ dont-distribute-packages: - tuple-gen - tuple-ops - turingMachine + - turncoat - TV - tweet-hs - twentefp-eventloop-graphics @@ -3518,7 +3576,6 @@ dont-distribute-packages: - twentefp-graphs - twentefp-rosetree - twentefp-trees - - twentyseven - twfy-api-client - twidge - twilight-stm @@ -3532,15 +3589,14 @@ dont-distribute-packages: - type-combinators-quote - type-combinators-singletons - type-digits + - type-natural - type-ord - type-ord-spine-cereal - type-sets - type-structure - type-sub-th - - typecheck-plugin-nat-simple_0_1_0_11 - TypeClass - typed-encoding-encoding - - typed-gui - typed-protocols-doc - typed-streams - typedflow @@ -3582,6 +3638,7 @@ dont-distribute-packages: - universal - universe-th - unix-fcntl + - unleash-client-haskell - unpacked-these - unpacked-validation - unparse-attoparsec @@ -3612,6 +3669,7 @@ dont-distribute-packages: - uu-cco-hut-parsing - uu-cco-uu-parsinglib - uu-options + - uuagc - uuid-crypto - uvector-algorithms - v4l2 @@ -3685,6 +3743,7 @@ dont-distribute-packages: - wavy - weatherhs - weave + - web-browser-in-haskell - web-mongrel2 - web-routes-hsp - web-routes-regular @@ -3702,8 +3761,10 @@ dont-distribute-packages: - WebCont - webcrank-wai - webdriver-w3c + - webdriver_0_13_0_0 - webify - webserver + - websnap - WEditorBrick - WEditorHyphen - weekdaze @@ -3716,13 +3777,14 @@ dont-distribute-packages: - wheb-strapped - whitespace - wholepixels + - WidgetRattus - wikimusic-api - wikimusic-api-spec - wikimusic-ssr - wikipedia4epub + - wild-bind-task-x11 - windowslive - winery - - winio - Wired - wl-pprint-ansiterm - wl-pprint-terminfo @@ -3833,6 +3895,7 @@ dont-distribute-packages: - yoko - york-lava - yql + - yu-auth - yu-launch - yuuko - Z-Botan diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 88fe314bdffc..16573cbe5051 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -123,6 +123,9 @@ builtins.intersectAttrs super { + drv.preCheck or ""; }) super.agda2lagda; + # Executable is of interest without the closure of the library + fix-whitespace = enableSeparateBinOutput super.fix-whitespace; + # scrypt requires SSE2 password = super.password.override ( lib.optionalAttrs (!(lib.meta.availableOn pkgs.stdenv.hostPlatform self.scrypt)) { @@ -155,7 +158,13 @@ builtins.intersectAttrs super { # cabal2nix incorrectly resolves this to pkgs.zip (could be improved over there). streamly-zip = super.streamly-zip.override { zip = pkgs.libzip; }; - threadscope = enableSeparateBinOutput super.threadscope; + # Requires wrapGAppsHook otherwise we get: https://github.com/haskell/ThreadScope/issues/143 + # We cannot use enableSeparateBinOutput here since it doesn't work with wrapGAppsHook + threadscope = ( + overrideCabal (drv: { + executableToolDepends = (drv.executableToolDepends or [ ]) ++ [ pkgs.wrapGAppsHook3 ]; + }) super.threadscope + ); # Binary may be used separately for e.g. editor integrations cabal-cargs = enableSeparateBinOutput super.cabal-cargs; @@ -263,7 +272,22 @@ builtins.intersectAttrs super { ormolu = self.generateOptparseApplicativeCompletions [ "ormolu" ] ( enableSeparateBinOutput super.ormolu ); - hnix = self.generateOptparseApplicativeCompletions [ "hnix" ] super.hnix; + + hnix = lib.pipe super.hnix [ + (self.generateOptparseApplicativeCompletions [ "hnix" ]) + # For nix-instantiate(1) + (addTestToolDepends [ pkgs.nix ]) + (overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "-p" + # Need to connect to the Nix daemon (?) + "!(/eval-okay-context-introspection/ || /eval-okay-context/ || /eval-okay-eq-derivations/ || /eval-okay-path/)" + ]; + })) + ]; + + # Provides a library and an executable (pretty-derivation) + nix-derivation = enableSeparateBinOutput super.nix-derivation; # Generate shell completion. cabal2nix = self.generateOptparseApplicativeCompletions [ "cabal2nix" ] super.cabal2nix; @@ -423,6 +447,14 @@ builtins.intersectAttrs super { hasql-pool = dontCheck super.hasql-pool; hasql-transaction = dontCheck super.hasql-transaction; + # Test dependency tree-sitter-while is not uploaded to Hackage, + # so cabal2nix automatically marks it as broken + hs-tree-sitter-capi = lib.pipe super.hs-tree-sitter-capi [ + dontCheck + doDistribute + unmarkBroken + ]; + # Avoid compiling twice by providing executable as a separate output (with small closure size), postgres-websockets = lib.pipe super.postgres-websockets [ enableSeparateBinOutput @@ -752,6 +784,15 @@ builtins.intersectAttrs super { # Break infinite recursion cycle with criterion and network-uri. js-flot = dontCheck super.js-flot; + # Test suite unsets PATH, but wants to be able to run `whoami` + # https://github.com/stackbuilders/dotenv-hs/commit/6125dc2d260c5042f5416c1431882d1c2c91d3c8#issuecomment-3163926427 + dotenv = overrideCabal (drv: { + postPatch = drv.postPatch or "" + '' + substituteInPlace spec/fixtures/.dotenv spec/Configuration/DotenvSpec.hs \ + --replace-fail "whoami" "$(type -p whoami)" + ''; + }) super.dotenv; + # Break infinite recursion cycle between QuickCheck and splitmix. splitmix = dontCheck super.splitmix; splitmix_0_1_1 = dontCheck super.splitmix_0_1_1; @@ -774,11 +815,30 @@ builtins.intersectAttrs super { # loc and loc-test depend on each other for testing. Break that infinite cycle: loc-test = super.loc-test.override { loc = dontCheck self.loc; }; - # The test suites try to run the "fixpoint" and "liquid" executables built just - # before and fail because the library search paths aren't configured properly. - # Also needs https://github.com/ucsd-progsys/liquidhaskell/issues/1038 resolved. - liquid-fixpoint = disableSharedExecutables super.liquid-fixpoint; - liquidhaskell = dontCheck (disableSharedExecutables super.liquidhaskell); + smtlib-backends-process = overrideCabal (drv: { + testSystemDepends = (drv.testSystemDepends or [ ]) ++ [ pkgs.z3 ]; + }) super.smtlib-backends-process; + + # overrideCabal because the tests need to execute the built executable "fixpoint" + liquid-fixpoint = overrideCabal (drv: { + preCheck = '' + export PATH=$PWD/dist/build/fixpoint:$PATH + '' + + (drv.preCheck or ""); + testSystemDepends = (drv.testSystemDepends or [ ]) ++ [ + pkgs.cvc5 + pkgs.z3 + ]; + }) super.liquid-fixpoint; + + # overrideCabal because the tests need to execute the built executable "liquid" + liquidhaskell = overrideCabal (drv: { + preCheck = '' + export PATH=$PWD/dist/build/liquid:$PATH + '' + + (drv.preCheck or ""); + libraryToolDepends = (drv.libraryToolDepends or [ ]) ++ [ pkgs.z3 ]; + }) super.liquidhaskell; # Break cyclic reference that results in an infinite recursion. partial-semigroup = dontCheck super.partial-semigroup; @@ -1267,22 +1327,7 @@ builtins.intersectAttrs super { # not used to link against by anyone, we can make it’s closure smaller and # add its runtime dependencies in `haskellPackages` (as opposed to cabal2nix). cabal2nix-unstable = overrideCabal (drv: { - buildTools = (drv.buildTools or [ ]) ++ [ - pkgs.buildPackages.makeWrapper - ]; - postInstall = '' - ${drv.postInstall or ""} - - wrapProgram $out/bin/cabal2nix \ - --prefix PATH ":" "${ - pkgs.lib.makeBinPath [ - pkgs.nix - pkgs.nix-prefetch-scripts - ] - }" - ''; - - passthru = { + passthru = drv.passthru or { } // { updateScript = ../../../maintainers/scripts/haskell/update-cabal2nix-unstable.sh; # This is used by regenerate-hackage-packages.nix to supply the configuration @@ -1308,7 +1353,7 @@ builtins.intersectAttrs super { >> "$out" ''; }; - }) (justStaticExecutables super.cabal2nix-unstable); + }) (enableSeparateBinOutput super.cabal2nix-unstable); # test suite needs local redis daemon nri-redis = dontCheck super.nri-redis; @@ -1714,8 +1759,8 @@ builtins.intersectAttrs super { gi-javascriptcore4 gi-javascriptcore6 gi-webkit2webextension - gi-gtk_4_0_12 - gi-gdk_4_0_10 + gi-gtk + gi-gdk gi-gdk4 gi-gdkx114 gi-gtk4 @@ -1742,6 +1787,31 @@ builtins.intersectAttrs super { jsaddle-warp = addTestToolDepends [ pkgs.nodejs ] super.jsaddle-warp; + # Hackage tarball doesn't have the executable bits from git repo + wai-app-file-cgi = overrideCabal (drv: { + preCheck = '' + ${drv.preCheck or ""} + chmod +x test/cgi-bin/* + patchShebangs test/cgi-bin + ''; + }) super.wai-app-file-cgi; + + # All flags are off by default + mighttpd2 = lib.pipe super.mighttpd2 [ + # Library shouldn't increase closure size of resulting daemon and utility executables + enableSeparateBinOutput + # Enable all possible features + (enableCabalFlag "dhall") + (addBuildDepends [ self.dhall ]) + (enableCabalFlag "tls") + (addBuildDepends [ + self.warp-tls + self.tls + ]) + # Can't build quic with Stackage LTS at the moment (random >= 1.3, tls >= 2.1.10) + (disableCabalFlag "quic") + ]; + # Makes the mpi-hs package respect the choice of mpi implementation in Nixpkgs. # Also adds required test dependencies for checks to pass mpi-hs = @@ -1807,47 +1877,29 @@ builtins.intersectAttrs super { xmobar = enableSeparateBinOutput super.xmobar; - # These test cases access the network - hpack_0_38_1 = doDistribute ( - overrideCabal (drv: { - testFlags = drv.testFlags or [ ] ++ [ - "--skip" - "/Hpack.Defaults/ensureFile/with 404/does not create any files/" - "--skip" - "/Hpack.Defaults/ensureFile/downloads file if missing/" - "--skip" - "/EndToEnd/hpack/defaults/fails if defaults don't exist/" - ]; - }) super.hpack_0_38_1 - ); + # Combination of library and executable + extensions = enableSeparateBinOutput super.extensions; - # 2024-08-09: Disable some cabal-doctest tests pending further investigation. - inherit - (lib.mapAttrs ( - _: doctest: - lib.pipe doctest [ - (overrideCabal (drv: { - patches = drv.patches or [ ] ++ [ - (pkgs.fetchpatch { - name = "doctest-0.23.0-ghc-9.12.patch"; - url = "https://github.com/sol/doctest/commit/77373c5d84cd5e59ea86ec30b9ada874f50fad9e.patch"; - sha256 = "07dx99lna17fni1ccbklijx1ckkf2p4kk9wvkwib0ihmra70zpn2"; - includes = [ "test/**" ]; - }) - ]; - testFlags = drv.testFlags or [ ] ++ [ - # These tests require cabal-install (would cause infinite recursion) - "--skip=/Cabal.Options" - "--skip=/Cabal.Paths/paths" - "--skip=/Cabal.ReplOptions" # >= 0.23 - ]; - })) - doDistribute - ] - ) { inherit (super) doctest doctest_0_23_0; }) - doctest - doctest_0_23_0 - ; + # These test cases access the network + hpack = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "--skip" + "/Hpack.Defaults/ensureFile/with 404/does not create any files/" + "--skip" + "/Hpack.Defaults/ensureFile/downloads file if missing/" + "--skip" + "/EndToEnd/hpack/defaults/fails if defaults don't exist/" + ]; + }) super.hpack; + + doctest = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + # These tests require cabal-install (would cause infinite recursion) + "--skip=/Cabal.Options" + "--skip=/Cabal.Paths/paths" + "--skip=/Cabal.ReplOptions" # >= 0.23 + ]; + }) super.doctest; # tracked upstream: https://github.com/snapframework/openssl-streams/pull/11 # certificate used only 1024 Bit RSA key and SHA-1, which is not allowed in OpenSSL 3.1+ diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e14151c0e37f..6c207cb876cd 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1039,8 +1039,8 @@ self: { { mkDerivation, base }: mkDerivation { pname = "ANum"; - version = "0.2.0.2"; - sha256 = "06mvkp9b0hxlp1w2yp7bb6340l88mzs15azx7nma401icqdhvbpn"; + version = "0.2.0.4"; + sha256 = "19wacb1n731b5xckhryry3kyxdp6wmzgw54jv70y18an3jdnlzhd"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "Num instance for Applicatives provided via the ANum newtype"; @@ -2123,8 +2123,6 @@ self: { doHaddock = false; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -2209,8 +2207,6 @@ self: { ]; description = "First-class Attribute Grammars implemented using type-level programming"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -2251,6 +2247,8 @@ self: { ]; description = "An asynchronous modal FRP language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -2432,7 +2430,6 @@ self: { ]; description = "Balanced binary trees using the AVL algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -2550,8 +2547,8 @@ self: { }: mkDerivation { pname = "BNFC"; - version = "2.9.5"; - sha256 = "0ssp096ilnwyn1n20jlnkv67r033g7sm18w20ilc64mxlaifjdgs"; + version = "2.9.6.1"; + sha256 = "0h06vg9d71igr4rvs82f8sfa0grv6cvwpix82wal7b1ri0gskz97"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -2617,8 +2614,8 @@ self: { pname = "BNFC-meta"; version = "0.6.1"; sha256 = "0snackflcjxza4iqbd85fdsmylwr3bj71nsfrs2s2idc3nlxc7ia"; - revision = "5"; - editedCabalFile = "1d0p524370r8jff7p3rnp6hrqlr85nhg8n2ydpfjwwmp4arp1il2"; + revision = "6"; + editedCabalFile = "12nc2pxd5cmy51avgbcnygg7v3aw214mj8ja2yi4llzd0pj4xwqy"; libraryHaskellDepends = [ alex-meta array @@ -4404,6 +4401,7 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Batteries-included Structured Logging library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -4457,6 +4455,7 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Using Blammo with WAI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -5379,15 +5378,11 @@ self: { { mkDerivation, base }: mkDerivation { pname = "COrdering"; - version = "2.3"; - sha256 = "1lkav4wkyrraq1f6kyqfyjrxasgkayg4hmyv8a1gkr4h484b1cx8"; - revision = "1"; - editedCabalFile = "00byh0a7j7gnv8aq67fiairzvwz9csg49s2zqqj9f5pwgpmccn1v"; + version = "2.3.1"; + sha256 = "1my9l7rxsnr78xqsmajbr6jk0rxy8mm7i8f3s8v0k6l0qr5ig3w3"; libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -5933,6 +5928,57 @@ self: { } ) { }; + Cabal_3_16_0_0 = callPackage ( + { + mkDerivation, + array, + base, + bytestring, + Cabal-syntax, + containers, + deepseq, + directory, + filepath, + mtl, + parsec, + pretty, + process, + time, + transformers, + unix, + }: + mkDerivation { + pname = "Cabal"; + version = "3.16.0.0"; + sha256 = "030v97qnq7299ldi6zz9lb8ashldybp9l1x2f9ga8l7m8xns72nn"; + setupHaskellDepends = [ + mtl + parsec + ]; + libraryHaskellDepends = [ + array + base + bytestring + Cabal-syntax + containers + deepseq + directory + filepath + mtl + parsec + pretty + process + time + transformers + unix + ]; + doCheck = false; + description = "A framework for packaging Haskell software"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + Cabal-hooks = callPackage ( { mkDerivation, @@ -5944,8 +5990,8 @@ self: { }: mkDerivation { pname = "Cabal-hooks"; - version = "3.14"; - sha256 = "0fj770ix5a9n7nbfmp0919c2qgg20h3m1lwjdwq27mrgzk770s57"; + version = "3.16"; + sha256 = "1s28vzj1s4yc54w4nrxvj786f9h5p89mazww3iia7m7sb2r21fjr"; libraryHaskellDepends = [ base Cabal @@ -5955,6 +6001,8 @@ self: { ]; description = "API for the Hooks build-type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -6226,6 +6274,52 @@ self: { } ) { }; + Cabal-syntax_3_16_0_0 = callPackage ( + { + mkDerivation, + alex, + array, + base, + binary, + bytestring, + containers, + deepseq, + directory, + filepath, + mtl, + parsec, + pretty, + text, + time, + transformers, + }: + mkDerivation { + pname = "Cabal-syntax"; + version = "3.16.0.0"; + sha256 = "17w0av34br7l5p2hw4bvzjmmrass6s0775big1w3hiig0lbx8nzl"; + libraryHaskellDepends = [ + array + base + binary + bytestring + containers + deepseq + directory + filepath + mtl + parsec + pretty + text + time + transformers + ]; + libraryToolDepends = [ alex ]; + description = "A library for working with .cabal files"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + CabalSearch = callPackage ( { mkDerivation, @@ -7424,63 +7518,12 @@ self: { description = "An FFI interface to the DevIL library"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { IL = null; }; Color = callPackage ( - { - mkDerivation, - base, - colour, - criterion, - data-default-class, - deepseq, - hspec, - hspec-discover, - HUnit, - JuicyPixels, - massiv, - massiv-test, - QuickCheck, - random, - vector, - }: - mkDerivation { - pname = "Color"; - version = "0.3.3"; - sha256 = "14sf71lhqc1w6s3p1k8a99xgzcwfnr3v5irvfkr09rvv7fd66nva"; - libraryHaskellDepends = [ - base - data-default-class - deepseq - vector - ]; - testHaskellDepends = [ - base - colour - hspec - HUnit - JuicyPixels - massiv - massiv-test - QuickCheck - random - vector - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - base - colour - criterion - deepseq - random - ]; - description = "Color spaces and conversions between them"; - license = lib.licenses.bsd3; - } - ) { }; - - Color_0_4_0 = callPackage ( { mkDerivation, base, @@ -7530,7 +7573,6 @@ self: { ]; description = "Color spaces and conversions between them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -7789,7 +7831,9 @@ self: { ]; description = "Cluster algorithms, PCA, and chemical conformere analysis"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "conclusion"; + broken = true; } ) { }; @@ -8425,13 +8469,14 @@ self: { HUnit, mtl, old-locale, + open-browser, QuickCheck, time, }: mkDerivation { pname = "Craft3e"; - version = "0.1.1.1"; - sha256 = "0p5cdayl6j25pk7ab857bf3mcdp73464z56d98apnsb94j0d3whg"; + version = "0.2.0.2"; + sha256 = "1i0w6sxzi0v1vc5nd72q4pvqk9wcckhm7nmbrvh7ib3vjfyngsjb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -8439,10 +8484,11 @@ self: { HUnit mtl old-locale + open-browser QuickCheck time ]; - doHaddock = false; + executableHaskellDepends = [ base ]; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; @@ -8772,7 +8818,9 @@ self: { ]; description = "DBFunctor - Functional Data Management => ETL/ELT Data Processing in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dbfunctor-example"; + broken = true; } ) { }; @@ -10141,44 +10189,6 @@ self: { ) { }; Diff = callPackage ( - { - mkDerivation, - array, - base, - directory, - pretty, - process, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "Diff"; - version = "0.5"; - sha256 = "0la5npl3zglzbsnlbksp0s6khb79cm6hbdxhy29sd3xivzg89k03"; - revision = "1"; - editedCabalFile = "1fxg0ibi80dq68draxfh1p0n4mkmyn7gm0b51jwpkq6rx8p9g2lw"; - libraryHaskellDepends = [ - array - base - pretty - ]; - testHaskellDepends = [ - array - base - directory - pretty - process - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Diff algorithm in pure Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - Diff_1_0_2 = callPackage ( { mkDerivation, array, @@ -10211,7 +10221,6 @@ self: { ]; description = "Diff algorithm in pure Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -12647,8 +12656,8 @@ self: { }: mkDerivation { pname = "FULE"; - version = "0.3.1.1"; - sha256 = "04hmq6hv6wbs51ckbdia1jrd8a3qw645x9g550m4iwhy89gs0dnq"; + version = "0.3.1.2"; + sha256 = "07i0bzindm64fczhblzirrjhal09c0hfwn1zw1fcrbllk958m2z4"; libraryHaskellDepends = [ base containers @@ -13334,6 +13343,7 @@ self: { ]; description = "Finite categories and usual categorical constructions on them"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -14226,6 +14236,8 @@ self: { ]; description = "Data frames for working with tabular data files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -15038,8 +15050,8 @@ self: { pname = "GLUT"; version = "2.7.0.16"; sha256 = "0vdkfj4wjzigdpzgr5l001y9wkhwgl00mclr26gf93kps14fkymn"; - revision = "3"; - editedCabalFile = "00jj0f8vxfz11kpw673v5hs72xciyz4jvhp8p74cbqyj11dbp35d"; + revision = "4"; + editedCabalFile = "0xfm8l90llyyqj3aip0i87ykq936zfl3bc7sibgdng8dhi5xj7y3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -15108,10 +15120,8 @@ self: { }: mkDerivation { pname = "GOST34112012-Hash"; - version = "0.1.1.2"; - sha256 = "143nppw4b5drfx3444a1gw02x0cjj0ngfcrai1aj03mf88ikgjj4"; - revision = "2"; - editedCabalFile = "0rir26yvx52qvrzribdy3l2d07p4wq287iwr62qn4h0wdc4240dh"; + version = "0.1.1.3"; + sha256 = "1ppib03jgnyciy3080669f0xni6a99x7yrv576rajqy2bwip84s2"; libraryHaskellDepends = [ base bytestring @@ -15124,8 +15134,6 @@ self: { ]; description = "Bindings to the GOST R 34.11-2012 hashing implementation"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -17068,7 +17076,6 @@ self: { ]; description = "The Haskell/R mixed programming environment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "H"; } ) { }; @@ -19287,6 +19294,7 @@ self: { ]; description = "A flexible mock framework for testing effectful code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -19492,6 +19500,76 @@ self: { } ) { }; + HPDF_1_8 = callPackage ( + { + mkDerivation, + array, + base, + base64-bytestring, + binary, + bytestring, + containers, + errors, + file-embed, + filepath, + HTF, + hyphenation, + mtl, + network-uri, + parsec, + random, + text, + vector, + zlib, + }: + mkDerivation { + pname = "HPDF"; + version = "1.8"; + sha256 = "0ni65ga5dkpyp357xwkn809b52k6p08hdq9agbqr3ny4yligvi2k"; + revision = "1"; + editedCabalFile = "06887s81xfzpz6cx3indnhhv8i1zkgripp157m01ar0yma5f82pl"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array + base + base64-bytestring + binary + bytestring + containers + errors + file-embed + filepath + hyphenation + mtl + network-uri + parsec + random + text + vector + zlib + ]; + executableHaskellDepends = [ + array + base + filepath + network-uri + random + text + vector + ]; + testHaskellDepends = [ + base + HTF + ]; + testToolDepends = [ HTF ]; + description = "Generation of PDF documents"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "HPDF-Demo"; + } + ) { }; + HPath = callPackage ( { mkDerivation, @@ -21207,53 +21285,6 @@ self: { ) { }; HaTeX = callPackage ( - { - mkDerivation, - base, - bibtex, - bytestring, - containers, - hashable, - matrix, - parsec, - prettyprinter, - QuickCheck, - tasty, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "HaTeX"; - version = "3.22.4.2"; - sha256 = "1wfyzv5kpi5npqfya11dalrxffygcz7rdsmk8kk85fvzyka8p5kf"; - libraryHaskellDepends = [ - base - bibtex - bytestring - containers - hashable - matrix - parsec - prettyprinter - QuickCheck - text - transformers - ]; - testHaskellDepends = [ - base - parsec - QuickCheck - tasty - tasty-quickcheck - text - ]; - description = "The Haskell LaTeX library"; - license = lib.licenses.bsd3; - } - ) { }; - - HaTeX_3_23_0_1 = callPackage ( { mkDerivation, base, @@ -21297,7 +21328,6 @@ self: { ]; description = "The Haskell LaTeX library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -22493,6 +22523,200 @@ self: { } ) { }; + Hastructure = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + attoparsec, + attoparsec-aeson, + base, + base-compat, + bytestring, + containers, + Decimal, + deepseq, + dlist, + generic-lens, + hashable, + http-types, + lens, + math-functions, + MissingH, + monad-loops, + mtl, + numeric-limits, + openapi3, + parallel, + regex-base, + regex-pcre-builtin, + scientific, + servant, + servant-openapi3, + servant-server, + split, + string-conversions, + swagger2, + tabular, + tasty, + tasty-golden, + tasty-hspec, + tasty-hunit, + template-haskell, + text, + time, + vector, + wai, + wai-cors, + warp, + yaml, + }: + mkDerivation { + pname = "Hastructure"; + version = "0.50.4"; + sha256 = "15g4hsgh2spfmynz4rs9za0ifcgdgcvp4n5qgm2szf4i9sdly0cf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + aeson-pretty + attoparsec + attoparsec-aeson + base + base-compat + bytestring + containers + Decimal + deepseq + dlist + generic-lens + hashable + http-types + lens + math-functions + MissingH + monad-loops + mtl + numeric-limits + openapi3 + parallel + regex-base + regex-pcre-builtin + scientific + servant + servant-openapi3 + servant-server + split + string-conversions + swagger2 + tabular + template-haskell + text + time + vector + wai + wai-cors + warp + yaml + ]; + executableHaskellDepends = [ + aeson + aeson-pretty + attoparsec + attoparsec-aeson + base + base-compat + bytestring + containers + Decimal + deepseq + dlist + generic-lens + hashable + http-types + lens + math-functions + MissingH + monad-loops + mtl + numeric-limits + openapi3 + parallel + regex-base + regex-pcre-builtin + scientific + servant + servant-openapi3 + servant-server + split + string-conversions + swagger2 + tabular + tasty + tasty-golden + tasty-hspec + tasty-hunit + template-haskell + text + time + vector + wai + wai-cors + warp + yaml + ]; + testHaskellDepends = [ + aeson + aeson-pretty + attoparsec + attoparsec-aeson + base + base-compat + bytestring + containers + Decimal + deepseq + dlist + generic-lens + hashable + http-types + lens + math-functions + MissingH + monad-loops + mtl + numeric-limits + openapi3 + parallel + regex-base + regex-pcre-builtin + scientific + servant + servant-openapi3 + servant-server + split + string-conversions + swagger2 + tabular + tasty + tasty-golden + tasty-hspec + tasty-hunit + template-haskell + text + time + vector + wai + wai-cors + warp + yaml + ]; + description = "Cashflow modeling library for structured finance"; + license = lib.licenses.bsd3; + mainProgram = "Hastructure-exe"; + } + ) { }; + Hate = callPackage ( { mkDerivation, @@ -24353,6 +24577,8 @@ self: { ]; description = "A package for solving dynamic programming problems in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -26007,6 +26233,8 @@ self: { ]; description = "Scale JuicyPixels images with DCT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -26236,21 +26464,27 @@ self: { mkDerivation, base, containers, + directory, + generic-lens, + lens, mtl, }: mkDerivation { pname = "Kawaii-Parser"; - version = "2.0.0"; - sha256 = "1b0b6hr128jahwlivl0w27s11l51p6y5xjijjlgqhb17yjicxfl1"; + version = "3.0.0"; + sha256 = "09zj4ryqypd46i4ilfqx9mf9y9cs4p4gjyqyks3a11b0qmvlhna9"; + revision = "2"; + editedCabalFile = "0m63mixkaiwzw0m6ksl28q26cijkkxiydrjn6vcz10ymfyjm7mkw"; libraryHaskellDepends = [ base containers + directory + generic-lens + lens mtl ]; - description = "A simple parsing library"; + description = "A simple parsing library and some additional utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -27946,15 +28180,14 @@ self: { fmlist, HUnit, QuickCheck, - random, text, utf8-string, vector, }: mkDerivation { pname = "ListLike"; - version = "4.7.8.3"; - sha256 = "0diq2dzg2bhl40n9xidlnlzxyqdi11rybqrkgmxg3msypzlvxzhl"; + version = "4.7.8.4"; + sha256 = "1i397ig6pz1aa404gfjz2s340mlc97x9yywprx3hp684q81ybirv"; libraryHaskellDepends = [ array base @@ -27976,7 +28209,6 @@ self: { fmlist HUnit QuickCheck - random text utf8-string vector @@ -29652,7 +29884,6 @@ self: { ]; description = "A small compiler for Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "mhs"; } ) { }; @@ -29708,27 +29939,31 @@ self: { happy, haskell-src-exts, mtl, + optparse-applicative, pretty, process, + string-qq, transformers, }: mkDerivation { pname = "MiniAgda"; - version = "0.2022.3.11"; - sha256 = "1h1zcq3hsx8nxayzp3sa1qd1mlaigshqknkp3xn66yiv08f6vgmc"; - isLibrary = false; + version = "0.2025.7.23"; + sha256 = "13vxbq62jvbrgcxmswcb8izfwyh5d01a6n47vaz0i6qkx5hwx7xk"; + isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; - executableHaskellDepends = [ + libraryHaskellDepends = [ array base containers haskell-src-exts mtl + optparse-applicative pretty + string-qq transformers ]; - executableToolDepends = [ + libraryToolDepends = [ alex happy ]; @@ -31613,47 +31848,6 @@ self: { ) { }; NanoID = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - extra, - mwc-random, - optparse-applicative, - text, - }: - mkDerivation { - pname = "NanoID"; - version = "3.4.0.2"; - sha256 = "1dddc7aakhrj65kdspj8ashfdfl894ybqf7iwy94l344ikldfkaj"; - revision = "2"; - editedCabalFile = "0yb2bkc0mdywmn1px7i4fpfa6n37fj1fgdzsl3bmcbw9w26qikxc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - extra - mwc-random - text - ]; - executableHaskellDepends = [ - base - bytestring - mwc-random - optparse-applicative - ]; - description = "NanoID generator"; - license = lib.licenses.bsd3; - mainProgram = "nanoid"; - } - ) { }; - - NanoID_3_4_1_1 = callPackage ( { mkDerivation, aeson, @@ -31690,7 +31884,6 @@ self: { ]; description = "NanoID generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nanoid"; } ) { }; @@ -34156,17 +34349,19 @@ self: { base, QuickCheck, tasty, + tasty-hunit, tasty-quickcheck, }: mkDerivation { pname = "PSQueue"; - version = "1.2.1"; - sha256 = "0h46jcpmispysxgj4jy69p9b3ksi981q8qnabs0bjq60c28dks85"; + version = "1.2.2"; + sha256 = "1jm8fswmmlrlg0cxgc358sc4jinjligm5qzqrzdli8pi8d06p5ni"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base QuickCheck tasty + tasty-hunit tasty-quickcheck ]; description = "Priority Search Queue"; @@ -34903,8 +35098,10 @@ self: { }: mkDerivation { pname = "PenroseKiteDart"; - version = "1.4.3"; - sha256 = "1nrp9cr7jxjvplkfgp4lxh3rvzf1pms8bm7kwhc4w4fzmpy3p3p1"; + version = "1.5"; + sha256 = "0p0nf91vy5akgpnv8bb0i7bv92y0z774yh5xxynkf5f4rn7bcqjg"; + revision = "2"; + editedCabalFile = "1xdnbssmm0h9dvqpxivs2i037r5sj7cn5pnqzsm1h9cainj2w9g9"; libraryHaskellDepends = [ base containers @@ -36360,8 +36557,10 @@ self: { }: mkDerivation { pname = "QuickCheck"; - version = "2.14.3"; - sha256 = "0085lwy14r7hk7ibmv8d7d54ja9zin0ijf0b27xai898dfrj43sw"; + version = "2.15.0.1"; + sha256 = "0zvfydg44ibs1br522rzvdlxj9mpz0h62js1hay1sj5gvdnj3cm3"; + revision = "1"; + editedCabalFile = "0cgfp4s51cjphsn9cls6rndisvqmi94vn95xan9g1yz6p5xk7z8c"; libraryHaskellDepends = [ base containers @@ -36373,6 +36572,7 @@ self: { ]; testHaskellDepends = [ base + containers deepseq process ]; @@ -37477,34 +37677,6 @@ self: { ) { }; Ranged-sets = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "Ranged-sets"; - version = "0.4.0"; - sha256 = "1skd2a6yw7dd5vq8x81kwh28gi8sgyzg9qqqyadxmgpvy11sh9ab"; - revision = "2"; - editedCabalFile = "1dl69wa509yn2jvl0d4c5c036swq22i6nd73kqn0bp7vhbj4rfq4"; - libraryHaskellDepends = [ - base - HUnit - QuickCheck - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - ]; - description = "Ranged sets for Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - Ranged-sets_0_5_0 = callPackage ( { mkDerivation, base, @@ -37526,7 +37698,6 @@ self: { ]; description = "Ranged sets for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -37683,6 +37854,8 @@ self: { ]; description = "A modal FRP language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -39211,15 +39384,12 @@ self: { }: mkDerivation { pname = "STMonadTrans"; - version = "0.4.8"; - sha256 = "0ldqsl5axz1xlzha4b58kzpf35nr81ki3psy91zx7lpiv4agz7l3"; - revision = "1"; - editedCabalFile = "0bmmlg4kwsarkkm214fcqdvkah3pbk9ay8m9bnggb3ds7sc897i2"; + version = "0.4.8.1"; + sha256 = "0559yqgkcs520bhipf9pxy6rc7ydy9m48yj5s233g67g83k1ya3v"; libraryHaskellDepends = [ array base mtl - transformers ]; testHaskellDepends = [ array @@ -39297,58 +39467,6 @@ self: { ) { }; SVGFonts = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-markup, - blaze-svg, - bytestring, - cereal, - cereal-vector, - containers, - data-default-class, - diagrams-core, - diagrams-lib, - directory, - parsec, - split, - text, - vector, - xml, - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.8.0.1"; - sha256 = "0r3z7i7x56qvhyc51jlq084c1biy9xn72nm19mw116gx49rm32k9"; - revision = "2"; - editedCabalFile = "1kk7hbsd0aard9457y674rw5yvailfap1jzmvmvzmfi4ripwqxag"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - blaze-markup - blaze-svg - bytestring - cereal - cereal-vector - containers - data-default-class - diagrams-core - diagrams-lib - directory - parsec - split - text - vector - xml - ]; - description = "Fonts from the SVG-Font format"; - license = lib.licenses.bsd3; - } - ) { }; - - SVGFonts_1_8_1 = callPackage ( { mkDerivation, attoparsec, @@ -39395,7 +39513,6 @@ self: { ]; description = "Fonts from the SVG-Font format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -40264,10 +40381,8 @@ self: { }: mkDerivation { pname = "ShellCheck"; - version = "0.10.0"; - sha256 = "08bdjcdl457xz2vh8y2w29bcwh1k7sfzyvszln3498vm5m1xn22d"; - revision = "1"; - editedCabalFile = "1935jrzy1r3g9cc74b330fmxnz2i1j8hsdk9jnl557qgk6xjqzs7"; + version = "0.11.0"; + sha256 = "003lhhmaqbzvddw2im4ki5vz6v4imd8f5cp470gk122p36f2x9w1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42906,16 +43021,14 @@ self: { base, bifunctors, containers, - deepseq, generics-sop, - HUnit, QuickCheck, template-haskell, }: mkDerivation { pname = "StrictCheck"; - version = "0.3.0"; - sha256 = "16p1njy866gsg8jxyhx91x8nq67cr5w61fhqwffh6fyfhcybm2ag"; + version = "0.4.0"; + sha256 = "0l7h39a7a1zc7xrsz6ggscn6406q3wi57n50w8hvdm4dd6qf333f"; libraryHaskellDepends = [ base bifunctors @@ -42926,15 +43039,10 @@ self: { ]; testHaskellDepends = [ base - deepseq - generics-sop - HUnit QuickCheck ]; description = "StrictCheck: Keep Your Laziness In Check"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -43123,7 +43231,6 @@ self: { ]; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -44616,11 +44723,11 @@ self: { pname = "TreeStructures"; version = "0.0.2"; sha256 = "1lcj166i8f7850fqjv7xqxdn6zwpdynzxn3bf243wdnwmnn5pysx"; + revision = "1"; + editedCabalFile = "0znqwxxwash1bwfkx6qf5sd5r8mql262rwwqrm1qaz7xvldpxsk2"; libraryHaskellDepends = [ base ]; description = "A collection of heaps and search trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -45095,10 +45202,8 @@ self: { }: mkDerivation { pname = "Unique"; - version = "0.4.7.9"; - sha256 = "14f1qnmhdmbam8qis725dhwq1mk9h86fsnzhkwhsx73ny9z29s1l"; - revision = "1"; - editedCabalFile = "10s0npnfkh7naj49afmyrvnilikp6426fbhi49f97pxrgcmy4dvw"; + version = "0.4.8.0"; + sha256 = "1wv9dskvs2im5a97h3xm161sbqcbw81d7knk81y876ghqqf3hr56"; libraryHaskellDepends = [ base containers @@ -46229,6 +46334,8 @@ self: { testHaskellDepends = [ base ]; description = "Simple set types. Useful to create sets of arbitrary types and nested sets."; license = lib.licenses.lgpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -46612,6 +46719,7 @@ self: { ]; description = "An asynchronous modal FRP language for GUI programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -48105,40 +48213,6 @@ self: { ) { }; Yampa = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - filepath, - random, - simple-affine-space, - time, - }: - mkDerivation { - pname = "Yampa"; - version = "0.14.12"; - sha256 = "032kzcrxpsdb53xg7qrjl1h8vfd8alfknd8s03zsn8gg85grdnl3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - random - simple-affine-space - ]; - benchmarkHaskellDepends = [ - base - criterion - filepath - time - ]; - description = "Elegant Functional Reactive Programming Language for Hybrid Systems"; - license = lib.licenses.bsd3; - } - ) { }; - - Yampa_0_15 = callPackage ( { mkDerivation, base, @@ -48169,7 +48243,6 @@ self: { ]; description = "Elegant Functional Reactive Programming Language for Hybrid Systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -48731,17 +48804,19 @@ self: { { mkDerivation, base, + syb, syz, }: mkDerivation { pname = "ZipperAG"; - version = "0.9"; - sha256 = "0nl08r7s3r5hr5jag499fillca16wsb8yqz1dlzydvacqcklcxr9"; + version = "1.0.0"; + sha256 = "1rcg38g6qkzvnfixidsvbwv0lrl8p3rpzlxyc0v7pziwvq8sadqk"; libraryHaskellDepends = [ base + syb syz ]; - description = "An implementationg of Attribute Grammars using Functional Zippers"; + description = "An implementation of Attribute Grammars using Functional Zippers"; license = lib.licenses.bsd3; } ) { }; @@ -49294,8 +49369,8 @@ self: { }: mkDerivation { pname = "ac-library-hs"; - version = "1.5.2.0"; - sha256 = "028781j64wv42j9i2gmgccmlakyjchpxqk13rk5n59xavlyv7yw9"; + version = "1.5.3.0"; + sha256 = "059b54g043b5a8zszavdzw8s8pgiz6zi6qzi7zjdyi2vlxam6v6l"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -49305,6 +49380,7 @@ self: { primitive random transformers + unordered-containers vector vector-algorithms wide-word @@ -49316,6 +49392,7 @@ self: { primitive random transformers + unordered-containers vector vector-algorithms wide-word @@ -49354,6 +49431,7 @@ self: { random tagged transformers + unordered-containers vector vector-algorithms wide-word @@ -49537,6 +49615,8 @@ self: { ]; description = "An embedded language for accelerated array processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -50178,6 +50258,7 @@ self: { ]; description = "Convert between Accelerate arrays and raw pointers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -50354,6 +50435,7 @@ self: { ]; description = "Binary serialisation of Accelerate arrays using serialise"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -51029,10 +51111,8 @@ self: { }: mkDerivation { pname = "acid-state"; - version = "0.16.1.3"; - sha256 = "0vmggxzp6alv92ycwc9bc53vn73s1cbn8rhmbcb2jvcglyakvws5"; - revision = "2"; - editedCabalFile = "1a6l987cajb70h3i6gpd4im7s0y81cikkyr10hyc6lkq79inlr26"; + version = "0.16.1.4"; + sha256 = "1z3q0d83dmdhr2s0bh4vhlyz82wik3w8gdmqs5mxk6kw6g7f0xzl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -51065,7 +51145,6 @@ self: { directory hedgehog hspec - hspec-discover mtl network safecopy @@ -51280,6 +51359,7 @@ self: { ]; description = "Spineless containers which are fast to read but inefficient to update"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -52674,7 +52754,9 @@ self: { ]; description = "Convert adblock config files to privoxy format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "adblock2privoxy"; + broken = true; } ) { }; @@ -53851,6 +53933,8 @@ self: { ]; description = "Aeson combinators for dead simple JSON decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -54579,6 +54663,8 @@ self: { ]; description = "Type-level default fields for aeson Generic FromJSON parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -54778,41 +54864,6 @@ self: { ) { }; aeson-jsonpath = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - parsec, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "aeson-jsonpath"; - version = "0.2.0.0"; - sha256 = "1zh3psdbmcvfai6sfnkxhzfsk9icw3fbadhkhcs5k2lag9fhzy76"; - libraryHaskellDepends = [ - aeson - base - parsec - template-haskell - text - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - parsec - vector - ]; - description = "Parse and run JSONPath queries on Aeson documents"; - license = lib.licenses.mit; - } - ) { }; - - aeson-jsonpath_0_3_0_2 = callPackage ( { mkDerivation, aeson, @@ -54848,7 +54899,6 @@ self: { ]; description = "Parse and run JSONPath queries on Aeson documents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -56674,8 +56724,8 @@ self: { }: mkDerivation { pname = "agda2hs"; - version = "1.3"; - sha256 = "0vifmyqyhsjib3yqdxj59qlxh22wmbz7vbj1z0axwfpvy5mhvidk"; + version = "1.4"; + sha256 = "1i5knj68c90gpwfgsmfi7ps3arw2kjs5h838byj0d5i1s7qnl8m8"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -56736,6 +56786,40 @@ self: { } ) { }; + agda2lagda_0_2025_9_5 = callPackage ( + { + mkDerivation, + base, + directory, + filepath, + goldplate, + optparse-applicative, + process, + }: + mkDerivation { + pname = "agda2lagda"; + version = "0.2025.9.5"; + sha256 = "05j9yv8hh3mi15s2fzrqz3db98mpqkxmjhkkgy7q50irh0b4ph14"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base + directory + filepath + optparse-applicative + ]; + testHaskellDepends = [ + base + process + ]; + testToolDepends = [ goldplate ]; + description = "Translate .agda files into .lagda.tex files."; + license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + mainProgram = "agda2lagda"; + } + ) { }; + agda2train = callPackage ( { mkDerivation, @@ -58101,8 +58185,8 @@ self: { }: mkDerivation { pname = "alex"; - version = "3.5.3.0"; - sha256 = "1ily1dp24i760m8p4l7x99ig532v8g1lxqp24f2i6dr8vpi55kd5"; + version = "3.5.4.0"; + sha256 = "1plasa0h85dfcga2h4yd1bqfi8smx4ghscyg299nh3lhqkr71sm9"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -58193,8 +58277,8 @@ self: { pname = "alex-tools"; version = "0.6.1"; sha256 = "1nh8qbsv4sn6gxc7j8cbp2pb85cajilzhp8rchlwnk7bv8lzf8ji"; - revision = "3"; - editedCabalFile = "020l3qsm10jag2lblcfr7anissn2gi2p9nagwcs8am56siv14n0h"; + revision = "4"; + editedCabalFile = "05q29c54lkd3qcsixlwwcsy0f0pfpqlqv2n9kd6jrzs08whrgj4m"; libraryHaskellDepends = [ base bytestring @@ -59741,7 +59825,6 @@ self: { ]; description = "A compiler for the Alpha language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "alpha"; } ) { }; @@ -60322,6 +60405,8 @@ self: { pname = "altsvc"; version = "0.1.0.0"; sha256 = "0lgfj02ryc3130ymrkw179j311df2cj0ry9w32mvd77mwx48396c"; + revision = "1"; + editedCabalFile = "1la8bczba2qswdd8skz7cwkrnk1yjllv0kg00nrk9lkisz60wyff"; libraryHaskellDepends = [ base bytestring @@ -75040,8 +75125,8 @@ self: { }: mkDerivation { pname = "amqp-utils"; - version = "0.6.6.0"; - sha256 = "08s3djzf4jpz765myxa2jl4sng61892xalczsgka2rnpgvxgcap0"; + version = "0.6.7.2"; + sha256 = "0ypkx415bvd7rd5466df3c9rhplgirwr61c7dswkwwnjwnvvz85w"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -76098,8 +76183,8 @@ self: { }: mkDerivation { pname = "anitomata-aseprite"; - version = "0.1.1.3"; - sha256 = "0zbqvhj3rlzma19mw6mwdwwqknribm7srn390zvzf5gfzcp5gi70"; + version = "0.1.1.4"; + sha256 = "1s7a2b92qdp3sq55dyyqb31j35amwmiq7ksf0xswzkamhvkq05kd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -76443,8 +76528,8 @@ self: { }: mkDerivation { pname = "ansi-terminal"; - version = "1.1.2"; - sha256 = "1c2n051943gkwc87vpw7nrjxr5hivzq128x9k5j2mqji0hz4ml58"; + version = "1.1.3"; + sha256 = "14n0d3a4351mlin4dvk9xjg3x7dksnpkdg5l0gbby2fpbhb1mlc8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -76547,8 +76632,8 @@ self: { }: mkDerivation { pname = "ansi-terminal-types"; - version = "1.1"; - sha256 = "09axg8lpyyzm436lfmk21hawqxljln0hrjhg6gfz99cdnwz37rgj"; + version = "1.1.3"; + sha256 = "12d625xa33qwwzpw75zpw05mk2a5qvqwj8jdkbcrp27iawhwxjcz"; libraryHaskellDepends = [ base colour @@ -77905,8 +77990,8 @@ self: { }: mkDerivation { pname = "aoc"; - version = "0.2.0.0"; - sha256 = "0hamr2sqw00njwg4sdir81fmsgc29ic21m0rzqnrfmd5jgdmg27h"; + version = "0.2.1.0"; + sha256 = "1mc8nlrzyx8h2capq9ik52wffp3vsjd3hjzfnlka311xdlyzzvqv"; libraryHaskellDepends = [ base containers @@ -77916,6 +78001,8 @@ self: { ]; description = "Utility functions commonly used while solving Advent of Code puzzles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -80540,107 +80627,11 @@ self: { ) { }; apply-refact = callPackage ( - { - mkDerivation, - base, - containers, - directory, - extra, - filemanip, - filepath, - ghc, - ghc-boot-th, - ghc-exactprint, - ghc-paths, - optparse-applicative, - process, - refact, - silently, - syb, - tasty, - tasty-expected-failure, - tasty-golden, - transformers, - uniplate, - unix-compat, - }: - mkDerivation { - pname = "apply-refact"; - version = "0.14.0.0"; - sha256 = "17dndhrpli0149rqbcyygb4w3lpmz8068pyrkcpwvfkd21p8yikk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - extra - filemanip - ghc - ghc-boot-th - ghc-exactprint - process - refact - syb - transformers - uniplate - unix-compat - ]; - executableHaskellDepends = [ - base - containers - directory - extra - filemanip - filepath - ghc - ghc-boot-th - ghc-exactprint - ghc-paths - optparse-applicative - process - refact - syb - transformers - uniplate - unix-compat - ]; - testHaskellDepends = [ - base - containers - directory - extra - filemanip - filepath - ghc - ghc-boot-th - ghc-exactprint - ghc-paths - optparse-applicative - process - refact - silently - syb - tasty - tasty-expected-failure - tasty-golden - transformers - uniplate - unix-compat - ]; - description = "Perform refactorings specified by the refact library"; - license = lib.licenses.bsd3; - mainProgram = "refactor"; - } - ) { }; - - apply-refact_0_15_0_0 = callPackage ( { mkDerivation, base, containers, data-default, - data-default-class, directory, extra, filemanip, @@ -80671,7 +80662,6 @@ self: { base containers data-default - data-default-class directory extra filemanip @@ -80689,7 +80679,6 @@ self: { base containers data-default - data-default-class directory extra filemanip @@ -80709,7 +80698,6 @@ self: { testHaskellDepends = [ base containers - data-default directory extra filemanip @@ -80732,7 +80720,6 @@ self: { ]; description = "Perform refactorings specified by the refact library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "refactor"; } ) { }; @@ -81690,7 +81677,9 @@ self: { ]; description = "Automatic Rule-Based Time Tracker"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.rvl ]; + broken = true; } ) { }; @@ -81782,8 +81771,10 @@ self: { }: mkDerivation { pname = "arch-hs"; - version = "0.12.0.1"; - sha256 = "0j8j22yy3mz31ypw3j8bk4cz5n2pfvv41m5smg0jxxxvdf6jbdia"; + version = "0.12.1"; + sha256 = "0qfa2mkxhbg6pq8c1jfwwdkrfyabkq1jmk9b0rkqi6j1zb9y2knv"; + revision = "1"; + editedCabalFile = "10f3l5gbj7g60p2d6hsgwkjfiqydsig05rx9jdyj2phcsbmlxcj5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -81860,8 +81851,12 @@ self: { mkDerivation, aeson, base, + bytestring, + containers, deriving-aeson, + directory, exceptions, + filepath, http-client, http-client-tls, http-types, @@ -81871,18 +81866,23 @@ self: { servant, servant-client, servant-client-core, + template-haskell, text, time, }: mkDerivation { pname = "arch-web"; - version = "0.3.1"; - sha256 = "1z8zfl0dskp7i0h5kgrw1nh94sxrmmfdpaykdjqiingn9dqnsmqm"; + version = "0.3.2"; + sha256 = "0gqkgfd5rn7qwkca0zav6wkrr43lk56cyi92gvqn87kydgbbsc5r"; libraryHaskellDepends = [ aeson base + bytestring + containers deriving-aeson + directory exceptions + filepath http-client http-client-tls http-types @@ -81891,14 +81891,19 @@ self: { servant servant-client servant-client-core + template-haskell text time ]; testHaskellDepends = [ aeson base + bytestring + containers deriving-aeson + directory exceptions + filepath http-client http-client-tls http-types @@ -81908,6 +81913,7 @@ self: { servant servant-client servant-client-core + template-haskell text time ]; @@ -83109,8 +83115,8 @@ self: { arithmoi = callPackage ( { mkDerivation, - array, base, + bitvec, chimera, constraints, containers, @@ -83137,14 +83143,12 @@ self: { }: mkDerivation { pname = "arithmoi"; - version = "0.13.1.0"; - sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; - revision = "2"; - editedCabalFile = "1q81krc6qgg495qqlnh7kbzg2fk57amgiqa5xmxwhxrhlffjsk3d"; + version = "0.13.2.0"; + sha256 = "0kb7x4nh21vhiqy2l08k4dg49ffp022bj86vkpy9icgsaskh7b4i"; configureFlags = [ "-f-llvm" ]; libraryHaskellDepends = [ - array base + bitvec chimera constraints containers @@ -83169,7 +83173,6 @@ self: { mod QuickCheck quickcheck-classes - random semirings smallcheck tasty @@ -83177,15 +83180,12 @@ self: { tasty-quickcheck tasty-rerun tasty-smallcheck - transformers vector ]; benchmarkHaskellDepends = [ - array base constraints containers - deepseq infinite-list integer-logarithms mod @@ -83392,15 +83392,15 @@ self: { bytestring, natural-arithmetic, primitive, - run-st, tasty, tasty-hunit, + text, text-short, }: mkDerivation { pname = "array-builder"; - version = "0.1.4.1"; - sha256 = "11hzfx6h0xrgbj8hginp91yj01kzyx8wh35bx22cb5ydfl7wpdcv"; + version = "0.2.0.0"; + sha256 = "1171isfkz9iqlz64vj8gba9gygahg6z49jrn3smd3h8c8v44fjv9"; libraryHaskellDepends = [ array-chunks base @@ -83409,7 +83409,7 @@ self: { bytestring natural-arithmetic primitive - run-st + text text-short ]; testHaskellDepends = [ @@ -83560,6 +83560,20 @@ self: { } ) { }; + array-mhs = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "array-mhs"; + version = "0.5.8.0"; + sha256 = "0w1w7vvf3xp6q6xg257ddczi3yx2s3cl4x7r2cd4p80y8gs85jcx"; + libraryHaskellDepends = [ base ]; + description = "Mutable and immutable arrays"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + array-primops = callPackage ( { mkDerivation, @@ -84015,6 +84029,7 @@ self: { ]; description = "Archive execution tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "arx"; } ) { }; @@ -84203,6 +84218,7 @@ self: { ]; description = "The ASCII character set and encoding"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -84292,6 +84308,8 @@ self: { ]; description = "ASCII character without an upper/lower case distinction"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -84394,6 +84412,8 @@ self: { ]; description = "ASCII character groups"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -84464,6 +84484,7 @@ self: { ]; description = "ASCII representations of numbers"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -84615,6 +84636,7 @@ self: { ]; description = "Representing ASCII with refined supersets"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -84689,6 +84711,7 @@ self: { ]; description = "Template Haskell support for ASCII"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -87314,8 +87337,8 @@ self: { }: mkDerivation { pname = "atomic-css"; - version = "0.1.0"; - sha256 = "088j3fmzvwrwrc4fk851788fw696aw972bi73p7jqrpj3idvh9lf"; + version = "0.2.0"; + sha256 = "0qldgfr5g6dk5g5f6844ymfymkgmwahmgsc3hlyp5r155gx2yp6d"; libraryHaskellDepends = [ base bytestring @@ -87342,6 +87365,7 @@ self: { description = "Type-safe, composable CSS utility functions. Inspired by Tailwindcss and Elm-UI"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -88811,7 +88835,6 @@ self: { doHaddock = false; description = "right-to-left parser backward compatible with attoparsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -89827,8 +89850,8 @@ self: { }: mkDerivation { pname = "auto-split"; - version = "0.1.0.4"; - sha256 = "0h5amma97l6m8dxvhnnksskfm55zgpfx3qm24wivv7slhp7s9q2q"; + version = "0.1.0.5"; + sha256 = "01b6paj9fr72a6yylzrl9kc5klgc6b7viip00vs34l7pmg06w46x"; libraryHaskellDepends = [ base ghc @@ -89927,54 +89950,6 @@ self: { ) { }; autodocodec = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - dlist, - doctest, - hashable, - mtl, - scientific, - text, - time, - unordered-containers, - validity, - validity-scientific, - vector, - }: - mkDerivation { - pname = "autodocodec"; - version = "0.4.2.2"; - sha256 = "1m6mhss3iw49xsc0yr663hy9prkwwwsbzg82mi27z4iq4v0hdmm6"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - dlist - hashable - mtl - scientific - text - time - unordered-containers - validity - validity-scientific - vector - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Self-documenting encoder and decoder"; - license = lib.licenses.mit; - } - ) { }; - - autodocodec_0_5_0_0 = callPackage ( { mkDerivation, aeson, @@ -90019,7 +89994,6 @@ self: { ]; description = "Self-documenting encoder and decoder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -90059,43 +90033,10 @@ self: { ]; description = "Exact decoder for autodocodec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; autodocodec-nix = callPackage ( - { - mkDerivation, - aeson, - autodocodec, - base, - containers, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "autodocodec-nix"; - version = "0.0.1.5"; - sha256 = "0lfp0li2hjqad4pw27cyhzsy17frg0i1a6v6irihl362ymk8dj22"; - libraryHaskellDepends = [ - aeson - autodocodec - base - containers - scientific - text - unordered-containers - vector - ]; - description = "Autodocodec interpreters for nix"; - license = lib.licenses.mit; - } - ) { }; - - autodocodec-nix_0_1_0_0 = callPackage ( { mkDerivation, aeson, @@ -90123,7 +90064,6 @@ self: { ]; description = "Autodocodec interpreters for nix"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -90143,8 +90083,8 @@ self: { }: mkDerivation { pname = "autodocodec-openapi3"; - version = "0.2.1.4"; - sha256 = "12mvgidsjw21q180z3z9gfms4lallixr9swslcac090y92m57q3s"; + version = "0.3.0.1"; + sha256 = "1p48w9w58csgyy2gk5c4j094hs2qglgy4irmzim4c4g6lajwfrvj"; libraryHaskellDepends = [ aeson autodocodec @@ -90202,39 +90142,6 @@ self: { ) { }; autodocodec-servant-multipart = callPackage ( - { - mkDerivation, - aeson, - autodocodec, - base, - bytestring, - servant-multipart, - servant-multipart-api, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "autodocodec-servant-multipart"; - version = "0.0.0.1"; - sha256 = "194k3y3c8mz7x3pvghjrg7vax5hgzn86b3xrm68azxvz3q1chk3q"; - libraryHaskellDepends = [ - aeson - autodocodec - base - bytestring - servant-multipart - servant-multipart-api - text - unordered-containers - vector - ]; - description = "Autodocodec interpreters for Servant Multipart"; - license = lib.licenses.mit; - } - ) { }; - - autodocodec-servant-multipart_0_0_0_2 = callPackage ( { mkDerivation, aeson, @@ -90264,7 +90171,6 @@ self: { ]; description = "Autodocodec interpreters for Servant Multipart"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -90300,45 +90206,6 @@ self: { ) { }; autodocodec-yaml = callPackage ( - { - mkDerivation, - autodocodec, - autodocodec-schema, - base, - bytestring, - containers, - path, - path-io, - safe-coloured-text, - scientific, - text, - vector, - yaml, - }: - mkDerivation { - pname = "autodocodec-yaml"; - version = "0.4.0.1"; - sha256 = "04f55h2cg81iwql5rkyap86yy6g2h4jp1wlga1hvr0yrmkfvjm7g"; - libraryHaskellDepends = [ - autodocodec - autodocodec-schema - base - bytestring - containers - path - path-io - safe-coloured-text - scientific - text - vector - yaml - ]; - description = "Autodocodec interpreters for yaml"; - license = lib.licenses.mit; - } - ) { }; - - autodocodec-yaml_0_4_0_2 = callPackage ( { mkDerivation, autodocodec, @@ -90374,7 +90241,6 @@ self: { ]; description = "Autodocodec interpreters for yaml"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -91492,6 +91358,8 @@ self: { ]; description = "Avro serialization support for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -93405,6 +93273,8 @@ self: { ]; description = "Fetch data from AWS Secrets Manager"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -93714,8 +93584,8 @@ self: { }: mkDerivation { pname = "aws-spend-summary"; - version = "0.3.0.0"; - sha256 = "0lnwlvjqjs4hxqfblrhgqjq6309c466hlnamryprgd3l8nhnpak3"; + version = "0.3.0.1"; + sha256 = "1vf0p0lqi9y04zvyc0h3pg2sd2q3c2s2rxw7z7lf1wjd5w90xp4y"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94344,13 +94214,14 @@ self: { deepseq, hspec, mtl, + primitive, QuickCheck, - stm, + sparse-set, }: mkDerivation { pname = "aztecs"; - version = "0.12.0"; - sha256 = "0r904arfgisqg83ps9schak9pwhf9r17rpilj2qx8fy2iwvfs98k"; + version = "0.14.0"; + sha256 = "0v9k2svhcrsj5gqwjrd4xhd4f3gxghwjr7mnb6ifbilw17h86651"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94358,11 +94229,12 @@ self: { containers deepseq mtl - stm + primitive + sparse-set ]; executableHaskellDepends = [ base - deepseq + mtl ]; testHaskellDepends = [ base @@ -94375,10 +94247,11 @@ self: { base criterion deepseq + primitive + sparse-set ]; description = "A modular game engine and Entity-Component-System (ECS) for Haskell"; license = lib.licenses.bsd3; - mainProgram = "ecs"; } ) { }; @@ -96164,6 +96037,7 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "hsDotnetGen"; + broken = true; } ) { }; @@ -96226,8 +96100,10 @@ self: { }: mkDerivation { pname = "bank-holiday-germany"; - version = "1.3.1.0"; - sha256 = "1a9n5vc9bqs6a6nh87px4lb9i73ad4yg0l67rlwiv80l4pqia1fi"; + version = "2.1.0.1"; + sha256 = "17mfcdm55bh8a4a00khwvij5zc2iibr7hibw9fh5zz9yzywvqniw"; + revision = "1"; + editedCabalFile = "0wzq52z1fv59pwvhwjpj2jw6mf2jkqpxlcil6kr8i1pngpc8lp5p"; libraryHaskellDepends = [ base time @@ -96245,38 +96121,6 @@ self: { } ) { }; - bank-holiday-germany_2_1_0_0 = callPackage ( - { - mkDerivation, - base, - doctest, - hedgehog, - hspec, - hspec-hedgehog, - time, - }: - mkDerivation { - pname = "bank-holiday-germany"; - version = "2.1.0.0"; - sha256 = "1p0grrrd949ng2hjwfx66v42c9sl2lhwxy0qg1r4b0myr77wia03"; - libraryHaskellDepends = [ - base - time - ]; - testHaskellDepends = [ - base - doctest - hedgehog - hspec - hspec-hedgehog - time - ]; - description = "German bank holidays and public holidays"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - bank-holiday-usa = callPackage ( { mkDerivation, @@ -96486,17 +96330,17 @@ self: { attoparsec, base, bytestring, + containers, mtl, optparse-applicative, - shh, + process, text, + unix, }: mkDerivation { pname = "barbly"; - version = "0.1.0.0"; - sha256 = "1mmbvgw5g2jb8qv7vd00iym9xyb07jx03wi6x1ldqvzfn2vcc22l"; - revision = "1"; - editedCabalFile = "09xb9p2ik8kpa2gras9jqs4rr55bsbd7xnmgijxxzwf9hl00k0by"; + version = "0.2.0.0"; + sha256 = "039q8jcfqkcgyf8yf3a7mm33dihjr7i3fz54r30mq8cbf75zxws8"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -96505,10 +96349,12 @@ self: { attoparsec base bytestring + containers mtl optparse-applicative - shh + process text + unix ]; description = "Create status bar menus for macOS from executables"; license = lib.licenses.bsd3; @@ -96804,27 +96650,6 @@ self: { ) { }; base-compat = callPackage ( - { - mkDerivation, - base, - ghc-prim, - unix, - }: - mkDerivation { - pname = "base-compat"; - version = "0.13.1"; - sha256 = "08c43vzhq0dsnd8lqzrpimlj3h2386ybb8qksdk01fy8as6rw7fv"; - libraryHaskellDepends = [ - base - ghc-prim - unix - ]; - description = "A compatibility layer for base"; - license = lib.licenses.mit; - } - ) { }; - - base-compat_0_14_1 = callPackage ( { mkDerivation, base, @@ -96842,41 +96667,10 @@ self: { ]; description = "A compatibility layer for base"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; base-compat-batteries = callPackage ( - { - mkDerivation, - base, - base-compat, - ghc-prim, - hspec, - hspec-discover, - QuickCheck, - }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.13.1"; - sha256 = "00m8lx2raldr6xvlc92za11a2sj3x0031vi6v3as0cnvl58mnliy"; - libraryHaskellDepends = [ - base - base-compat - ghc-prim - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - description = "base-compat with extra batteries"; - license = lib.licenses.mit; - } - ) { }; - - base-compat-batteries_0_14_1 = callPackage ( { mkDerivation, base, @@ -96903,7 +96697,20 @@ self: { testToolDepends = [ hspec-discover ]; description = "base-compat with extra batteries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + } + ) { }; + + base-compat-constptr = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "base-compat-constptr"; + version = "0.1.0.0"; + sha256 = "06da4aylbnihfxf3sap6mczyrlpia0l80r1ilmbng7x5bda24443"; + revision = "2"; + editedCabalFile = "03x7hrd4xv9xa0v72srn19v402nwws93n7jgakliabfshacd4pp3"; + libraryHaskellDepends = [ base ]; + description = "Backport of 'Foreign.C.ConstPtr'"; + license = lib.licenses.agpl3Only; } ) { }; @@ -99224,8 +99031,8 @@ self: { bcp47 = callPackage ( { mkDerivation, - aeson, base, + case-insensitive, containers, country, doctest, @@ -99238,11 +99045,11 @@ self: { }: mkDerivation { pname = "bcp47"; - version = "0.2.0.6"; - sha256 = "0k226jmpv6fnifbmbgdfvbj375an5g7bzzlcvfa1n5x65512ibp2"; + version = "0.3.0.0"; + sha256 = "0w2cxmr43vqjr8jfn9drgj8brdwi3wbais9bj1d7lhvadmjn5yp5"; libraryHaskellDepends = [ - aeson base + case-insensitive containers country generic-arbitrary @@ -99252,7 +99059,6 @@ self: { text ]; testHaskellDepends = [ - aeson base containers country @@ -99270,6 +99076,8 @@ self: { bcp47-orphans = callPackage ( { mkDerivation, + aeson, + autodocodec, base, bcp47, cassava, @@ -99278,6 +99086,8 @@ self: { hashable, hspec, http-api-data, + lens, + openapi3, path-pieces, persistent, QuickCheck, @@ -99286,11 +99096,11 @@ self: { }: mkDerivation { pname = "bcp47-orphans"; - version = "0.1.0.6"; - sha256 = "18r6wwj7sq5q1r9fg0kiss5p7h0qh485paginrc46lzygx4l5r3q"; - revision = "1"; - editedCabalFile = "0mf4plqqr6aw9jprp3fmmkpvk2g3h8hjn4wkp23ni07v818mlvlf"; + version = "0.1.3.0"; + sha256 = "0b1hwlgi7kib9fkj3cy4mx9d3pakrs2dszc7gzx1i3f079mgmdy2"; libraryHaskellDepends = [ + aeson + autodocodec base bcp47 cassava @@ -99298,12 +99108,15 @@ self: { esqueleto hashable http-api-data + lens + openapi3 path-pieces persistent serialise text ]; testHaskellDepends = [ + aeson base bcp47 cassava @@ -99926,6 +99739,8 @@ self: { pname = "beam-core"; version = "0.10.4.0"; sha256 = "1zxqyxxyid186s86lfw0sq030jckh83j3rwj6ibx4wg3flslk515"; + revision = "1"; + editedCabalFile = "1zwvxqfrmwnvsdj959ir6pwy3bbssyzgngh23kz40965pazxg8g6"; libraryHaskellDepends = [ aeson base @@ -99969,9 +99784,7 @@ self: { large-generics, large-records, microlens, - record-dot-preprocessor, record-hasfield, - sop-core, sqlite-simple, tasty, tasty-hunit, @@ -99980,15 +99793,13 @@ self: { }: mkDerivation { pname = "beam-large-records"; - version = "0.1.1"; - sha256 = "1vsc8aikpxwhzgjk4vlvs9wkg9hlq0942zqz0r8s98s1ad2pfmih"; + version = "0.1.2"; + sha256 = "193r7r9rnbqn3k8kq6s80dq8spvgbbnm9kn80xa7irp0qb2q25p6"; libraryHaskellDepends = [ base beam-core large-generics microlens - sop-core - text ]; testHaskellDepends = [ base @@ -99998,7 +99809,6 @@ self: { large-generics large-records microlens - record-dot-preprocessor record-hasfield sqlite-simple tasty @@ -100013,69 +99823,6 @@ self: { ) { }; beam-migrate = callPackage ( - { - mkDerivation, - aeson, - base, - beam-core, - bytestring, - containers, - deepseq, - dependent-map, - dependent-sum, - free, - ghc-prim, - hashable, - haskell-src-exts, - microlens, - mtl, - parallel, - pqueue, - pretty, - scientific, - text, - time, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "beam-migrate"; - version = "0.5.3.1"; - sha256 = "0qx1nh5vvncgr4ixnraaahwp879v8wgn2lhixgzndk6zrs3y4a21"; - revision = "1"; - editedCabalFile = "0sm683b4k7km2378gqkvii1lb7bx79pscll72jnwfzh72dxqc2fh"; - libraryHaskellDepends = [ - aeson - base - beam-core - bytestring - containers - deepseq - dependent-map - dependent-sum - free - ghc-prim - hashable - haskell-src-exts - microlens - mtl - parallel - pqueue - pretty - scientific - text - time - unordered-containers - uuid-types - vector - ]; - description = "SQL DDL support and migrations support library for Beam"; - license = lib.licenses.mit; - } - ) { }; - - beam-migrate_0_5_3_2 = callPackage ( { mkDerivation, aeson, @@ -100105,6 +99852,8 @@ self: { pname = "beam-migrate"; version = "0.5.3.2"; sha256 = "05cz2gh9r00dr6knigq9v7zcdmpk2b19z0pg79wimkcxa2fblb5z"; + revision = "1"; + editedCabalFile = "0v1hx1pxwb7xxqdcdqyj8fv9liiz44ak2wmi7my267amxdx2n6h2"; libraryHaskellDepends = [ aeson base @@ -100131,7 +99880,6 @@ self: { ]; description = "SQL DDL support and migrations support library for Beam"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -100220,7 +99968,6 @@ self: { conduit, free, hashable, - haskell-src-exts, hedgehog, lifted-base, monad-control, @@ -100243,92 +99990,8 @@ self: { }: mkDerivation { pname = "beam-postgres"; - version = "0.5.4.2"; - sha256 = "0fczf2aqz3fasbjsz8hl0mnjhx9zq7fx68wqfgsnlpp3ycbsf7d9"; - libraryHaskellDepends = [ - aeson - attoparsec - base - beam-core - beam-migrate - bytestring - case-insensitive - conduit - free - hashable - haskell-src-exts - lifted-base - monad-control - mtl - network-uri - postgresql-libpq - postgresql-simple - scientific - tagged - text - time - transformers-base - unordered-containers - uuid-types - vector - ]; - testHaskellDepends = [ - aeson - base - beam-core - beam-migrate - bytestring - hedgehog - postgresql-simple - tasty - tasty-hunit - testcontainers - text - uuid - vector - ]; - description = "Connection layer between beam and postgres"; - license = lib.licenses.mit; - } - ) { }; - - beam-postgres_0_5_4_3 = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - beam-core, - beam-migrate, - bytestring, - case-insensitive, - conduit, - free, - hashable, - hedgehog, - lifted-base, - monad-control, - mtl, - network-uri, - postgresql-libpq, - postgresql-simple, - scientific, - tagged, - tasty, - tasty-hunit, - testcontainers, - text, - time, - transformers-base, - unordered-containers, - uuid, - uuid-types, - vector, - }: - mkDerivation { - pname = "beam-postgres"; - version = "0.5.4.3"; - sha256 = "0v2m4cyq5cnxzwrr93m2v04zkh7fwvy1nwg7dajnpqc09kp70yzr"; + version = "0.5.4.4"; + sha256 = "03llbfl1rlpghl0adf9ynd4wx4jbl707ll7cn3bcq16za2sc20fd"; libraryHaskellDepends = [ aeson attoparsec @@ -100372,74 +100035,10 @@ self: { ]; description = "Connection layer between beam and postgres"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; beam-sqlite = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - beam-core, - beam-migrate, - bytestring, - dlist, - free, - hashable, - monad-control, - mtl, - network-uri, - scientific, - sqlite-simple, - tasty, - tasty-expected-failure, - tasty-hunit, - text, - time, - transformers-base, - }: - mkDerivation { - pname = "beam-sqlite"; - version = "0.5.4.0"; - sha256 = "14yhbmq07768w8wa5ffwjnb315ln4ynkfz49z255l4pdwrpix406"; - libraryHaskellDepends = [ - aeson - attoparsec - base - beam-core - beam-migrate - bytestring - dlist - free - hashable - monad-control - mtl - network-uri - scientific - sqlite-simple - text - time - transformers-base - ]; - testHaskellDepends = [ - base - beam-core - beam-migrate - sqlite-simple - tasty - tasty-expected-failure - tasty-hunit - text - time - ]; - description = "Beam driver for SQLite"; - license = lib.licenses.mit; - } - ) { }; - - beam-sqlite_0_5_4_1 = callPackage ( { mkDerivation, aeson, @@ -100468,6 +100067,8 @@ self: { pname = "beam-sqlite"; version = "0.5.4.1"; sha256 = "1f5yjsx7zfbfbxs3xd64rwn2m3vjffrbdn5xadhm1axhghi6srki"; + revision = "1"; + editedCabalFile = "0igd6nzypnnpswpybn87j7vzgy2cbgb4l19phimjdacgdjsvb4nf"; libraryHaskellDepends = [ aeson attoparsec @@ -100501,7 +100102,6 @@ self: { ]; description = "Beam driver for SQLite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -101323,8 +100923,8 @@ self: { }: mkDerivation { pname = "benchpress"; - version = "0.2.2.25"; - sha256 = "10h5jgj87z4aca0k39qg5frvd3syffj4g1f3sd2yl6yc9s33yr3b"; + version = "0.2.3.0"; + sha256 = "0cpv5bvfs7i0kn6vy3xw23hxj41jamvjhrfzpn99c3a5hcgg6qrm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -101900,6 +101500,8 @@ self: { ]; description = "A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code)."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -103442,8 +103044,8 @@ self: { }: mkDerivation { pname = "binary-generic-combinators"; - version = "0.4.4.0"; - sha256 = "0kdgfhkfxsz7315jbf0a5vm15nwmd5gpgwk9hw2kwkfzl1k6iv7x"; + version = "0.4.4.1"; + sha256 = "1awm4v3y0wjc35kcqrkjx5vjc3jj4fpbhf09fl920l686vg5l712"; libraryHaskellDepends = [ base binary @@ -104157,6 +103759,7 @@ self: { ]; description = "Tagged binary serialisation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -106049,7 +105652,9 @@ self: { ]; description = "Encode precise binary representations directly in types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.raehik ]; + broken = true; } ) { }; @@ -106939,6 +106544,7 @@ self: { ]; description = "A small tool that clears cookies (and more)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "bisc"; } ) { }; @@ -108633,6 +108239,7 @@ self: { ]; description = "Useful bitwise operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -108861,8 +108468,8 @@ self: { }: mkDerivation { pname = "bitstring"; - version = "0.0.0"; - sha256 = "1ix2x4v76wq5148k1aax69cf8sk14cd0z362dz1d2qmj9qxsnsw8"; + version = "0.0.1"; + sha256 = "0v4qrcw4h4lz1fq58vlbvsv5wcj7540yv5mv3mdqrnbk99hb05xs"; libraryHaskellDepends = [ base bytestring @@ -110095,8 +109702,6 @@ self: { mkDerivation, base, bytestring, - deepseq, - ghc-prim, HUnit, QuickCheck, test-framework, @@ -110107,13 +109712,11 @@ self: { }: mkDerivation { pname = "blaze-builder"; - version = "0.4.3"; - sha256 = "1vkzpi48dycxvwxv0rcpzcgn12dqlngmivsszxrmlfixdyznlr02"; + version = "0.4.4.1"; + sha256 = "04six8rkyrhfa96ykmp51kfcxxj96v1g5r2m9sdaz5xc5023c7cp"; libraryHaskellDepends = [ base bytestring - deepseq - ghc-prim text ]; testHaskellDepends = [ @@ -111258,6 +110861,64 @@ self: { } ) { }; + blockio = callPackage ( + { + mkDerivation, + async, + base, + blockio-uring, + bytestring, + deepseq, + fs-api, + fs-sim, + io-classes, + primitive, + QuickCheck, + tasty, + tasty-hunit, + tasty-quickcheck, + temporary, + unix, + vector, + }: + mkDerivation { + pname = "blockio"; + version = "0.1.0.1"; + sha256 = "1cmffkkx938f2kbdfjgqqmhqdpvln2iwqm3pdpvjlm40isdpqj5c"; + libraryHaskellDepends = [ + base + blockio-uring + bytestring + deepseq + fs-api + fs-sim + io-classes + primitive + unix + vector + ]; + testHaskellDepends = [ + async + base + bytestring + fs-api + fs-sim + io-classes + primitive + QuickCheck + tasty + tasty-hunit + tasty-quickcheck + temporary + vector + ]; + doHaddock = false; + description = "Perform batches of disk I/O operations"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { }; + blockio-uring = callPackage ( { mkDerivation, @@ -111277,8 +110938,8 @@ self: { }: mkDerivation { pname = "blockio-uring"; - version = "0.1.0.0"; - sha256 = "1g4sd7wqxf86i1c5iqiar6mpdszk99v7p71jcrx3dm8pap69r1x7"; + version = "0.1.0.1"; + sha256 = "1vhzi5ad162vdnn13444rf729302zqb2ikfmlb4i6k27pp0z1w58"; libraryHaskellDepends = [ base primitive @@ -111464,6 +111125,102 @@ self: { } ) { }; + bloodhound_0_24_0_0 = callPackage ( + { + mkDerivation, + aeson, + aeson-optics, + base, + blaze-builder, + bytestring, + containers, + doctest, + errors, + exceptions, + generic-random, + hashable, + hspec, + hspec-discover, + http-client, + http-types, + microlens, + mtl, + network-uri, + optics, + optics-core, + pretty-simple, + QuickCheck, + quickcheck-properties, + scientific, + template-haskell, + temporary, + text, + time, + unix-compat, + unordered-containers, + vector, + versions, + }: + mkDerivation { + pname = "bloodhound"; + version = "0.24.0.0"; + sha256 = "0zzpf3y6ccc5bwlxbcw2lc2qlcrllqs5ymd8kd19mmhgjkab8ycz"; + libraryHaskellDepends = [ + aeson + base + blaze-builder + bytestring + containers + exceptions + hashable + http-client + http-types + microlens + mtl + network-uri + optics-core + scientific + template-haskell + text + time + unordered-containers + vector + versions + ]; + testHaskellDepends = [ + aeson + aeson-optics + base + bytestring + containers + doctest + errors + exceptions + generic-random + hspec + hspec-discover + http-client + http-types + microlens + mtl + optics + pretty-simple + QuickCheck + quickcheck-properties + temporary + text + time + unix-compat + vector + versions + ]; + testToolDepends = [ hspec-discover ]; + description = "Elasticsearch client library for Haskell"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + bloodhound-amazonka-auth = callPackage ( { mkDerivation, @@ -111600,6 +111357,60 @@ self: { } ) { }; + bloomfilter-blocked = callPackage ( + { + mkDerivation, + base, + bytestring, + containers, + criterion, + deepseq, + directory, + parallel, + primitive, + quickcheck-instances, + random, + regression-simple, + tasty, + tasty-hunit, + tasty-quickcheck, + }: + mkDerivation { + pname = "bloomfilter-blocked"; + version = "0.1.0.0"; + sha256 = "13p8dvh4gy4pw7ii5qj274f1dcmmlisxg5kqz3276kdjq93s4dd8"; + libraryHaskellDepends = [ + base + bytestring + deepseq + primitive + ]; + testHaskellDepends = [ + base + bytestring + containers + directory + parallel + primitive + quickcheck-instances + random + regression-simple + tasty + tasty-hunit + tasty-quickcheck + ]; + benchmarkHaskellDepends = [ + base + criterion + random + ]; + doHaddock = false; + description = "Classic and block-style bloom filters"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { }; + bloomfilter-redis = callPackage ( { mkDerivation, @@ -111979,6 +111790,22 @@ self: { } ) { }; + bluefin_0_0_17_0 = callPackage ( + { mkDerivation, bluefin-internal }: + mkDerivation { + pname = "bluefin"; + version = "0.0.17.0"; + sha256 = "145yws2r4as5rvbxdsv31qkhjn2a7gbz3bx9y46fms291l7fi2c7"; + revision = "1"; + editedCabalFile = "0qrq7rhw5g855x2hnxd8hs0bffmdrbcyin9ig60pbs3bnx2liiia"; + libraryHaskellDepends = [ bluefin-internal ]; + description = "The Bluefin effect system"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.maralorn ]; + } + ) { }; + bluefin-algae = callPackage ( { mkDerivation, @@ -112007,38 +111834,31 @@ self: { ]; description = "Algebraic effects and named handlers in Bluefin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - bluefin-internal = callPackage ( + bluefin-contrib = callPackage ( { mkDerivation, - async, base, - monad-control, - transformers, - transformers-base, - unliftio-core, + bluefin, }: mkDerivation { - pname = "bluefin-internal"; - version = "0.0.15.0"; - sha256 = "1cq1v2cva1vkda1dfwv1c6z8xxxq4qlwwjx3096snsawl8jhnlnj"; + pname = "bluefin-contrib"; + version = "0.0.16.0"; + sha256 = "0pk7zqn9b6ka90l3n1xf9b84p4567gp2dv1ks6kcamzr3g4i4ww7"; libraryHaskellDepends = [ - async base - monad-control - transformers - transformers-base - unliftio-core + bluefin ]; - testHaskellDepends = [ base ]; - description = "The Bluefin effect system, internals"; + description = "The Bluefin effect system, user contributions"; license = lib.licenses.mit; } ) { }; - bluefin-internal_0_1_0_0 = callPackage ( + bluefin-internal = callPackage ( { mkDerivation, async, @@ -112063,10 +111883,61 @@ self: { testHaskellDepends = [ base ]; description = "The Bluefin effect system, internals"; license = lib.licenses.mit; + } + ) { }; + + bluefin-internal_0_1_1_0 = callPackage ( + { + mkDerivation, + async, + base, + monad-control, + transformers, + transformers-base, + unliftio-core, + }: + mkDerivation { + pname = "bluefin-internal"; + version = "0.1.1.0"; + sha256 = "1s29a48hijimz919qlg3cmdzcs83jdnvzy77s6v15gsqjrwsvm0q"; + libraryHaskellDepends = [ + async + base + monad-control + transformers + transformers-base + unliftio-core + ]; + testHaskellDepends = [ base ]; + description = "The Bluefin effect system, internals"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; } ) { }; + bluefin-random = callPackage ( + { + mkDerivation, + base, + bluefin, + random, + }: + mkDerivation { + pname = "bluefin-random"; + version = "0.0.16.1"; + sha256 = "1kh5xgrwxqx4z0psk0wx8n5b7f3qq80jhzvifs5vry1l1irdj24a"; + libraryHaskellDepends = [ + base + bluefin + random + ]; + description = "The Bluefin effect system, random generators"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + bluemix-sdk = callPackage ( { mkDerivation, @@ -112102,6 +111973,7 @@ self: { aeson, async, base, + bytestring, containers, dns, http-api-data, @@ -112113,12 +111985,13 @@ self: { }: mkDerivation { pname = "bluesky-tools"; - version = "0.6.0.2"; - sha256 = "0qshnig4f791swn2rf1ssgxi9l04fvf8s0jadbn95nqzxqyyyjv2"; + version = "0.6.0.4"; + sha256 = "0q0q945xqxwq2mv1nd31cyfxb207rws1rhvnmqvg3p96354ahd12"; libraryHaskellDepends = [ aeson async base + bytestring containers dns http-api-data @@ -112571,7 +112444,9 @@ self: { testHaskellDepends = [ base ]; description = "Modeling boardgames"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "boardgame"; + broken = true; } ) { }; @@ -112776,8 +112651,8 @@ self: { }: mkDerivation { pname = "bolt"; - version = "0.3.1.0"; - sha256 = "0r3pyl170h3xyq4400j40ijp2j3nzh1sqlh0qd0fb140qcwvr35h"; + version = "0.3.2.0"; + sha256 = "0faml4lf320wspc43ccs8xdr0cs5ngbvaf8lwrzcqk2x0alw6v22"; libraryHaskellDepends = [ base bifunctors @@ -113176,6 +113051,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple Parser Combinators"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -113621,8 +113498,8 @@ self: { }: mkDerivation { pname = "boomerang"; - version = "1.4.9.3"; - sha256 = "1ilai1svi9j10wjll1r082v76299jnd7nznk7bxqgnvn59n43xik"; + version = "1.4.9.4"; + sha256 = "1km6lp7mrw3nw1ddy7lb1nfi35f0rn28fg8k32rinx5c8gwx9lnd"; libraryHaskellDepends = [ base mtl @@ -113695,8 +113572,8 @@ self: { pname = "boomwhacker"; version = "0.0.2"; sha256 = "0q5cq5j7dy1qm5jqpcl1imwiqqm0h21yvqwnvabsjnfrvfvryqg2"; - revision = "2"; - editedCabalFile = "0jqys322j818dc24fyb37a59qs66m3b46j05y4vswipakwm1kgmk"; + revision = "3"; + editedCabalFile = "0hvx832kd293jp4j91kw0dbh4x7bcbszb8pvjx6sdg36a8ynpnan"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -114355,7 +114232,6 @@ self: { ]; description = "Low-level Botan bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.mikatammi ]; } ) { }; @@ -114855,8 +114731,8 @@ self: { }: mkDerivation { pname = "box"; - version = "0.9.3.2"; - sha256 = "0x2h5d6jgmv4nwsl955xb89q0f1fclsg5hjn7fyyja3z8w9qnf39"; + version = "0.9.3.3"; + sha256 = "1gn8hrq6f32jp91ckbz1bizhbpbm2a2wkh1id6ngdhdfxs7zx3di"; libraryHaskellDepends = [ async base @@ -114925,8 +114801,8 @@ self: { }: mkDerivation { pname = "box-socket"; - version = "0.5.2.0"; - sha256 = "13a8dclvf7m5j0a9gvmla8pr78qqrqnbqz8nc8js2yzp215p5qip"; + version = "0.5.2.1"; + sha256 = "0g2mw17s88z84268rdnv8jxpdrn9ix4bjk1bwc4w0krf7q750i75"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -115402,8 +115278,8 @@ self: { }: mkDerivation { pname = "breakpoint"; - version = "0.1.4.0"; - sha256 = "04fgivxwddm8r5hpj8a1v6r4c59yj618cq14rszrd1qrm9sn1qf6"; + version = "0.1.5.0"; + sha256 = "1x70c0m111557r947zcdgcrfsbnm0j4dzw3b885pxvfz7i58pysc"; libraryHaskellDepends = [ ansi-terminal base @@ -115522,79 +115398,6 @@ self: { ) { }; brick = callPackage ( - { - mkDerivation, - base, - bimap, - bytestring, - config-ini, - containers, - data-clist, - deepseq, - directory, - exceptions, - filepath, - microlens, - microlens-mtl, - microlens-th, - mtl, - QuickCheck, - stm, - template-haskell, - text, - text-zipper, - unix-compat, - vector, - vty, - vty-crossplatform, - word-wrap, - }: - mkDerivation { - pname = "brick"; - version = "2.4"; - sha256 = "124l7yay5q5dxmpf48a4m8b7fnkwpv0shsy78qjpw5fdvqf9xkvz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bimap - bytestring - config-ini - containers - data-clist - deepseq - directory - exceptions - filepath - microlens - microlens-mtl - microlens-th - mtl - stm - template-haskell - text - text-zipper - unix-compat - vector - vty - vty-crossplatform - word-wrap - ]; - testHaskellDepends = [ - base - containers - microlens - QuickCheck - vector - vty - vty-crossplatform - ]; - description = "A declarative terminal user interface library"; - license = lib.licenses.bsd3; - } - ) { }; - - brick_2_9 = callPackage ( { mkDerivation, base, @@ -115670,7 +115473,6 @@ self: { ]; description = "A declarative terminal user interface library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -116315,6 +116117,8 @@ self: { ]; description = "Data structures and algorithms for working with 2D graphics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -116354,6 +116158,7 @@ self: { ]; description = "Examples using the Brillo library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -116925,8 +116730,6 @@ self: { base, brotli, bytestring, - HUnit, - QuickCheck, tasty, tasty-hunit, tasty-quickcheck, @@ -116934,10 +116737,8 @@ self: { }: mkDerivation { pname = "brotli"; - version = "0.0.0.2"; - sha256 = "09y460adrq6cp9d8qlf8522yb0qc1vgjxv4d56kq2rdf9khqic6z"; - revision = "1"; - editedCabalFile = "1a0lbghilwpa6hb5msivb7hjqnnxi2bxlfgiawv0mjpc7gidhbz7"; + version = "0.0.0.3"; + sha256 = "1mgb27whk4iw0s0m86rx5dvc3gkykxyawnkayafkr4hlqzxg69n1"; libraryHaskellDepends = [ base bytestring @@ -116947,8 +116748,6 @@ self: { testHaskellDepends = [ base bytestring - HUnit - QuickCheck tasty tasty-hunit tasty-quickcheck @@ -118215,8 +118014,8 @@ self: { }: mkDerivation { pname = "bugsnag"; - version = "1.1.0.2"; - sha256 = "1f0jsad9z9zsj8sbirq6h1x0s7245rxv5gpciz4p8wv9ryi8d3m3"; + version = "1.2.0.1"; + sha256 = "0n78jl3spg4i3g3n5z0cz6xniizpz1l45mkvxm599510gkdqk028"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -118248,63 +118047,6 @@ self: { } ) { }; - bugsnag_1_2_0_0 = callPackage ( - { - mkDerivation, - aeson, - annotated-exception, - base, - bugsnag-hs, - bytestring, - containers, - Glob, - hspec, - http-client, - http-client-tls, - parsec, - template-haskell, - text, - th-lift-instances, - ua-parser, - unliftio, - unordered-containers, - }: - mkDerivation { - pname = "bugsnag"; - version = "1.2.0.0"; - sha256 = "0hhr4z1jdsbg8jx2416dgpad0lirzdjiv79s4ykhfimn2pqk9liq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - annotated-exception - base - bugsnag-hs - bytestring - containers - Glob - http-client - http-client-tls - parsec - template-haskell - text - th-lift-instances - ua-parser - unliftio - unordered-containers - ]; - testHaskellDepends = [ - annotated-exception - base - hspec - unliftio - ]; - description = "Bugsnag error reporter for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - bugsnag-haskell = callPackage ( { mkDerivation, @@ -118565,8 +118307,8 @@ self: { pname = "bugzilla-redhat"; version = "1.0.1.1"; sha256 = "0ka3dh5gqimwny7s3qalkynlyarkmnwd5pcy92b4g4vaqk7k3pvr"; - revision = "3"; - editedCabalFile = "1a50ffp5dahwc82ps78j7mpvi3xbd1by3xpkybxz8bz7i3fsazfg"; + revision = "5"; + editedCabalFile = "0b3ha32s6965swgyy07q0ga1i95qykimhf73wwd1lscn2bx8xk4c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -118630,6 +118372,8 @@ self: { ]; description = "Build Systems à la Carte"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -119961,6 +119705,7 @@ self: { doHaddock = false; description = "Efficient little-endian bit vector library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -120183,6 +119928,8 @@ self: { ]; description = "Sets and maps with 8-bit words for keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -120815,8 +120562,8 @@ self: { }: mkDerivation { pname = "bytesmith"; - version = "0.3.11.1"; - sha256 = "1vl14ndc9ys5480g0zsrsrdg0r84r2if9wrvjsyx0vxlj4phg3vp"; + version = "0.3.13.0"; + sha256 = "0gbpqz1r8xcqii9kj6nd1yjcdrpj49rr107v2ldylvilvqw6yh52"; libraryHaskellDepends = [ base byteslice @@ -121321,6 +121068,8 @@ self: { pname = "bytestring-mmap"; version = "0.2.2"; sha256 = "1bv9xf4cpph1cbdwv6rbmq8ppi5wjpgd97lwln5l9ky5rvnaxg3v"; + revision = "1"; + editedCabalFile = "0511x1hp70zmiz2b7w6dvnrav2zks4d65vz5n4wnvhwzimzmjlrf"; libraryHaskellDepends = [ base bytestring @@ -121353,6 +121102,8 @@ self: { ]; description = "Parse numeric literals from ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -122776,8 +122527,8 @@ self: { }: mkDerivation { pname = "cab"; - version = "0.2.21"; - sha256 = "06hpsqanj0c3wy8jmk29gg3ma189fw8l41jx4k53zdjgx9x9wqmv"; + version = "0.2.22"; + sha256 = "1if9qqbgx4vkby765gz8fr498b8bscxzkfzw7001a3nn0sn38822"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122835,7 +122586,7 @@ self: { } ) { youProbablyWantCapitalCabal = null; }; - cabal-add = callPackage ( + cabal-add_0_1 = callPackage ( { mkDerivation, base, @@ -122891,11 +122642,12 @@ self: { ]; description = "Extend Cabal build-depends from the command line"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-add"; } ) { }; - cabal-add_0_2 = callPackage ( + cabal-add = callPackage ( { mkDerivation, base, @@ -122918,6 +122670,8 @@ self: { pname = "cabal-add"; version = "0.2"; sha256 = "0fd098gkfmxrhq0k4j1ll5g4xwwzgmhdx0mj9hnp5xanj7z1laxg"; + revision = "1"; + editedCabalFile = "03z75dp7mf471mm40mfb157ng2fgp66nkyhaa6fsb3j2qfwg5wz4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122951,7 +122705,6 @@ self: { ]; description = "Extend Cabal build-depends from the command line"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-add"; } ) { }; @@ -123351,7 +123104,9 @@ self: { ]; description = "A command line program for extracting compiler arguments from a cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-cargs"; + broken = true; } ) { }; @@ -123922,7 +123677,9 @@ self: { ]; description = "Fix for cabal files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-fix"; + broken = true; } ) { }; @@ -123953,8 +123710,8 @@ self: { pname = "cabal-flatpak"; version = "0.1.2"; sha256 = "05ig175b2glxppn5wr05pnncqkp8yhhy1m7ymmc1jk5pmiy3zvzi"; - revision = "2"; - editedCabalFile = "01iqpfj5nvl19580ckl4b0aljl86svplxzpkavp5r0jbwaqi0ll3"; + revision = "3"; + editedCabalFile = "00yisb404gr82zns01326h0ppw5jraqsxnanzd3ff2h9x7805fd7"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -124116,63 +123873,6 @@ self: { ) { }; cabal-gild = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal-syntax, - containers, - directory, - exceptions, - filepath, - filepattern, - hspec, - parsec, - pretty, - temporary, - text, - transformers, - }: - mkDerivation { - pname = "cabal-gild"; - version = "1.5.0.3"; - sha256 = "0lv3w9l865nys341z3r20psvmnjm79np7898d5v9ccr8l58h1vp4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal-syntax - containers - exceptions - filepath - filepattern - parsec - pretty - text - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - containers - directory - exceptions - filepath - filepattern - hspec - temporary - transformers - ]; - description = "Formats package descriptions"; - license = lib.licenses.mit; - mainProgram = "cabal-gild"; - maintainers = [ lib.maintainers.turion ]; - } - ) { }; - - cabal-gild_1_6_0_2 = callPackage ( { mkDerivation, base, @@ -124224,7 +123924,6 @@ self: { ]; description = "Formats package descriptions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-gild"; maintainers = [ lib.maintainers.turion ]; } @@ -124492,7 +124191,6 @@ self: { filepath, hackage-security, HTTP, - lukko, mtl, network-uri, open-browser, @@ -124507,6 +124205,7 @@ self: { resolv, safe-exceptions, semaphore-compat, + silently, stm, tagged, tar, @@ -124523,8 +124222,8 @@ self: { }: mkDerivation { pname = "cabal-install"; - version = "3.14.2.0"; - sha256 = "1nvv3h9kq92ifyqqma88538579v7898pd9b52hras2h489skv8g8"; + version = "3.16.0.0"; + sha256 = "06jndk7xcm837rsy4y9nhy8a0162ckravh8dlnif1vmywfgljai8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -124546,7 +124245,6 @@ self: { filepath hackage-security HTTP - lukko mtl network-uri open-browser @@ -124587,6 +124285,7 @@ self: { process QuickCheck random + silently tagged tar tasty @@ -124796,8 +124495,8 @@ self: { }: mkDerivation { pname = "cabal-install-parsers"; - version = "0.6.1.1"; - sha256 = "1w4kbc7435qbkflb8rkmfgyqw3fynyfqgvy4mxay1r1zfknqvq0b"; + version = "0.6.2"; + sha256 = "1362p021irm0kaz7n8gdjy1ppjk914zza114cmpm87ris0i1a9jn"; libraryHaskellDepends = [ aeson base @@ -124960,8 +124659,8 @@ self: { }: mkDerivation { pname = "cabal-install-solver"; - version = "3.14.2.0"; - sha256 = "0551cvrkbnjfqjd3byq7pczlwjdb0n1jrfsrb0j8axagylbif7g1"; + version = "3.16.0.0"; + sha256 = "0jp4iipc7j05hwvxpw4xiiv1rjaadc8c5a1jhqggr9q8l9pkvaw1"; libraryHaskellDepends = [ array base @@ -125085,7 +124784,9 @@ self: { ]; description = "Cabal support for creating Mac OSX application bundles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "macosx-app"; + broken = true; } ) { }; @@ -125254,8 +124955,8 @@ self: { }: mkDerivation { pname = "cabal-plan"; - version = "0.7.6.0"; - sha256 = "0n6q56gyyiflagka0bhmp077py71xdc9j921yyl7818q6b6ha3hs"; + version = "0.7.6.1"; + sha256 = "03b71qxcw97qnkjvrj9x6x4963d4kvwq0bwvmjkay9znsds938v7"; configureFlags = [ "-fexe" ]; isLibrary = true; isExecutable = true; @@ -125395,60 +125096,6 @@ self: { ) { }; cabal-rpm = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - cached-json-file, - directory, - extra, - filepath, - http-client, - http-client-tls, - http-query, - simple-cabal, - simple-cmd, - simple-cmd-args, - text, - time, - unix, - }: - mkDerivation { - pname = "cabal-rpm"; - version = "2.2.1"; - sha256 = "0dsbnnvzss0flknf1c2fq85y9a4d26nbrlnrh2xcyfwh2mz20c9d"; - revision = "1"; - editedCabalFile = "1ad0j7qykd5wbn1gdfrkbc50s707h3p0ll8nfqv0if8q1bck3w8l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - cached-json-file - directory - extra - filepath - http-client - http-client-tls - http-query - simple-cabal - simple-cmd - simple-cmd-args - text - time - unix - ]; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = lib.licenses.gpl3Only; - mainProgram = "cabal-rpm"; - } - ) { }; - - cabal-rpm_2_3_0 = callPackage ( { mkDerivation, aeson, @@ -125500,7 +125147,6 @@ self: { ]; description = "RPM packaging tool for Haskell Cabal-based packages"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-rpm"; } ) { }; @@ -126386,6 +126032,50 @@ self: { } ) { }; + cabal2spec_2_8_0 = callPackage ( + { + mkDerivation, + base, + Cabal, + filepath, + optparse-applicative, + tasty, + tasty-golden, + time, + }: + mkDerivation { + pname = "cabal2spec"; + version = "2.8.0"; + sha256 = "15pgbrsjykwq30fvw70rvbsvkrabqv43qf1v4l8bi229406vflb9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + Cabal + filepath + time + ]; + executableHaskellDepends = [ + base + Cabal + filepath + optparse-applicative + ]; + testHaskellDepends = [ + base + Cabal + filepath + tasty + tasty-golden + ]; + description = "Convert Cabal files into rpm spec files"; + license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + mainProgram = "cabal2spec"; + maintainers = [ lib.maintainers.peti ]; + } + ) { }; + cabalQuery = callPackage ( { mkDerivation, @@ -127063,8 +126753,8 @@ self: { }: mkDerivation { pname = "cachix"; - version = "1.7.9"; - sha256 = "02q0z2f668y826f9rspwwn1kw3ma1igwsh2fp291g4sz8x6z66fv"; + version = "1.8.0"; + sha256 = "0axi9g6v8h29fi4lvxjxqrk4215c41zzp860hl5avdka1l0cvv5q"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127224,8 +126914,8 @@ self: { }: mkDerivation { pname = "cachix-api"; - version = "1.7.9"; - sha256 = "1jp55yvih27xkpky4i6pl37ajwyql84cniz2nhgwdb67qac5nmgi"; + version = "1.8.0"; + sha256 = "02cj18aghnl8w4pr2azpgg52aha6z59lcxy6nqd6yvrzgg0lv97v"; libraryHaskellDepends = [ aeson async @@ -127267,76 +126957,6 @@ self: { ) { }; cacophony = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - base16-bytestring, - bytestring, - criterion, - cryptonite, - deepseq, - directory, - exceptions, - free, - hlint, - lens, - memory, - monad-coroutine, - mtl, - safe-exceptions, - text, - transformers, - }: - mkDerivation { - pname = "cacophony"; - version = "0.10.1"; - sha256 = "1w9v04mdyzvwndqfb8my9a82b51avgwfnl6g7w89xj37ax9ariaj"; - revision = "1"; - editedCabalFile = "0462qjh4qirgkr9v4fhjy28gc8pgnig1kmnrazfm2if2pqgbj0n7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cryptonite - exceptions - free - lens - memory - monad-coroutine - mtl - safe-exceptions - transformers - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - bytestring - directory - hlint - text - ]; - benchmarkHaskellDepends = [ - async - base - base16-bytestring - bytestring - criterion - deepseq - ]; - description = "A library implementing the Noise protocol"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - cacophony_0_11_0 = callPackage ( { mkDerivation, aeson, @@ -127399,8 +127019,6 @@ self: { ]; description = "A library implementing the Noise protocol"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -128377,73 +127995,6 @@ self: { ) { }; call-alloy = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - exceptions, - extra, - file-embed, - filepath, - hspec, - process, - split, - string-interpolate, - transformers, - trifecta, - unix, - }: - mkDerivation { - pname = "call-alloy"; - version = "0.5.0.1"; - sha256 = "0c34yd6l0650qk760mmgsfgmwvhqhs43nzm7nhzkps5z1p966wmc"; - revision = "2"; - editedCabalFile = "0hgy6daai4i0y5rz4350dzwz4wrwlyrr5d2c7k8d6hc4d8dlhqvm"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - directory - exceptions - extra - filepath - process - split - transformers - trifecta - unix - ]; - testHaskellDepends = [ - async - base - bytestring - containers - directory - exceptions - extra - file-embed - filepath - hspec - process - split - string-interpolate - transformers - trifecta - unix - ]; - description = "A simple library to call Alloy given a specification"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - call-alloy_0_6_0_2 = callPackage ( { mkDerivation, async, @@ -129114,9 +128665,7 @@ self: { ]; description = "Candid integration"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hcandid"; - broken = true; } ) { }; @@ -129492,8 +129041,8 @@ self: { pname = "cantor-pairing"; version = "0.2.0.2"; sha256 = "1h95xbc1lhwd40qk64qw2cmr7prwygli1q2wy5hscny7jyah95c2"; - revision = "1"; - editedCabalFile = "10dsxgdpxa5hxz5zrij8h2whwsz0l1fvkkwdmidqpv09is55wmz5"; + revision = "2"; + editedCabalFile = "023yj598gz8dmpc00fybj02gsdsj45aw8pdi5g20zyv98ps6hyk5"; libraryHaskellDepends = [ base containers @@ -132042,16 +131591,13 @@ self: { test-framework-quickcheck2, text, text-short, - transformers, unordered-containers, vector, }: mkDerivation { pname = "cassava"; - version = "0.5.4.0"; - sha256 = "0vdbmvb36sg08glig1dqc8kb1s07l5fcn2n0c58iglkv5djsbpnr"; - revision = "1"; - editedCabalFile = "1w7mih2wpbgv0bn2cg2ip0ffsn2y7aywqixi1lig30yarsyc873x"; + version = "0.5.4.1"; + sha256 = "0ps9b8lgc1ah186rlxsy8hdnwkfh60i351105309jykk63skc1nl"; configureFlags = [ "-f-bytestring--lt-0_10_4" ]; libraryHaskellDepends = [ array @@ -132065,15 +131611,12 @@ self: { scientific text text-short - transformers unordered-containers vector ]; testHaskellDepends = [ - attoparsec base bytestring - hashable HUnit QuickCheck quickcheck-instances @@ -132195,6 +131738,8 @@ self: { ]; description = "Cassave instances for functor-like datatypes like `Either String a`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -133036,8 +132581,8 @@ self: { }: mkDerivation { pname = "cauldron"; - version = "0.8.0.0"; - sha256 = "1vkvxkr3lr99xvd4vqga18idcpw3p1mv8hr94qagvfqdxrd68wcl"; + version = "0.9.0.1"; + sha256 = "1wcym2d37qpva1gfjwqh0zw9vfp9x1aqql19mdgvlc2hpf7m02y4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -133055,9 +132600,7 @@ self: { doHaddock = false; description = "Dependency injection library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cauldron-example-wiring"; - broken = true; } ) { }; @@ -135022,6 +134565,8 @@ self: { ]; description = "A Future type that is easy to represent and handle in C/C++"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -135887,8 +135432,8 @@ self: { }: mkDerivation { pname = "changeset"; - version = "0.1.0.2"; - sha256 = "1r5lis34i2zkvma19n323cdfnxq0vlc1rx338hmb4icxrlpnlby9"; + version = "0.1.0.3"; + sha256 = "1fzaflmfl4p2s9yjl11ifls2jhrp1ia334jb2l2nxnrlkgax5l1d"; libraryHaskellDepends = [ base containers @@ -135926,8 +135471,8 @@ self: { }: mkDerivation { pname = "changeset-containers"; - version = "0.1.0.2"; - sha256 = "0wc9k3ygij388p5bxh3iv8hpn68il46jky6rmj01zirz3q86vdh2"; + version = "0.1.0.3"; + sha256 = "0a7k269qkv7x4d16q17h0wqixgv0aj0cs27fms8i79lcx804m4jz"; libraryHaskellDepends = [ base changeset @@ -135966,8 +135511,8 @@ self: { }: mkDerivation { pname = "changeset-lens"; - version = "0.1.0.2"; - sha256 = "1vgrjq98pj66yqbfd029vnwix02g5wmjk55dma6jwmh2sqb6sdx5"; + version = "0.1.0.3"; + sha256 = "020vzb7pg208s5kdvmf88z9xj0lxg1safxh8scfzpwx58bnvq68q"; libraryHaskellDepends = [ base changeset @@ -136008,8 +135553,8 @@ self: { }: mkDerivation { pname = "changeset-reflex"; - version = "0.1.0.2"; - sha256 = "1ka71qz1b5rkdjcxzcp9qyfznbwl3r9xi5ihrkn08x2xafhc20f0"; + version = "0.1.0.3"; + sha256 = "1gcz5gamx2dxwy0v1wb578fjrc1wqhlh5asvhffrh8lvxzcdnjcw"; libraryHaskellDepends = [ base changeset @@ -136391,6 +135936,7 @@ self: { flatparse, formatn, harpie, + lens, markup-parse, mtl, numhask, @@ -136403,8 +135949,8 @@ self: { }: mkDerivation { pname = "chart-svg"; - version = "0.7.0.0"; - sha256 = "1v1dhvn4rgv191byvr5dvaxifd48hskpqvv3kzpsq40ii7hqyj4m"; + version = "0.8.2.1"; + sha256 = "0nxg8ggd7nslr585sag2zzgal6scs66sf5v42hrpjdslkqks85sl"; libraryHaskellDepends = [ base bytestring @@ -136414,6 +135960,7 @@ self: { flatparse formatn harpie + lens markup-parse mtl numhask @@ -136433,61 +135980,6 @@ self: { } ) { }; - chart-svg_0_8_1_0 = callPackage ( - { - mkDerivation, - base, - bytestring, - Color, - containers, - cubicbezier, - doctest-parallel, - flatparse, - formatn, - harpie, - markup-parse, - mtl, - numhask, - numhask-space, - optics-core, - random, - string-interpolate, - text, - time, - }: - mkDerivation { - pname = "chart-svg"; - version = "0.8.1.0"; - sha256 = "1rsix6qdxhsgjg4zp7rh5di6y5mjxjv0mzv9g82ryl3vlcryyaj4"; - libraryHaskellDepends = [ - base - bytestring - Color - containers - cubicbezier - flatparse - formatn - harpie - markup-parse - mtl - numhask - numhask-space - optics-core - random - string-interpolate - text - time - ]; - testHaskellDepends = [ - base - doctest-parallel - ]; - description = "Charting library targetting SVGs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - chart-svg-various = callPackage ( { mkDerivation, @@ -137373,8 +136865,6 @@ self: { ]; description = "mtl-style checked exceptions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -137583,6 +137073,8 @@ self: { ]; description = "QuickCheck support for Chell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -137811,6 +137303,7 @@ self: { ]; description = "Basic chess library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -137855,6 +137348,8 @@ self: { ]; description = "A Library for Chess Game Logic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -138140,6 +137635,8 @@ self: { pname = "chimera"; version = "0.4.1.0"; sha256 = "1wxw0d9dq7q3a9rn3h69yjiyi94xhyip1ssii982rm35jsywak49"; + revision = "1"; + editedCabalFile = "1rpm93iq6kapgcd1c0711sgsav0zpxnn0b88zga35pizq9j9vrm9"; libraryHaskellDepends = [ adjunctions base @@ -138905,10 +138402,10 @@ self: { }: mkDerivation { pname = "chronos"; - version = "1.1.6.2"; - sha256 = "08y8s9mwb69kisi0yhng6plvasy6jnj25i4ar8k2cq3vsf6bgx73"; + version = "1.1.7.0"; + sha256 = "0gcyv9gg8a37xcylkvq2r7pqwblvfvchvqjih8ylp4420fl66mri"; revision = "1"; - editedCabalFile = "04991mhi13b95iy665s59r4z9qsh68wykkgch5dqlnlm1dd6fzdw"; + editedCabalFile = "0l1gns3cr7rqqyh175wlx5r1yrja7kyb7b6cr652czby8hzyj677"; libraryHaskellDepends = [ aeson attoparsec @@ -139009,10 +138506,10 @@ self: { }: mkDerivation { pname = "chs-cabal"; - version = "0.1.1.1"; - sha256 = "0fvf26394rpn9g4f3rp13bq8rrhzs9d95k7nbcpayzml2j9rsv3l"; - revision = "2"; - editedCabalFile = "1vv61klw11fhnn5ki0z2x0k6d7vvj622bjj05mdlx8sdjqijlbgd"; + version = "0.1.1.2"; + sha256 = "1qh234dx3d3l3nxb67alv0ggwqipp1502krq11fgq3hp0jhcm8b8"; + revision = "1"; + editedCabalFile = "08p3vj0v1i546m1allza5wl7q038qgqvb4b4p3p501v097yrvh6z"; libraryHaskellDepends = [ base Cabal @@ -139023,7 +138520,7 @@ self: { } ) { }; - chs-cabal_0_1_1_4 = callPackage ( + chs-cabal_1_0_0_0 = callPackage ( { mkDerivation, base, @@ -139032,8 +138529,8 @@ self: { }: mkDerivation { pname = "chs-cabal"; - version = "0.1.1.4"; - sha256 = "1y9z3ymvsldl4kjjdzagx0p3i7s5lyrsipd29bx2nqv05ldgrkip"; + version = "1.0.0.0"; + sha256 = "0n8ybcs7l8llh7641nkw5bd7pwhx563ip9srdy5vpqijnijsfxkq"; libraryHaskellDepends = [ base Cabal @@ -139530,6 +139027,7 @@ self: { filepath, groom, happy, + hashable, hspec, hspec-discover, monad-parallel, @@ -139543,8 +139041,8 @@ self: { }: mkDerivation { pname = "cimple"; - version = "0.0.22"; - sha256 = "0dp62wqcrdf16mrs10ij59y2ncrbm3nplp3h8qszmq4csiq8scfi"; + version = "0.0.26"; + sha256 = "0fv7kdwl8jd1v3wl85djn3njwdhp06vlmfq59h7gbvnf4d5mvxiv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -139556,6 +139054,7 @@ self: { data-fix file-embed filepath + hashable monad-parallel mtl prettyprinter @@ -140531,10 +140030,8 @@ self: { }: mkDerivation { pname = "citeproc"; - version = "0.8.1.1"; - sha256 = "0hgkxgd1wmyrryv2ahavia6r5z9331i9557mnblq922lkdi0bs2g"; - revision = "1"; - editedCabalFile = "091gm0cbjsqvad3fhd2fx4bgsylv3gfakq3fhki3z40aywri8992"; + version = "0.9.0.1"; + sha256 = "1s1gdd7piwssp5b6bwbfyp9sfna052v3rayav7di44yapm5dazmr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -140577,7 +140074,7 @@ self: { } ) { }; - citeproc_0_9_0_1 = callPackage ( + citeproc_0_10 = callPackage ( { mkDerivation, aeson, @@ -140606,8 +140103,8 @@ self: { }: mkDerivation { pname = "citeproc"; - version = "0.9.0.1"; - sha256 = "1s1gdd7piwssp5b6bwbfyp9sfna052v3rayav7di44yapm5dazmr"; + version = "0.10"; + sha256 = "0snza31cf2agnpr80dl691insw6f8v1ii7f52q6dyl2cx56cawsh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -142799,10 +142296,8 @@ self: { }: mkDerivation { pname = "clay"; - version = "0.15.0"; - sha256 = "1gp7x76cw15jmd3ahqf1q0bc2p6ix182x6s2pzyh8yr4b29b9r3v"; - revision = "2"; - editedCabalFile = "174jkyq4yjk022msd2rq0wlp4myy9fa92w28d4nwd7jrwghw5qki"; + version = "0.16.1"; + sha256 = "1zfbicn8mh48a3j4ms97v0ah7gmph0nb927ilcb37ghr1qzm054b"; libraryHaskellDepends = [ base mtl @@ -142821,38 +142316,6 @@ self: { } ) { }; - clay_0_16_0 = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - mtl, - text, - }: - mkDerivation { - pname = "clay"; - version = "0.16.0"; - sha256 = "0746w54gcpck0sj493bh2wlfdgknxbpwgr7q3b6l9m8djs7j8q41"; - libraryHaskellDepends = [ - base - mtl - text - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - mtl - text - ]; - testToolDepends = [ hspec-discover ]; - description = "CSS preprocessor as embedded Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - clckwrks = callPackage ( { mkDerivation, @@ -144133,8 +143596,8 @@ self: { }: mkDerivation { pname = "cli-extras"; - version = "0.2.1.1"; - sha256 = "1lj45gzn9dm0mmsigab9mv5z1zvbvvh043z5il7i5086la11l3n6"; + version = "0.2.1.2"; + sha256 = "0fwjfd29hmzxkvmi142di175q465wk1m92xhifq9rh4mg9qrx68h"; libraryHaskellDepends = [ aeson ansi-terminal @@ -144180,8 +143643,8 @@ self: { }: mkDerivation { pname = "cli-git"; - version = "0.2.0.2"; - sha256 = "00m955anry37ag6h7pxnsihp9kr6v4bhq19gy4iyhk96lp8vidfl"; + version = "0.2.0.3"; + sha256 = "0cnn8dfp887p6y0xjlqj7qjih55a979k9cxq7blrr8fv0wgxnddj"; libraryHaskellDepends = [ base cli-extras @@ -144216,8 +143679,8 @@ self: { }: mkDerivation { pname = "cli-nix"; - version = "0.2.0.1"; - sha256 = "0s79rm6sa7fn59jmqzmc44wjqvb8bafxjshijxpv60yyz24c3mdh"; + version = "0.2.0.2"; + sha256 = "0gsx2rxwpn0np2c132bz32m7gv2s502h61q4bs8b7nvaf0wn4msa"; libraryHaskellDepends = [ base cli-extras @@ -145135,7 +144598,6 @@ self: { ]; description = "Project file manager for Claude AI integrations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -145226,13 +144688,14 @@ self: { markdown-unlit, persistent, QuickCheck, + random, text, vector, }: mkDerivation { pname = "closed"; - version = "0.2.0.2"; - sha256 = "0dh73bayq78a0idbh2lprmb8hazj03g4ma5gcmad06bq01nl9yxh"; + version = "0.2.1.0"; + sha256 = "157y53hh43bj2inzvfr5hq538003jif25dy3329xkihq720ddxgv"; libraryHaskellDepends = [ aeson base @@ -145241,6 +144704,7 @@ self: { hashable persistent QuickCheck + random text ]; testHaskellDepends = [ @@ -145500,7 +144964,6 @@ self: { ]; description = "Unofficial Haskell SDK for the CloudEvents specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -147232,73 +146695,6 @@ self: { ) { }; co-log = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - chronos, - co-log-core, - containers, - contravariant, - dependent-map, - dependent-sum, - directory, - doctest, - exceptions, - filepath, - Glob, - hedgehog, - mtl, - text, - transformers, - unliftio-core, - vector, - }: - mkDerivation { - pname = "co-log"; - version = "0.6.1.2"; - sha256 = "0qq3zad2pq6y37ll0hdz3481grng6ms0rb9vkf66663p2qbkngqh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - chronos - co-log-core - containers - contravariant - dependent-map - dependent-sum - directory - exceptions - filepath - mtl - text - transformers - unliftio-core - vector - ]; - executableHaskellDepends = [ - base - bytestring - dependent-map - mtl - ]; - testHaskellDepends = [ - base - co-log-core - doctest - Glob - hedgehog - ]; - description = "Composable Contravariant Comonadic Logging Library"; - license = lib.licenses.mpl20; - } - ) { }; - - co-log_0_7_0_0 = callPackage ( { mkDerivation, ansi-terminal, @@ -147362,7 +146758,6 @@ self: { ]; description = "Composable Contravariant Comonadic Logging Library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -147460,6 +146855,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "effectful log effect using co-log-core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -147489,6 +146886,8 @@ self: { ]; description = "Structured messages support in co-log ecosystem"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -147569,6 +146968,42 @@ self: { } ) { }; + co-log-simple = callPackage ( + { + mkDerivation, + ansi-terminal, + base, + co-log, + co-log-core, + mtl, + text, + time, + }: + mkDerivation { + pname = "co-log-simple"; + version = "1.2.1"; + sha256 = "193ns8z1gs3rzvrnja2cww05dxdf2097glw9qjzz235wiihg7r8h"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal + base + co-log + co-log-core + mtl + text + time + ]; + executableHaskellDepends = [ + base + co-log + ]; + description = "Simple enhancements for logging with co-log"; + license = lib.licenses.isc; + mainProgram = "co-log-simple"; + } + ) { }; + co-log-sys = callPackage ( { mkDerivation, @@ -147916,8 +147351,8 @@ self: { }: mkDerivation { pname = "code-conjure"; - version = "0.5.16"; - sha256 = "1payg71xcb6p6vzdn4cr2b8lm6xd8fwln55kq0w0kmf77252xxla"; + version = "0.7.8"; + sha256 = "02fnp1l3mvf8fs84fm2zp0lsm8bd1kmhb3qdnc1qxr5nbkrx74bf"; libraryHaskellDepends = [ base express @@ -147936,38 +147371,6 @@ self: { } ) { }; - code-conjure_0_7_4 = callPackage ( - { - mkDerivation, - base, - express, - leancheck, - speculate, - template-haskell, - }: - mkDerivation { - pname = "code-conjure"; - version = "0.7.4"; - sha256 = "19ynxnzwfyspr22dgnrs3h6zb7a64lig59xhfir4m055y1wp6qvx"; - libraryHaskellDepends = [ - base - express - leancheck - speculate - template-haskell - ]; - testHaskellDepends = [ - base - express - leancheck - speculate - ]; - description = "synthesize Haskell functions out of partial definitions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - code-page = callPackage ( { mkDerivation, base }: mkDerivation { @@ -148425,6 +147828,8 @@ self: { pname = "codet"; version = "0.1.0.1"; sha256 = "0jv3z28sxdgmbpkxics2c8s4r576fz4r8dv7ai4yy1h4fqsli5vw"; + revision = "1"; + editedCabalFile = "134ah1y9shw15v5ls7xg4rzw0yqdjkrkljbn7wa60k2mx6l7861z"; libraryHaskellDepends = [ base bytestring @@ -148466,6 +147871,8 @@ self: { pname = "codet-plugin"; version = "0.1.0.1"; sha256 = "11ddf0h01qw00q3dd7gk12j31b98ff0yv5jd04wwngkhpcbshgb6"; + revision = "1"; + editedCabalFile = "0qjrxr49ak3cg00pg405sbalh0xb3q0f6v7azgxsjzcr8cd6k881"; libraryHaskellDepends = [ base codet @@ -148484,6 +147891,8 @@ self: { ]; description = "GHC type-checker plugin for solving LiftT instances from codet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -148707,6 +148116,18 @@ self: { } ) { }; + coerce-with-substitution = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "coerce-with-substitution"; + version = "0.0.0.0"; + sha256 = "1g2a723xlbj2blpyfgcr6jg6a2yyca7pa5dgw9jnpip98hssmhsa"; + libraryHaskellDepends = [ base ]; + description = "Coercions with improved type inference"; + license = lib.licenses.bsd3; + } + ) { }; + coercible-subtypes = callPackage ( { mkDerivation, base }: mkDerivation { @@ -150088,8 +149509,8 @@ self: { }: mkDerivation { pname = "colorhash"; - version = "0.2.0.0"; - sha256 = "0w0f8dr2lzbna2k26ar6zx9bxih6hm9rj60mbcizyv695vhrdvgn"; + version = "0.2.1.0"; + sha256 = "1sv5f9fmalxwm8dm2fgrnhb1llah3jwsk3qlgy53v7y67lf47w2h"; libraryHaskellDepends = [ base colour @@ -150320,6 +149741,7 @@ self: { ]; description = "Working with colours in Accelerate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -150589,8 +150011,6 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -151456,6 +150876,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Join text together with commas, and \"and\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -151834,29 +151256,39 @@ self: { } ) { }; - commonmark-pandoc_0_2_2_3 = callPackage ( + commonmark-initial = callPackage ( { mkDerivation, base, commonmark, commonmark-extensions, - pandoc-types, + deriving-compat, + dwergaz, + free, + parsec, text, }: mkDerivation { - pname = "commonmark-pandoc"; - version = "0.2.2.3"; - sha256 = "1jjsagf4gcbvzn89abwrczr8xprqnp0mn7bjw3m5lf34nbnd2dza"; + pname = "commonmark-initial"; + version = "0.1.0.0"; + sha256 = "1vgi2yhcs8g5bylmwfkib3b83cq7vw6hacxf1xn0mmyzrdjgmg7c"; libraryHaskellDepends = [ base commonmark - commonmark-extensions - pandoc-types + deriving-compat + free text ]; - description = "Bridge between commonmark and pandoc AST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + base + commonmark + commonmark-extensions + dwergaz + parsec + text + ]; + description = "An initial encoding of the CommonMark language"; + license = lib.licenses.isc; } ) { }; @@ -151903,8 +151335,8 @@ self: { }: mkDerivation { pname = "commonmark-simple"; - version = "0.1.0.0"; - sha256 = "0fvpykqvqi12nsc95pv3xwd67sdamxc79r24w5xf30f87p0f9kna"; + version = "0.2.0.0"; + sha256 = "16j4zs8c95ma77171jhiyfg5h4vmlkqf34rsn52ycaqx75193f7j"; libraryHaskellDepends = [ aeson base @@ -151919,7 +151351,7 @@ self: { relude yaml ]; - description = "Simple interface to commonmark-hs"; + description = "Simple interface to commonmark-hs for parsing real-world Markdown"; license = lib.licenses.mit; } ) { }; @@ -151931,6 +151363,8 @@ self: { base, commonmark, commonmark-pandoc, + commonmark-simple, + hspec, megaparsec, network-uri, pandoc-types, @@ -151941,8 +151375,8 @@ self: { }: mkDerivation { pname = "commonmark-wikilink"; - version = "0.1.0.0"; - sha256 = "1varv4zihai08wvgpsf9pp3qaa1wniii21qhgy39cpcz9n9s2hv2"; + version = "0.2.0.0"; + sha256 = "0nq7992iyvw303z1fvhrnzbm4fb10n1h24jrvshv4q2ynbksmny9"; libraryHaskellDepends = [ aeson base @@ -151956,6 +151390,21 @@ self: { uri-encode url-slug ]; + testHaskellDepends = [ + aeson + base + commonmark + commonmark-pandoc + commonmark-simple + hspec + megaparsec + network-uri + pandoc-types + parsec + relude + uri-encode + url-slug + ]; description = "Obsidian-friendly commonmark wikilink parser"; license = lib.licenses.mit; } @@ -152627,6 +152076,8 @@ self: { ]; description = "Small vectors of small integers stored very compactly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -152863,6 +152314,8 @@ self: { ]; description = "Compositional Data Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -152894,6 +152347,7 @@ self: { ]; description = "Tree automata on Compositional Data Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -155702,6 +155156,8 @@ self: { ]; description = "Concurrent networked stream transducers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -155899,6 +155355,8 @@ self: { libraryHaskellDepends = [ base ]; description = "More utilities and broad-used datastructures for concurrency"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -157542,6 +157000,8 @@ self: { ]; description = "Configuration management library"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -157589,6 +157049,7 @@ self: { ]; description = "conferer's source for reading json files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -157634,6 +157095,7 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -157667,6 +157129,7 @@ self: { ]; description = "conferer's FromConfig instances for hedis settings"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -158058,6 +157521,7 @@ self: { ]; description = "Configuration for reading yaml files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -158758,8 +158222,8 @@ self: { pname = "configurator-pg"; version = "0.2.10"; sha256 = "12a67pz6d2vpsa5qdaxm8lwl3jjg8f0idd5r3bjnqw22ji39cysj"; - revision = "1"; - editedCabalFile = "1v5zqpyyqrsh078glwlk5k8w0k64j6is41hpaz7fd000bdyk1810"; + revision = "3"; + editedCabalFile = "156p0hr14ggf2sfiivgndzrsayxfrmr22pr9hs6jban7m5r627ng"; libraryHaskellDepends = [ base containers @@ -160588,8 +160052,8 @@ self: { }: mkDerivation { pname = "context"; - version = "0.2.1.0"; - sha256 = "1z10rhy9l2rssvh65bdb4bg4qfsgxa5mkjyhx86l8dksp8kd6cjm"; + version = "0.2.1.1"; + sha256 = "1q9hgfchss0aqc0lhdfvy8jsgcch6p3c61b605jjg7h74vzrwsgl"; libraryHaskellDepends = [ base containers @@ -160866,52 +160330,6 @@ self: { ) { }; contiguous = callPackage ( - { - mkDerivation, - base, - deepseq, - primitive, - primitive-unlifted, - QuickCheck, - quickcheck-classes, - quickcheck-instances, - random, - random-shuffle, - run-st, - vector, - weigh, - }: - mkDerivation { - pname = "contiguous"; - version = "0.6.4.2"; - sha256 = "0ay0hrdi2gj3b2z81cswmcaphkyy57w532svyc5mm3mncd0ddsm8"; - libraryHaskellDepends = [ - base - deepseq - primitive - primitive-unlifted - run-st - ]; - testHaskellDepends = [ - base - primitive - QuickCheck - quickcheck-classes - quickcheck-instances - vector - ]; - benchmarkHaskellDepends = [ - base - random - random-shuffle - weigh - ]; - description = "Unified interface for primitive arrays"; - license = lib.licenses.bsd3; - } - ) { }; - - contiguous_0_6_5_0 = callPackage ( { mkDerivation, base, @@ -160954,7 +160372,6 @@ self: { ]; description = "Unified interface for primitive arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -161122,6 +160539,7 @@ self: { ]; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -161151,6 +160569,7 @@ self: { ]; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -161991,11 +161410,45 @@ self: { ]; description = "Convert the annotation of a gene to another in a delimited file using a variety of different databases"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "convert-annotation"; } ) { }; + convert-units = callPackage ( + { + mkDerivation, + base, + criterion, + hspec, + linear, + QuickCheck, + template-haskell, + }: + mkDerivation { + pname = "convert-units"; + version = "0"; + sha256 = "1bwivxq8farqzr2wmmnknnnrr8mv46i6kz1akackqvpl4d0n7cnm"; + libraryHaskellDepends = [ + base + template-haskell + ]; + testHaskellDepends = [ + base + hspec + linear + QuickCheck + template-haskell + ]; + benchmarkHaskellDepends = [ + base + criterion + template-haskell + ]; + description = "Arithmetic and type checked conversions between units"; + license = lib.licenses.bsd3; + } + ) { }; + convertible = callPackage ( { mkDerivation, @@ -162122,8 +161575,8 @@ self: { }: mkDerivation { pname = "convex-schema-parser"; - version = "0.1.3.0"; - sha256 = "01z32fdxzwqbn8i7izh4amqa3jv4zfkxjn2zcy3fmyc7js72az68"; + version = "0.1.8.0"; + sha256 = "15czjgcva7h6c73z863ywpk2gb3l3c2kj8vhhcx95rxzgfzrc1mv"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ @@ -162193,6 +161646,8 @@ self: { ]; description = "Convex hull"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -162406,8 +161861,8 @@ self: { }: mkDerivation { pname = "copilot"; - version = "4.1"; - sha256 = "04zhqkkp66alvk6b2mhgdvdg2d9yjyyzmv7vp7caj13cyqrifflz"; + version = "4.5.1"; + sha256 = "1izskzqahviqa7gn5nqhq7i4lplzgz40xnj7fr8mab6b7rl83j6f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -162427,44 +161882,6 @@ self: { } ) { }; - copilot_4_4 = callPackage ( - { - mkDerivation, - base, - copilot-c99, - copilot-core, - copilot-language, - copilot-libraries, - copilot-prettyprinter, - copilot-theorem, - directory, - filepath, - optparse-applicative, - }: - mkDerivation { - pname = "copilot"; - version = "4.4"; - sha256 = "1fazwy4wnbf7jvs793kwhpc6hjnxf0ak9fhpnlvmdcwryz35nfbw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - copilot-c99 - copilot-core - copilot-language - copilot-libraries - copilot-prettyprinter - copilot-theorem - directory - filepath - optparse-applicative - ]; - description = "A stream DSL for writing embedded C programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-bluespec = callPackage ( { mkDerivation, @@ -162487,8 +161904,8 @@ self: { }: mkDerivation { pname = "copilot-bluespec"; - version = "4.4"; - sha256 = "1iw53mmq7hn8a1zy1i8zhjapfdaccvg1l0xwgpkr53b761srbpni"; + version = "4.5.1"; + sha256 = "0lznkmyy8mgp5mlrazp57qqa7xld3f4w4cngy5379s0ipfw1h6bc"; libraryHaskellDepends = [ base copilot-core @@ -162542,8 +161959,8 @@ self: { }: mkDerivation { pname = "copilot-c99"; - version = "4.1"; - sha256 = "0lqjqji6v7bxavqlg367837n7qvdlba11y0x24pkl6djdwq4rx5p"; + version = "4.5.1"; + sha256 = "1kw8fz4alxa7l0bpg5zyr440mkm2rd0rr56yq2bj4hddh8280imv"; libraryHaskellDepends = [ base copilot-core @@ -162573,60 +161990,6 @@ self: { } ) { }; - copilot-c99_4_4 = callPackage ( - { - mkDerivation, - base, - copilot-core, - directory, - filepath, - HUnit, - language-c99, - language-c99-simple, - mtl, - pretty, - process, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - unix, - }: - mkDerivation { - pname = "copilot-c99"; - version = "4.4"; - sha256 = "0wk3b1m9har25iwd0fg9pzcffk23gz0bf7xmfljr4fxlf16gqz0s"; - libraryHaskellDepends = [ - base - copilot-core - directory - filepath - language-c99 - language-c99-simple - mtl - pretty - ]; - testHaskellDepends = [ - base - copilot-core - directory - HUnit - pretty - process - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - unix - ]; - description = "A compiler for Copilot targeting C99"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-cbmc = callPackage ( { mkDerivation, @@ -162671,8 +162034,8 @@ self: { }: mkDerivation { pname = "copilot-core"; - version = "4.1"; - sha256 = "0w1bpf2sqmwjsk5pbf5wglmmgi26xa9ns497cs0dqz4v278v98yj"; + version = "4.5.1"; + sha256 = "1ga075ng7mgkvfn0mx18x10igwdadkv9x18sg1sms9xlby99ppxf"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -162687,35 +162050,6 @@ self: { } ) { }; - copilot-core_4_4 = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "copilot-core"; - version = "4.4"; - sha256 = "0rdfz1q1g91jxack93lcl2bj1az53m1k8fs25xi6bqbrbb3w77f0"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "An intermediate representation for Copilot"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-frp-sketch = callPackage ( { mkDerivation, @@ -162766,8 +162100,8 @@ self: { }: mkDerivation { pname = "copilot-interpreter"; - version = "4.1"; - sha256 = "016qvssn4hp3nllv9xxsx2d6z4z5m4kq8js5k10dcnhxbkr2bngz"; + version = "4.5.1"; + sha256 = "0idhrr446ihmsa7wnlmk6mh33bjgwxq9fvg8kqhyzva3x93k2h6i"; libraryHaskellDepends = [ base copilot-core @@ -162787,41 +162121,6 @@ self: { } ) { }; - copilot-interpreter_4_4 = callPackage ( - { - mkDerivation, - base, - copilot-core, - copilot-prettyprinter, - pretty, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "copilot-interpreter"; - version = "4.4"; - sha256 = "02l48zpj8c51h3hs50j1q1fwglgsn8xdipdz5gha9kghvrkbl7p5"; - libraryHaskellDepends = [ - base - copilot-core - pretty - ]; - testHaskellDepends = [ - base - copilot-core - copilot-prettyprinter - pretty - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Interpreter for Copilot"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-language = callPackage ( { mkDerivation, @@ -162842,8 +162141,8 @@ self: { }: mkDerivation { pname = "copilot-language"; - version = "4.1"; - sha256 = "04qa8i4gyvvv3la5qhdqbam0g8kxny6miv4z65g6crwdp9x7bdyv"; + version = "4.5.1"; + sha256 = "1yvyhldvgwlw0xx3lbcb57668iwf8c2b0856mhqf29vmkp2v4lsg"; libraryHaskellDepends = [ array base @@ -162870,55 +162169,6 @@ self: { } ) { }; - copilot-language_4_4 = callPackage ( - { - mkDerivation, - array, - base, - containers, - copilot-core, - copilot-interpreter, - copilot-theorem, - data-reify, - HUnit, - mtl, - pretty, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "copilot-language"; - version = "4.4"; - sha256 = "12jzx9sfzpvrbahha3mydpa5bzg2d5biar4cnn9rwxpw4i7vpnzy"; - libraryHaskellDepends = [ - array - base - containers - copilot-core - copilot-interpreter - copilot-theorem - data-reify - mtl - ]; - testHaskellDepends = [ - base - copilot-core - copilot-interpreter - HUnit - pretty - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-libraries = callPackage ( { mkDerivation, @@ -162935,8 +162185,8 @@ self: { }: mkDerivation { pname = "copilot-libraries"; - version = "4.1"; - sha256 = "04vgskgq20q62ybd1lm19bqgqabhfbb6v5vqj92gv9dk4861lahd"; + version = "4.5.1"; + sha256 = "1xk0wb6pfs54lj5i5zww55llyxyfsav1jphgcmhfbfx7lfqz6lwr"; libraryHaskellDepends = [ base containers @@ -162958,46 +162208,6 @@ self: { } ) { }; - copilot-libraries_4_4 = callPackage ( - { - mkDerivation, - base, - containers, - copilot-interpreter, - copilot-language, - copilot-theorem, - mtl, - parsec, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "copilot-libraries"; - version = "4.4"; - sha256 = "0q1znmgjk4hbd6z25avw23la6ckn7117vv9q4kkn4gyjy7q2kpjc"; - libraryHaskellDepends = [ - base - containers - copilot-language - mtl - parsec - ]; - testHaskellDepends = [ - base - copilot-interpreter - copilot-language - copilot-theorem - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Libraries for the Copilot language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-prettyprinter = callPackage ( { mkDerivation, @@ -163007,8 +162217,8 @@ self: { }: mkDerivation { pname = "copilot-prettyprinter"; - version = "4.1"; - sha256 = "0hd3dghc62wi1rj0ilwdgjw60kvbrqhcwdc502r0xny9ha9b6ws5"; + version = "4.5.1"; + sha256 = "0ih84a3nwjvk801f9xxlf40scvlihh58wmqw9gz7xp2sdsgvnr4q"; libraryHaskellDepends = [ base copilot-core @@ -163019,28 +162229,6 @@ self: { } ) { }; - copilot-prettyprinter_4_4 = callPackage ( - { - mkDerivation, - base, - copilot-core, - pretty, - }: - mkDerivation { - pname = "copilot-prettyprinter"; - version = "4.4"; - sha256 = "06134bgb2386mfcgqyka2ldwiwxskv6d2lmqqyvdwg21108kn59f"; - libraryHaskellDepends = [ - base - copilot-core - pretty - ]; - description = "A prettyprinter of Copilot Specifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - copilot-sbv = callPackage ( { mkDerivation, @@ -163072,69 +162260,6 @@ self: { ) { }; copilot-theorem = callPackage ( - { - mkDerivation, - base, - bimap, - bv-sized, - containers, - copilot-core, - copilot-prettyprinter, - data-default, - directory, - libBF, - mtl, - panic, - parameterized-utils, - parsec, - pretty, - process, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - transformers, - what4, - xml, - }: - mkDerivation { - pname = "copilot-theorem"; - version = "4.1"; - sha256 = "0jki4295p9z3a2n81pvzi1bs7i75ya9jf324cw4wiqk9r1zajdb2"; - libraryHaskellDepends = [ - base - bimap - bv-sized - containers - copilot-core - copilot-prettyprinter - data-default - directory - libBF - mtl - panic - parameterized-utils - parsec - pretty - process - random - transformers - what4 - xml - ]; - testHaskellDepends = [ - base - copilot-core - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "k-induction for Copilot"; - license = lib.licenses.bsd3; - } - ) { }; - - copilot-theorem_4_4 = callPackage ( { mkDerivation, base, @@ -163150,7 +162275,6 @@ self: { mtl, panic, parameterized-utils, - parsec, pretty, process, QuickCheck, @@ -163163,8 +162287,8 @@ self: { }: mkDerivation { pname = "copilot-theorem"; - version = "4.4"; - sha256 = "0v1b9nn783w9xc4mqq7ns0wn09rkfzl5vhy6x0icsidyp1h9kcdh"; + version = "4.5.1"; + sha256 = "13gg0xmabf31jd9k6hb6s7pd72p18y9k0pi3h2ga4c3fkpr6dzrw"; libraryHaskellDepends = [ base bimap @@ -163178,7 +162302,6 @@ self: { mtl panic parameterized-utils - parsec pretty process random @@ -163196,7 +162319,6 @@ self: { ]; description = "k-induction for Copilot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -163239,8 +162361,8 @@ self: { }: mkDerivation { pname = "copilot-verifier"; - version = "4.4"; - sha256 = "02kwvq3h04xq988zgvkhghfz4g00fj3s3bjfsp9962mw4dir3mbf"; + version = "4.5.1"; + sha256 = "1a98h8pfxj2sz7dgq6a95ih9pgxkxbg7dzliczyd885s5hbfdb4k"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -163339,6 +162461,48 @@ self: { } ) { }; + copilot-visualizer = callPackage ( + { + mkDerivation, + aeson, + base, + copilot, + copilot-core, + copilot-interpreter, + copilot-language, + filepath, + hint, + ogma-extra, + pretty, + text, + websockets, + }: + mkDerivation { + pname = "copilot-visualizer"; + version = "4.5.1"; + sha256 = "0bpy73c1gflj3q03kary0pqr083hncwnhvzbyy0293vxk2p6izxf"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + base + copilot + copilot-core + copilot-interpreter + copilot-language + filepath + hint + ogma-extra + pretty + text + websockets + ]; + description = "Visualizer for Copilot"; + license = lib.licenses.bsd3; + } + ) { }; + copr = callPackage ( { mkDerivation, @@ -163473,7 +162637,9 @@ self: { ]; description = "Yet another shell monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; + broken = true; } ) { }; @@ -165010,6 +164176,78 @@ self: { } ) { }; + covenant = callPackage ( + { + mkDerivation, + acc, + base, + bimap, + bytestring, + containers, + enummapset, + mtl, + nonempty-vector, + optics-core, + optics-extra, + optics-th, + prettyprinter, + QuickCheck, + quickcheck-instances, + quickcheck-transformer, + tasty, + tasty-expected-failure, + tasty-hunit, + tasty-quickcheck, + text, + transformers, + vector, + }: + mkDerivation { + pname = "covenant"; + version = "1.1.0"; + sha256 = "0cgf0l1xsm6l1gqn4mdvlz7j4rh1nx5pkimp6y18x8lp5498bbkj"; + libraryHaskellDepends = [ + acc + base + bimap + bytestring + containers + enummapset + mtl + nonempty-vector + optics-core + optics-extra + optics-th + prettyprinter + QuickCheck + quickcheck-instances + quickcheck-transformer + tasty-hunit + text + transformers + vector + ]; + testHaskellDepends = [ + base + containers + mtl + nonempty-vector + optics-core + prettyprinter + QuickCheck + tasty + tasty-expected-failure + tasty-hunit + tasty-quickcheck + vector + ]; + description = "Standalone IR for Cardano scripts"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + coverage = callPackage ( { mkDerivation, @@ -165339,6 +164577,81 @@ self: { } ) { }; + cpmonad = callPackage ( + { + mkDerivation, + base, + bytestring, + containers, + data-default, + deepseq, + directory, + hspec, + hspec-contrib, + HUnit, + microlens, + microlens-th, + mtl, + optparse-applicative, + process, + QuickCheck, + random, + temporary, + transformers, + vector, + vector-algorithms, + }: + mkDerivation { + pname = "cpmonad"; + version = "0.1.0.0"; + sha256 = "1cdm4npf1x1c6lqw3s7rq1kgs733m0aflc8b8vs2j9mniw60s5sg"; + libraryHaskellDepends = [ + base + bytestring + containers + data-default + deepseq + directory + microlens + microlens-th + mtl + optparse-applicative + process + random + temporary + transformers + vector + vector-algorithms + ]; + testHaskellDepends = [ + base + bytestring + containers + data-default + deepseq + directory + hspec + hspec-contrib + HUnit + microlens + microlens-th + mtl + optparse-applicative + process + QuickCheck + random + temporary + transformers + vector + vector-algorithms + ]; + description = "Competitive programming problemsetting toolchain"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + cppfilt = callPackage ( { mkDerivation, @@ -165404,6 +164717,39 @@ self: { } ) { }; + cpphs_1_20_10 = callPackage ( + { + mkDerivation, + base, + directory, + polyparse, + time, + }: + mkDerivation { + pname = "cpphs"; + version = "1.20.10"; + sha256 = "06acgidypq7jkd43lxkb97k6plha6i4qi3i3g68wdld1lblqm9vz"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + directory + polyparse + time + ]; + executableHaskellDepends = [ + base + directory + polyparse + time + ]; + description = "A liberalised re-implementation of cpp, the C pre-processor"; + license = "LGPL"; + hydraPlatforms = lib.platforms.none; + mainProgram = "cpphs"; + } + ) { }; + cprng-aes = callPackage ( { mkDerivation, @@ -166664,8 +166010,8 @@ self: { }: mkDerivation { pname = "crc"; - version = "0.1.1.1"; - sha256 = "1c3xqjwji5czl58bnlchj0sazziwd6pzacg66kfzda0v22g69l28"; + version = "0.1.2.0"; + sha256 = "106vd9i47l99bd1spg3sx42ab3gpva0xarpcb3k8yvrrxir74g0i"; libraryHaskellDepends = [ base bytestring @@ -167112,6 +166458,46 @@ self: { } ) { }; + creditmonad = callPackage ( + { + mkDerivation, + base, + containers, + mtl, + prettyprinter, + QuickCheck, + STMonadTrans, + unliftio, + }: + mkDerivation { + pname = "creditmonad"; + version = "1.1.0"; + sha256 = "0zyq1h3k7z2q5s4ihm28j365i8inz7b4svjbqxxxkza6ph0kq86g"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + mtl + prettyprinter + QuickCheck + STMonadTrans + ]; + executableHaskellDepends = [ + base + containers + mtl + prettyprinter + QuickCheck + STMonadTrans + unliftio + ]; + description = "Reasoning about amortized time complexity"; + license = lib.licenses.bsd3; + mainProgram = "creditmonad"; + } + ) { }; + crem = callPackage ( { mkDerivation, @@ -167505,6 +166891,113 @@ self: { } ) { }; + criterion_1_6_4_1 = callPackage ( + { + mkDerivation, + aeson, + base, + base-compat, + base-compat-batteries, + binary, + binary-orphans, + bytestring, + cassava, + code-page, + containers, + criterion-measurement, + deepseq, + directory, + exceptions, + filepath, + Glob, + HUnit, + js-chart, + microstache, + mtl, + mwc-random, + optparse-applicative, + parsec, + prettyprinter, + prettyprinter-ansi-terminal, + QuickCheck, + statistics, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + time, + transformers, + transformers-compat, + vector, + vector-algorithms, + }: + mkDerivation { + pname = "criterion"; + version = "1.6.4.1"; + sha256 = "03danwzqimrnw39s91pxmya3jrb4wxvx0ijm3qr5mik8axn6z9af"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + base + base-compat-batteries + binary + binary-orphans + bytestring + cassava + code-page + containers + criterion-measurement + deepseq + directory + exceptions + filepath + Glob + js-chart + microstache + mtl + mwc-random + optparse-applicative + parsec + prettyprinter + prettyprinter-ansi-terminal + statistics + text + time + transformers + transformers-compat + vector + vector-algorithms + ]; + executableHaskellDepends = [ + base + base-compat-batteries + optparse-applicative + ]; + testHaskellDepends = [ + aeson + base + base-compat + base-compat-batteries + bytestring + deepseq + directory + HUnit + QuickCheck + statistics + tasty + tasty-hunit + tasty-quickcheck + vector + ]; + description = "Robust, reliable performance measurement and analysis"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "criterion-report"; + } + ) { }; + criterion-cmp = callPackage ( { mkDerivation, @@ -167589,7 +167082,9 @@ self: { ]; description = "A simple tool for visualising differences in Criterion benchmark results"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "criterion-compare"; + broken = true; } ) { }; @@ -168079,6 +167574,46 @@ self: { } ) { }; + croque-mort = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + directory, + filepath, + html-entities, + optparse-applicative, + poolboy, + scalpel, + text, + }: + mkDerivation { + pname = "croque-mort"; + version = "0.1.0.0"; + sha256 = "0bax55lbn422693pl1allhii64vqarwx8jx7qdsyghqp5c123ljq"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson + base + bytestring + containers + directory + filepath + html-entities + optparse-applicative + poolboy + scalpel + text + ]; + description = "Dead simple broken links checker on local HTML folders"; + license = lib.licenses.isc; + mainProgram = "croque-mort"; + } + ) { }; + crucible = callPackage ( { mkDerivation, @@ -168221,7 +167756,9 @@ self: { ]; description = "An interactive debugger for Crucible programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "crucible-debug"; + broken = true; } ) { }; @@ -168308,6 +167845,7 @@ self: { ]; description = "Support for translating and executing LLVM code in Crucible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -168374,6 +167912,8 @@ self: { ]; description = "An implementation of symbolic I/O primitives for Crucible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -168591,6 +168131,7 @@ self: { ]; description = "Simple top-level library for Crucible Simulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -168715,6 +168256,7 @@ self: { ]; description = "A verification tool for C programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -168754,6 +168296,8 @@ self: { testSystemDepends = [ libxcrypt ]; description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { inherit (pkgs) libxcrypt; }; @@ -170065,10 +169609,8 @@ self: { }: mkDerivation { pname = "cryptoids"; - version = "0.5.1.0"; - sha256 = "0ai7hg4r944hck9vq2ffwwjsxp3mjfvxwhfr8b8765n1bh86i466"; - revision = "5"; - editedCabalFile = "1g2p5519rrbiizry5izdmqn47sayv7v7kqmj0w7abdn6b68di73j"; + version = "0.5.1.1"; + sha256 = "1n2za35fkazg6510mg2g3pqg56hshy5yvi21g1ixn030d4jc5020"; libraryHaskellDepends = [ base binary @@ -170096,10 +169638,8 @@ self: { }: mkDerivation { pname = "cryptoids-class"; - version = "0.0.0"; - sha256 = "0zp0d815r0dv2xqdi6drq846zz2a82gpqp6nvap3b5dnx2q3hbjy"; - revision = "4"; - editedCabalFile = "0c3cq648sh5cpj0isknhayamzgzv8avixxfpzr4riags70jr28ld"; + version = "0.0.0.1"; + sha256 = "0l33wc3ki93i7ckj8y0haidxvg66mq2jas138ikagw3qgb91dv71"; libraryHaskellDepends = [ base cryptoids-types @@ -170124,10 +169664,8 @@ self: { }: mkDerivation { pname = "cryptoids-types"; - version = "1.0.0"; - sha256 = "0dhv92hdydhhgwgdihl3wpiyxl10szrgfnb68ygn07xxhmmfc3hf"; - revision = "2"; - editedCabalFile = "0nszxjdf9zd7dh4ar2vbnjs8a5awbqh2m3p0pvsypgiflcrlp9wn"; + version = "1.0.0.1"; + sha256 = "05qfmbh4bdx69m925p9818n7fj8rxyr2knkkx9lkwq5ikjmv3q8p"; libraryHaskellDepends = [ aeson base @@ -170359,6 +169897,83 @@ self: { } ) { }; + crypton-asn1-encoding = callPackage ( + { + mkDerivation, + base, + bytestring, + crypton-asn1-types, + tasty, + tasty-quickcheck, + time-hourglass, + }: + mkDerivation { + pname = "crypton-asn1-encoding"; + version = "0.10.0"; + sha256 = "1li6577cpw6dsxacawqc94pba2anj1bnip82h75jixjkw873m0a9"; + libraryHaskellDepends = [ + base + bytestring + crypton-asn1-types + time-hourglass + ]; + testHaskellDepends = [ + base + bytestring + crypton-asn1-types + tasty + tasty-quickcheck + time-hourglass + ]; + description = "ASN.1 data (raw, BER or DER) readers and writers"; + license = lib.licenses.bsd3; + } + ) { }; + + crypton-asn1-parse = callPackage ( + { + mkDerivation, + base, + bytestring, + crypton-asn1-types, + }: + mkDerivation { + pname = "crypton-asn1-parse"; + version = "0.10.0"; + sha256 = "1n98fzzc1hx4jfsax83iky5hkyzpavraghl9mns21dzwv1wg5h1m"; + libraryHaskellDepends = [ + base + bytestring + crypton-asn1-types + ]; + description = "A monadic parser combinator for a ASN.1 stream."; + license = lib.licenses.bsd3; + } + ) { }; + + crypton-asn1-types = callPackage ( + { + mkDerivation, + base, + base16, + bytestring, + time-hourglass, + }: + mkDerivation { + pname = "crypton-asn1-types"; + version = "0.4.1"; + sha256 = "0b9h9qzgs1afq1iiyvjs15z5kh97jjfq74x7jawxvlx0fwwcdvv1"; + libraryHaskellDepends = [ + base + base16 + bytestring + time-hourglass + ]; + description = "ASN.1 types"; + license = lib.licenses.bsd3; + } + ) { }; + crypton-box = callPackage ( { mkDerivation, @@ -170448,26 +170063,26 @@ self: { base, bytestring, containers, + crypton-socks, crypton-x509-store, crypton-x509-system, data-default, network, - socks, tls, }: mkDerivation { pname = "crypton-connection"; - version = "0.4.4"; - sha256 = "14d47klwmmf7zdm66161rbrbwy58qjzrkmd8mmkfrzm54b16hw14"; + version = "0.4.5"; + sha256 = "1pi56aw3yr4zjfvdrcp6q4vwggml040c5m6bdd916zzbjpqbkpdw"; libraryHaskellDepends = [ base bytestring containers + crypton-socks crypton-x509-store crypton-x509-system data-default network - socks tls ]; description = "Simple and easy network connection API"; @@ -170475,6 +170090,70 @@ self: { } ) { }; + crypton-pem = callPackage ( + { + mkDerivation, + base, + base64, + bytestring, + deepseq, + HUnit, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, + text, + }: + mkDerivation { + pname = "crypton-pem"; + version = "0.3.0"; + sha256 = "0h05hg2hxsvvg8hjad5l2r5wi9x2nhan9w3k93bsriklpa6apb8z"; + libraryHaskellDepends = [ + base + base64 + bytestring + deepseq + text + ]; + testHaskellDepends = [ + base + bytestring + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + ]; + description = "Privacy Enhanced Mail (PEM) file format reader and writer"; + license = lib.licenses.bsd3; + } + ) { }; + + crypton-socks = callPackage ( + { + mkDerivation, + base, + bytestring, + cereal, + network, + }: + mkDerivation { + pname = "crypton-socks"; + version = "0.6.2"; + sha256 = "0fwzlvndyxjwhxambxdjzzm63yvb6jzsg53dkv3i6x17biz0hdm8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + bytestring + cereal + network + ]; + description = "SOCKS Protocol Version 5"; + license = lib.licenses.bsd3; + } + ) { }; + crypton-x509 = callPackage ( { mkDerivation, @@ -170544,8 +170223,8 @@ self: { }: mkDerivation { pname = "crypton-x509-store"; - version = "1.6.10"; - sha256 = "1c1q8bz42vcwxlij42zx9cgrmpp763q404g5hhws975d1lf67w6f"; + version = "1.6.11"; + sha256 = "07vq7f883cm5krqz2kc0qkh9ks54jknrwdqvfqsk91s12b693a83"; libraryHaskellDepends = [ asn1-encoding asn1-types @@ -172420,6 +172099,7 @@ self: { bytestring, c2hs, Cabal, + containers, directory, filepath, pretty, @@ -172428,8 +172108,8 @@ self: { }: mkDerivation { pname = "cuda"; - version = "0.11.0.1"; - sha256 = "0zfxzmixla3cmzkxrb0amndhhfllsw532ys96r9vc00lfrqlsqqb"; + version = "0.12.8.0"; + sha256 = "06sc7jkg24742frz7q8jimw8szvsva20zy4jn35dj585mibnljcr"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ @@ -172441,6 +172121,7 @@ self: { libraryHaskellDepends = [ base bytestring + containers filepath template-haskell uuid-types @@ -172521,8 +172202,8 @@ self: { }: mkDerivation { pname = "cuddle"; - version = "0.5.0.0"; - sha256 = "1vjm6v5wf1hbj7ikwmfxf4ah62g4j33nhqqc1xjb9dll5jlvadyn"; + version = "1.0.0.0"; + sha256 = "04x8n5m1rmm8byd3nvh6pzkvgpy568dhvhq5yydcqcam2nj6nncd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172891,6 +172572,8 @@ self: { ]; description = "Curly braces (brackets) expanding"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -173167,6 +172850,7 @@ self: { { mkDerivation, base, + file-embed, filepath, hspec, hspec-core, @@ -173180,12 +172864,14 @@ self: { }: mkDerivation { pname = "currycarbon"; - version = "0.3.0.1"; - sha256 = "0bgak5yamhqprrjqjslr0w7acmzgz65scm67nnqmga1yf6klz5jk"; + version = "0.4.0.1"; + sha256 = "1qjgm413qxvr99zikd6jvc9znm163x2jr1spp32ig892hqbzcpdw"; isLibrary = true; isExecutable = true; + enableSeparateDataOutput = true; libraryHaskellDepends = [ base + file-embed filepath math-functions MonadRandom @@ -173210,7 +172896,7 @@ self: { } ) { }; - currycarbon_0_4_0_1 = callPackage ( + currycarbon_0_5_0_0 = callPackage ( { mkDerivation, base, @@ -173228,8 +172914,8 @@ self: { }: mkDerivation { pname = "currycarbon"; - version = "0.4.0.1"; - sha256 = "1qjgm413qxvr99zikd6jvc9znm163x2jr1spp32ig892hqbzcpdw"; + version = "0.5.0.0"; + sha256 = "0d5rc0qj8j92abphfrxgcd2011f7mgxb2b5qsrqds0pmy3abkh94"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -173674,10 +173360,8 @@ self: { }: mkDerivation { pname = "curve25519"; - version = "0.2.8"; - sha256 = "1v621hk9lkz7p8p521jvsa9hi7ssynj9fy1x16lhfnr18gzi789i"; - revision = "1"; - editedCabalFile = "1z9wl41rrwyf45jyb8640d3rs65s919vianyk6hmf1r6wxv0v8zn"; + version = "0.2.8.1"; + sha256 = "0p2rxad477cxbpxryvp78v8nrrf5gm35106jbqrj5cjgksappkdj"; libraryHaskellDepends = [ base bytestring @@ -174073,8 +173757,8 @@ self: { }: mkDerivation { pname = "cvss"; - version = "0.1"; - sha256 = "02ldb650d053hisyb7fdd19x77k8sxvz4y939hj649pjl75b7qdr"; + version = "0.2.0.1"; + sha256 = "174f32cll6r8ks5qpaivgiid0diypj9pckbjvxd575m7kxs60v66"; libraryHaskellDepends = [ base text @@ -176558,8 +176242,8 @@ self: { pname = "data-array-byte"; version = "0.1.0.1"; sha256 = "002n0af7q08q3fmgsc5b47s1clirxy0lrqglwxzhabg0nfhfrdhv"; - revision = "4"; - editedCabalFile = "1yr2pa9ghmlhy28dfbch7snsmab6y8vvml7ch7pvx44gil0l0h1s"; + revision = "5"; + editedCabalFile = "06xfi70zgpv77nqrrnk649vdzji6cgp40a69i41kw05p7xaa1whc"; libraryHaskellDepends = [ base deepseq @@ -177054,40 +176738,6 @@ self: { ) { }; data-default = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - data-default-instances-containers, - data-default-instances-dlist, - data-default-instances-old-locale, - mtl, - old-locale, - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.3"; - sha256 = "0456mjxg803fzmsy5gm6nc2l1gygkw4rdwg304kn7m710110f13n"; - libraryHaskellDepends = [ - base - data-default-class - data-default-instances-containers - data-default-instances-dlist - data-default-instances-old-locale - ]; - testHaskellDepends = [ - base - containers - mtl - old-locale - ]; - description = "A class for types with a default value"; - license = lib.licenses.bsd3; - } - ) { }; - - data-default_0_8_0_1 = callPackage ( { mkDerivation, base, @@ -177109,23 +176759,10 @@ self: { ]; description = "A class for types with a default value"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; data-default-class = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.2"; - sha256 = "1qxfyxdddl0rzigp81p36i1dgddw2yhqskyz8ngkcy6zbq0w407l"; - libraryHaskellDepends = [ base ]; - description = "A class for types with a default value"; - license = lib.licenses.bsd3; - } - ) { }; - - data-default-class_0_2_0_0 = callPackage ( { mkDerivation, data-default }: mkDerivation { pname = "data-default-class"; @@ -177134,7 +176771,6 @@ self: { libraryHaskellDepends = [ data-default ]; description = "A class for types with a default value (compatibility shim)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -177241,6 +176877,8 @@ self: { ]; description = "Default instances for types in base"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177264,6 +176902,8 @@ self: { ]; description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177285,6 +176925,8 @@ self: { ]; description = "Default instance for CI type from case-insensitive package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177306,6 +176948,8 @@ self: { ]; description = "Default instances for types in containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177327,6 +176971,8 @@ self: { ]; description = "Default instances for types in dlist"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177369,6 +177015,8 @@ self: { ]; description = "Default instances for types in old-locale"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177415,6 +177063,8 @@ self: { ]; description = "Default instances for unordered-containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177436,6 +177086,8 @@ self: { ]; description = "Default instances for types defined in vector package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -177650,48 +177302,6 @@ self: { ) { }; data-effects = callPackage ( - { - mkDerivation, - base, - data-default, - data-effects-core, - data-effects-th, - infinite-list, - lens, - tasty, - tasty-discover, - tasty-hunit, - text, - these, - time, - }: - mkDerivation { - pname = "data-effects"; - version = "0.3.0.1"; - sha256 = "0xglskzbh7hfl48hx4674ci4p0k8wk9kj2gcw2skpi39pqy2qiwm"; - libraryHaskellDepends = [ - base - data-default - data-effects-core - data-effects-th - infinite-list - lens - text - these - time - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "A basic framework for effect systems based on effects represented by GADTs"; - license = lib.licenses.mpl20; - } - ) { }; - - data-effects_0_4_2_0 = callPackage ( { mkDerivation, base, @@ -177738,41 +177348,10 @@ self: { testToolDepends = [ tasty-discover ]; description = "A basic framework for effect systems based on effects represented by GADTs"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; } ) { }; data-effects-core = callPackage ( - { - mkDerivation, - base, - compdata, - mtl, - tasty, - tasty-discover, - tasty-hunit, - }: - mkDerivation { - pname = "data-effects-core"; - version = "0.2.0.0"; - sha256 = "1cxagw2h0987k3s1h3wbhqsydjk0yvz4nda5d6yvz2w3jlm1fnqg"; - libraryHaskellDepends = [ - base - compdata - mtl - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "A basic framework for effect systems based on effects represented by GADTs"; - license = lib.licenses.mpl20; - } - ) { }; - - data-effects-core_0_4_3_0 = callPackage ( { mkDerivation, base, @@ -177807,66 +177386,10 @@ self: { testToolDepends = [ tasty-discover ]; description = "A basic framework for effect systems based on effects represented by GADTs"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; } ) { }; data-effects-th = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - data-effects-core, - either, - extra, - formatting, - infinite-list, - lens, - mtl, - tasty, - tasty-discover, - tasty-hunit, - template-haskell, - text, - th-abstraction, - }: - mkDerivation { - pname = "data-effects-th"; - version = "0.2.0.0"; - sha256 = "0b6hwhh7hc7b81xsm1khrjda737gjwg0q48c8v9ai48q5nsnb646"; - revision = "2"; - editedCabalFile = "1zrl8m2w1hlpdhagbhrmq2slf22yfn1am3kw8v68nh2lqp2v9b0x"; - libraryHaskellDepends = [ - base - containers - data-default - data-effects-core - either - extra - formatting - infinite-list - lens - mtl - template-haskell - text - th-abstraction - ]; - testHaskellDepends = [ - base - data-default - data-effects-core - infinite-list - tasty - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Template Haskell utilities for the data-effects library"; - license = "MPL-2.0 AND BSD-3-Clause"; - } - ) { }; - - data-effects-th_0_4_2_1 = callPackage ( { mkDerivation, base, @@ -177914,7 +177437,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Template Haskell utilities for the data-effects library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -178386,6 +177908,8 @@ self: { ]; description = "Specify that lifted values were forced to WHNF or NF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -178406,6 +177930,8 @@ self: { ]; description = "A simple multi-way tree data structure"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -180513,8 +180039,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Encryption library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -180947,20 +180471,23 @@ self: { containers, criterion, directory, + filepath, hashable, HUnit, random, random-shuffle, + snappy, statistics, text, time, vector, vector-algorithms, + zstd, }: mkDerivation { pname = "dataframe"; - version = "0.2.0.1"; - sha256 = "1qgdlmyz4mlvqb1qicspv7yiddyla8kxczx7018myryws9861f52"; + version = "0.2.0.2"; + sha256 = "0h4p5lbcka15zn5iqzvjsq2bwc3c1ivia5jf6p2gns8d0di9swbd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -180970,12 +180497,15 @@ self: { bytestring containers directory + filepath hashable + snappy statistics text time vector vector-algorithms + zstd ]; executableHaskellDepends = [ array @@ -180985,11 +180515,13 @@ self: { containers directory hashable + snappy statistics text time vector vector-algorithms + zstd ]; testHaskellDepends = [ base @@ -181009,7 +180541,121 @@ self: { ]; description = "An intuitive, dynamically-typed DataFrame library"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "dataframe"; + broken = true; + } + ) { }; + + dataframe_0_3_0_4 = callPackage ( + { + mkDerivation, + array, + attoparsec, + base, + bytestring, + bytestring-lexing, + containers, + criterion, + directory, + filepath, + granite, + hashable, + HUnit, + process, + random, + random-shuffle, + snappy-hs, + statistics, + template-haskell, + text, + time, + vector, + vector-algorithms, + zstd, + }: + mkDerivation { + pname = "dataframe"; + version = "0.3.0.4"; + sha256 = "1s18jscs5x4m274v18zgbv0cx4m5x4jda1imacjd56jg7h0vd6sk"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array + attoparsec + base + bytestring + bytestring-lexing + containers + directory + filepath + granite + hashable + snappy-hs + statistics + template-haskell + text + time + vector + vector-algorithms + zstd + ]; + executableHaskellDepends = [ + array + attoparsec + base + bytestring + bytestring-lexing + containers + directory + granite + hashable + random + snappy-hs + statistics + template-haskell + text + time + vector + vector-algorithms + zstd + ]; + testHaskellDepends = [ + array + attoparsec + base + bytestring + bytestring-lexing + containers + directory + granite + hashable + HUnit + random + random-shuffle + snappy-hs + statistics + template-haskell + text + time + vector + vector-algorithms + zstd + ]; + benchmarkHaskellDepends = [ + base + criterion + process + random + text + time + vector + ]; + description = "A fast, safe, and intuitive DataFrame library"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + mainProgram = "dataframe"; + broken = true; } ) { }; @@ -181580,6 +181226,57 @@ self: { } ) { }; + dawgdic = callPackage ( + { + mkDerivation, + base, + binary, + bitvec, + criterion, + deepseq, + hashable, + hspec, + hspec-discover, + primitive, + text, + vector, + vector-binary, + vector-hashtables, + }: + mkDerivation { + pname = "dawgdic"; + version = "0.1.0"; + sha256 = "0jjzaw7na10d8y4nniiv13d15pv17h7nfb44v3nz3h76q7hqzysf"; + libraryHaskellDepends = [ + base + binary + bitvec + deepseq + hashable + primitive + vector + vector-binary + vector-hashtables + ]; + testHaskellDepends = [ + base + hashable + hspec + text + vector + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ + base + criterion + ]; + description = "Generation and traversal of compressed directed acyclic dawg graphs"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + day-comonoid = callPackage ( { mkDerivation, @@ -182061,96 +181758,6 @@ self: { ) { }; dbus = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - conduit, - containers, - deepseq, - directory, - exceptions, - extra, - filepath, - lens, - network, - parsec, - process, - QuickCheck, - random, - resourcet, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - temporary, - text, - th-lift, - transformers, - unix, - vector, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "dbus"; - version = "1.3.11"; - sha256 = "19py6nx9461vhf6dd5q1j4zvraqyd5060vic5hnv2g6sf7c2s0kj"; - libraryHaskellDepends = [ - base - bytestring - cereal - conduit - containers - deepseq - exceptions - filepath - lens - network - parsec - random - split - template-haskell - text - th-lift - transformers - unix - vector - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - directory - extra - filepath - network - parsec - process - QuickCheck - random - resourcet - tasty - tasty-hunit - tasty-quickcheck - temporary - text - transformers - unix - vector - ]; - doCheck = false; - description = "A client library for the D-Bus IPC system"; - license = lib.licenses.asl20; - } - ) { }; - - dbus_1_4_1 = callPackage ( { mkDerivation, base, @@ -182237,7 +181844,6 @@ self: { doCheck = false; description = "A client library for the D-Bus IPC system"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -182269,7 +181875,9 @@ self: { ]; description = "Simple app launcher for D-Bus"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dbus-app-launcher"; + broken = true; } ) { }; @@ -183629,8 +183237,6 @@ self: { ]; description = "de Bruijn indices and levels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -184781,26 +184387,21 @@ self: { mkDerivation, base, deepseq, - ghc-prim, HUnit, test-framework, test-framework-hunit, }: mkDerivation { pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; - revision = "10"; - editedCabalFile = "1pms44620yw0i08zbaf1v9wi36ai43sd3s762jcx5cap1shjl4qv"; + version = "0.2.0.1"; + sha256 = "1ygfppvlxhm2zl3jvnalinl7cp790m7p31408lzgsw2jah63k6ai"; libraryHaskellDepends = [ base deepseq - ghc-prim ]; testHaskellDepends = [ base deepseq - ghc-prim HUnit test-framework test-framework-hunit @@ -185286,6 +184887,7 @@ self: { ]; description = "Defunctionalization helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -185307,6 +184909,8 @@ self: { ]; description = "Defunctionalization helpers: booleans"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -185544,6 +185148,8 @@ self: { ]; description = "Delaunay tessellation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -187242,8 +186848,8 @@ self: { }: mkDerivation { pname = "derive-has-field"; - version = "0.1.1.0"; - sha256 = "17jvz6w3d806zh80dpgiq7lpxa9qjdj06c1h2x4la1cq0gixj9km"; + version = "0.1.2.0"; + sha256 = "1ccsg6x0isnqgnxdl53y18jciwlv4nvbjb7g4vpdw60s9p0z86xw"; libraryHaskellDepends = [ base template-haskell @@ -187364,6 +186970,8 @@ self: { ]; description = "Derive Prim and PrimUnaligned"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -188095,8 +187703,8 @@ self: { }: mkDerivation { pname = "desktop-portal"; - version = "0.8.0.1"; - sha256 = "09rr3ffkg5960dy909x30qlayzcm0ifzy0w64gvsnz3ybkq4c5j9"; + version = "0.8.0.2"; + sha256 = "18rkg11iyar02knk0jljp3kmvk6zhcbilhy5p9hilfsadkd25s0y"; libraryHaskellDepends = [ base binary @@ -188887,8 +188495,9 @@ self: { http-client-tls, http-types, indexed-traversable, - lens-family-core, megaparsec, + microlens, + microlens-mtl, mmorph, mockery, mtl, @@ -188899,7 +188508,6 @@ self: { pretty-simple, prettyprinter, prettyprinter-ansi-terminal, - profunctors, QuickCheck, quickcheck-instances, repline, @@ -188929,8 +188537,8 @@ self: { }: mkDerivation { pname = "dhall"; - version = "1.42.2"; - sha256 = "0fvvqvh6diqi55dmncfs06rvcw8k0a1hs2gq228yxvsfbzcpv44s"; + version = "1.42.3"; + sha256 = "003s0qxrnjhnkybjjgr8adpmm1s5chpbfwxb0zxb7famkhnn3dfb"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -188963,8 +188571,9 @@ self: { http-client-tls http-types indexed-traversable - lens-family-core megaparsec + microlens + microlens-mtl mmorph mtl network-uri @@ -188974,7 +188583,6 @@ self: { pretty-simple prettyprinter prettyprinter-ansi-terminal - profunctors repline scientific serialise @@ -189015,8 +188623,9 @@ self: { hashable haskeline indexed-traversable - lens-family-core megaparsec + microlens + microlens-mtl mmorph mtl network-uri @@ -189026,7 +188635,6 @@ self: { pretty-simple prettyprinter prettyprinter-ansi-terminal - profunctors repline scientific serialise @@ -189072,8 +188680,9 @@ self: { http-client http-client-tls indexed-traversable - lens-family-core megaparsec + microlens + microlens-mtl mmorph mockery mtl @@ -189084,7 +188693,6 @@ self: { pretty-simple prettyprinter prettyprinter-ansi-terminal - profunctors QuickCheck quickcheck-instances repline @@ -189136,8 +188744,9 @@ self: { hashable haskeline indexed-traversable - lens-family-core megaparsec + microlens + microlens-mtl mmorph mtl network-uri @@ -189147,7 +188756,6 @@ self: { pretty-simple prettyprinter prettyprinter-ansi-terminal - profunctors repline scientific serialise @@ -189277,8 +188885,8 @@ self: { pname = "dhall-csv"; version = "1.0.4"; sha256 = "1kmrkjc2r5l1q2hc2xq83c25zrfm7w4av0jc06ilxklf4i1kvy4b"; - revision = "1"; - editedCabalFile = "10kmbhaly9z95614x3jfmqkswa249dlmr302wng0dpmw1mxqzz2a"; + revision = "2"; + editedCabalFile = "0xd6v9zdwnbxq065sar6nw8zazbzfag0xllcnjip7vb1bdibawbj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189364,6 +188972,8 @@ self: { pname = "dhall-docs"; version = "1.0.12"; sha256 = "0gg0rsm36nrwx7p1fp296y8i5jbldrc0y76n16w7dpqpjpadqviv"; + revision = "1"; + editedCabalFile = "1m7h6y1fkam8kbgdpcgqjg87i820v6z96nqchvamdxnbvwlz4bq2"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -189526,8 +189136,8 @@ self: { pname = "dhall-json"; version = "1.7.12"; sha256 = "1ynm347ccqgh2jmnq9mwj3mc3zd81pwqja5ivdwxkjw08d1wsj6a"; - revision = "3"; - editedCabalFile = "1v21yb69aa6hzg6rhwhi6x61nrk35bbhl8pw1dikbw73s95c9f0j"; + revision = "4"; + editedCabalFile = "0wxwkymjg47bwdys9mzp8c96hj4a267x00sqwby8s8m5p0yz6qlk"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189658,6 +189268,8 @@ self: { pname = "dhall-lsp-server"; version = "1.1.4"; sha256 = "0vcsik8jwwdmfkj6af82s1i5f8pksfkv09jdn7ni3y0lhin0azsc"; + revision = "1"; + editedCabalFile = "0rvs8qsdmh45sdg626vx559hjm1xfjsrpmfhcw6vx064kshkhd27"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189703,11 +189315,13 @@ self: { ]; description = "Language Server Protocol (LSP) server for Dhall"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-lsp-server"; maintainers = [ lib.maintainers.dalpd lib.maintainers.Gabriella439 ]; + broken = true; } ) { }; @@ -189728,6 +189342,8 @@ self: { pname = "dhall-nix"; version = "1.1.27"; sha256 = "1dqfk8vbb08li3snahml89af7hpqp7w7f0mpl62gh6kcn98sx9k8"; + revision = "1"; + editedCabalFile = "1kb9xh50lqr1ibq5jwd6zbr0kxzbg61lfxgm3lqc6w5gidlswy81"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189781,8 +189397,8 @@ self: { pname = "dhall-nixpkgs"; version = "1.0.10"; sha256 = "09p1zfssqab3p3x3ngidfkf31kk5kvcx8krjiyf18vmq9fn75mm5"; - revision = "2"; - editedCabalFile = "0hk6ndmaf8fcmvi9m414a8pl6q6ykqd1mng8pcmak5b184b61961"; + revision = "3"; + editedCabalFile = "1kj470q34rmrh3hmwy557b21msnjgznl71bb5jw3rxn6dqhmrq6h"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -189835,6 +189451,8 @@ self: { pname = "dhall-openapi"; version = "1.0.7"; sha256 = "0ykjg64lp46clcrjhy28yg6gc3r9akdfnvai1dc1bm7n0b0b3fv2"; + revision = "1"; + editedCabalFile = "0bvyzviwsi7gwb7j729rdap0ijdims761s8s5hv3388jlhvwya22"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -190164,6 +189782,8 @@ self: { pname = "dhall-toml"; version = "1.0.4"; sha256 = "1p1jdyl3pm4zd944a4hyysrwbcs9m5n18clzhas2i5wkm7iiz9z2"; + revision = "1"; + editedCabalFile = "1xhilvifblnyn0yf0dg2x8l0rg7v0dydlf13wnblh41n3hnbvz6g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -190219,8 +189839,8 @@ self: { pname = "dhall-yaml"; version = "1.2.12"; sha256 = "1sh802maai9vxfrjd0w4k9cv4pklhkxid1s5xdbagywcaqdhk272"; - revision = "4"; - editedCabalFile = "0l874s5q86dzy4q7pwjsdms53lckjamiq1wgll8sg6qifsjspmll"; + revision = "5"; + editedCabalFile = "1m7axqalsikr70kjvm9lcgnwhzzg5wia5avqs6mk1sxabanryzg2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -190413,8 +190033,8 @@ self: { }: mkDerivation { pname = "dhscanner-ast"; - version = "1.0.10"; - sha256 = "0k4nligcx6k6nbf3jgslhll1vikbzvb8733m812b1yb9j4y2zk2m"; + version = "1.1.1"; + sha256 = "1bg93w9897ijh28gb13y41slwq5fxr6s9p3q13m8hzv9rva7zzhm"; libraryHaskellDepends = [ aeson base @@ -190444,8 +190064,8 @@ self: { }: mkDerivation { pname = "dhscanner-bitcode"; - version = "1.0.5"; - sha256 = "0ik90c1kxbxrv99psrbyyc740qmi3yv6h8hs4pvfdqf45jmjn3hj"; + version = "1.0.7"; + sha256 = "0z0hqn3f3p5wyk1l93rc14992snbxm2jsda624ix9p2jqj4b104j"; libraryHaskellDepends = [ aeson base @@ -190466,6 +190086,32 @@ self: { } ) { }; + dhscanner-kbgen = callPackage ( + { + mkDerivation, + aeson, + base, + containers, + dhscanner-ast, + dhscanner-bitcode, + }: + mkDerivation { + pname = "dhscanner-kbgen"; + version = "1.0.1"; + sha256 = "19iadc90zg2239h7kffkfgpy3kwdqac75f1r77adn5f9igyaj0pk"; + libraryHaskellDepends = [ + aeson + base + containers + dhscanner-ast + dhscanner-bitcode + ]; + description = "knowledge base predicates for static code analysis"; + license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + } + ) { }; + di = callPackage ( { mkDerivation, @@ -190995,65 +190641,6 @@ self: { ) { }; diagrams-cairo = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cairo, - colour, - containers, - data-default-class, - diagrams-core, - diagrams-lib, - filepath, - hashable, - JuicyPixels, - lens, - mtl, - optparse-applicative, - pango, - split, - statestack, - transformers, - unix, - vector, - }: - mkDerivation { - pname = "diagrams-cairo"; - version = "1.4.2.1"; - sha256 = "0fqma8m4xrqha079aqqynk23y252x47xfzvb0gss4bvgdmwa0lzc"; - revision = "3"; - editedCabalFile = "1qdx7k5z6bw70y6rmjs5pkwdypsmrl0gmp7qdjmsbkjv2sah7hq4"; - libraryHaskellDepends = [ - array - base - bytestring - cairo - colour - containers - data-default-class - diagrams-core - diagrams-lib - filepath - hashable - JuicyPixels - lens - mtl - optparse-applicative - pango - split - statestack - transformers - unix - vector - ]; - description = "Cairo backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-cairo_1_5 = callPackage ( { mkDerivation, array, @@ -191109,54 +190696,10 @@ self: { ]; description = "Cairo backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; diagrams-canvas = callPackage ( - { - mkDerivation, - base, - blank-canvas, - cmdargs, - containers, - data-default-class, - diagrams-core, - diagrams-lib, - lens, - mtl, - NumInstances, - optparse-applicative, - statestack, - text, - }: - mkDerivation { - pname = "diagrams-canvas"; - version = "1.4.1.2"; - sha256 = "165iwjvx17ym5qsrxsj7va4kmmifg8nay1qq7mbyp3crvfvkfgv2"; - revision = "2"; - editedCabalFile = "1hmbcr20pwdfd26xr9dx6gdcmzsw1p7k8avgjcvqa4n9p8ykcrqp"; - libraryHaskellDepends = [ - base - blank-canvas - cmdargs - containers - data-default-class - diagrams-core - diagrams-lib - lens - mtl - NumInstances - optparse-applicative - statestack - text - ]; - description = "HTML5 canvas backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-canvas_1_4_2 = callPackage ( { mkDerivation, base, @@ -191196,91 +190739,10 @@ self: { ]; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; diagrams-contrib = callPackage ( - { - mkDerivation, - base, - circle-packing, - colour, - containers, - cubicbezier, - data-default, - data-default-class, - diagrams-core, - diagrams-lib, - diagrams-solve, - force-layout, - hashable, - HUnit, - lens, - linear, - mfsolve, - MonadRandom, - monoid-extras, - mtl, - mtl-compat, - parsec, - QuickCheck, - random, - semigroups, - split, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.5.1"; - sha256 = "0whp2p9m7pcb2sgyr8rvhf518f18w5i0vxziganw7qj6ijn9kdyb"; - revision = "2"; - editedCabalFile = "000ybzwi9cj7p6j21xhkby1sg13ph55qmc6j05cw8j5n1a6c1mv5"; - libraryHaskellDepends = [ - base - circle-packing - colour - containers - cubicbezier - data-default - data-default-class - diagrams-core - diagrams-lib - diagrams-solve - force-layout - hashable - lens - linear - mfsolve - MonadRandom - monoid-extras - mtl - mtl-compat - parsec - random - semigroups - split - text - ]; - testHaskellDepends = [ - base - containers - diagrams-lib - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Collection of user contributions to diagrams EDSL"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-contrib_1_4_6 = callPackage ( { mkDerivation, base, @@ -191355,7 +190817,6 @@ self: { ]; description = "Collection of user contributions to diagrams EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -191685,77 +191146,6 @@ self: { ) { }; diagrams-input = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - blaze-builder, - blaze-markup, - bytestring, - colour, - conduit, - conduit-extra, - containers, - css-text, - data-default, - diagrams-core, - diagrams-lib, - digits, - either, - JuicyPixels, - linear, - resourcet, - semigroups, - split, - system-filepath, - text, - transformers, - unordered-containers, - vector, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "diagrams-input"; - version = "0.1.3.1"; - sha256 = "1xnpgw1dkfa28l03g5cp24khzmb96vv6ws985sxi472ig76ygfwd"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - blaze-builder - blaze-markup - bytestring - colour - conduit - conduit-extra - containers - css-text - data-default - diagrams-core - diagrams-lib - digits - either - JuicyPixels - linear - resourcet - semigroups - split - system-filepath - text - transformers - unordered-containers - vector - xml-conduit - xml-types - ]; - description = "Parse raster and SVG files for diagrams"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-input_0_1_5 = callPackage ( { mkDerivation, attoparsec, @@ -191823,120 +191213,10 @@ self: { ]; description = "Parse raster and SVG files for diagrams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; diagrams-lib = callPackage ( - { - mkDerivation, - active, - adjunctions, - array, - base, - bytestring, - cereal, - colour, - containers, - criterion, - data-default-class, - deepseq, - diagrams-core, - diagrams-solve, - directory, - distributive, - dual-tree, - exceptions, - fail, - filepath, - fingertree, - fsnotify, - hashable, - intervals, - JuicyPixels, - lens, - linear, - monoid-extras, - mtl, - numeric-extras, - optparse-applicative, - process, - profunctors, - QuickCheck, - semigroups, - tagged, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.6.2"; - sha256 = "0qz5yrrg4k4f72fg20b1rq5mk7n7q531qmj0irpg9lmrr596bdh9"; - revision = "3"; - editedCabalFile = "0sffvdkbxm1lsl2b7sd6psrrnc4lcc1c5ipvc2hhpmzzmfyc49fc"; - libraryHaskellDepends = [ - active - adjunctions - array - base - bytestring - cereal - colour - containers - data-default-class - diagrams-core - diagrams-solve - directory - distributive - dual-tree - exceptions - fail - filepath - fingertree - fsnotify - hashable - intervals - JuicyPixels - lens - linear - monoid-extras - mtl - optparse-applicative - process - profunctors - semigroups - tagged - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - deepseq - diagrams-solve - distributive - lens - numeric-extras - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - diagrams-core - ]; - description = "Embedded domain-specific language for declarative graphics"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-lib_1_5 = callPackage ( { mkDerivation, active, @@ -191982,10 +191262,8 @@ self: { }: mkDerivation { pname = "diagrams-lib"; - version = "1.5"; - sha256 = "0gp9k6cfc62j6rlfiziig6j5shf05d0vbcvss40rzjk8qi012i11"; - revision = "2"; - editedCabalFile = "0499yz41prmsixfq2h9virqr9fkn9akllxxf0yc2kqkv7ran2ij9"; + version = "1.5.0.1"; + sha256 = "0s09qkhlp0w7ga20i482icw48y0l8rgqb38818ny64h3ivh8s5hm"; libraryHaskellDepends = [ active adjunctions @@ -192040,7 +191318,6 @@ self: { ]; description = "Embedded domain-specific language for declarative graphics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -192218,49 +191495,6 @@ self: { ) { }; diagrams-postscript = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default-class, - diagrams-core, - diagrams-lib, - hashable, - lens, - monoid-extras, - mtl, - semigroups, - split, - statestack, - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.5.1.1"; - sha256 = "1kwb100k3qif9gc8kgvglya5by61522128cxsjrxk5a8dzpgwal4"; - revision = "4"; - editedCabalFile = "1wm9y3dj5bg6k2jm1ycy8sdg54pzgy2lrhdv9wm2n8jhhk3884qy"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default-class - diagrams-core - diagrams-lib - hashable - lens - monoid-extras - mtl - semigroups - split - statestack - ]; - description = "Postscript backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-postscript_1_5_2 = callPackage ( { mkDerivation, base, @@ -192279,10 +191513,8 @@ self: { }: mkDerivation { pname = "diagrams-postscript"; - version = "1.5.2"; - sha256 = "08kqhnd5r60kisjraypwjfcri1v4f32rf14js413871pgic4rhy5"; - revision = "2"; - editedCabalFile = "060zkv836i1df97nqkna8fnqkyxv4wgmk7yn74whyf1fii4rf86g"; + version = "1.5.3"; + sha256 = "06jlh6chaba79n2yp10ky0naqki3mw0xysrxi76wsgrrv0qisj8n"; libraryHaskellDepends = [ base bytestring @@ -192300,7 +191532,6 @@ self: { ]; description = "Postscript backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -192332,58 +191563,6 @@ self: { ) { }; diagrams-rasterific = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default-class, - diagrams-core, - diagrams-lib, - file-embed, - filepath, - FontyFruity, - hashable, - JuicyPixels, - lens, - mtl, - optparse-applicative, - Rasterific, - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.2.3"; - sha256 = "0n46scybjs8mnhrnh5z3nkrah6f8v1rv4cca8k8mqzsf8ss30q5l"; - revision = "3"; - editedCabalFile = "0yz8vkxp8vi3di8wli6m8090vs56mngv3wr9riam896n1z0xqzg7"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default-class - diagrams-core - diagrams-lib - file-embed - filepath - FontyFruity - hashable - JuicyPixels - lens - mtl - optparse-applicative - Rasterific - ]; - testHaskellDepends = [ - base - diagrams-core - diagrams-lib - ]; - description = "Rasterific backend for diagrams"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-rasterific_1_5 = callPackage ( { mkDerivation, base, @@ -192432,7 +191611,6 @@ self: { ]; description = "Rasterific backend for diagrams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -192529,57 +191707,6 @@ self: { ) { }; diagrams-svg = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - colour, - containers, - diagrams-core, - diagrams-lib, - filepath, - hashable, - JuicyPixels, - lens, - monoid-extras, - mtl, - optparse-applicative, - semigroups, - split, - svg-builder, - text, - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.4"; - sha256 = "1h55yvpbrdjfn9512m8sbsyz2zjw6ssi3mh0f3w8dw34f8vlz5b1"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - colour - containers - diagrams-core - diagrams-lib - filepath - hashable - JuicyPixels - lens - monoid-extras - mtl - optparse-applicative - semigroups - split - svg-builder - text - ]; - description = "SVG backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - } - ) { }; - - diagrams-svg_1_5 = callPackage ( { mkDerivation, base, @@ -192629,7 +191756,6 @@ self: { ]; description = "SVG backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -195106,8 +194232,8 @@ self: { pname = "directory"; version = "1.3.9.0"; sha256 = "1k34iqdkh9d5vjd7wihhjjc6388hfbh7sjwp3msziibz2534i8i0"; - revision = "1"; - editedCabalFile = "05xr3df321hb7rnsbad8bgm1jqi7bzpmi54mja9xg2vknxxi7414"; + revision = "2"; + editedCabalFile = "0sw1gfa9374z4gy03hya4lpswcyg42gvrvs03r60v03a3ih88rzd"; libraryHaskellDepends = [ base file-io @@ -195272,43 +194398,6 @@ self: { ) { }; directory-ospath-streaming = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - os-string, - random, - tasty, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "directory-ospath-streaming"; - version = "0.1.0.3"; - sha256 = "0zj49n8w5130pwnc799may0ps9dmda3dcg0hpcsj3ac08jhy79bg"; - libraryHaskellDepends = [ - base - filepath - os-string - unix - ]; - testHaskellDepends = [ - base - directory - filepath - os-string - random - tasty - tasty-hunit - unix - ]; - description = "Stream directory entries in constant memory in vanilla IO"; - license = lib.licenses.asl20; - } - ) { }; - - directory-ospath-streaming_0_2_2 = callPackage ( { mkDerivation, atomic-counter, @@ -195346,7 +194435,6 @@ self: { ]; description = "Stream directory entries in constant memory in vanilla IO"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -195947,6 +195035,8 @@ self: { pname = "discord-haskell-voice"; version = "3.0.0"; sha256 = "0nac7m0szs0lajgg27h8hpx4q1m6v1nl6y3mzmz9aqhb1zwi0162"; + revision = "1"; + editedCabalFile = "0fj2lvpdaz7mgqz3nk2cvwlx6ddwzpsm7dilaj6r25fy7ljb2f0p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -196433,6 +195523,8 @@ self: { ]; description = "Disjoint containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -198240,14 +197332,16 @@ self: { mtl, profunctors, tagged, + template-haskell, text, + th-abstraction, vector, witherable, }: mkDerivation { pname = "distributors"; - version = "0.1.0.3"; - sha256 = "1xisl64gmzmbgqqv3dnk1jdymq67zcxd4v7lx1fzxvxwr2z8ky5w"; + version = "0.2.0.1"; + sha256 = "11qdcaj1fa5zvxdy85bqc1qm6pnlv4cwym1i8zi1mxcvcmc38fci"; libraryHaskellDepends = [ adjunctions base @@ -198260,7 +197354,9 @@ self: { mtl profunctors tagged + template-haskell text + th-abstraction vector witherable ]; @@ -198277,7 +197373,9 @@ self: { mtl profunctors tagged + template-haskell text + th-abstraction vector witherable ]; @@ -198708,67 +197806,6 @@ self: { ) { }; dl-fedora = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - directory, - extra, - filepath, - http-client, - http-client-tls, - http-directory, - http-types, - optparse-applicative, - regex-posix, - simple-cmd, - simple-cmd-args, - simple-prompt, - text, - time, - unix, - xdg-userdirs, - }: - mkDerivation { - pname = "dl-fedora"; - version = "1.2.1"; - sha256 = "1pd6wzr9nsvplb200c2bk8gyhv89lcgc2df86rfzklb6z68dqy7z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - bytestring - directory - extra - filepath - http-client - http-client-tls - http-directory - http-types - optparse-applicative - regex-posix - simple-cmd - simple-cmd-args - simple-prompt - text - time - unix - xdg-userdirs - ]; - testHaskellDepends = [ - base - simple-cmd - ]; - description = "Fedora image download tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dl-fedora"; - } - ) { }; - - dl-fedora_2_0_1 = callPackage ( { mkDerivation, ansi-wl-pprint, @@ -198834,6 +197871,70 @@ self: { } ) { }; + dl-fedora_2_1 = callPackage ( + { + mkDerivation, + base, + bytestring, + directory, + extra, + fedora-releases, + filepath, + http-client, + http-client-tls, + http-directory, + http-types, + optparse-applicative, + pretty-terminal, + regex-posix, + simple-cmd, + simple-cmd-args, + simple-prompt, + text, + time, + unix, + xdg-userdirs, + }: + mkDerivation { + pname = "dl-fedora"; + version = "2.1"; + sha256 = "1j0p9nz5nk7bgmsrzw1asaangcwchld9sy9v1wdbswxv31cja2n3"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base + bytestring + directory + extra + fedora-releases + filepath + http-client + http-client-tls + http-directory + http-types + optparse-applicative + pretty-terminal + regex-posix + simple-cmd + simple-cmd-args + simple-prompt + text + time + unix + xdg-userdirs + ]; + testHaskellDepends = [ + base + fedora-releases + simple-cmd + ]; + description = "Fedora image download tool"; + license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + mainProgram = "dl-fedora"; + } + ) { }; + dlist = callPackage ( { mkDerivation, @@ -198922,6 +198023,8 @@ self: { ]; description = "Non-empty difference lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -199312,6 +198415,8 @@ self: { ]; description = "DNS name parsing and pattern matching utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -200386,8 +199491,8 @@ self: { }: mkDerivation { pname = "doclayout"; - version = "0.5"; - sha256 = "15i4mz93lvli2hwny1jrw7pq00xwjldm2xdxwlhsgpnr8l142c5h"; + version = "0.5.0.1"; + sha256 = "01vh5j9w0xprh2p9njnrmfj2lpivbfg4r1rksshgaj8b9fqdh8b5"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base @@ -200609,79 +199714,6 @@ self: { ) { }; doctest = callPackage ( - { - mkDerivation, - base, - code-page, - containers, - deepseq, - directory, - exceptions, - filepath, - ghc, - ghc-paths, - hspec, - hspec-core, - hspec-discover, - HUnit, - mockery, - process, - QuickCheck, - silently, - stringbuilder, - syb, - transformers, - }: - mkDerivation { - pname = "doctest"; - version = "0.22.6"; - sha256 = "02g4iy57xcqs3p5w6hw1rzcbszh3b8c132a4zdfi4qf65pml6b0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - code-page - containers - deepseq - directory - exceptions - filepath - ghc - ghc-paths - process - syb - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - code-page - containers - deepseq - directory - exceptions - filepath - ghc - ghc-paths - hspec - hspec-core - HUnit - mockery - process - QuickCheck - silently - stringbuilder - syb - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Test interactive Haskell examples"; - license = lib.licenses.mit; - mainProgram = "doctest"; - } - ) { }; - - doctest_0_24_2 = callPackage ( { mkDerivation, base, @@ -200753,7 +199785,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test interactive Haskell examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "doctest"; } ) { }; @@ -200949,91 +199980,6 @@ self: { ) { }; doctest-parallel = callPackage ( - { - mkDerivation, - base, - base-compat, - Cabal, - code-page, - containers, - deepseq, - directory, - exceptions, - filepath, - ghc, - ghc-paths, - Glob, - hspec, - hspec-core, - HUnit, - mockery, - process, - QuickCheck, - random, - setenv, - silently, - stringbuilder, - syb, - template-haskell, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "doctest-parallel"; - version = "0.3.1.1"; - sha256 = "1xpk020024vsqh27sp225hx50i1hn5fkhxiyww6wqnhrkxypjkwa"; - revision = "2"; - editedCabalFile = "1s9dibzwnl281ggp507gj1d0h26jczr537wlcr5ks5axwfb0262c"; - libraryHaskellDepends = [ - base - base-compat - Cabal - code-page - containers - deepseq - directory - exceptions - filepath - ghc - ghc-paths - Glob - process - random - syb - template-haskell - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - base-compat - code-page - containers - deepseq - directory - exceptions - filepath - ghc - ghc-paths - hspec - hspec-core - HUnit - mockery - process - QuickCheck - setenv - silently - stringbuilder - syb - transformers - ]; - doHaddock = false; - description = "Test interactive Haskell examples"; - license = lib.licenses.mit; - } - ) { }; - - doctest-parallel_0_4 = callPackage ( { mkDerivation, base, @@ -201115,7 +200061,6 @@ self: { doHaddock = false; description = "Test interactive Haskell examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -201743,6 +200688,7 @@ self: { ]; description = "Simple monadic DOM parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -202746,8 +201692,8 @@ self: { }: mkDerivation { pname = "dotparse"; - version = "0.1.2.2"; - sha256 = "0zn8vhq76jihraq8brq1h4klx99wsp4qd3ylzr0dzrv1rsiby6vx"; + version = "0.1.2.3"; + sha256 = "0r5dzf30shd2piisn8a1z0i8y31h0xlr55is4dyj7zg7l87i16g4"; libraryHaskellDepends = [ algebraic-graphs base @@ -203973,6 +202919,8 @@ self: { ]; description = "A port of asciimoo's drawille to haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -205094,8 +204042,8 @@ self: { pname = "dual-game"; version = "0.1.0.1"; sha256 = "1w69d7d2xbpi82n41gq08qdmldh834ka7qwvy159vsac556wwcfg"; - revision = "9"; - editedCabalFile = "140svi4r35rji7br3bcrcb7rgwkbzvrsc2nx1xml17sf8d3clj4r"; + revision = "10"; + editedCabalFile = "089qwh3xvpgmgnsw16gwzjsfy2jsk6nr4riyr0mj17pda5sifras"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -205148,28 +204096,36 @@ self: { { mkDerivation, base, - bifunctors, - comonad, + Cabal, + cabal-doctest, containers, + doctest, lens, template-haskell, transformers, }: mkDerivation { pname = "dualizer"; - version = "0.1.0.1"; - sha256 = "022wiqvy2lxfc9zqibrd3av994r6hi9pkqi3b3m53h6zaphpnwl7"; + version = "0.2.0.0"; + sha256 = "0ahfrn988gddfsdyi6sib338ln1ji4lmhvgr6m20j4z0i3q88f7n"; + setupHaskellDepends = [ + base + Cabal + cabal-doctest + ]; libraryHaskellDepends = [ base - bifunctors - comonad containers lens template-haskell transformers ]; + testHaskellDepends = [ + base + doctest + ]; description = "Automatically generate dual constructions"; - license = "AGPL"; + license = lib.licenses.agpl3Plus; hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sellout ]; broken = true; @@ -205643,8 +204599,8 @@ self: { pname = "dupIO"; version = "0.1.0"; sha256 = "1j2xi1hskmgkknmg01fbkfa3ry2a1f7mzkvjhkqlsz27v3f3q4lm"; - revision = "1"; - editedCabalFile = "0hpph3a26q0jj0bhvxkngj02m5s3amibjgbazd7aq91phrhykz6z"; + revision = "2"; + editedCabalFile = "0r19v7zfz18z68xhpajajjzmz4kfnz4pjj788ld3yhbnggb6y0gi"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -206064,6 +205020,8 @@ self: { ]; description = "Dvorak encoding for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -207894,6 +206852,8 @@ self: { ]; description = "Logging made easy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -208136,6 +207096,8 @@ self: { ]; description = "A Haskell description of the eBird API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -209657,6 +208619,8 @@ self: { ]; description = "Reducing the pain of transformer stacks with duplicated effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -209686,8 +208650,8 @@ self: { }: mkDerivation { pname = "effectful"; - version = "2.5.1.0"; - sha256 = "040figskafk9b8gwvphhq1s5mdq2p6fmrwd5yipl36vpdmc350fy"; + version = "2.6.1.0"; + sha256 = "1khfh55p5brgc7d5hdainsfgij9qpfx744h12gkrrzs9mbl2qxaq"; libraryHaskellDepends = [ async base @@ -209726,73 +208690,6 @@ self: { } ) { }; - effectful_2_6_0_0 = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - effectful-core, - exceptions, - lifted-base, - primitive, - process, - safe-exceptions, - stm, - strict-mutable-base, - tasty, - tasty-bench, - tasty-hunit, - text, - time, - unix, - unliftio, - }: - mkDerivation { - pname = "effectful"; - version = "2.6.0.0"; - sha256 = "1k850pgslnfdhfwqcwr4hv2ymab4cszklrh4rxmwhwixrbb7m3l8"; - libraryHaskellDepends = [ - async - base - bytestring - directory - effectful-core - process - stm - strict-mutable-base - time - unliftio - ]; - testHaskellDepends = [ - base - containers - effectful-core - exceptions - lifted-base - primitive - safe-exceptions - strict-mutable-base - tasty - tasty-hunit - unliftio - ]; - benchmarkHaskellDepends = [ - async - base - tasty-bench - text - unix - unliftio - ]; - description = "An easy to use, performant extensible effects library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - effectful-core = callPackage ( { mkDerivation, @@ -209801,6 +208698,7 @@ self: { deepseq, exceptions, monad-control, + mtl, primitive, strict-mutable-base, transformers-base, @@ -209808,14 +208706,15 @@ self: { }: mkDerivation { pname = "effectful-core"; - version = "2.5.1.0"; - sha256 = "1mn2f6kv8vnccsdq20fhb4q7xiqh5w0v9bp72ianpyyjyvljbi3a"; + version = "2.6.1.0"; + sha256 = "1wk9p0yr60b6ksh1pgzxqklvdgi4khwdv91h0qi05yyscvv9lrww"; libraryHaskellDepends = [ base containers deepseq exceptions monad-control + mtl primitive strict-mutable-base transformers-base @@ -209826,37 +208725,38 @@ self: { } ) { }; - effectful-core_2_6_0_0 = callPackage ( + effectful-opaleye = callPackage ( { mkDerivation, base, containers, - deepseq, - exceptions, - monad-control, - primitive, - strict-mutable-base, - transformers-base, - unliftio-core, + effectful-core, + effectful-postgresql, + effectful-th, + opaleye, + postgresql-simple, + pretty, + product-profunctors, + text, }: mkDerivation { - pname = "effectful-core"; - version = "2.6.0.0"; - sha256 = "1zi1cgnyfzz5csml8saf9zxixrc7q074ywgh0cjd5k2v3zj79rw1"; + pname = "effectful-opaleye"; + version = "0.1.1.0"; + sha256 = "0lb58a8g1ckzc8q6394z1sdxfr31wwz5czwxbdnmn9440v6qha0d"; libraryHaskellDepends = [ base containers - deepseq - exceptions - monad-control - primitive - strict-mutable-base - transformers-base - unliftio-core + effectful-core + effectful-postgresql + effectful-th + opaleye + postgresql-simple + pretty + product-profunctors + text ]; - description = "An easy to use, performant extensible effects library"; + description = "effectful support for high-level PostgreSQL operations via Opaleye"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -209870,14 +208770,11 @@ self: { }: mkDerivation { pname = "effectful-plugin"; - version = "1.1.0.4"; - sha256 = "0c401ni8ajig5da4dgkk2xbajbkzghrjll8ccfh7pbbiknf7si7j"; - revision = "1"; - editedCabalFile = "1d1ih6q1fapizqw2gzm0jvyhlwgni1sffvghhmcw2dhdbbagmr4g"; + version = "2.0.0.1"; + sha256 = "0k0p9ynpgp2wdq3v5949kl3i8pidkfgzw33h7nrag45jhnszrync"; libraryHaskellDepends = [ base containers - effectful-core ghc ]; testHaskellDepends = [ @@ -209889,31 +208786,28 @@ self: { } ) { }; - effectful-plugin_2_0_0_0 = callPackage ( + effectful-postgresql = callPackage ( { mkDerivation, base, - containers, effectful-core, - ghc, + effectful-th, + postgresql-simple, + unliftio-pool, }: mkDerivation { - pname = "effectful-plugin"; - version = "2.0.0.0"; - sha256 = "11xy98k20r9bw2436digcn3mjdk5qlf12i0h7d0xizsqsdazyvy6"; + pname = "effectful-postgresql"; + version = "0.1.0.1"; + sha256 = "0mmiwcb3mppdrifvxjwsqcnlkbwswaq3n8jgl18ibqciwc78m70b"; libraryHaskellDepends = [ base - containers effectful-core - ghc + effectful-th + postgresql-simple + unliftio-pool ]; - testHaskellDepends = [ - base - effectful-core - ]; - description = "A GHC plugin for improving disambiguation of effects"; + description = "effectful support for mid-level PostgreSQL operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -210187,6 +209081,8 @@ self: { ]; description = "Computational Effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -210206,6 +209102,7 @@ self: { ]; description = "Parser Effect for the Control.Effects Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -210920,6 +209817,8 @@ self: { ]; description = "Functions involving lists of Either"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -210936,10 +209835,8 @@ self: { }: mkDerivation { pname = "either-result"; - version = "0.3.1.0"; - sha256 = "1l4539j0ynn5jl0rh9bhjxlgvr0sn3bf8ws1zrlbfk15524znqhm"; - revision = "1"; - editedCabalFile = "1bmcvhjw53nhkzm99dzjq1mvj8s7b27ji2h8av5zy2wsniknrzbm"; + version = "0.3.2.0"; + sha256 = "066zvmp9ngcak23ag8w72acbyyq0lr56nm6dxnsnrd212ydkiwgy"; libraryHaskellDepends = [ base mtl @@ -211905,10 +210802,10 @@ self: { }: mkDerivation { pname = "eliminators"; - version = "0.9.4"; - sha256 = "1qr02xlmb6nfd505z0iw7bj7kpha8wyvcr31rm92r1a78pwvysaf"; + version = "0.9.5"; + sha256 = "17pl2mg9bpagzkw50mydls883bj4mm7glmgnm59r57prky9h55gs"; revision = "1"; - editedCabalFile = "1rd0qixjgsm5dk9r8dmdk31i0dvsd57mg212k2c0pxh553lggq1q"; + editedCabalFile = "0dzyskd0av2rdq9bk0y0d2605a65p9xailbbchvmaqjvqf4cqvpm"; libraryHaskellDepends = [ base extra @@ -212887,6 +211784,8 @@ self: { doHaddock = false; description = "Crossing the road between Haskell and Elm"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -213087,6 +211986,57 @@ self: { } ) { }; + elm2nix_0_5_0 = callPackage ( + { + mkDerivation, + aeson, + async, + base, + binary, + bytestring, + containers, + here, + optparse-applicative, + prettyprinter, + process, + text, + transformers, + unordered-containers, + }: + mkDerivation { + pname = "elm2nix"; + version = "0.5.0"; + sha256 = "057rv6mb3a9jsg5sjpcqcdz7w9jckd1fwbi54mymdsdr8yrk78ry"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + async + base + binary + bytestring + containers + here + prettyprinter + process + text + transformers + unordered-containers + ]; + executableHaskellDepends = [ + base + here + optparse-applicative + prettyprinter + ]; + testHaskellDepends = [ base ]; + description = "Turn your Elm project into buildable Nix project"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "elm2nix"; + } + ) { }; + elmental = callPackage ( { mkDerivation, @@ -213333,6 +212283,40 @@ self: { } ) { }; + elynx_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + elynx-tools, + optparse-applicative, + slynx, + tlynx, + }: + mkDerivation { + pname = "elynx"; + version = "0.9.0.0"; + sha256 = "084xfy0lwzqy4sc4ha2lhl79lfp8dxy6b8xj9zy68l78vd7rcq47"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson + base + bytestring + elynx-tools + optparse-applicative + slynx + tlynx + ]; + description = "Validate and (optionally) redo ELynx analyses"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + mainProgram = "elynx"; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + elynx-markov = callPackage ( { mkDerivation, @@ -213387,6 +212371,61 @@ self: { } ) { }; + elynx-markov_0_9_0_0 = callPackage ( + { + mkDerivation, + async, + attoparsec, + base, + bytestring, + containers, + elynx-seq, + elynx-tools, + hmatrix, + hspec, + integration, + math-functions, + mwc-random, + random, + statistics, + vector, + }: + mkDerivation { + pname = "elynx-markov"; + version = "0.9.0.0"; + sha256 = "1xxa8z4m6jngrpib4lfd0a5b52b8pfhqkg1ll3lnda770b03ksyw"; + libraryHaskellDepends = [ + async + attoparsec + base + bytestring + containers + elynx-seq + hmatrix + integration + math-functions + mwc-random + random + statistics + vector + ]; + testHaskellDepends = [ + base + containers + elynx-tools + hmatrix + hspec + random + vector + ]; + benchmarkHaskellDepends = [ base ]; + description = "Simulate molecular sequences along trees"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + elynx-nexus = callPackage ( { mkDerivation, @@ -213414,6 +212453,34 @@ self: { } ) { }; + elynx-nexus_0_9_0_0 = callPackage ( + { + mkDerivation, + attoparsec, + base, + bytestring, + hspec, + }: + mkDerivation { + pname = "elynx-nexus"; + version = "0.9.0.0"; + sha256 = "0490m5wiak1vx2lqmlngnc7783k01v2nqfb2p67jw8gas2vd2d23"; + libraryHaskellDepends = [ + attoparsec + base + bytestring + ]; + testHaskellDepends = [ + base + hspec + ]; + description = "Import and export Nexus files"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + elynx-seq = callPackage ( { mkDerivation, @@ -213464,6 +212531,57 @@ self: { } ) { }; + elynx-seq_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + base, + bytestring, + containers, + elynx-tools, + hspec, + matrices, + parallel, + primitive, + random, + vector, + vector-th-unbox, + word8, + }: + mkDerivation { + pname = "elynx-seq"; + version = "0.9.0.0"; + sha256 = "1xmficdc55w4r0gwwrbx8a3226wi4b05xjj8j1nmgrbpx5xwi6vv"; + libraryHaskellDepends = [ + aeson + attoparsec + base + bytestring + containers + matrices + parallel + primitive + random + vector + vector-th-unbox + word8 + ]; + testHaskellDepends = [ + base + bytestring + elynx-tools + hspec + matrices + vector + ]; + description = "Handle molecular sequences"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + elynx-tools = callPackage ( { mkDerivation, @@ -213508,6 +212626,51 @@ self: { } ) { }; + elynx-tools_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + base, + base16-bytestring, + bytestring, + cryptohash-sha256, + directory, + hmatrix, + optparse-applicative, + random, + template-haskell, + time, + transformers, + zlib, + }: + mkDerivation { + pname = "elynx-tools"; + version = "0.9.0.0"; + sha256 = "1vzbv83nn2g70s8s2dhjh57wmwfrlbafq3bqq0q44ma5dm1dvfnv"; + libraryHaskellDepends = [ + aeson + attoparsec + base + base16-bytestring + bytestring + cryptohash-sha256 + directory + hmatrix + optparse-applicative + random + template-haskell + time + transformers + zlib + ]; + description = "Tools for ELynx"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + elynx-tree = callPackage ( { mkDerivation, @@ -213576,16 +212739,81 @@ self: { } ) { }; + elynx-tree_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + base, + bytestring, + comonad, + containers, + criterion, + data-default, + deepseq, + elynx-nexus, + elynx-tools, + hspec, + math-functions, + microlens, + parallel, + QuickCheck, + quickcheck-classes, + random, + statistics, + }: + mkDerivation { + pname = "elynx-tree"; + version = "0.9.0.0"; + sha256 = "06ai953q78hh6szcd01paxf88bg4c1zzw402h0bbfc2vvk3ai0zs"; + libraryHaskellDepends = [ + aeson + attoparsec + base + bytestring + comonad + containers + data-default + deepseq + elynx-nexus + math-functions + parallel + random + statistics + ]; + testHaskellDepends = [ + attoparsec + base + bytestring + containers + data-default + elynx-tools + hspec + QuickCheck + quickcheck-classes + ]; + benchmarkHaskellDepends = [ + base + criterion + elynx-tools + microlens + parallel + random + ]; + description = "Handle phylogenetic trees"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + ema = callPackage ( { mkDerivation, aeson, async, base, - constraints-extras, data-default, - dependent-sum, - dependent-sum-template, directory, file-embed, filepath, @@ -213611,17 +212839,14 @@ self: { }: mkDerivation { pname = "ema"; - version = "0.10.2.0"; - sha256 = "197rdjsxmwxairp09jviy0h51j89n3da291bgfh8wg3xfs618vqh"; + version = "0.12.0.0"; + sha256 = "1mv149j0b77y9z89a1izs686ijjg8yl8v4ghj63rpay5yzqkbvwf"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson async base - constraints-extras data-default - dependent-sum - dependent-sum-template directory file-embed filepath @@ -213786,57 +213011,6 @@ self: { ) { }; emacs-module = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - exceptions, - filepath, - monad-control, - monad-interleave, - mtl, - prettyprinter, - prettyprinter-combinators, - primitive, - template-haskell, - text, - transformers-base, - tuples-homogenous-h98, - vector, - void, - }: - mkDerivation { - pname = "emacs-module"; - version = "0.2.1"; - sha256 = "0xmydwd9b78943cqxwx3pk71lp9chr879rpkf2fhfl2g6xvhrf86"; - revision = "1"; - editedCabalFile = "0m616p4mli1785yqr5qq52bi6cwgsqkapam75xq27d1dni0nc7h9"; - libraryHaskellDepends = [ - base - bytestring - deepseq - exceptions - filepath - monad-control - monad-interleave - mtl - prettyprinter - prettyprinter-combinators - primitive - template-haskell - text - transformers-base - tuples-homogenous-h98 - vector - void - ]; - description = "Utilities to write Emacs dynamic modules"; - license = lib.licenses.asl20; - } - ) { }; - - emacs-module_0_2_1_1 = callPackage ( { mkDerivation, base, @@ -213884,7 +213058,6 @@ self: { ]; description = "Utilities to write Emacs dynamic modules"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -214204,6 +213377,7 @@ self: { base, blaze-html, bytestring, + casing, commonmark, commonmark-extensions, commonmark-pandoc, @@ -214211,7 +213385,6 @@ self: { commonmark-wikilink, containers, data-default, - dependent-sum, deriving-aeson, directory, ema, @@ -214225,7 +213398,6 @@ self: { hspec, hspec-hedgehog, ixset-typed, - lvar, map-syntax, megaparsec, monad-logger, @@ -214240,12 +213412,10 @@ self: { pandoc-lua-engine, pandoc-types, parsec, - path-tree, process-extras, profunctors, relude, shower, - some, stm, tagged, tagtree, @@ -214266,8 +213436,8 @@ self: { }: mkDerivation { pname = "emanote"; - version = "1.2.0.0"; - sha256 = "1797n6s86dx64wpvng9zvzpww6qw70i4a2l06bzvvw8xsdr031qh"; + version = "1.4.0.0"; + sha256 = "04qc58lcgn0y7qkmzniiwrkad0gyw16m7rg45s2948yhqzj9nw3z"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -214279,6 +213449,7 @@ self: { base blaze-html bytestring + casing commonmark commonmark-extensions commonmark-pandoc @@ -214286,7 +213457,6 @@ self: { commonmark-wikilink containers data-default - dependent-sum deriving-aeson directory ema @@ -214300,7 +213470,6 @@ self: { hspec hspec-hedgehog ixset-typed - lvar map-syntax megaparsec monad-logger @@ -214315,12 +213484,10 @@ self: { pandoc-lua-engine pandoc-types parsec - path-tree process-extras profunctors relude shower - some stm tagged tagtree @@ -214347,6 +213514,7 @@ self: { base blaze-html bytestring + casing commonmark commonmark-extensions commonmark-pandoc @@ -214354,7 +213522,6 @@ self: { commonmark-wikilink containers data-default - dependent-sum deriving-aeson directory ema @@ -214368,7 +213535,6 @@ self: { hspec hspec-hedgehog ixset-typed - lvar map-syntax megaparsec monad-logger @@ -214383,12 +213549,10 @@ self: { pandoc-lua-engine pandoc-types parsec - path-tree process-extras profunctors relude shower - some stm tagged tagtree @@ -214415,6 +213579,7 @@ self: { base blaze-html bytestring + casing commonmark commonmark-extensions commonmark-pandoc @@ -214422,7 +213587,6 @@ self: { commonmark-wikilink containers data-default - dependent-sum deriving-aeson directory ema @@ -214436,7 +213600,6 @@ self: { hspec hspec-hedgehog ixset-typed - lvar map-syntax megaparsec monad-logger @@ -214451,12 +213614,10 @@ self: { pandoc-lua-engine pandoc-types parsec - path-tree process-extras profunctors relude shower - some stm tagged tagtree @@ -214478,7 +213639,9 @@ self: { description = "Emanate a structured view of your plain-text notes"; license = lib.licenses.agpl3Only; badPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = lib.platforms.none; mainProgram = "emanote"; + broken = true; } ) { }; @@ -214969,58 +214132,6 @@ self: { ) { }; encoding = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - containers, - extensible-exceptions, - filepath, - ghc-prim, - HaXml, - HUnit, - mtl, - QuickCheck, - regex-compat, - }: - mkDerivation { - pname = "encoding"; - version = "0.8.10"; - sha256 = "0ccysrrpdg97g6ihlk0dh57nja7y3lf4n6ygkz1rff5r2r0z6v80"; - setupHaskellDepends = [ - base - Cabal - containers - filepath - ghc-prim - HaXml - ]; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - extensible-exceptions - ghc-prim - mtl - regex-compat - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - ]; - description = "A library for various character encodings"; - license = lib.licenses.bsd3; - } - ) { }; - - encoding_0_10_2 = callPackage ( { mkDerivation, array, @@ -215060,7 +214171,6 @@ self: { ]; description = "A library for various character encodings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -216228,22 +215338,12 @@ self: { ) { }; env-guard = callPackage ( - { - mkDerivation, - base, - doctest, - }: + { mkDerivation, base }: mkDerivation { pname = "env-guard"; - version = "0.2"; - sha256 = "0chgskm1893i17b7r704wh44b7wh0ig2jz7y43vznhnmchrc80al"; - revision = "6"; - editedCabalFile = "0ydizcy5mz73wc4835l5cn6c82lc7hllnzrhpmky4jbmvqxm0la2"; + version = "0.2.1"; + sha256 = "0xm9638nkikfy62abims10jmmr9y3rm2vb22aqh4qmjcj4r37ibq"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - ]; description = "Conditionally running IO actions based on environment variables"; license = lib.licenses.mit; } @@ -216685,7 +215785,9 @@ self: { ]; description = "Command line normalizer of 𝜑-calculus expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "eo-phi-normalizer"; + broken = true; } ) { }; @@ -217248,21 +216350,18 @@ self: { mtl, QuickCheck, STMonadTrans, - template-haskell, transformers, - transformers-compat, }: mkDerivation { pname = "equivalence"; - version = "0.4.1"; - sha256 = "13q0lklm58n0l7bx0d4k1cw1i2il8hpdjp76lb79ix8lv7cxd2jr"; + version = "0.4.1.1"; + sha256 = "1wib20n367x3rjwgpr13jim535karbq155x6mwysqfhmr4fwcvcj"; libraryHaskellDepends = [ base containers mtl STMonadTrans transformers - transformers-compat ]; testHaskellDepends = [ base @@ -217270,9 +216369,7 @@ self: { mtl QuickCheck STMonadTrans - template-haskell transformers - transformers-compat ]; description = "Maintaining an equivalence relation implemented as union-find using STT"; license = lib.licenses.bsd3; @@ -217341,6 +216438,7 @@ self: { erebos = callPackage ( { mkDerivation, + ansi-terminal, async, base, binary, @@ -217355,7 +216453,6 @@ self: { fsnotify, hashable, hashtables, - haskeline, iproute, libpjproject, memory, @@ -217368,13 +216465,14 @@ self: { time, transformers, unix, - uuid, + uuid-types, + websockets, zlib, }: mkDerivation { pname = "erebos"; - version = "0.1.8.1"; - sha256 = "04lw5xr1nxra0i6m6882rhv06lm892rvhaczacbhynrhnblq96dm"; + version = "0.2.0"; + sha256 = "1mqkr4znvbv6wyr14ajzkamj7c5v3qfzfnsigznvz4jjq9hsp8qs"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -217399,25 +216497,27 @@ self: { text time unix - uuid + uuid-types zlib ]; libraryPkgconfigDepends = [ libpjproject ]; libraryToolDepends = [ c2hs ]; executableHaskellDepends = [ + ansi-terminal base bytestring crypton directory - haskeline mtl network process + stm template-haskell text time transformers - uuid + uuid-types + websockets ]; description = "Decentralized messaging and synchronization"; license = lib.licenses.bsd3; @@ -217744,6 +216844,8 @@ self: { ]; description = "Generic API client library for ERPNext"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -218292,80 +217394,6 @@ self: { ) { }; ersatz = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - containers, - data-default, - fail, - HUnit, - lens, - mtl, - parsec, - process, - semigroups, - streams, - temporary, - test-framework, - test-framework-hunit, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "ersatz"; - version = "0.5"; - sha256 = "1fzaany3mzzmizfzdglwqni3q842ip5z86apgdla2ynhq0hlmh3m"; - revision = "3"; - editedCabalFile = "11sbymicw1npij9fzrzkn1h47si9bv9nknjvqwny074vnryxy4bq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - attoparsec - base - bytestring - containers - data-default - lens - mtl - process - semigroups - streams - temporary - transformers - unordered-containers - ]; - executableHaskellDepends = [ - array - base - containers - fail - lens - mtl - parsec - semigroups - ]; - testHaskellDepends = [ - array - base - containers - data-default - HUnit - test-framework - test-framework-hunit - ]; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - ersatz_0_6 = callPackage ( { mkDerivation, array, @@ -218980,96 +218008,6 @@ self: { ) { }; esqueleto = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - blaze-html, - bytestring, - conduit, - containers, - exceptions, - hspec, - hspec-core, - monad-logger, - mtl, - mysql, - mysql-simple, - persistent, - persistent-mysql, - persistent-postgresql, - persistent-sqlite, - postgresql-simple, - QuickCheck, - resourcet, - tagged, - template-haskell, - text, - time, - transformers, - unliftio, - unordered-containers, - }: - mkDerivation { - pname = "esqueleto"; - version = "3.5.14.0"; - sha256 = "1k285dv55r2s222kpk398bync0s89p4j1r9z4ybl325mlix86x56"; - libraryHaskellDepends = [ - aeson - attoparsec - base - blaze-html - bytestring - conduit - containers - monad-logger - persistent - resourcet - tagged - template-haskell - text - time - transformers - unliftio - unordered-containers - ]; - testHaskellDepends = [ - aeson - attoparsec - base - blaze-html - bytestring - conduit - containers - exceptions - hspec - hspec-core - monad-logger - mtl - mysql - mysql-simple - persistent - persistent-mysql - persistent-postgresql - persistent-sqlite - postgresql-simple - QuickCheck - resourcet - tagged - template-haskell - text - time - transformers - unliftio - unordered-containers - ]; - description = "Type-safe EDSL for SQL queries on persistent backends"; - license = lib.licenses.bsd3; - } - ) { }; - - esqueleto_3_6_0_0 = callPackage ( { mkDerivation, aeson, @@ -219158,7 +218096,6 @@ self: { ]; description = "Type-safe EDSL for SQL queries on persistent backends"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -219409,8 +218346,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding"; - version = "0.2.8"; - sha256 = "04q3lkvingfjbkqb5jw79qzm3vd2rwnghnd4xyh31mliqnxphnfr"; + version = "0.2.9"; + sha256 = "0p1521r91ifp3nm0pdnpvp5a5hyxahyx27wq7knr872n8mna4mc2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -219459,8 +218396,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-PortMidi"; - version = "0.2.8"; - sha256 = "1pwi44ykcshm3jf3sbm3x8w2idk3rkf5k6mfk9vkvhizbnk6rwhx"; + version = "0.2.9"; + sha256 = "14f0cvn79llac3x2l330s063sz6y00gfgbnz1amx9q6hz187my01"; libraryHaskellDepends = [ base essence-of-live-coding @@ -219485,8 +218422,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-gloss"; - version = "0.2.8"; - sha256 = "1c14m2032lfc4apfynj815z74cp8f9wr9m3cfsbs554yxard7drh"; + version = "0.2.9"; + sha256 = "160vw5i1wmj2ygkh3m1jrfv5yzf12nfn57q233q899vmj3yqcl05"; libraryHaskellDepends = [ base essence-of-live-coding @@ -219544,8 +218481,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-pulse"; - version = "0.2.8"; - sha256 = "1ybs72cbk35yqvjc26safab41hmmbza7ssxwqlqs0f070xn3w7p7"; + version = "0.2.9"; + sha256 = "0pkbq73mskdg01vnfkhnpvn969f66ryqy7pnjwya32w46bq8wg1d"; libraryHaskellDepends = [ base essence-of-live-coding @@ -219603,8 +218540,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-quickcheck"; - version = "0.2.8"; - sha256 = "1k6va9srxp91dp2dbrav44nd3wlkpb34lb8hz6xjs0mcpynx7nr4"; + version = "0.2.9"; + sha256 = "05x0g5n0dc0k792i02p1rn5bybi29zlpz0vmfa3dq9rxw6zsyr5d"; libraryHaskellDepends = [ base boltzmann-samplers @@ -219628,8 +218565,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-vivid"; - version = "0.2.8"; - sha256 = "0rjfgfhr1wfy77asrqcnh6830wwl372kxwz5nxmk9v217gfc51w2"; + version = "0.2.9"; + sha256 = "1cg1nshv6n4i9d0m9cgjhd6hwdd476g6k5ipbaaq9hgxfnn2rj13"; libraryHaskellDepends = [ base essence-of-live-coding @@ -219653,8 +218590,8 @@ self: { }: mkDerivation { pname = "essence-of-live-coding-warp"; - version = "0.2.8"; - sha256 = "1562vw03zqpzzn9v9yss6xs9vfly9glg7j2im9cllivfzngw5fas"; + version = "0.2.9"; + sha256 = "186va3094dyn1qb8phlhgdbnmqm3yxda9zn720amncflnbsbi3ps"; libraryHaskellDepends = [ base essence-of-live-coding @@ -223481,6 +222418,8 @@ self: { ]; description = "Haskell bindings to ExifTool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -224106,8 +223045,8 @@ self: { }: mkDerivation { pname = "exotic-list-monads"; - version = "1.2.0"; - sha256 = "1wxdhh869v69schj88xz9anzmj4qly3wrh8jmkwga6h5krhvqkgh"; + version = "1.2.1"; + sha256 = "09sgmcp5njswa4kk33qzjs17h9fspwscaicxfpfjdfdnznr72hin"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -224118,8 +223057,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Non-standard monads on lists and non-empty lists"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -224275,7 +223212,6 @@ self: { ]; description = "Extensible Pandoc"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -224588,6 +223524,8 @@ self: { ]; description = "Predicates that can explain themselves"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -225186,6 +224124,28 @@ self: { } ) { }; + extended = callPackage ( + { + mkDerivation, + base, + HUnit, + }: + mkDerivation { + pname = "extended"; + version = "0.2.0.0"; + sha256 = "0w9np859i7vk2zg12rzikg3z2y6pqdr7mvbf2xkqxgn1nqcfswh5"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + HUnit + ]; + description = "Support for an 80-bit extended float"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + extended-categories = callPackage ( { mkDerivation, @@ -225369,6 +224329,8 @@ self: { ]; description = "Extensible, efficient, optics-friendly data types and effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -225452,6 +224414,8 @@ self: { ]; description = "An Alternative to Monad Transformers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -225666,68 +224630,6 @@ self: { ) { }; extensions = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - colourista, - containers, - directory, - filepath, - ghc-boot-th, - hedgehog, - hspec, - hspec-hedgehog, - optparse-applicative, - parsec, - text, - }: - mkDerivation { - pname = "extensions"; - version = "0.1.0.1"; - sha256 = "1rf6jhmms6ll7mn9rh81amzb7nd4zjqcnxdzivw50dxcrcfmdiq2"; - revision = "1"; - editedCabalFile = "1ixf5bpxy840zdlg3gsl3whzii03fc5j16i591pakprsvprp04hk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - ghc-boot-th - parsec - text - ]; - executableHaskellDepends = [ - base - colourista - containers - directory - filepath - optparse-applicative - text - ]; - testHaskellDepends = [ - base - bytestring - containers - ghc-boot-th - hedgehog - hspec - hspec-hedgehog - text - ]; - description = "Parse Haskell Language Extensions"; - license = lib.licenses.mpl20; - mainProgram = "extensions"; - } - ) { }; - - extensions_0_1_0_2 = callPackage ( { mkDerivation, base, @@ -225785,7 +224687,6 @@ self: { ]; description = "Parse Haskell Language Extensions"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "extensions"; } ) { }; @@ -225812,8 +224713,8 @@ self: { pname = "extensions"; version = "0.1.0.3"; sha256 = "1fks1yfdk0zjc1vccj3nr6li09j64cq6b6x9s5mi8qrsv5igbzlm"; - revision = "2"; - editedCabalFile = "0ph3qpvqdva8wjpxla4i188ib2pgx79hd3rrgrjzpp1ch5a1disv"; + revision = "3"; + editedCabalFile = "06a2yis43q7z4a7hakl8j0hm6wwrylf0f6k2lal4b5lh45dncl1p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -225979,47 +224880,6 @@ self: { ) { }; extra = callPackage ( - { - mkDerivation, - base, - clock, - directory, - filepath, - process, - QuickCheck, - quickcheck-instances, - time, - unix, - }: - mkDerivation { - pname = "extra"; - version = "1.7.16"; - sha256 = "0w3wwwnf96ax70lrb0fkfich7b23kvk112j9rzr72b0bqd1ns315"; - revision = "1"; - editedCabalFile = "0xb2xd6qw664rz0d1pa7g4cd58ixqfhpxh7q6gz9lhc10afqw62g"; - libraryHaskellDepends = [ - base - clock - directory - filepath - process - time - unix - ]; - testHaskellDepends = [ - base - directory - filepath - QuickCheck - quickcheck-instances - unix - ]; - description = "Extra functions I use"; - license = lib.licenses.bsd3; - } - ) { }; - - extra_1_8 = callPackage ( { mkDerivation, base, @@ -226055,7 +224915,6 @@ self: { ]; description = "Extra functions I use"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -226623,6 +225482,7 @@ self: { ]; description = "Minimal library for music generation and notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -226654,6 +225514,8 @@ self: { ]; description = "Braid representations in Haskell"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -226683,6 +225545,8 @@ self: { ]; description = "XML/XSD combinators/schemas/codegen"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -227077,6 +225941,8 @@ self: { ]; description = "Fake a -> Gen a"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -227689,6 +226555,8 @@ self: { pname = "fast-digits"; version = "0.3.2.0"; sha256 = "1kwgqxfsm4y7f8cr4zzbwyd9fk6v10hykgqc271k41zf0h6k0pq8"; + revision = "1"; + editedCabalFile = "1rp001n3i9i0xgvi1p0rzsinxmsj89x5xn541vfd0y09ihcl8yyc"; libraryHaskellDepends = [ base ghc-bignum @@ -227708,8 +226576,6 @@ self: { doHaddock = false; description = "Integer-to-digits conversion"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -228923,6 +227789,8 @@ self: { ]; description = "Stubs for dependencies of test code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -228955,6 +227823,7 @@ self: { fb-stubs, filepath, fmt, + folly-clib, gflags, ghc, ghci, @@ -228996,8 +227865,8 @@ self: { }: mkDerivation { pname = "fb-util"; - version = "0.1.0.1"; - sha256 = "16n38c1vi99rhvzv61lah6krplf4sgfz74nwngmjn90vm5ah6r4h"; + version = "0.2.0.0"; + sha256 = "0618nh92kmsx4gfw37lspaiqsz4g8vcsfchax46bw172z8yg7mim"; libraryHaskellDepends = [ aeson aeson-pretty @@ -229020,6 +227889,7 @@ self: { exceptions extra filepath + folly-clib ghc ghci hashable @@ -229837,6 +228707,63 @@ self: { } ) { }; + fearOfView = callPackage ( + { + mkDerivation, + astar, + base, + bytestring, + containers, + directory, + filelock, + filepath, + hashable, + hscurses, + MonadRandom, + mtl, + ncurses, + random, + safe, + safe-exceptions, + serialise, + splitmix, + unordered-containers, + }: + mkDerivation { + pname = "fearOfView"; + version = "0.1.1.0"; + sha256 = "0bjn7zgl50sllw2pizmrfbinw80laxvsdvqy96wgv5iv24ady965"; + isLibrary = false; + isExecutable = true; + enableSeparateDataOutput = true; + executableHaskellDepends = [ + astar + base + bytestring + containers + directory + filelock + filepath + hashable + hscurses + MonadRandom + mtl + random + safe + safe-exceptions + serialise + splitmix + unordered-containers + ]; + executablePkgconfigDepends = [ ncurses ]; + description = "A terminal broughlike game about manipulating vision"; + license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; + mainProgram = "fearOfView"; + broken = true; + } + ) { inherit (pkgs) ncurses; }; + feather = callPackage ( { mkDerivation, @@ -230018,7 +228945,9 @@ self: { ]; description = "Forward error correction of ByteStrings"; license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "benchmark-zfec"; + broken = true; } ) { }; @@ -230255,33 +229184,6 @@ self: { ) { }; fedora-releases = callPackage ( - { - mkDerivation, - aeson, - base, - bodhi, - cached-json-file, - extra, - safe, - }: - mkDerivation { - pname = "fedora-releases"; - version = "0.2.1"; - sha256 = "1dn5ngl6disgpc8vlfc2p4p9gxm318viwi78lalc5y0yrwyczxb1"; - libraryHaskellDepends = [ - aeson - base - bodhi - cached-json-file - extra - safe - ]; - description = "Library for Fedora release versions"; - license = lib.licenses.gpl3Only; - } - ) { }; - - fedora-releases_0_3_0 = callPackage ( { mkDerivation, aeson, @@ -230305,7 +229207,6 @@ self: { ]; description = "Library for Fedora release versions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -230330,8 +229231,8 @@ self: { }: mkDerivation { pname = "fedora-repoquery"; - version = "0.7.3"; - sha256 = "1sdyvbvrh1z32y8hsbfwzyrffl57niri0rgpp580syh11l621sj1"; + version = "0.7.4"; + sha256 = "0iy8d37x1b1qhzp6jgrnajbvyn02pyyz78xv7mv4hrp87i2avpgp"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -232206,6 +231107,8 @@ self: { pname = "fgl"; version = "5.8.3.0"; sha256 = "1hb3mgqqz67qwfw2893bslj4mkhs4g0y51c6zpc6r2h6caqibjm4"; + revision = "1"; + editedCabalFile = "13yn7h8rwmdjwscli9cpn44dp5pm2c0km7b3v1cmfq4na16pczsh"; libraryHaskellDepends = [ array base @@ -233082,8 +231985,8 @@ self: { }: mkDerivation { pname = "filelock"; - version = "0.1.1.7"; - sha256 = "1041fjqk4i97qxiymm4vlcl27vqajxd8hf12sal7l2sgvxf68dad"; + version = "0.1.1.8"; + sha256 = "0bmnj888w2srz2rywmh13dqwmqsqyzkgkz952h1gdd7ycvlj5avj"; libraryHaskellDepends = [ base unix @@ -233216,8 +232119,8 @@ self: { }: mkDerivation { pname = "filepath-bytestring"; - version = "1.5.2.0.2"; - sha256 = "1ry4zib0fj4jhk1qzg2yvp347wmbm314bvbsbbix83hax70pjk77"; + version = "1.5.2.0.3"; + sha256 = "0jz6mpr6fvxijvkib9500x25np7j836wrvy8jd23l16r4rhnhmxy"; libraryHaskellDepends = [ base bytestring @@ -233244,6 +232147,7 @@ self: { { mkDerivation, base, + base32, binary, bytestring, case-insensitive, @@ -233252,17 +232156,15 @@ self: { cryptoids-types, exceptions, filepath, - sandi, template-haskell, }: mkDerivation { pname = "filepath-crypto"; - version = "0.1.0.0"; - sha256 = "1bj9haa4ignmk6c6gdiqb4rnwy395pwqdyfy4kgg0z16w0l39mw0"; - revision = "9"; - editedCabalFile = "09a1y0m7jgchi8bmly49amzjrs25insvaf4ag3wys1ngb1cc2az0"; + version = "0.1.0.1"; + sha256 = "1bbi3w5iziywf45p1y96k58hdv5y6fwlpnv2f6gj30jxqasj2x2v"; libraryHaskellDepends = [ base + base32 binary bytestring case-insensitive @@ -233271,7 +232173,6 @@ self: { cryptoids-types exceptions filepath - sandi template-haskell ]; description = "Reversable and secure encoding of object ids as filepaths"; @@ -233432,10 +232333,8 @@ self: { }: mkDerivation { pname = "filestore"; - version = "0.6.5"; - sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; - revision = "3"; - editedCabalFile = "003vfb6j47vihjba1py9ls9l269gkg89rf732gb5lwdximxg7wf0"; + version = "0.6.5.1"; + sha256 = "1m6rav1rcigckakw8ky27lbwh5a9q8xl7nvv358ljykmvyl1j2lc"; libraryHaskellDepends = [ base bytestring @@ -234107,8 +233006,8 @@ self: { }: mkDerivation { pname = "fingertree"; - version = "0.1.6.1"; - sha256 = "0kx2nv9cddghcx4i413iq8078gqa20yrgpja6js4dl3wpsq47yzm"; + version = "0.1.6.2"; + sha256 = "1aww2c2alnkaaigh0xx2cvx6s8qddzlfy1xcwf0fddnf9p2psqgj"; libraryHaskellDepends = [ base deepseq @@ -234868,32 +233767,29 @@ self: { { mkDerivation, base, - Cabal, containers, - hspec, - hspec-discover, + tasty, + tasty-hunit, template-haskell, + transformers, }: mkDerivation { pname = "first-class-instances"; - version = "0.1.0.0"; - sha256 = "0d3pay7x31a5d9g4rkb0sflk97qcnpyg3fh81247b6r21gl5qbr3"; + version = "1.0.0.1"; + sha256 = "165h2kwn41pn9qw96dnx2kzyxanaysm8vhiwfy2l9hxagiqwz0x0"; libraryHaskellDepends = [ base - Cabal containers template-haskell + transformers ]; testHaskellDepends = [ base - Cabal - containers - hspec - hspec-discover + tasty + tasty-hunit template-haskell ]; - testToolDepends = [ hspec-discover ]; - description = "First class typeclass instances"; + description = "First-class typeclass instances"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -235380,7 +234276,6 @@ self: { ]; description = "Fixed-point number build on generic integral number"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -235567,11 +234462,14 @@ self: { doctest, filemanip, primitive, + tasty, + tasty-inspection-testing, + template-haskell, }: mkDerivation { pname = "fixed-vector"; - version = "1.2.3.0"; - sha256 = "0cbz734dccsy3jvhszszyrnls6bbys4gaq326dksaabwv6mn58vc"; + version = "2.0.0.0"; + sha256 = "1ymrnab5kcmwwjlshyryjdysfvig7ikglpc7fqid8g2pyzqsvz5h"; libraryHaskellDepends = [ base deepseq @@ -235582,37 +234480,75 @@ self: { doctest filemanip primitive + tasty + tasty-inspection-testing + template-haskell ]; description = "Generic vectors with statically known size"; license = lib.licenses.bsd3; } ) { }; + fixed-vector-QC = callPackage ( + { + mkDerivation, + base, + fixed-vector, + QuickCheck, + }: + mkDerivation { + pname = "fixed-vector-QC"; + version = "2.0.0.0"; + sha256 = "0yv4r93i26ak98h6qmd7crllbz33ys63yp5kigb9745271pi5ip7"; + libraryHaskellDepends = [ + base + fixed-vector + QuickCheck + ]; + description = "QuickCheck instances for fixed-vector"; + license = lib.licenses.bsd3; + } + ) { }; + + fixed-vector-aeson = callPackage ( + { + mkDerivation, + aeson, + base, + fixed-vector, + vector, + }: + mkDerivation { + pname = "fixed-vector-aeson"; + version = "2.0.0.0"; + sha256 = "0cdhdy0ay5044vxal8dhx9gqv07x8dd358n21vlas6s0kb6jxmvy"; + libraryHaskellDepends = [ + aeson + base + fixed-vector + vector + ]; + description = "Aeson instances for fixed-vector"; + license = lib.licenses.bsd3; + } + ) { }; + fixed-vector-binary = callPackage ( { mkDerivation, base, binary, fixed-vector, - tasty, - tasty-quickcheck, }: mkDerivation { pname = "fixed-vector-binary"; - version = "1.0.0.2"; - sha256 = "1cqy2zrc8c4p6vpy5bl5cr51qi335lkwjhwwrmwam66frp5p5lrl"; + version = "2.0.0.0"; + sha256 = "04fxpi7x7psfwdfr398l3y7x17qkm5hfjr444p29b0wbg89ldwwm"; libraryHaskellDepends = [ base binary fixed-vector ]; - testHaskellDepends = [ - base - binary - fixed-vector - tasty - tasty-quickcheck - ]; description = "Binary instances for fixed-vector"; license = lib.licenses.bsd3; } @@ -235647,6 +234583,8 @@ self: { ]; description = "Binary instances for fixed-vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -235656,25 +234594,16 @@ self: { base, cereal, fixed-vector, - tasty, - tasty-quickcheck, }: mkDerivation { pname = "fixed-vector-cereal"; - version = "1.0.0.2"; - sha256 = "0ivfpnkh76dxjxcvdv1c4m9blp237g1h071217yj5gjk3vigyf54"; + version = "2.0.0.0"; + sha256 = "0pac616jkz2385yqzmrb71c4sqr4cvabw8rr9k316zygc89xy2jx"; libraryHaskellDepends = [ base cereal fixed-vector ]; - testHaskellDepends = [ - base - cereal - fixed-vector - tasty - tasty-quickcheck - ]; description = "Cereal instances for fixed-vector"; license = lib.licenses.bsd3; } @@ -235691,8 +234620,8 @@ self: { }: mkDerivation { pname = "fixed-vector-hetero"; - version = "0.6.2.0"; - sha256 = "1flqm18gcwc4f54y3b5axyfhdq9wn4069y64nbsmh064d23bln5s"; + version = "0.7.0.0"; + sha256 = "199ginhsll6b30kljxhbibdg97fjp0x1x5jx3bzxg1v8gvj2lwnm"; libraryHaskellDepends = [ base deepseq @@ -235706,6 +234635,8 @@ self: { ]; description = "Library for working with product types generically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -236930,7 +235861,6 @@ self: { base, bytestring, containers, - gauge, hspec, HUnit, integer-gmp, @@ -236939,13 +235869,14 @@ self: { primitive, QuickCheck, quickcheck-instances, + tasty-bench, template-haskell, utf8-string, }: mkDerivation { pname = "flatparse"; - version = "0.5.2.1"; - sha256 = "0ig2m1lshaadyp8dxb129l0y1v722b1mfsp4fv7v879pdhlxgmgw"; + version = "0.5.3.0"; + sha256 = "0lgj4w77nkwblnswriq2wddy1c732wir5qd70gm3hz9slv35pnwx"; libraryHaskellDepends = [ base bytestring @@ -236967,11 +235898,11 @@ self: { attoparsec base bytestring - gauge integer-gmp megaparsec parsec primitive + tasty-bench utf8-string ]; description = "High-performance parsing from strict bytestrings"; @@ -237069,6 +236000,8 @@ self: { ]; description = "Flexible numeric parsers for real-world programming languages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -238814,13 +237747,11 @@ self: { { mkDerivation, base }: mkDerivation { pname = "flux-monoid"; - version = "0.1.0.0"; - sha256 = "0aa5p8604j63zz8rfxcp4p4110k27ys5dcy980kg5hjzba7aj54m"; + version = "1.0.0.0"; + sha256 = "09brqhyv0hdq2df21pk63551ig8xxj68zvjzi46w4f47h2g3bw60"; libraryHaskellDepends = [ base ]; description = "A monoid for tracking changes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -239994,6 +238925,54 @@ self: { } ) { }; + folly-clib = + callPackage + ( + { + mkDerivation, + boost, + boost_filesystem, + boost_program_options, + fmt, + glog, + libunwind, + openssl, + snappy, + }: + mkDerivation { + pname = "folly-clib"; + version = "20250713.1537"; + sha256 = "1qwznpx922gcy17nzvv249dq4f6f2lvh7y055cpd6kzqk03a984j"; + librarySystemDepends = [ + boost + boost_filesystem + boost_program_options + ]; + libraryPkgconfigDepends = [ + fmt + glog + libunwind + openssl + snappy + ]; + doHaddock = false; + description = "The folly C++ library from Meta"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) + { + inherit (pkgs) boost; + boost_filesystem = null; + boost_program_options = null; + inherit (pkgs) fmt; + inherit (pkgs) glog; + inherit (pkgs) libunwind; + inherit (pkgs) openssl; + inherit (pkgs) snappy; + }; + foma = callPackage ( { mkDerivation, @@ -240233,33 +239212,6 @@ self: { ) { }; force-layout = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - lens, - linear, - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "17956k3mab2xhrmfy7fj5gh08h43yjlsryi5acjhnkmin5arhwpp"; - revision = "13"; - editedCabalFile = "07p1rlal8fjbyd4hm0p3a3cp3b67a86qdls88yl3f0xcgrnxxmkq"; - libraryHaskellDepends = [ - base - containers - data-default-class - lens - linear - ]; - description = "Simple force-directed layout"; - license = lib.licenses.bsd3; - } - ) { }; - - force-layout_0_4_1 = callPackage ( { mkDerivation, base, @@ -240283,7 +239235,6 @@ self: { ]; description = "Simple force-directed layout"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -240797,8 +239748,8 @@ self: { }: mkDerivation { pname = "formatn"; - version = "0.3.1.0"; - sha256 = "0xh78ckdsih2p984qr170f6l4yfz5fnq7xni6gjzapcilfxzvky9"; + version = "0.3.2.0"; + sha256 = "082cakp1wwndb02ig387sc5r6dji27r6ahdbsvxvwmxfg52rqa2l"; libraryHaskellDepends = [ base containers @@ -241372,7 +240323,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "fortran-src"; + broken = true; } ) { }; @@ -241903,220 +240856,6 @@ self: { ) { }; fourmolu = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - array, - base, - binary, - bytestring, - Cabal-syntax, - containers, - deepseq, - Diff, - directory, - file-embed, - filepath, - ghc-lib-parser, - hspec, - hspec-discover, - hspec-megaparsec, - megaparsec, - MemoTrie, - mtl, - optparse-applicative, - path, - path-io, - pretty, - process, - QuickCheck, - scientific, - syb, - temporary, - text, - th-env, - yaml, - }: - mkDerivation { - pname = "fourmolu"; - version = "0.15.0.0"; - sha256 = "11xy0k5zkhd0dz7ify0m466l90j8sblm9rzzwkc0nn0d8pxyizfq"; - revision = "1"; - editedCabalFile = "1a0wnrvygipxivjzjbbvl1vm4pc45p5p239z741xj9jj5kipjh9c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - array - base - binary - bytestring - Cabal-syntax - containers - deepseq - Diff - directory - file-embed - filepath - ghc-lib-parser - megaparsec - MemoTrie - mtl - scientific - syb - text - yaml - ]; - executableHaskellDepends = [ - base - Cabal-syntax - containers - directory - filepath - ghc-lib-parser - optparse-applicative - text - th-env - yaml - ]; - testHaskellDepends = [ - base - bytestring - Cabal-syntax - containers - Diff - directory - filepath - ghc-lib-parser - hspec - hspec-megaparsec - megaparsec - path - path-io - pretty - process - QuickCheck - temporary - text - yaml - ]; - testToolDepends = [ hspec-discover ]; - description = "A formatter for Haskell source code"; - license = lib.licenses.bsd3; - mainProgram = "fourmolu"; - } - ) { }; - - fourmolu_0_16_0_0 = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - array, - base, - binary, - bytestring, - Cabal-syntax, - containers, - deepseq, - Diff, - directory, - file-embed, - filepath, - ghc-lib-parser, - hspec, - hspec-discover, - hspec-megaparsec, - megaparsec, - MemoTrie, - mtl, - optparse-applicative, - path, - path-io, - pretty, - process, - QuickCheck, - scientific, - syb, - temporary, - terminal-size, - text, - th-env, - yaml, - }: - mkDerivation { - pname = "fourmolu"; - version = "0.16.0.0"; - sha256 = "0vczia3hb1klvbf9fjy32ynyqaka8n7cdk0h8jg6nr89pixla9lc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - array - base - binary - bytestring - Cabal-syntax - containers - deepseq - Diff - directory - file-embed - filepath - ghc-lib-parser - megaparsec - MemoTrie - mtl - scientific - syb - text - ]; - executableHaskellDepends = [ - base - Cabal-syntax - containers - directory - filepath - ghc-lib-parser - optparse-applicative - terminal-size - text - th-env - yaml - ]; - testHaskellDepends = [ - base - bytestring - Cabal-syntax - containers - Diff - directory - filepath - ghc-lib-parser - hspec - hspec-megaparsec - megaparsec - path - path-io - pretty - process - QuickCheck - temporary - text - yaml - ]; - testToolDepends = [ hspec-discover ]; - description = "A formatter for Haskell source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fourmolu"; - } - ) { }; - - fourmolu_0_18_0_0 = callPackage ( { mkDerivation, aeson, @@ -242156,8 +240895,8 @@ self: { }: mkDerivation { pname = "fourmolu"; - version = "0.18.0.0"; - sha256 = "0nv5lbjp1ilqzkmgq9k4nb555yzbv023z8rm2x0368nz92q61f38"; + version = "0.19.0.0"; + sha256 = "0sq9sxj99bzzmc5bdynh9c91yxsgrl2c4n9kdhnj78p7w9mkqfnb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -242221,7 +240960,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A formatter for Haskell source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fourmolu"; } ) { }; @@ -242263,6 +241001,8 @@ self: { ]; description = "IEEE 754-2019 compliant operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -243135,8 +241875,8 @@ self: { }: mkDerivation { pname = "freckle-app"; - version = "1.23.3.0"; - sha256 = "0405dj2isvhgib85km2fppq32aan5sghsny2ilwv39pr2g6kkwkm"; + version = "1.24.0.1"; + sha256 = "1hv8mgdr9qfwrl6a4p1kcqhxswqp8b513s2pf6qzsx370ynkw3c1"; libraryHaskellDepends = [ aeson annotated-exception @@ -243329,6 +242069,7 @@ self: { ]; description = "Some extensions to the annotated-exception library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -243482,6 +242223,7 @@ self: { ]; description = "Some extensions to the hw-kafka-client library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -243652,8 +242394,8 @@ self: { }: mkDerivation { pname = "freckle-prelude"; - version = "0.0.1.1"; - sha256 = "0mvfh2yw63njx3jmqjzpxzk370gyslfwhss40cysji5j6f9514yf"; + version = "0.0.3.0"; + sha256 = "0xnxrh3cniwlcjdjlxg1acdhfd51lpx2q112qhgynnfar866zbdc"; libraryHaskellDepends = [ base containers @@ -243670,6 +242412,7 @@ self: { ]; description = "Standard prelude for Freckle applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -244044,6 +242787,8 @@ self: { ]; description = "Efficient Type-Safe Capture-Avoiding Substitution for Free (Scoped Monads)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -244209,6 +242954,8 @@ self: { testHaskellDepends = [ base ]; description = "Lawful list and set monad transformers based on free monads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -244861,7 +243608,9 @@ self: { ]; description = "A friendly effect system for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "freer-simple-examples"; + broken = true; } ) { }; @@ -245593,18 +244342,16 @@ self: { { mkDerivation, base, - bifunctors, optparse-applicative, }: mkDerivation { pname = "friendly"; - version = "0.1.0.4"; - sha256 = "0nk48ly13mcrishi4xz9djh0n9k4q68lbgkr1p3ls5cf902nsn3i"; + version = "0.1.1"; + sha256 = "16bivgrpvb9yxpy9nv8kx5pnwbqjfpr33ik3ijhzvlh804zjpf5a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base - bifunctors optparse-applicative ]; description = "Attempt to pretty-print any input"; @@ -246178,6 +244925,8 @@ self: { pname = "fs-sim"; version = "0.4.0.0"; sha256 = "0wirx3mk2dmjw13adbf4d9qpgx7b9kk0y5my7s3yx1lsm2z9m4pw"; + revision = "1"; + editedCabalFile = "1lz7jaq5qp1pdc8dvahc3nl8csgpp0qplriqfnmrryn22dyqfi4s"; libraryHaskellDepends = [ base base16-bytestring @@ -246213,6 +244962,7 @@ self: { ]; description = "Simulated file systems"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -246368,8 +245118,8 @@ self: { }: mkDerivation { pname = "fsnotify"; - version = "0.4.3.0"; - sha256 = "0dq0dm4j5f16wpfrgh22001icvknmq4cmjyslakjvkyj7w9yfmnf"; + version = "0.4.4.0"; + sha256 = "06v3yb8vpvk43qb0r0063q1rr1rf2c0l9plhs6pm1gzhwbcszcc2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -246642,7 +245392,9 @@ self: { ]; description = "Watch a file/directory and run a command when it's modified"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fswatcher"; + broken = true; } ) { }; @@ -247488,6 +246240,8 @@ self: { ]; description = "Library providing values and operations on values in a fixed universe"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -247640,6 +246394,8 @@ self: { ]; description = "Data.Functor.Classes instances for core packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -248210,6 +246966,7 @@ self: { ]; description = "GLL parser with simple combinator interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -248785,6 +247542,7 @@ self: { cmark-gfm, co-log-core, containers, + criterion, cryptohash-md5, Diff, directory, @@ -248835,8 +247593,8 @@ self: { }: mkDerivation { pname = "futhark"; - version = "0.25.31"; - sha256 = "0sbbc296gzxfib1i0390ipasy4k8dbxkv3nn4615vmg99njdz84p"; + version = "0.25.33"; + sha256 = "0fasqms7ap96b1iyrhmp35c5z4kas7iffbbk2s1scg3wsmghd3p4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -248854,6 +247612,7 @@ self: { cmark-gfm co-log-core containers + criterion cryptohash-md5 Diff directory @@ -248883,10 +247642,14 @@ self: { prettyprinter prettyprinter-ansi-terminal process-extras + QuickCheck random regex-tdfa srcloc statistics + tasty + tasty-hunit + tasty-quickcheck template-haskell temporary terminal-size @@ -248904,16 +247667,13 @@ self: { executableHaskellDepends = [ base ]; testHaskellDepends = [ base - containers - free - megaparsec - mtl - QuickCheck tasty - tasty-hunit - tasty-quickcheck - text ]; + benchmarkHaskellDepends = [ + base + criterion + ]; + doHaddock = false; description = "An optimising compiler for a functional, array-oriented language"; license = lib.licenses.isc; mainProgram = "futhark"; @@ -249204,8 +247964,8 @@ self: { }: mkDerivation { pname = "fuzzily"; - version = "0.2.0.0"; - sha256 = "10xa34441fwjk4pabw98lgrfi3iw4yb03rxnjlir0lp38cfxgqvi"; + version = "0.2.1.0"; + sha256 = "1yna3f5ny5krqw1vvczh35m5lhmqfaymdshnhqymbcxn4v0niwdc"; libraryHaskellDepends = [ base monoid-subclasses @@ -249333,8 +248093,8 @@ self: { }: mkDerivation { pname = "fuzzy-time"; - version = "0.3.0.0"; - sha256 = "00283a009wcgzmg86mq4rbxzpycrjy0cvjnn2nc3yfy92lq1j9ad"; + version = "0.3.0.1"; + sha256 = "1zcpmp3zknpy6vw4q3l373s70vjc63rwq6if4418x0d786sd54kg"; libraryHaskellDepends = [ base containers @@ -249507,7 +248267,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Fuzzy text matching"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bench"; + broken = true; } ) { }; @@ -250558,8 +249320,8 @@ self: { }: mkDerivation { pname = "gargoyle"; - version = "0.1.2.1"; - sha256 = "1q7lgspa8jrk3mdhh0f8fazmq9zwnwzdy35dgnzhyw9ashvzs2ri"; + version = "0.1.2.2"; + sha256 = "1aag3si8yrx0b6gg68rk86s7kq8jiqb0qy19558bjdwxlhlr2h30"; libraryHaskellDepends = [ base directory @@ -250590,8 +249352,8 @@ self: { }: mkDerivation { pname = "gargoyle-postgresql"; - version = "0.2.0.3"; - sha256 = "1ci6cfrvdl4ybl59g26immz29s2zcqlhy3xwqka94zpx7kldxjfc"; + version = "0.2.0.4"; + sha256 = "0kqrw4yjy6iz3fpiivp9rpbyg0v2g1m8n9n424w25rj1qj85q3zz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -250633,8 +249395,8 @@ self: { }: mkDerivation { pname = "gargoyle-postgresql-connect"; - version = "0.1.0.3"; - sha256 = "0wlpfqskx2svdq1g547qqh6ymwrhcc3yknh12cwvch1bkriyz3nf"; + version = "0.1.0.4"; + sha256 = "09zvkdq1fg0adbcxxb4q09lm8jg068hx900wg8mmg7iwid01j4z8"; libraryHaskellDepends = [ base bytestring @@ -250663,8 +249425,8 @@ self: { }: mkDerivation { pname = "gargoyle-postgresql-nix"; - version = "0.3.0.3"; - sha256 = "1y40csa4k0d3mwmb4qnhp8vpi07p8vv3kcx0j9nl3sybimdc7h0a"; + version = "0.3.0.4"; + sha256 = "1zr0nr12xikcihbf8cs6k2lnl4rqj23a6f9chh0j8s7rlbqdxh7i"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -250832,6 +249594,8 @@ self: { benchmarkHaskellDepends = [ base ]; description = "small framework for performance measurement and analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -252446,6 +251210,8 @@ self: { ]; description = "A library for interacting with various generative AI LLMs"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -252607,6 +251373,8 @@ self: { ]; description = "Exception-safe resource management in more monads"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -253297,6 +252065,41 @@ self: { } ) { }; + generic-lens_2_3_0_0 = callPackage ( + { + mkDerivation, + base, + doctest, + generic-lens-core, + HUnit, + inspection-testing, + lens, + mtl, + profunctors, + }: + mkDerivation { + pname = "generic-lens"; + version = "2.3.0.0"; + sha256 = "0db1h4nafdq1ds1qss9qjlg67xvx5ky5lr9apfq9jas5mcay25n1"; + libraryHaskellDepends = [ + base + generic-lens-core + profunctors + ]; + testHaskellDepends = [ + base + doctest + HUnit + inspection-testing + lens + mtl + ]; + description = "Generically derive traversals, lenses and prisms"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + generic-lens-core = callPackage ( { mkDerivation, @@ -253320,6 +252123,28 @@ self: { } ) { }; + generic-lens-core_2_3_0_0 = callPackage ( + { + mkDerivation, + base, + indexed-profunctors, + text, + }: + mkDerivation { + pname = "generic-lens-core"; + version = "2.3.0.0"; + sha256 = "1q2saa6y9g29d8xz6fgnh7inwr4kj9jqipd1pxcqwh1f0xnj6c8x"; + libraryHaskellDepends = [ + base + indexed-profunctors + text + ]; + description = "Generically derive traversals, lenses and prisms"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + generic-lens-labels = callPackage ( { mkDerivation, @@ -253527,6 +252352,41 @@ self: { } ) { }; + generic-optics_2_3_0_0 = callPackage ( + { + mkDerivation, + base, + doctest, + generic-lens-core, + HUnit, + inspection-testing, + mtl, + optics-core, + }: + mkDerivation { + pname = "generic-optics"; + version = "2.3.0.0"; + sha256 = "1038bbnfn47cz59cz0qp1168vx4wjwvcsd5ar3w59miwsr4k3wac"; + libraryHaskellDepends = [ + base + generic-lens-core + optics-core + ]; + testHaskellDepends = [ + base + doctest + HUnit + inspection-testing + mtl + optics-core + ]; + description = "Generically derive traversals, lenses and prisms"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.maralorn ]; + } + ) { }; + generic-optics-lite = callPackage ( { mkDerivation, @@ -254547,6 +253407,8 @@ self: { ]; description = "Use Template Haskell to generate Uniplate-like functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -256372,47 +255234,6 @@ self: { ) { }; geodetics = callPackage ( - { - mkDerivation, - array, - base, - checkers, - dimensional, - HUnit, - QuickCheck, - semigroups, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "geodetics"; - version = "0.1.2"; - sha256 = "18jjq4z16v6mkmm4as67srrwzk75cl32jlph3qbm106gms54vska"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - dimensional - semigroups - ]; - testHaskellDepends = [ - array - base - checkers - dimensional - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Terrestrial coordinate systems and geodetic calculations"; - license = lib.licenses.bsd3; - } - ) { }; - - geodetics_1_1_0 = callPackage ( { mkDerivation, array, @@ -256443,7 +255264,6 @@ self: { ]; description = "Terrestrial coordinate systems and geodetic calculations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -257027,26 +255847,19 @@ self: { pretty, process, random, + template-haskell, terminfo, time, - transformers-compat, unix, utf8-string, }: mkDerivation { pname = "gf"; - version = "3.11"; - sha256 = "18fx0kba86hyyimrahvgs7jsd5g718psis4drmxmxmx3bdvxj3bd"; + version = "3.12"; + sha256 = "10dlp5rxqhzli08ra711gjbzzr9c6fm02r51my9hpq7sjbr2pf7b"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; libraryHaskellDepends = [ array base @@ -257067,9 +255880,9 @@ self: { pretty process random + template-haskell terminfo time - transformers-compat unix utf8-string ]; @@ -257379,16 +256192,15 @@ self: { description = "Shared functionality between GHC and its boot libraries"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; } - ) { ghc-platform = null; }; + ) { }; - ghc-boot-th_9_10_2 = callPackage ( + ghc-boot-th_9_10_3 = callPackage ( { mkDerivation, base }: mkDerivation { pname = "ghc-boot-th"; - version = "9.10.2"; - sha256 = "0g7a71w56hr7s5ysy1nm3wm2s1rly3nc2phfgdr0f1w0pd77shqx"; + version = "9.10.3"; + sha256 = "0iizi093swkdblngqi11v6v4rrf93wp4sqnpmisaxkb5kghf3wpj"; libraryHaskellDepends = [ base ]; description = "Shared functionality between GHC and the @template-haskell@ library"; license = lib.licenses.bsd3; @@ -258157,9 +256969,8 @@ self: { ghc-events-analyze = callPackage ( { mkDerivation, + async, base, - blaze-svg, - bytestring, containers, diagrams-lib, diagrams-svg, @@ -258170,7 +256981,6 @@ self: { mtl, optparse-applicative, parsec, - regex-base, regex-pcre-builtin, SVGFonts, template-haskell, @@ -258182,16 +256992,12 @@ self: { }: mkDerivation { pname = "ghc-events-analyze"; - version = "0.2.8"; - sha256 = "1aam80l76dy76b8wbkjnbmxkmbgvczs591yjnbb9rm5bv9ggcb29"; - revision = "1"; - editedCabalFile = "12p15xrlqfjwz2izp39b2yyvdjhsvpv89djskym9f6fpcki8ij4y"; + version = "0.2.9"; + sha256 = "0gzzhf369b8f5j870rx1sai60khrd6k2ryxikngv4a3nwh75p151"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base - blaze-svg - bytestring containers diagrams-lib diagrams-svg @@ -258202,7 +257008,6 @@ self: { mtl optparse-applicative parsec - regex-base regex-pcre-builtin SVGFonts template-haskell @@ -258212,6 +257017,10 @@ self: { transformers unordered-containers ]; + testHaskellDepends = [ + async + base + ]; description = "Analyze and visualize event logs"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -258541,7 +257350,7 @@ self: { } ) { }; - ghc-exactprint = callPackage ( + ghc-exactprint_1_8_0_0 = callPackage ( { mkDerivation, base, @@ -258604,23 +257413,111 @@ self: { ]; description = "ExactPrint for GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; ghc-exactprint_1_9_0_0 = callPackage ( - { mkDerivation }: + { + mkDerivation, + base, + containers, + Diff, + directory, + extra, + filepath, + ghc, + ghc-boot, + ghc-paths, + HUnit, + mtl, + silently, + syb, + }: mkDerivation { pname = "ghc-exactprint"; version = "1.9.0.0"; sha256 = "195y3yy7bjrx3b21nqrhxrnbxidaydb9g28i37wqx5glv8y65v51"; isLibrary = true; isExecutable = true; + libraryHaskellDepends = [ + base + containers + ghc + ghc-boot + mtl + syb + ]; + testHaskellDepends = [ + base + containers + Diff + directory + extra + filepath + ghc + ghc-boot + ghc-paths + HUnit + silently + syb + ]; description = "ExactPrint for GHC"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; } ) { }; + ghc-exactprint = callPackage ( + { + mkDerivation, + base, + containers, + Diff, + directory, + extra, + filepath, + ghc, + ghc-boot, + ghc-paths, + HUnit, + mtl, + silently, + syb, + }: + mkDerivation { + pname = "ghc-exactprint"; + version = "1.10.0.0"; + sha256 = "14jwkx0q2bidcv5ss7zmkvl41z264k7siy9fh7py27h7azb539v0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + ghc + ghc-boot + mtl + syb + ]; + testHaskellDepends = [ + base + containers + Diff + directory + extra + filepath + ghc + ghc-boot + ghc-paths + HUnit + silently + syb + ]; + description = "ExactPrint for GHC"; + license = lib.licenses.bsd3; + } + ) { }; + ghc-exactprint_1_12_0_0 = callPackage ( { mkDerivation }: mkDerivation { @@ -258635,7 +257532,7 @@ self: { } ) { }; - ghc-experimental = callPackage ( + ghc-experimental_9_1201_0 = callPackage ( { mkDerivation, base, @@ -258695,6 +257592,8 @@ self: { pname = "ghc-gc-tune"; version = "0.3.2"; sha256 = "1q77q0vavypdc9iqf1hrnxzhwj851a9s9qk646w98qkncm4ifblp"; + revision = "1"; + editedCabalFile = "099bfdaxh8j3wd7w48jwivcvh658kk9y4qq0q8bh89w63vndqawn"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -258735,6 +257634,7 @@ self: { mkDerivation, base, containers, + ghc-internal, ghc-prim, rts, }: @@ -258745,6 +257645,7 @@ self: { libraryHaskellDepends = [ base containers + ghc-internal ghc-prim rts ]; @@ -258850,6 +257751,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "HIE-file parsing machinery that supports multiple versions of GHC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -259087,7 +257990,7 @@ self: { } ) { }; - ghc-internal = callPackage ( + ghc-internal_9_1201_0 = callPackage ( { mkDerivation, ghc-bignum, @@ -259262,7 +258165,7 @@ self: { } ) { }; - ghc-lib = callPackage ( + ghc-lib_9_10_3_20250912 = callPackage ( { mkDerivation, alex, @@ -259291,72 +258194,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "9.8.5.20250214"; - sha256 = "1f0q8y22k8qwqjax4bvn1cbg2whxmcnfydp6izw54rk4yqyx5b0c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - exceptions - filepath - ghc-lib-parser - ghc-prim - hpc - parsec - pretty - process - rts - semaphore-compat - stm - time - transformers - unix - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "The GHC API, decoupled from GHC versions"; - license = lib.licenses.bsd3; - } - ) { }; - - ghc-lib_9_10_2_20250515 = callPackage ( - { - mkDerivation, - alex, - array, - base, - binary, - bytestring, - containers, - deepseq, - directory, - exceptions, - filepath, - ghc-lib-parser, - ghc-prim, - happy, - hpc, - parsec, - pretty, - process, - rts, - semaphore-compat, - stm, - time, - transformers, - unix, - }: - mkDerivation { - pname = "ghc-lib"; - version = "9.10.2.20250515"; - sha256 = "0ix0pbpn945hdcnha7vklxsamvqqr698yg5xy52p0s6q7shydvn3"; + version = "9.10.3.20250912"; + sha256 = "0ighyjwmdfapqa22abqrs7jd89l9kgg24ixfa7ldxrm3il4y5a7k"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -259391,7 +258230,7 @@ self: { } ) { }; - ghc-lib_9_12_2_20250421 = callPackage ( + ghc-lib = callPackage ( { mkDerivation, alex, @@ -259454,7 +258293,6 @@ self: { ]; description = "The GHC API, decoupled from GHC versions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -259526,6 +258364,7 @@ self: { directory, exceptions, filepath, + ghc-internal, ghc-prim, happy, parsec, @@ -259550,6 +258389,64 @@ self: { directory exceptions filepath + ghc-internal + ghc-prim + parsec + pretty + process + time + transformers + unix + ]; + libraryToolDepends = [ + alex + happy + ]; + description = "The GHC API, decoupled from GHC versions"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + + ghc-lib-parser_9_10_3_20250912 = callPackage ( + { + mkDerivation, + alex, + array, + base, + binary, + bytestring, + containers, + deepseq, + directory, + exceptions, + filepath, + ghc-internal, + ghc-prim, + happy, + parsec, + pretty, + process, + time, + transformers, + unix, + }: + mkDerivation { + pname = "ghc-lib-parser"; + version = "9.10.3.20250912"; + sha256 = "1ilh872nvzdvz1k9lnf3q4xwspbdgb9lcygfff1bnszf9jv14z7r"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + array + base + binary + bytestring + containers + deepseq + directory + exceptions + filepath + ghc-internal ghc-prim parsec pretty @@ -259581,115 +258478,7 @@ self: { directory, exceptions, filepath, - ghc-prim, - happy, - parsec, - pretty, - process, - time, - transformers, - unix, - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "9.8.5.20250214"; - sha256 = "1l07lkc4d9ryxy26fr7mry4691m0f3p0wi6b6l1jzr968hrs06cb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - exceptions - filepath - ghc-prim - parsec - pretty - process - time - transformers - unix - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "The GHC API, decoupled from GHC versions"; - license = lib.licenses.bsd3; - } - ) { }; - - ghc-lib-parser_9_10_2_20250515 = callPackage ( - { - mkDerivation, - alex, - array, - base, - binary, - bytestring, - containers, - deepseq, - directory, - exceptions, - filepath, - ghc-prim, - happy, - parsec, - pretty, - process, - time, - transformers, - unix, - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "9.10.2.20250515"; - sha256 = "1wlwgm6596dnsc60j40byw9d1krb3gmvapglz3g8ampjy8scadvb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - exceptions - filepath - ghc-prim - parsec - pretty - process - time - transformers - unix - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "The GHC API, decoupled from GHC versions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - ghc-lib-parser_9_12_2_20250421 = callPackage ( - { - mkDerivation, - alex, - array, - base, - binary, - bytestring, - containers, - deepseq, - directory, - exceptions, - filepath, + ghc-internal, ghc-prim, happy, os-string, @@ -259715,6 +258504,7 @@ self: { directory exceptions filepath + ghc-internal ghc-prim os-string parsec @@ -259730,7 +258520,6 @@ self: { ]; description = "The GHC API, decoupled from GHC versions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -259816,46 +258605,6 @@ self: { } ) { }; - ghc-lib-parser-ex = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - extra, - filepath, - ghc-lib-parser, - tasty, - tasty-hunit, - uniplate, - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "9.8.0.2"; - sha256 = "1s4ibjdzrflb2r88srmdnslj09h78xqwdn6djcnirmnka7qrf09v"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc-lib-parser - uniplate - ]; - testHaskellDepends = [ - base - directory - extra - filepath - ghc-lib-parser - tasty - tasty-hunit - uniplate - ]; - description = "Algorithms on GHC parse trees"; - license = lib.licenses.bsd3; - } - ) { }; - ghc-lib-parser-ex_9_10_0_0 = callPackage ( { mkDerivation, @@ -259899,7 +258648,7 @@ self: { } ) { }; - ghc-lib-parser-ex_9_12_0_0 = callPackage ( + ghc-lib-parser-ex = callPackage ( { mkDerivation, base, @@ -259950,7 +258699,6 @@ self: { ]; description = "Programming with GHC parse trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-lib-parser-ex-build-tool"; } ) { }; @@ -260357,8 +259105,8 @@ self: { pname = "ghc-paths"; version = "0.1.0.12"; sha256 = "1164w9pqnf7rjm05mmfjznz7rrn415blrkk1kjc0gjvks1vfdjvf"; - revision = "7"; - editedCabalFile = "0irq8j1bz5z3da1g4xd3dp392hwi2xn1cjsrdiqyp4srjlyg2532"; + revision = "8"; + editedCabalFile = "1ymhq0il4l8a91n8iqfrq9q57sj6zfkmvpjf8nwgavwclfi50ka2"; setupHaskellDepends = [ base Cabal @@ -260934,36 +259682,6 @@ self: { ) { }; ghc-syntax-highlighter = callPackage ( - { - mkDerivation, - base, - ghc-lib-parser, - hspec, - hspec-discover, - text, - }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.11.0"; - sha256 = "0y2vhw6damddry3prvd5lcs3hak7r9ixv0mf1wvx8g276gs9frxs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - ghc-lib-parser - text - ]; - testHaskellDepends = [ - base - hspec - text - ]; - testToolDepends = [ hspec-discover ]; - description = "Syntax highlighter for Haskell using the lexer of GHC"; - license = lib.licenses.bsd3; - } - ) { }; - - ghc-syntax-highlighter_0_0_13_0 = callPackage ( { mkDerivation, base, @@ -260990,7 +259708,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Syntax highlighter for Haskell using the lexer of GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -261122,8 +259839,7 @@ self: { deepseq, directory, filepath, - ghc, - ghc-boot, + ghc-lib, ghc-paths, optparse-applicative, process, @@ -261152,8 +259868,7 @@ self: { deepseq directory filepath - ghc - ghc-boot + ghc-lib ghc-paths optparse-applicative process @@ -261183,7 +259898,8 @@ self: { deepseq, directory, filepath, - ghc-lib, + ghc, + ghc-boot, ghc-paths, optparse-applicative, process, @@ -261212,7 +259928,8 @@ self: { deepseq directory filepath - ghc-lib + ghc + ghc-boot ghc-paths optparse-applicative process @@ -261347,6 +260064,7 @@ self: { ghc-tcplugin-api = callPackage ( { mkDerivation, + array, base, containers, ghc, @@ -261355,9 +260073,10 @@ self: { }: mkDerivation { pname = "ghc-tcplugin-api"; - version = "0.15.0.0"; - sha256 = "024gwhs575rirrizlriigxvz0b9az2c63vbbdfm3dd4qa5ln3jmq"; + version = "0.17.2.0"; + sha256 = "01p6x6jppap6q82x8m5jw3rbzn60gqmap23x6lxq9jbn6am44vhv"; libraryHaskellDepends = [ + array base containers ghc @@ -261576,6 +260295,46 @@ self: { } ) { }; + ghc-typelits-knownnat_0_8_0 = callPackage ( + { + mkDerivation, + base, + ghc, + ghc-bignum, + ghc-tcplugin-api, + ghc-typelits-natnormalise, + tasty, + tasty-hunit, + tasty-quickcheck, + template-haskell, + transformers, + }: + mkDerivation { + pname = "ghc-typelits-knownnat"; + version = "0.8.0"; + sha256 = "009vfifi462dqp3z26b3czx1x22ayn3s8r1s4x967yw68mpwhpda"; + libraryHaskellDepends = [ + base + ghc + ghc-bignum + ghc-tcplugin-api + ghc-typelits-natnormalise + template-haskell + transformers + ]; + testHaskellDepends = [ + base + ghc-typelits-natnormalise + tasty + tasty-hunit + tasty-quickcheck + ]; + description = "Derive KnownNat constraints from other KnownNat constraints"; + license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ghc-typelits-natnormalise = callPackage ( { mkDerivation, @@ -261615,7 +260374,7 @@ self: { } ) { }; - ghc-typelits-natnormalise_0_7_11 = callPackage ( + ghc-typelits-natnormalise_0_7_12 = callPackage ( { mkDerivation, base, @@ -261631,8 +260390,8 @@ self: { }: mkDerivation { pname = "ghc-typelits-natnormalise"; - version = "0.7.11"; - sha256 = "1r661cnhn4gc2vlmdgxx3w42h8m3fbh7s7sf98kdp3ac9a59s8hb"; + version = "0.7.12"; + sha256 = "03yrh9nrvnnb6ay2xy12jx94pxicjwrxc9wdnpw2qkca06z5sxla"; libraryHaskellDepends = [ base containers @@ -261655,6 +260414,45 @@ self: { } ) { }; + ghc-typelits-natnormalise_0_8_0 = callPackage ( + { + mkDerivation, + base, + containers, + ghc, + ghc-bignum, + ghc-prim, + ghc-tcplugin-api, + tasty, + tasty-hunit, + template-haskell, + transformers, + }: + mkDerivation { + pname = "ghc-typelits-natnormalise"; + version = "0.8.0"; + sha256 = "1vdhj5pzx76aigim3a0ap3nhzhnhwl5cywz5rzzkplag8970rfdn"; + libraryHaskellDepends = [ + base + containers + ghc + ghc-bignum + ghc-tcplugin-api + transformers + ]; + testHaskellDepends = [ + base + ghc-prim + tasty + tasty-hunit + template-haskell + ]; + description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; + license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ghc-typelits-presburger = callPackage ( { mkDerivation, @@ -261676,8 +260474,8 @@ self: { }: mkDerivation { pname = "ghc-typelits-presburger"; - version = "0.7.4.1"; - sha256 = "0n9jzw319cmf0a0pa90y133rmbjx0109ddwzndvpfqrhj6bf27cw"; + version = "0.7.4.2"; + sha256 = "1vnhhz8vb0v0ym9wq82xx324c310bjl51y0igggy77z94fhm0q0n"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -261703,6 +260501,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Presburger Arithmetic Solver for GHC Type-level natural numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -261929,7 +260729,9 @@ self: { ]; description = "ghci-dap is a GHCi having DAP interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghci-dap"; + broken = true; } ) { }; @@ -262149,6 +260951,7 @@ self: { ]; description = "colored pretty-printing within ghci"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -262204,8 +261007,8 @@ self: { }: mkDerivation { pname = "ghci4luatex"; - version = "0.1"; - sha256 = "1x3kdwxcallnyvssbxaj4scf6rc0f5yx3js1bzzwmi9p3imxj4x8"; + version = "0.1.2"; + sha256 = "12k0j92j65n3qidczx088xr47xbj86srria1859bw0qm8f1zzy2j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -262395,6 +261198,8 @@ self: { pname = "ghcide"; version = "2.11.0.0"; sha256 = "0d9rvh6xxw8y64f1pdivwdkmi9wqknl4m2n2h3x4rjmqj2al92vs"; + revision = "2"; + editedCabalFile = "0kqdzwf0fpzg69sawsrlhf3x0yv3ixi2x5ia6jb2zckaa5wl4ik2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -262892,8 +261697,6 @@ self: { sha256 = "0fhcs89x180kw75qgbfh28wjyn55frwdfj4rqlqa1smx0fwhzyy1"; description = "DOM library using JSFFI and GHCJS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -263237,7 +262040,9 @@ self: { ]; description = "GHC .prof files viewer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghcprofview"; + broken = true; } ) { }; @@ -264256,35 +263061,6 @@ self: { ) { inherit (pkgs) freetype; }; gi-gdk = callPackage ( - { - mkDerivation, - base, - Cabal, - gi-gdk3, - haskell-gi, - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.30"; - sha256 = "0fq77cryf9njdxxh7ywhv3dinpn5hy5p7ppfsaf6163zw2qjshz3"; - revision = "1"; - editedCabalFile = "1pf2dxjr47hhxkxhv9wy7w8d0w7zbszindja2xqi3ss8imsljpxl"; - setupHaskellDepends = [ - base - Cabal - gi-gdk3 - haskell-gi - ]; - libraryHaskellDepends = [ - base - gi-gdk3 - ]; - description = "Gdk 3.x bindings (compatibility layer)"; - license = lib.licenses.lgpl21Only; - } - ) { }; - - gi-gdk_4_0_10 = callPackage ( { mkDerivation, base, @@ -264310,7 +263086,6 @@ self: { ]; description = "Gdk bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -264480,36 +263255,6 @@ self: { ) { inherit (pkgs) gdk-pixbuf; }; gi-gdkx11 = callPackage ( - { - mkDerivation, - base, - Cabal, - gi-gdkx113, - haskell-gi, - }: - mkDerivation { - pname = "gi-gdkx11"; - version = "3.0.17"; - sha256 = "03jyplzw32w8lyasbq4njjw1jyixa83hyggpk3z9n5w0d6l2xwz3"; - revision = "1"; - editedCabalFile = "04xjy6apyn6yk63q04bnh36gryrcz0r1id0hnp9bblf7jpr0jqxk"; - setupHaskellDepends = [ - base - Cabal - gi-gdkx113 - haskell-gi - ]; - libraryHaskellDepends = [ - base - gi-gdkx113 - ]; - doHaddock = false; - description = "GdkX11 3.x bindings (compatibility layer)"; - license = lib.licenses.lgpl21Only; - } - ) { }; - - gi-gdkx11_4_0_9 = callPackage ( { mkDerivation, base, @@ -264536,7 +263281,6 @@ self: { doHaddock = false; description = "GdkX11 4.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -265460,35 +264204,6 @@ self: { ) { inherit (pkgs.gst_all_1) gst-plugins-base; }; gi-gtk = callPackage ( - { - mkDerivation, - base, - Cabal, - gi-gtk3, - haskell-gi, - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.44"; - sha256 = "19rj31plyr8syx0g0f5q7p0g8ay4i38cfnmqdkvzbx7zczv7hlck"; - revision = "1"; - editedCabalFile = "18yxy4h72rc13qjqzkr3jqpk19fvahmj9hhyllc4hy3z3s7zp0zp"; - setupHaskellDepends = [ - base - Cabal - gi-gtk3 - haskell-gi - ]; - libraryHaskellDepends = [ - base - gi-gtk3 - ]; - description = "Gtk 3.x bindings (compatibility layer)"; - license = lib.licenses.lgpl21Only; - } - ) { }; - - gi-gtk_4_0_12 = callPackage ( { mkDerivation, base, @@ -265514,7 +264229,6 @@ self: { ]; description = "Gtk 4.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -265578,6 +264292,8 @@ self: { ]; description = "Declarative GTK+ programming in Haskell"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -265628,6 +264344,7 @@ self: { ]; description = "Declarative GTK+ programming in Haskell in the style of Pux"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -265667,6 +264384,8 @@ self: { ]; description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -266004,36 +264723,6 @@ self: { ) { inherit (pkgs) gtksheet; }; gi-gtksource = callPackage ( - { - mkDerivation, - base, - Cabal, - gi-gtksource3, - haskell-gi, - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.30"; - sha256 = "1iiqhfjgsis14wbchr0xnqsrplzlp2whp7c23ji59zf4s24ylx3r"; - revision = "1"; - editedCabalFile = "015v8janqmilydq3xv6wd26fglnrc6vl7226y6lnflnc9zi2fvll"; - setupHaskellDepends = [ - base - Cabal - gi-gtksource3 - haskell-gi - ]; - libraryHaskellDepends = [ - base - gi-gtksource3 - ]; - doHaddock = false; - description = "GtkSource 3.x bindings (compatibility layer)"; - license = lib.licenses.lgpl21Only; - } - ) { }; - - gi-gtksource_5_0_2 = callPackage ( { mkDerivation, base, @@ -266060,7 +264749,6 @@ self: { doHaddock = false; description = "GtkSource 5.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -266431,6 +265119,7 @@ self: { libraryPkgconfigDepends = [ webkitgtk_4_0 ]; description = "JavaScriptCore 4.x bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) webkitgtk_4_0; }; @@ -267009,36 +265698,6 @@ self: { ) { inherit (pkgs) libsecret; }; gi-soup = callPackage ( - { - mkDerivation, - base, - Cabal, - gi-soup2, - haskell-gi, - }: - mkDerivation { - pname = "gi-soup"; - version = "2.4.30"; - sha256 = "1c9cnxiwi722gizhm4z0mlwy6dwis11nw2dppx04k8v34qxqskaa"; - revision = "1"; - editedCabalFile = "040rszg07azivvyb4z5szxj4kk4fyhx9hfb7x3y8i30d7isfsvhw"; - setupHaskellDepends = [ - base - Cabal - gi-soup2 - haskell-gi - ]; - libraryHaskellDepends = [ - base - gi-soup2 - ]; - doHaddock = false; - description = "Libsoup 2.4.x bindings (compatibility layer)"; - license = lib.licenses.lgpl21Only; - } - ) { }; - - gi-soup_3_0_4 = callPackage ( { mkDerivation, base, @@ -267065,7 +265724,6 @@ self: { doHaddock = false; description = "Libsoup 3.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -267114,6 +265772,7 @@ self: { libraryPkgconfigDepends = [ libsoup_2_4 ]; description = "Libsoup 2.4.x bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) libsoup_2_4; }; @@ -267172,6 +265831,7 @@ self: { bytestring, Cabal, containers, + gi-gio, gi-glib, gi-gobject, haskell-gi, @@ -267183,11 +265843,12 @@ self: { }: mkDerivation { pname = "gi-vips"; - version = "8.0.5"; - sha256 = "07747sr630461d2k44yf2ns7jr6f02c5y7gjg69wcmw7g03gjhfw"; + version = "8.0.6"; + sha256 = "15b90kblc81bjvrcrlhdx64v8p6c15qncxmv2icfbrzz1acqnal4"; setupHaskellDepends = [ base Cabal + gi-gio gi-glib gi-gobject haskell-gi @@ -267196,6 +265857,7 @@ self: { base bytestring containers + gi-gio gi-glib gi-gobject haskell-gi @@ -267341,6 +266003,7 @@ self: { description = "WebKit 6.x bindings"; license = lib.licenses.lgpl21Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { webkitgtk = null; }; @@ -267408,6 +266071,7 @@ self: { description = "WebKit2 bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) webkitgtk_4_0; }; @@ -267795,6 +266459,8 @@ self: { pname = "gibbon"; version = "0.1.1"; sha256 = "1fvb7fg4dh26xszbfcrjyd7h8pl0nxpxkls6lb1ibyw9z76h0shh"; + revision = "1"; + editedCabalFile = "0ncx7hnarwfzw4h9xkv697h87wwm096z2mmw19l0x7ndnjch6zjs"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base ]; @@ -267851,6 +266517,8 @@ self: { ]; description = "Refreshed parsec-style library for compatibility with Scala parsley"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -268584,8 +267252,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "10.20250630"; - sha256 = "1varfir2vmnr29kfsjpqc5vd6msansch6xiag1d0s4bj5wpn1pq3"; + version = "10.20250828"; + sha256 = "11riq7ni0sqpkks2xaiimb7hl76wrnyac1smjs182m2sscn9bym4"; configureFlags = [ "-fassistant" "-f-benchmark" @@ -269269,6 +267937,7 @@ self: { ]; description = "Passively snapshots working tree changes efficiently"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-monitor"; } ) { }; @@ -269305,6 +267974,106 @@ self: { } ) { }; + git-phoenix = callPackage ( + { + mkDerivation, + base, + binary, + bytestring, + conduit, + containers, + cryptohash-sha1, + deepseq, + directory, + extra, + filepath, + lazy-scope, + lens, + memory, + optparse-applicative, + pretty-hex, + QuickCheck, + regex-tdfa, + relude, + tagged, + tasty, + tasty-discover, + tasty-hunit, + tasty-quickcheck, + template-haskell, + time, + trace-embrace, + unliftio, + wl-pprint-text, + word8, + zlib, + }: + mkDerivation { + pname = "git-phoenix"; + version = "0.0.2"; + sha256 = "0nkpa6nw1a9cnr1zhb92h6c8ykf92744c2pn2gnqx4nl89rx1w2g"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + binary + bytestring + conduit + containers + cryptohash-sha1 + deepseq + directory + extra + filepath + lazy-scope + lens + memory + optparse-applicative + pretty-hex + regex-tdfa + relude + tagged + template-haskell + time + trace-embrace + unliftio + wl-pprint-text + word8 + zlib + ]; + executableHaskellDepends = [ + base + bytestring + directory + optparse-applicative + relude + tagged + unliftio + ]; + testHaskellDepends = [ + base + bytestring + directory + optparse-applicative + QuickCheck + relude + tagged + tasty + tasty-discover + tasty-hunit + tasty-quickcheck + time + unliftio + ]; + testToolDepends = [ tasty-discover ]; + description = "Recover Git repositories from disk recovery tool output (photorec)"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "git-phoenix"; + broken = true; + } + ) { }; + git-remote-ipfs = callPackage ( { mkDerivation, @@ -269872,96 +268641,6 @@ self: { containers, cryptohash-sha1, deepseq, - deepseq-generics, - exceptions, - file-embed, - hashable, - hspec, - hspec-discover, - http-client, - http-client-tls, - http-link-header, - http-types, - iso8601-time, - mtl, - network-uri, - tagged, - text, - time-compat, - tls, - transformers, - transformers-compat, - unordered-containers, - vector, - }: - mkDerivation { - pname = "github"; - version = "0.29"; - sha256 = "1hki9lvf5vcq980ky98vwc7rh86rgf3z8pvqfgpb6jinc7jylcpx"; - revision = "6"; - editedCabalFile = "0ylwq4jzsng513pi98b3hxnn9lbjvjv5sgq1r7kfbd8nxgdcrbmw"; - libraryHaskellDepends = [ - aeson - base - base-compat - base16-bytestring - binary - binary-instances - bytestring - containers - cryptohash-sha1 - deepseq - deepseq-generics - exceptions - hashable - http-client - http-client-tls - http-link-header - http-types - iso8601-time - mtl - network-uri - tagged - text - time-compat - tls - transformers - transformers-compat - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - base-compat - bytestring - file-embed - hspec - tagged - text - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "Access to the GitHub API, v3"; - license = lib.licenses.bsd3; - } - ) { }; - - github_0_30 = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - base16-bytestring, - binary, - binary-instances, - bytestring, - containers, - cryptohash-sha1, - deepseq, - deepseq-generics, exceptions, file-embed, hashable, @@ -269979,14 +268658,13 @@ self: { time, tls, transformers, - transformers-compat, unordered-containers, vector, }: mkDerivation { pname = "github"; - version = "0.30"; - sha256 = "04rwdgrzsf2bq829w1v3435ynxz0lhb3c5vgbm2q080rwww29bif"; + version = "0.30.0.1"; + sha256 = "1lqdpr1dkap9prnsz14shk3kjan5k36s7c0n9kc50pkqjlq2hj21"; libraryHaskellDepends = [ aeson base @@ -269998,7 +268676,6 @@ self: { containers cryptohash-sha1 deepseq - deepseq-generics exceptions hashable http-client @@ -270013,7 +268690,6 @@ self: { time tls transformers - transformers-compat unordered-containers vector ]; @@ -270033,7 +268709,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Access to the GitHub API, v3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -270061,10 +268736,10 @@ self: { }: mkDerivation { pname = "github-actions"; - version = "0.1.0.0"; - sha256 = "0aa4j8cbij6ags49pmdlfjgwfhj4w1960cjijfhncjm1dr5gij1z"; + version = "0.1.1.0"; + sha256 = "1nxph5yypjqjcwwr7r397pdgnk7ad7y144dgmapzvrbz3xbzkz2d"; revision = "1"; - editedCabalFile = "13n5nxpqgak96fqyywp1kx0yvzp7m2r19fn84z0khb5bq5nglv01"; + editedCabalFile = "12dvv7jg1qhlf087fb9sg06nlr5k8d3ph4237q3v604lz4ib4vpq"; libraryHaskellDepends = [ aeson base @@ -270702,52 +269377,6 @@ self: { ) { }; github-webhooks = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - cryptonite, - deepseq, - deepseq-generics, - hspec, - memory, - text, - time, - vector, - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.17.0"; - sha256 = "06dh28yqhjmh4gks0r20x6cn1974a0cx1yr3n55l3slr1w9j46bv"; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - cryptonite - deepseq - deepseq-generics - memory - text - time - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - text - vector - ]; - description = "Aeson instances for GitHub Webhook payloads"; - license = lib.licenses.mit; - } - ) { }; - - github-webhooks_0_18_0 = callPackage ( { mkDerivation, aeson, @@ -270790,7 +269419,6 @@ self: { ]; description = "Aeson instances for GitHub webhook payloads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -271111,68 +269739,6 @@ self: { ) { }; gitlab-haskell = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - bytestring, - crypton-connection, - data-default-class, - http-client, - http-conduit, - http-types, - mtl, - tasty, - tasty-hunit, - temporary, - text, - time, - transformers, - tree-diff, - unix-compat, - unordered-containers, - vector, - }: - mkDerivation { - pname = "gitlab-haskell"; - version = "1.0.2.2"; - sha256 = "11pck9gqlnjp7759kdy3qk3xq6wcnj6acyxgdhx40190d1h3sid9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - crypton-connection - data-default-class - http-client - http-conduit - http-types - mtl - temporary - text - time - transformers - unix-compat - ]; - testHaskellDepends = [ - aeson - ansi-wl-pprint - base - bytestring - tasty - tasty-hunit - text - tree-diff - unordered-containers - vector - ]; - description = "A Haskell library for the GitLab web API"; - license = lib.licenses.bsd3; - } - ) { }; - - gitlab-haskell_1_1_0_0 = callPackage ( { mkDerivation, aeson, @@ -271231,7 +269797,6 @@ self: { ]; description = "A Haskell library for the GitLab web API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -271289,6 +269854,8 @@ self: { ]; description = "API library for working with Git repositories"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -271478,6 +270045,7 @@ self: { ]; description = "Libgit2 backend for gitlib"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -271606,6 +270174,7 @@ self: { ]; description = "Sample backend for gitlib showing the basic structure for any backend"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -271649,6 +270218,7 @@ self: { ]; description = "Test library for confirming gitlib backend compliance"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -271766,8 +270336,6 @@ self: { ]; description = "Compile git revision info into Haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -272560,6 +271128,353 @@ self: { } ) { }; + glean = + callPackage + ( + { + mkDerivation, + aeson, + aeson-pretty, + alex, + ansi-terminal, + array, + async, + atomic, + attoparsec, + attoparsec-aeson, + base, + binary, + bytestring, + clock, + containers, + contravariant, + criterion, + data-default, + deepseq, + directory, + exceptions, + extra, + fb-util, + filepath, + fmt, + fuzzy, + gflags, + ghc, + ghc-compact, + ghc-prim, + Glob, + glog, + gtest_main, + happy, + hashable, + haskeline, + haxl, + hie-compat, + hiedb, + hinotify, + http-types, + HUnit, + icu, + IntervalMap, + json, + libfolly, + libunwind, + mangle, + microlens, + monad-control, + mtl, + network, + network-uri, + optparse-applicative, + parsec, + pretty, + prettyprinter, + prettyprinter-ansi-terminal, + primitive, + process, + process-extras, + proto-lens, + proto-lens-runtime, + QuickCheck, + quickcheck-io, + quickcheck-text, + random, + regex-base, + regex-pcre, + rocksdb, + safe, + safe-exceptions, + scientific, + SHA, + split, + stm, + STMonadTrans, + tar, + tasty, + tasty-hunit-adapter, + template-haskell, + temporary, + text, + text-show, + thrift-haxl, + thrift-http, + thrift-lib, + time, + transformers, + unix, + unordered-containers, + uri-encode, + utf8-string, + uuid, + vector, + vector-algorithms, + wai, + warp, + xxHash, + yaml, + }: + mkDerivation { + pname = "glean"; + version = "0.1.0.0"; + sha256 = "0x8k1h1g75j90kdl9hdk0sb1yl237a89s21zah14igvrnamjhyn1"; + isLibrary = false; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + aeson-pretty + ansi-terminal + array + async + attoparsec + attoparsec-aeson + base + binary + bytestring + clock + containers + contravariant + criterion + data-default + deepseq + directory + exceptions + extra + fb-util + filepath + ghc + ghc-compact + ghc-prim + hashable + haskeline + haxl + hinotify + HUnit + IntervalMap + json + mangle + microlens + monad-control + mtl + network + network-uri + optparse-applicative + parsec + pretty + prettyprinter + prettyprinter-ansi-terminal + primitive + process + process-extras + proto-lens + proto-lens-runtime + random + regex-base + regex-pcre + safe + safe-exceptions + scientific + SHA + split + stm + STMonadTrans + tar + tasty + tasty-hunit-adapter + template-haskell + temporary + text + text-show + thrift-haxl + thrift-http + thrift-lib + time + transformers + unix + unordered-containers + uri-encode + utf8-string + uuid + vector + vector-algorithms + yaml + ]; + librarySystemDepends = [ atomic ]; + libraryPkgconfigDepends = [ + fmt + gflags + glog + icu + libfolly + libunwind + rocksdb + xxHash + ]; + libraryToolDepends = [ + alex + happy + ]; + executableHaskellDepends = [ + aeson + aeson-pretty + ansi-terminal + array + async + attoparsec + attoparsec-aeson + base + binary + bytestring + clock + containers + contravariant + data-default + deepseq + directory + exceptions + extra + fb-util + filepath + fuzzy + ghc + ghc-prim + Glob + hashable + haskeline + haxl + hie-compat + hiedb + hinotify + http-types + HUnit + json + mtl + network-uri + optparse-applicative + parsec + prettyprinter + process + random + regex-base + regex-pcre + safe + safe-exceptions + scientific + split + stm + STMonadTrans + tar + temporary + text + text-show + thrift-http + thrift-lib + time + transformers + unix + unordered-containers + utf8-string + uuid + vector + wai + warp + ]; + testHaskellDepends = [ + aeson + ansi-terminal + array + async + attoparsec + attoparsec-aeson + base + binary + bytestring + clock + containers + contravariant + data-default + deepseq + directory + exceptions + extra + fb-util + filepath + ghc-prim + hashable + haxl + hinotify + HUnit + json + mtl + network-uri + optparse-applicative + parsec + prettyprinter + process + QuickCheck + quickcheck-io + quickcheck-text + random + regex-base + regex-pcre + safe + safe-exceptions + scientific + stm + STMonadTrans + tar + temporary + text + text-show + thrift-lib + time + transformers + unix + unordered-containers + utf8-string + uuid + vector + ]; + testPkgconfigDepends = [ gtest_main ]; + doHaddock = false; + description = "A system for collecting, deriving and working with facts about source code"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) + { + atomic = null; + inherit (pkgs) fmt; + inherit (pkgs) gflags; + inherit (pkgs) glog; + gtest_main = null; + inherit (pkgs) icu; + libfolly = null; + inherit (pkgs) libunwind; + inherit (pkgs) rocksdb; + inherit (pkgs) xxHash; + }; + glfw-group = callPackage ( { mkDerivation, @@ -272849,6 +271764,8 @@ self: { pname = "glirc"; version = "2.41"; sha256 = "1sigh9154jxsisszj4sm3zbjja0mgqk9hrv7a4rr2c976pqri9yb"; + revision = "1"; + editedCabalFile = "1inwjbag35qfyndmb05gpyc3ws1acmzp4qfq6g1jv2j1fjm3cc7v"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ @@ -272936,6 +271853,8 @@ self: { ]; description = "GLL parser with simple combinator interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -273585,6 +272504,8 @@ self: { ]; description = "Parallel rendering of raster images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -274252,6 +273173,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Make better services and clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -274299,6 +273222,7 @@ self: { ]; description = "Make better services and clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "glue-example"; } ) { }; @@ -274397,7 +273321,6 @@ self: { ]; description = "Composable maps and generic tries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -277883,8 +276806,8 @@ self: { pname = "goldplate"; version = "0.2.2.1"; sha256 = "09z937azq3n736gn1sgdy7bxw4nvgsrqicgxdh7x79qng7ks035w"; - revision = "1"; - editedCabalFile = "1ghf2j3hn0gfb4abbb8nk95wfwqx9sn349pchfvad0h07qv2ligf"; + revision = "2"; + editedCabalFile = "04wn6sj57v3xc01000pg41zq0dqjnsahif6hh7kwksayzrbyrx6s"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -277996,15 +276919,13 @@ self: { hspec, http-conduit, jwt, - mtl, - process, text, time, }: mkDerivation { pname = "google-cloud-common"; - version = "0.1.0.0"; - sha256 = "094gfjd0mlnp44a2a1zjqz88rgq9xp12spff00yiyf6vkrqpxnkb"; + version = "1.1.0.0"; + sha256 = "03g3m4yrqkx4gx4w3nckjfa02f2hkdh9nqh2p8hkp7mgz7qsvfc0"; libraryHaskellDepends = [ aeson base @@ -278012,8 +276933,6 @@ self: { containers http-conduit jwt - mtl - process text time ]; @@ -278025,8 +276944,6 @@ self: { hspec http-conduit jwt - mtl - process text time ]; @@ -278049,8 +276966,8 @@ self: { }: mkDerivation { pname = "google-cloud-compute"; - version = "0.1.0.0"; - sha256 = "1s8dy9ns65m5vcf6ybfjg2jvck4awmzrg8szfdzfi89pqcnwx40w"; + version = "1.1.0.0"; + sha256 = "0n5xcngaqq03qlk9c37acqc7djnnnsqa3znvl984gzj7fcsch652"; libraryHaskellDepends = [ aeson base @@ -278080,27 +276997,80 @@ self: { mkDerivation, aeson, base, + bytestring, google-cloud-common, + tasty, + tasty-hunit, }: mkDerivation { pname = "google-cloud-logging"; - version = "0.1.0.0"; - sha256 = "0yjwihsklbhqq1k3gdcn1df3bvln4brby8ymr6jizwgsy64cvsz3"; + version = "1.1.0.0"; + sha256 = "0nrp3zqs591nah1bcrll3rhfwpi8zr608hqlbmbgi4jqd1105gi3"; libraryHaskellDepends = [ aeson base + bytestring google-cloud-common ]; testHaskellDepends = [ aeson base + bytestring google-cloud-common + tasty + tasty-hunit ]; description = "GCP Client for Haskell"; license = lib.licenses.mit; } ) { }; + google-cloud-pubsub = callPackage ( + { + mkDerivation, + aeson, + base, + base64-bytestring, + bytestring, + containers, + google-cloud-common, + http-conduit, + http-types, + text, + }: + mkDerivation { + pname = "google-cloud-pubsub"; + version = "1.1.0.0"; + sha256 = "0vl3qlqs6fl10wff49a3nwfarlc87541myn2cdfb4ghfhkhf6l0k"; + libraryHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + containers + google-cloud-common + http-conduit + http-types + text + ]; + testHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + containers + google-cloud-common + http-conduit + http-types + text + ]; + description = "GCP Pub/Sub Client for Haskell"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + google-cloud-storage = callPackage ( { mkDerivation, @@ -278108,17 +277078,25 @@ self: { base, bytestring, google-cloud-common, + http-conduit, + http-types, + tasty, + tasty-hunit, text, }: mkDerivation { pname = "google-cloud-storage"; - version = "0.1.0.0"; - sha256 = "14c3m2r6br623ij7amig05mirhnpdcazszzys6dqd2izpf8dn85r"; + version = "1.1.0.0"; + sha256 = "1mxiap5ppp1lxlx4x9klnil0rkdbk416rjyc0gr5pxmrw72kn1ii"; + revision = "1"; + editedCabalFile = "100byc9905fdgfgbx1b9815c68j9kl2b1crkdfwg4ncw8pp90ffp"; libraryHaskellDepends = [ aeson base bytestring google-cloud-common + http-conduit + http-types text ]; testHaskellDepends = [ @@ -278126,8 +277104,13 @@ self: { base bytestring google-cloud-common + http-conduit + http-types + tasty + tasty-hunit text ]; + description = "GCP Client for Haskell"; license = lib.licenses.mit; } ) { }; @@ -278353,6 +277336,7 @@ self: { ]; description = "Bindings to the Google Geocoding API (formerly Maps Geocoding API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -278661,6 +277645,8 @@ self: { ]; description = "Bindings to the Google Maps Static API (formerly Static Maps API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -279973,7 +278959,6 @@ self: { ]; description = "Vulkan library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -280101,7 +279086,6 @@ self: { ]; description = "VK_KHR_surface extension of the Vulkan API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -280146,7 +279130,6 @@ self: { ]; description = "GLFW surface for Vulkan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -280194,7 +279177,6 @@ self: { ]; description = "VK_KHR_swapchain extension of the Vulkan API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -280219,14 +279201,15 @@ self: { template-haskell, text, text-misc-yj, + tools-yj, typelevel-tools-yj, union-color, uuid, }: mkDerivation { pname = "gpu-vulkan-middle"; - version = "0.1.0.76"; - sha256 = "188g8i3zszb3xm5cl57bvhmwwrg1adx679h4j52z1a1qzyiia02m"; + version = "0.1.0.77"; + sha256 = "1ar3sw72hi2wd8aqrd2421szc7rrk5vdq5byhmgkyzrva9iyqwn3"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base @@ -280247,6 +279230,7 @@ self: { template-haskell text text-misc-yj + tools-yj typelevel-tools-yj union-color uuid @@ -280270,6 +279254,7 @@ self: { template-haskell text text-misc-yj + tools-yj typelevel-tools-yj union-color uuid @@ -280844,6 +279829,46 @@ self: { } ) { }; + granite = callPackage ( + { + mkDerivation, + base, + hspec, + hspec-discover, + QuickCheck, + random, + text, + }: + mkDerivation { + pname = "granite"; + version = "0.3.0.0"; + sha256 = "0dax05bqkvfa6wj2v7xdqrm3k6jr9qjyax93xasbybsh2zh352dr"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + text + ]; + executableHaskellDepends = [ + base + random + text + ]; + testHaskellDepends = [ + base + hspec + QuickCheck + text + ]; + testToolDepends = [ hspec-discover ]; + description = "Easy terminal plotting"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "granite"; + broken = true; + } + ) { }; + grapefruit-examples = callPackage ( { mkDerivation, @@ -281051,8 +280076,8 @@ self: { }: mkDerivation { pname = "grapesy"; - version = "1.0.1"; - sha256 = "1iplb4pvbqrpqdd6vbafd01drxyfinbrjq0w74w8rjzs4h7ag9wp"; + version = "1.1.0"; + sha256 = "1zr9x487l6aw872sdfdhcl7wl70nwfbdm8f3jrp7naayamxl2hzf"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson @@ -281103,6 +280128,7 @@ self: { mtl network optparse-applicative + proto-lens proto-lens-protobuf-types proto-lens-runtime QuickCheck @@ -281129,6 +280155,7 @@ self: { deepseq hashable optparse-applicative + proto-lens proto-lens-runtime splitmix text @@ -281827,6 +280854,8 @@ self: { ]; description = "A wrapper around the standard Data.Graph with a less awkward interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -282826,7 +281855,9 @@ self: { testToolDepends = [ tasty-autocollect ]; description = "Monadic DOT graph builder DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; } ) { }; @@ -283622,7 +282653,9 @@ self: { ]; description = "Uniformly-random pre-factored numbers (Kalai)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "grfn-exe"; + broken = true; } ) { }; @@ -283651,6 +282684,8 @@ self: { ]; description = "Tools for working with regular grids (graphs, lattices)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -283972,123 +283007,8 @@ self: { }: mkDerivation { pname = "grisette"; - version = "0.9.0.0"; - sha256 = "1j9aqdi8lx4i65dqj68hsjaq95kddk7bnk8mzznga7vspczlarsx"; - libraryHaskellDepends = [ - array - async - atomic-primops - base - binary - bytes - bytestring - cereal - cereal-text - containers - deepseq - generic-deriving - hashable - libBF - loch-th - mtl - parallel - prettyprinter - QuickCheck - sbv - stm - template-haskell - text - th-abstraction - th-compat - th-lift-instances - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - array - async - atomic-primops - base - binary - bytes - bytestring - cereal - cereal-text - containers - deepseq - doctest - generic-deriving - hashable - HUnit - libBF - loch-th - mtl - parallel - prettyprinter - QuickCheck - sbv - stm - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - th-abstraction - th-compat - th-lift-instances - transformers - unordered-containers - vector - ]; - description = "Symbolic evaluation as a library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - grisette_0_13_0_0 = callPackage ( - { - mkDerivation, - array, - async, - atomic-primops, - base, - binary, - bytes, - bytestring, - cereal, - cereal-text, - containers, - deepseq, - doctest, - generic-deriving, - hashable, - HUnit, - libBF, - loch-th, - mtl, - parallel, - prettyprinter, - QuickCheck, - sbv, - stm, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - th-abstraction, - th-compat, - th-lift-instances, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "grisette"; - version = "0.13.0.0"; - sha256 = "0115al5kw0vfsp11cndra6qrjiakm2w0gpi8ai4g47fysn8xbx6p"; + version = "0.13.0.1"; + sha256 = "0lid92s0si7l0phmba23m5yrsf1gjyxp7sbpzbwi3cbxqsapjid5"; libraryHaskellDepends = [ array async @@ -285120,6 +284040,8 @@ self: { ]; description = "A contiguous growable array type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -285595,8 +284517,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Gruvbox colors for use in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -286300,6 +285220,7 @@ self: { description = "A standalone StatusNotifierItem/AppIndicator tray"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "gtk-sni-tray-standalone"; } ) { inherit (pkgs) gtk3; }; @@ -286330,6 +285251,8 @@ self: { ]; description = "Library for creating strut windows with gi-gtk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -287398,6 +286321,68 @@ self: { } ) { }; + gym-hs = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + hspec, + process, + scientific, + text, + unordered-containers, + vector, + }: + mkDerivation { + pname = "gym-hs"; + version = "0.1.0.1"; + sha256 = "1njgq9bhb1pq0prih9siwcj6y5aigz4w4k8vld7z96cr18hqzam3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + bytestring + containers + process + scientific + text + unordered-containers + vector + ]; + executableHaskellDepends = [ + aeson + base + bytestring + containers + process + scientific + text + unordered-containers + vector + ]; + testHaskellDepends = [ + aeson + base + bytestring + containers + hspec + process + scientific + text + unordered-containers + vector + ]; + description = "Haskell bindings for OpenAI Gymnasium"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "gym-hs-example"; + broken = true; + } + ) { }; + gym-http-api = callPackage ( { mkDerivation, @@ -287569,7 +286554,6 @@ self: { bytestring, c, containers, - exceptions, lens, libGL, libX11, @@ -287584,8 +286568,8 @@ self: { }: mkDerivation { pname = "h-raylib"; - version = "5.5.2.1"; - sha256 = "11jrlghfl9xyssrs4yjcaay825ank1v5sgsys9i4kamrnjpnvagf"; + version = "5.5.3.0"; + sha256 = "0r1fr1wisdahqysvj10yb8i1dk5wc980p03db7i8jgvx96m6afhw"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -287593,7 +286577,6 @@ self: { base bytestring containers - exceptions lens linear template-haskell @@ -287864,6 +286847,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An abstraction layer for BDD libraries"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -288274,6 +287259,7 @@ self: { ]; description = "Multiparty Computation in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "id3gini"; } ) { }; @@ -290132,7 +289118,6 @@ self: { optparse-applicative, pretty, process-extras, - semigroups, stringsearch, tagsoup, tar, @@ -290140,13 +289125,12 @@ self: { tasty-golden, text, time, - unordered-containers, zlib, }: mkDerivation { pname = "hackage-cli"; - version = "0.1.0.3"; - sha256 = "19mnvvhhcagq1l3qc37qxxv7pwzfw6p15194f21z7harj5y1ly5c"; + version = "0.1.0.4"; + sha256 = "1ixv09lk4lgvv19k8sn50pn4w8n7ya2xypsq0ns5jp5kkp3ix5bv"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ @@ -290176,13 +289160,11 @@ self: { netrc optparse-applicative process-extras - semigroups stringsearch tagsoup tar text time - unordered-containers zlib ]; testHaskellDepends = [ @@ -290525,10 +289507,8 @@ self: { }: mkDerivation { pname = "hackage-repo-tool"; - version = "0.1.1.4"; - sha256 = "1nqm6rri8rkhrqvppyzy04s3875c4wjcay8gny4ygbr65c6iw81v"; - revision = "2"; - editedCabalFile = "0ghjpd02ccv6xdp0n6mxylq09ff5w7yzvpw3v3w4i62l43fi9j7q"; + version = "0.1.1.5"; + sha256 = "0zm5hxx9hbbapp7ncrv600kvij1f7k3k48a2d9zdpa9snxfl3c3j"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -290562,8 +289542,7 @@ self: { base, bytestring, Cabal, - cabal-install, - Cabal-syntax, + cabal-install-parsers, containers, filepath, optparse-applicative, @@ -290573,10 +289552,10 @@ self: { }: mkDerivation { pname = "hackage-revdeps"; - version = "0.1.1"; - sha256 = "0ckkcp2ndzv219hpl42vfzw0hvb5vblsx2bvdsa98wikkxnmn47j"; + version = "0.1"; + sha256 = "1rc6k7cjcc581cx7nx7q0p5qdfzpc010bacx4w524j6bw1qb2kp1"; revision = "1"; - editedCabalFile = "078lhc7lzs24qqizplyf4ipggxkqqsfmgq6vnrgbyhxiia2smc4b"; + editedCabalFile = "1x0rslnwk818wv37qxjfk8nmv1ld5an6ca402zhgmq0i94gd39h3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -290595,6 +289574,56 @@ self: { base bytestring Cabal + cabal-install-parsers + containers + optparse-applicative + time + ]; + description = "List Hackage reverse dependencies"; + license = lib.licenses.bsd3; + } + ) { }; + + hackage-revdeps_0_2 = callPackage ( + { + mkDerivation, + alfred-margaret, + ansi-terminal, + base, + bytestring, + Cabal, + cabal-install, + Cabal-syntax, + containers, + filepath, + optparse-applicative, + tar, + text, + time, + }: + mkDerivation { + pname = "hackage-revdeps"; + version = "0.2"; + sha256 = "1xzfyaq666gydpzbq61v7a9n96gh039jrfn8vjhca5v4v22yhxsj"; + revision = "1"; + editedCabalFile = "1753nlx4yk2jrpj1wgl4lnwmw0nf33da7kd4d1lqrgy9fr98aqvy"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + alfred-margaret + base + bytestring + Cabal-syntax + containers + filepath + tar + text + time + ]; + executableHaskellDepends = [ + ansi-terminal + base + Cabal cabal-install Cabal-syntax containers @@ -290604,6 +289633,7 @@ self: { ]; description = "List Hackage reverse dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -290644,10 +289674,8 @@ self: { }: mkDerivation { pname = "hackage-security"; - version = "0.6.3.1"; - sha256 = "05sckvvwj10krkhp1457mgp1hgq45p7r2sp850g3b5689i91mvqx"; - revision = "1"; - editedCabalFile = "1si6mkc8gimkpqkdl2wyzxp14v7yphp40hxvp77im7bhr8brsa77"; + version = "0.6.3.2"; + sha256 = "1yb8hz4h4wmmj2smr31nmfjfpfqrv3xcn3x92c59s8fmis39g3xz"; libraryHaskellDepends = [ base base16-bytestring @@ -290711,10 +289739,8 @@ self: { }: mkDerivation { pname = "hackage-security-HTTP"; - version = "0.1.1.2"; - sha256 = "0nsnn0lnnpvvfwgl480vhbmf4pfc11h128y252lslnlhzj1c66l3"; - revision = "1"; - editedCabalFile = "1jdrl10fvcibylsi027m4029rnzr0kc3l6yrd84ykyi0wcmyva3v"; + version = "0.1.1.3"; + sha256 = "0v9hpnzh3if7fxcah51gkhla962xnhf64hj7lrs83rx3azv3i1qx"; libraryHaskellDepends = [ base bytestring @@ -291656,8 +290682,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Eliminate warnings for names referred in Haddock only"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -291721,11 +290745,12 @@ self: { mkDerivation, aeson, base, + base16-bytestring, bytestring, Cabal, colourista, containers, - cryptonite, + cryptohash-sha1, data-default, deepseq, directory, @@ -291755,21 +290780,23 @@ self: { time, timerep, void, + xml-conduit, }: mkDerivation { pname = "hadolint"; - version = "2.12.0"; - sha256 = "190ighmy5bg21b67n8msli8im6xp1z4bh3cjadfpr76mikxk25vl"; + version = "2.13.1"; + sha256 = "0c4wazp5xrnbhp8gxg8mjppdb9ys77zxywkqysw6h7vzd1rsk7bd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base + base16-bytestring bytestring Cabal colourista containers - cryptonite + cryptohash-sha1 data-default deepseq directory @@ -291795,6 +290822,7 @@ self: { time timerep void + xml-conduit ]; executableHaskellDepends = [ base @@ -292170,6 +291198,7 @@ self: { mkDerivation, base, containers, + criterion, deepseq, fgl, hashable, @@ -292185,8 +291214,8 @@ self: { }: mkDerivation { pname = "haggle"; - version = "0.3"; - sha256 = "0cnl62w8fwb033gyx473ghbawnj0vpmjpjnlpv0wsvh3qhlax4hj"; + version = "0.3.1"; + sha256 = "1nw5175yymkmcmvdc6232zz7x5q2nb1lxf24bky86p1qq7ralgn7"; libraryHaskellDepends = [ base containers @@ -292207,6 +291236,13 @@ self: { test-framework-hunit test-framework-quickcheck2 ]; + benchmarkHaskellDepends = [ + base + containers + criterion + deepseq + fgl + ]; description = "A graph library offering mutable, immutable, and inductive graphs"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -293015,14 +292051,13 @@ self: { wai, wai-app-static, warp, + xml-conduit, yaml, }: mkDerivation { pname = "hakyll"; - version = "4.16.6.0"; - sha256 = "1933k6aiawa0kdws7ajm9picjchnfrkkd0qd8xb9l2yv1fvcywg2"; - revision = "3"; - editedCabalFile = "0q2yl6vqf6qqc7azqwsls7b2pm3y42shhdcpyszrpi16zgx9y137"; + version = "4.16.7.1"; + sha256 = "18wg5ay6l3ngsmqq00g6y7djmg4f8285kwdi47g0rg70mq6sn0py"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -293063,6 +292098,7 @@ self: { wai wai-app-static warp + xml-conduit yaml ]; executableHaskellDepends = [ @@ -293179,8 +292215,8 @@ self: { }: mkDerivation { pname = "hakyll-alectryon"; - version = "0.1.2.0"; - sha256 = "0f1jznfr79z3y1zpi30abvcc0i3ylif1aa30wldj7ghpdxsvrjpb"; + version = "0.2.0.0"; + sha256 = "0zcl7wyi922lfp1dp3sbacqjcy8yk7qs6az48x40x2g42grrzddl"; libraryHaskellDepends = [ aeson base @@ -293669,8 +292705,8 @@ self: { }: mkDerivation { pname = "hakyll-filestore"; - version = "0.1.11"; - sha256 = "1gfyibnazvanrywl9bcb3y2frpp4n1cvx0c8m6cx8vmdwslwmrnv"; + version = "0.1.12"; + sha256 = "0bzs858sjlzazlf486rj74dvf7rs6i2r2q2k72s8ymjra3s3xnq0"; libraryHaskellDepends = [ base filestore @@ -293680,8 +292716,6 @@ self: { ]; description = "FileStore utilities for Hakyll"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -295599,7 +294633,9 @@ self: { testHaskellDepends = [ base ]; description = "API Client for the handwriting.io API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "handwriting"; + broken = true; } ) { }; @@ -296996,7 +296032,6 @@ self: { base, bytestring, happstack-server, - harp, hsp, hsx2hs, mtl, @@ -297006,13 +296041,12 @@ self: { }: mkDerivation { pname = "happstack-hsp"; - version = "7.3.7.7"; - sha256 = "1bgjy77sbrb7nmbvb98hw5w7lb6ffvbb0nb62ylg2pf9nl862khv"; + version = "7.3.7.8"; + sha256 = "1r3fb4p0acrz6wg7fb5kkxls3fjcgvdqcblixm4lnjlpjjmgpza8"; libraryHaskellDepends = [ base bytestring happstack-server - harp hsp hsx2hs mtl @@ -297225,7 +296259,6 @@ self: { mtl, network, network-uri, - old-locale, parsec, process, sendfile, @@ -297236,7 +296269,6 @@ self: { time, transformers, transformers-base, - transformers-compat, unix, utf8-string, xhtml, @@ -297244,8 +296276,8 @@ self: { }: mkDerivation { pname = "happstack-server"; - version = "7.9.2.1"; - sha256 = "177qzsny5gn409j5l8ixyrs22dg8rnvrcjipv313rzkr449bl6sx"; + version = "7.9.3"; + sha256 = "1p2gi2knkrkdhip6ynsha76hwmfa9jjrq9q0n0xlm85agwsh57mb"; libraryHaskellDepends = [ base base64-bytestring @@ -297262,7 +296294,6 @@ self: { mtl network network-uri - old-locale parsec process sendfile @@ -297273,7 +296304,6 @@ self: { time transformers transformers-base - transformers-compat unix utf8-string xhtml @@ -297309,8 +296339,8 @@ self: { }: mkDerivation { pname = "happstack-server-tls"; - version = "7.2.1.6"; - sha256 = "05gdqkgrvkv6qbcdfwyblnv4bs03gr1nl467kr6g4x4cwj77fmf3"; + version = "7.2.1.7"; + sha256 = "13wgqfzamr6xrnax9xkihn91vy5mmradl9d4f6kk1nwqnvlxnphz"; libraryHaskellDepends = [ base bytestring @@ -297601,8 +296631,8 @@ self: { }: mkDerivation { pname = "happy"; - version = "2.0.2"; - sha256 = "0gp8fwn0k4vdz4g3s00jrh0n4g1arvpp6ps4f5xljqd1x1sjxxgp"; + version = "2.1.7"; + sha256 = "0aky5m9r3420h88ghq0qf9ck09g8ysr1aqlgb531vlc2n050yfcy"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -297622,40 +296652,6 @@ self: { } ) { }; - happy_2_1_5 = callPackage ( - { - mkDerivation, - array, - base, - containers, - happy-lib, - mtl, - process, - }: - mkDerivation { - pname = "happy"; - version = "2.1.5"; - sha256 = "1i21bklax7fjh5l2a2yw1va0wx8ww1pf3f8082r53yavyqj2zy3s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - happy-lib - mtl - ]; - testHaskellDepends = [ - base - process - ]; - description = "Happy is a parser generator for Haskell"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "happy"; - } - ) { }; - happy-arbitrary = callPackage ( { mkDerivation, @@ -297755,6 +296751,8 @@ self: { ]; description = "Parser for dot made with happy"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -297792,8 +296790,8 @@ self: { }: mkDerivation { pname = "happy-lib"; - version = "2.0.2"; - sha256 = "0ki1yn2m7fadsj1vjfskc2py7s6sgkhhzbs4l3ykbmgxkskvza29"; + version = "2.1.7"; + sha256 = "0sgj004khhy95xlw514s7pl8vk02fmssh3sn7kxgmdgjlg2b49gn"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -297808,34 +296806,6 @@ self: { } ) { }; - happy-lib_2_1_5 = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - transformers, - }: - mkDerivation { - pname = "happy-lib"; - version = "2.1.5"; - sha256 = "1swlva1h9shz8vwvi12b0dr66xrg627087n9p3scll5i5md6qnm2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - mtl - transformers - ]; - doHaddock = false; - description = "Happy is a parser generator for Haskell implemented using this library"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - happy-meta = callPackage ( { mkDerivation, @@ -298481,46 +297451,6 @@ self: { ) { }; harpie = callPackage ( - { - mkDerivation, - adjunctions, - base, - distributive, - doctest-parallel, - first-class-families, - prettyprinter, - QuickCheck, - quickcheck-instances, - random, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "harpie"; - version = "0.1.2.0"; - sha256 = "1dmga5rqhz7p1hxl9lyig3w3l3x3921av1n0zvd3ci40dbl6nsi9"; - libraryHaskellDepends = [ - adjunctions - base - distributive - first-class-families - prettyprinter - QuickCheck - quickcheck-instances - random - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - doctest-parallel - ]; - description = "Haskell array programming"; - license = lib.licenses.bsd3; - } - ) { }; - - harpie_0_1_3_0 = callPackage ( { mkDerivation, adjunctions, @@ -298564,7 +297494,6 @@ self: { ]; description = "Haskell array programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "harpie-bug-issue1"; } ) { }; @@ -298582,8 +297511,8 @@ self: { }: mkDerivation { pname = "harpie-numhask"; - version = "0.1.0.1"; - sha256 = "1688gkwabg3ijnqq65j3nwrwdx2r6qb38dpchkm6wckycpy7i8f2"; + version = "0.1.0.2"; + sha256 = "1vf21nbqrgws4lk6k1rhw00wccdskjl5cqdc9w0psgcdrq8xvprm"; libraryHaskellDepends = [ adjunctions base @@ -298909,7 +297838,9 @@ self: { ]; description = "tiny calculator library and command-line program"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hascal"; + broken = true; } ) { }; @@ -299528,6 +298459,8 @@ self: { ]; description = "Opportunistic hash-consing data structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -299631,7 +298564,7 @@ self: { } ) { }; - hashable = callPackage ( + hashable_1_4_7_0 = callPackage ( { mkDerivation, base, @@ -299685,10 +298618,11 @@ self: { ]; description = "A class for types that can be converted to a hash value"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; - hashable_1_5_0_0 = callPackage ( + hashable = callPackage ( { mkDerivation, base, @@ -299744,7 +298678,6 @@ self: { ]; description = "A class for types that can be converted to a hash value"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -300144,6 +299077,8 @@ self: { ]; description = "Hashids generates short, unique, non-sequential ids from numbers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -300234,6 +299169,8 @@ self: { ]; description = "A Hashmap on io monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -300351,52 +299288,6 @@ self: { ) { }; hashtables = callPackage ( - { - mkDerivation, - base, - ghc-prim, - hashable, - HUnit, - mwc-random, - primitive, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "hashtables"; - version = "1.3.1"; - sha256 = "1hsrihk948xfpy14qrhar50b41kp60i1rx8bkadjg1xb4bml0gbg"; - revision = "1"; - editedCabalFile = "1xskh7v0wnnrm1gc6haihahq4gqrk38bzsf2v35aj0gr16sa9g3i"; - libraryHaskellDepends = [ - base - ghc-prim - hashable - primitive - vector - ]; - testHaskellDepends = [ - base - ghc-prim - hashable - HUnit - mwc-random - primitive - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Mutable hash tables in the ST monad"; - license = lib.licenses.bsd3; - } - ) { }; - - hashtables_1_4_2 = callPackage ( { mkDerivation, base, @@ -300435,7 +299326,6 @@ self: { ]; description = "Mutable hash tables in the ST monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -300950,7 +299840,7 @@ self: { } ) { }; - haskeline_0_8_3_0 = callPackage ( + haskeline_0_8_4_0 = callPackage ( { mkDerivation, base, @@ -300969,8 +299859,8 @@ self: { }: mkDerivation { pname = "haskeline"; - version = "0.8.3.0"; - sha256 = "119mcjmmxg18qvj8mbyn4dw0ashh3ypgbgy16ngn8pzxyj0x4mwi"; + version = "0.8.4.0"; + sha256 = "1jky7h70f6k8qaxkh6f7pd5cam9sjqmibh18kksf8vr98dzh3xhp"; configureFlags = [ "-fterminfo" ]; isLibrary = true; isExecutable = true; @@ -300995,6 +299885,7 @@ self: { base bytestring containers + directory HUnit process text @@ -301611,7 +300502,9 @@ self: { ]; description = "PostgreSQL/PGMQ broker implementation for haskell-bee"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "simple-worker"; + broken = true; } ) { }; @@ -302398,10 +301291,102 @@ self: { ]; description = "Haskell Debug Adapter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-debug-adapter"; } ) { }; + haskell-debugger = callPackage ( + { + mkDerivation, + aeson, + array, + async, + base, + base16-bytestring, + binary, + bytestring, + co-log-core, + containers, + cryptohash-sha1, + dap, + directory, + exceptions, + filepath, + ghc, + ghci, + haskeline, + hie-bios, + implicit-hie, + mtl, + optparse-applicative, + prettyprinter, + process, + text, + time, + transformers, + unix, + }: + mkDerivation { + pname = "haskell-debugger"; + version = "0.7.0.0"; + sha256 = "18hx1jb6w8yzxh410fsi2lv7xv37gm2k9i7yfchhiqccgbr5zp2j"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + array + base + base16-bytestring + binary + bytestring + co-log-core + containers + cryptohash-sha1 + directory + exceptions + filepath + ghc + ghci + hie-bios + mtl + prettyprinter + process + text + time + unix + ]; + executableHaskellDepends = [ + aeson + async + base + bytestring + co-log-core + containers + dap + directory + exceptions + filepath + ghc + haskeline + hie-bios + implicit-hie + mtl + optparse-applicative + prettyprinter + process + text + transformers + unix + ]; + testHaskellDepends = [ base ]; + description = "A step-through machine-interface debugger for GHC Haskell"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "hdb"; + } + ) { }; + haskell-disque = callPackage ( { mkDerivation, @@ -302952,81 +301937,6 @@ self: { ) { }; haskell-gi = - callPackage - ( - { - mkDerivation, - ansi-terminal, - attoparsec, - base, - bytestring, - Cabal, - cabal-doctest, - containers, - directory, - doctest, - filepath, - glib, - gobject-introspection, - haskell-gi-base, - mtl, - pretty-show, - process, - regex-tdfa, - safe, - text, - transformers, - xdg-basedir, - xml-conduit, - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.26.16"; - sha256 = "0v5pjysap2v5a9njc1z9c6by2sv18p9kkqcpzpxwqjs9hh4mxq5q"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - ansi-terminal - attoparsec - base - bytestring - Cabal - containers - directory - filepath - haskell-gi-base - mtl - pretty-show - process - regex-tdfa - safe - text - transformers - xdg-basedir - xml-conduit - ]; - libraryPkgconfigDepends = [ - glib - gobject-introspection - ]; - testHaskellDepends = [ - base - doctest - process - ]; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = lib.licenses.lgpl21Only; - } - ) - { - inherit (pkgs) glib; - inherit (pkgs) gobject-introspection; - }; - - haskell-gi_0_26_17 = callPackage ( { @@ -303094,7 +302004,6 @@ self: { ]; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; } ) { @@ -303442,14 +302351,16 @@ self: { primitive, random, singletons, + singletons-base, + singletons-th, tasty, tasty-golden, tasty-hunit, }: mkDerivation { pname = "haskell-igraph"; - version = "0.8.0"; - sha256 = "0lwpliym0rldf4pqi17a9gm0dxlxd8jf4r12lcyp78mhdxfgdzcc"; + version = "0.8.5"; + sha256 = "18v37fr01ngkg0m204gkcsfqydr2kjjqim5lyhwhnnm7hgkw85j3"; libraryHaskellDepends = [ base bytestring @@ -303459,6 +302370,8 @@ self: { data-ordlist primitive singletons + singletons-base + singletons-th ]; libraryToolDepends = [ c2hs ]; testHaskellDepends = [ @@ -303472,7 +302385,7 @@ self: { tasty-golden tasty-hunit ]; - description = "Bindings to the igraph C library (v0.8.0)."; + description = "Bindings to the igraph C library (v0.8.5)."; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; @@ -303599,7 +302512,6 @@ self: { mkDerivation, aeson, aeson-pretty, - apply-refact, array, async, base, @@ -303618,23 +302530,18 @@ self: { eventlog2html, extra, filepath, - floskell, - foldl, fourmolu, fuzzy, ghc, ghc-boot, ghc-boot-th, ghc-exactprint, - ghc-lib-parser, - ghc-lib-parser-ex, ghcide, githash, hashable, hie-bios, hie-compat, hiedb, - hlint, hls-graph, hls-plugin-api, hls-test-utils, @@ -303659,10 +302566,8 @@ self: { process-extras, QuickCheck, random, - refact, regex-applicative, regex-tdfa, - retrie, row-types, safe-exceptions, semigroupoids, @@ -303680,7 +302585,6 @@ self: { tasty-quickcheck, tasty-rerun, template-haskell, - temporary, text, text-rope, time, @@ -303704,7 +302608,6 @@ self: { libraryHaskellDepends = [ aeson aeson-pretty - apply-refact array async base @@ -303721,23 +302624,18 @@ self: { dlist extra filepath - floskell - foldl fourmolu fuzzy ghc ghc-boot ghc-boot-th ghc-exactprint - ghc-lib-parser - ghc-lib-parser-ex ghcide githash hashable hie-bios hie-compat hiedb - hlint hls-graph hls-plugin-api hls-test-utils @@ -303757,10 +302655,8 @@ self: { prettyprinter process process-extras - refact regex-applicative regex-tdfa - retrie row-types safe-exceptions semigroupoids @@ -303772,14 +302668,12 @@ self: { stylish-haskell syb template-haskell - temporary text text-rope time transformers trial unliftio - unliftio-core unordered-containers vector yaml @@ -303888,18 +302782,6 @@ self: { ) { }; haskell-lexer = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.1.2"; - sha256 = "07b8vij3x90px9zm3zmfy55f8zja8wcy8m0kpbpa94gdzxmmpagk"; - libraryHaskellDepends = [ base ]; - description = "A fully compliant Haskell 98 lexer"; - license = lib.licenses.mit; - } - ) { }; - - haskell-lexer_1_2_1 = callPackage ( { mkDerivation, base }: mkDerivation { pname = "haskell-lexer"; @@ -303908,7 +302790,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A fully compliant Haskell 98 lexer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -305184,8 +304065,8 @@ self: { }: mkDerivation { pname = "haskell-src"; - version = "1.0.4.1"; - sha256 = "1fgg7wriwan4bfgmwan8q8mryrcdcikksjr26a9fpi7csccbwhv0"; + version = "1.0.4.2"; + sha256 = "1bairsbik3n9pbhkl547793sh9dp15n32a93di2n1xa75bbiy3zy"; libraryHaskellDepends = [ array base @@ -308468,126 +307349,6 @@ self: { ) { }; haskoin-core = callPackage ( - { - mkDerivation, - aeson, - array, - base, - base16, - base64, - binary, - bytes, - bytestring, - cereal, - conduit, - containers, - cryptonite, - data-default, - deepseq, - entropy, - hashable, - hspec, - hspec-discover, - HUnit, - lens, - lens-aeson, - memory, - mtl, - murmur3, - network, - QuickCheck, - safe, - scientific, - secp256k1-haskell, - split, - string-conversions, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haskoin-core"; - version = "1.1.0"; - sha256 = "09ic5fcs1j0snbwgcvsn4bkr9d9a6sn537ll93nd5rim6nkbx09n"; - libraryHaskellDepends = [ - aeson - array - base - base16 - binary - bytes - bytestring - cereal - conduit - containers - cryptonite - data-default - deepseq - entropy - hashable - hspec - memory - mtl - murmur3 - network - QuickCheck - safe - scientific - secp256k1-haskell - split - string-conversions - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - array - base - base16 - base64 - binary - bytes - bytestring - cereal - conduit - containers - cryptonite - data-default - deepseq - entropy - hashable - hspec - HUnit - lens - lens-aeson - memory - mtl - murmur3 - network - QuickCheck - safe - scientific - secp256k1-haskell - split - string-conversions - text - time - transformers - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "Bitcoin & Bitcoin Cash library for Haskell"; - license = lib.licenses.mit; - } - ) { }; - - haskoin-core_1_2_2 = callPackage ( { mkDerivation, aeson, @@ -308704,7 +307465,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bitcoin & Bitcoin Cash library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -309153,105 +307913,11 @@ self: { testToolDepends = [ hspec-discover ]; description = "Storage and index for Bitcoin and Bitcoin Cash"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskoin-store"; - broken = true; } ) { }; haskoin-store-data = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytes, - bytestring, - cereal, - containers, - data-default, - deepseq, - hashable, - haskoin-core, - hspec, - hspec-discover, - http-client, - http-types, - lens, - mtl, - network, - QuickCheck, - scotty, - string-conversions, - text, - time, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "haskoin-store-data"; - version = "1.4.0"; - sha256 = "00az0j07f9xj9af502i7b6zkmz43f9c45z80y1znhlvf66as25vi"; - libraryHaskellDepends = [ - aeson - base - binary - bytes - bytestring - cereal - containers - data-default - deepseq - hashable - haskoin-core - http-client - http-types - lens - mtl - network - scotty - string-conversions - text - time - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - binary - bytes - bytestring - cereal - containers - data-default - deepseq - hashable - haskoin-core - hspec - http-client - http-types - lens - mtl - network - QuickCheck - scotty - string-conversions - text - time - unordered-containers - vector - wreq - ]; - testToolDepends = [ hspec-discover ]; - description = "Data for Haskoin Store"; - license = lib.licenses.mit; - } - ) { }; - - haskoin-store-data_1_5_16 = callPackage ( { mkDerivation, aeson, @@ -309340,7 +308006,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Data for Haskoin Store"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -310091,8 +308756,8 @@ self: { }: mkDerivation { pname = "hasktorch"; - version = "0.2.1.4"; - sha256 = "0g5k796s66mz53cabfd0gl099rrjk1pfxc55qfg2j97mn69hgb1q"; + version = "0.2.1.6"; + sha256 = "0zv1n54bjvisnr5himacq7mxanblldrdxnfvbszp0ahvlgjamm1z"; setupHaskellDepends = [ base Cabal @@ -310107,6 +308772,7 @@ self: { constraints containers data-default-class + deepseq finite-typelits foldl ghc-typelits-extra @@ -310985,8 +309651,8 @@ self: { pname = "haskyapi"; version = "0.0.0.2"; sha256 = "1s5krzzmrl8p97xg8p1dimijqmyjbrdfm4i0dpp7jiipj2hzvqyq"; - revision = "1"; - editedCabalFile = "0lglfby1cpaplq53cvsm3n6crdskfm8ck33rwkm6nbzylhszm0f0"; + revision = "3"; + editedCabalFile = "0v39ysp0yqqfai6xma07x3mkka8kyv8d126knsgshjjj7kkc4h6z"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -311266,7 +309932,6 @@ self: { ]; description = "A monad for interfacing with external SMT solvers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -311453,87 +310118,6 @@ self: { ) { }; hasql = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - bytestring-strict-builder, - contravariant, - contravariant-extras, - criterion, - dlist, - hashable, - hashtables, - hspec, - hspec-discover, - iproute, - mtl, - postgresql-binary, - postgresql-libpq, - profunctors, - quickcheck-instances, - rerebase, - scientific, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-builder, - time, - transformers, - uuid, - vector, - }: - mkDerivation { - pname = "hasql"; - version = "1.8.1.4"; - sha256 = "0m2micp6g9kc1dq7sy3j8lba5iw7p0zn669613bs3an3ni4a7f03"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - bytestring-strict-builder - contravariant - dlist - hashable - hashtables - iproute - mtl - postgresql-binary - postgresql-libpq - profunctors - scientific - text - text-builder - time - transformers - uuid - vector - ]; - testHaskellDepends = [ - contravariant-extras - hspec - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - criterion - rerebase - ]; - doHaddock = false; - description = "Fast PostgreSQL driver with a flexible mapping API"; - license = lib.licenses.mit; - } - ) { }; - - hasql_1_9_1_2 = callPackage ( { mkDerivation, aeson, @@ -311561,6 +310145,7 @@ self: { tasty, tasty-hunit, tasty-quickcheck, + testcontainers-postgresql, text, text-builder, time, @@ -311571,8 +310156,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "1.9.1.2"; - sha256 = "0z8hadc22nx2yxbp9m5yvlz72rsbagwx676h29nh3cagaz7a9swi"; + version = "1.9.3.1"; + sha256 = "1v8zj0qcq15cp8d70r24paj2iyagxyhc0svj28g6az2irslwx8dw"; libraryHaskellDepends = [ aeson attoparsec @@ -311606,6 +310191,7 @@ self: { tasty tasty-hunit tasty-quickcheck + testcontainers-postgresql ]; testToolDepends = [ hspec-discover ]; benchmarkHaskellDepends = [ @@ -311615,7 +310201,6 @@ self: { doHaddock = false; description = "Fast PostgreSQL driver with a flexible mapping API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -311783,6 +310368,8 @@ self: { ]; description = "An abstraction for simultaneous fetching from multiple PostgreSQL cursors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -312307,8 +310894,8 @@ self: { }: mkDerivation { pname = "hasql-notifications"; - version = "0.2.3.2"; - sha256 = "00sqzcyq90firpv4z8nwlizd2x7nz6zqpqwv3d6ky3zh5kfvfxpd"; + version = "0.2.4.0"; + sha256 = "0xnag6j2qkyzii9blbrm3fp6rgcx291ih01v7msfbp0wr3dkg1dj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -312337,37 +310924,6 @@ self: { ) { }; hasql-optparse-applicative = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-time, - base, - bytestring, - hasql, - hasql-pool, - optparse-applicative, - time, - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.8.0.1"; - sha256 = "0xxli8ln3kpwci7iksy6za3pmnds6blw0y349c76ibfjb69d412k"; - libraryHaskellDepends = [ - attoparsec - attoparsec-time - base - bytestring - hasql - hasql-pool - optparse-applicative - time - ]; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = lib.licenses.mit; - } - ) { }; - - hasql-optparse-applicative_0_9 = callPackage ( { mkDerivation, attoparsec, @@ -312397,7 +310953,6 @@ self: { ]; description = "\"optparse-applicative\" parsers for \"hasql\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -312488,8 +311043,8 @@ self: { }: mkDerivation { pname = "hasql-pool"; - version = "1.2.0.3"; - sha256 = "1jjr5wmign12m05f7p3cssmd9qfindv3q9q37j28jk8y74lnqxvy"; + version = "1.3.0.3"; + sha256 = "1r59bn50klalw3g9fal8xpbv86fzzw77nqbymhdvq11wslhpyrm3"; libraryHaskellDepends = [ base bytestring @@ -312511,47 +311066,6 @@ self: { } ) { }; - hasql-pool_1_3_0_2 = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - hasql, - hspec, - random, - rerebase, - stm, - text, - time, - uuid, - }: - mkDerivation { - pname = "hasql-pool"; - version = "1.3.0.2"; - sha256 = "1adx703q4vx2qpmp2hl3zaa48h79px2py9p04ikwixd1aq300wrh"; - libraryHaskellDepends = [ - base - bytestring - hasql - stm - text - time - uuid - ]; - testHaskellDepends = [ - async - hasql - hspec - random - rerebase - ]; - description = "Pool of connections for Hasql"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - hasql-postgres = callPackage ( { mkDerivation, @@ -312912,6 +311426,7 @@ self: { ]; description = "Stream Hasql queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -313155,8 +311670,8 @@ self: { }: mkDerivation { pname = "hasql-transaction"; - version = "1.1.1.2"; - sha256 = "159dd3v9cz2kz1ph770w54nr25md6fncng86mfiphrh7823vfj4w"; + version = "1.2.1"; + sha256 = "0mvk0g92hmjcv6yjcbm0jlrn8h6raj05lmmsi2jd1l1vqlqgip3l"; libraryHaskellDepends = [ base bytestring @@ -313176,43 +311691,6 @@ self: { } ) { }; - hasql-transaction_1_2_0_1 = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - bytestring-tree-builder, - contravariant, - hasql, - mtl, - rerebase, - transformers, - }: - mkDerivation { - pname = "hasql-transaction"; - version = "1.2.0.1"; - sha256 = "18dvw4vd91r74ljqysf8b3ww4ld9pg4cgrqxph59hlgkl7dxw330"; - libraryHaskellDepends = [ - base - bytestring - bytestring-tree-builder - contravariant - hasql - mtl - transformers - ]; - testHaskellDepends = [ - async - hasql - rerebase - ]; - description = "Composable abstraction over retryable transactions for Hasql"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - hasql-transaction-io = callPackage ( { mkDerivation, @@ -313245,6 +311723,8 @@ self: { ]; description = "Perform IO actions during transactions for Hasql"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -313825,7 +312305,9 @@ self: { testHaskellDepends = [ base ]; description = "A program to download subtitle files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hastily"; + broken = true; } ) { }; @@ -315360,8 +313842,6 @@ self: { ]; description = "Blosc (numerical compression library) bindings for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -316121,8 +314601,6 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -316854,8 +315332,8 @@ self: { }: mkDerivation { pname = "hdf5"; - version = "1.8.14"; - sha256 = "0pw0il5mzkgvrxwvyndl085ram35rk7gfbd7mrarjqppqhhc9dhn"; + version = "1.8.15"; + sha256 = "1ndy228mrxy8d18nm5ryfrawnc8i7zdv9xprg1sm8xfgfiwym9cs"; libraryHaskellDepends = [ base bindings-DSL @@ -316880,8 +315358,6 @@ self: { ]; description = "Haskell interface to the HDF5 scientific data storage library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { inherit (pkgs) hdf5; }; @@ -318571,6 +317047,85 @@ self: { } ) { }; + hedgehog_1_6 = callPackage ( + { + mkDerivation, + ansi-terminal, + async, + barbies, + base, + bytestring, + concurrent-output, + containers, + deepseq, + directory, + erf, + exceptions, + lifted-async, + mmorph, + monad-control, + mtl, + pretty-show, + primitive, + random, + resourcet, + safe-exceptions, + stm, + template-haskell, + text, + time, + transformers, + transformers-base, + wl-pprint-annotated, + }: + mkDerivation { + pname = "hedgehog"; + version = "1.6"; + sha256 = "0lrwwlcp3rihs9z239lf6pd0m2fmi8ww4vvrwiphkrcba4c91bgf"; + libraryHaskellDepends = [ + ansi-terminal + async + barbies + base + bytestring + concurrent-output + containers + deepseq + directory + erf + exceptions + lifted-async + mmorph + monad-control + mtl + pretty-show + primitive + random + resourcet + safe-exceptions + stm + template-haskell + text + time + transformers + transformers-base + wl-pprint-annotated + ]; + testHaskellDepends = [ + base + containers + mmorph + mtl + pretty-show + text + transformers + ]; + description = "Release with confidence"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + hedgehog-checkers = callPackage ( { mkDerivation, @@ -318739,8 +317294,8 @@ self: { }: mkDerivation { pname = "hedgehog-extras"; - version = "0.9.0.0"; - sha256 = "0l067gvm7vvhr5jrcys9676kfhdvaivbwiqh85n0zlcnkf3mjff0"; + version = "0.10.0.0"; + sha256 = "10mmvxvr64s7j6zil4ygk1l74iask96r7k2cgv59l1zkfgji44hx"; libraryHaskellDepends = [ aeson aeson-pretty @@ -318782,6 +317337,7 @@ self: { ]; testHaskellDepends = [ base + directory hedgehog lifted-base network @@ -318796,8 +317352,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Supplemental library for hedgehog"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -318814,8 +317368,8 @@ self: { pname = "hedgehog-fakedata"; version = "0.0.1.5"; sha256 = "00k26d83v0646klrg0k3cf94r4fnnx3ykxv7i8shjjgbkbzlzz78"; - revision = "3"; - editedCabalFile = "1gfknhs1lslw7s00ciqn14r9b1lpph0827hhbb6bg9r52lylv9g3"; + revision = "4"; + editedCabalFile = "0nxik29cn669k2ky70xl5vq06vp0clizma0d92scx0bn51174gqs"; libraryHaskellDepends = [ base fakedata @@ -319063,6 +317617,8 @@ self: { ]; description = "Hedgehog properties for optics laws"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -319078,8 +317634,8 @@ self: { pname = "hedgehog-quickcheck"; version = "0.1.1"; sha256 = "1z2ja63wqz83qhwzh0zs98k502v8fjdpnsnhqk3srypx2nw5vdlp"; - revision = "8"; - editedCabalFile = "162j9h6khlavyi51847s71znig1l7shj12pgp8pv76i9jr8dpm1m"; + revision = "9"; + editedCabalFile = "1grw0vh1n3nbhpypb4v4rhmidm5n2hjbr4wiyvwj79bl12bd1x49"; libraryHaskellDepends = [ base hedgehog @@ -319600,38 +318156,6 @@ self: { ) { }; heftia = callPackage ( - { - mkDerivation, - base, - data-effects, - mtl, - tasty, - tasty-discover, - tasty-hunit, - unliftio, - }: - mkDerivation { - pname = "heftia"; - version = "0.5.0.0"; - sha256 = "0y906qlpz903gk08gvgzav02adhxqz561aqy9jbrpn5wh3jqshrn"; - libraryHaskellDepends = [ - base - data-effects - mtl - unliftio - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "higher-order algebraic effects done right"; - license = lib.licenses.mpl20; - } - ) { }; - - heftia_0_7_0_0 = callPackage ( { mkDerivation, base, @@ -319660,7 +318184,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "higher-order algebraic effects done right"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -319672,127 +318195,8 @@ self: { co-log-core, containers, data-effects, - eff, - effectful, - eveff, - extra, - filepath, - freer-simple, - fused-effects, - ghc-typelits-knownnat, - heftia, - hspec, - logict, - mpeff, - mtl, - polysemy, - process, - tasty, - tasty-bench, - tasty-discover, - tasty-hspec, - text, - time, - unbounded-delays, - unliftio, - }: - mkDerivation { - pname = "heftia-effects"; - version = "0.5.0.0"; - sha256 = "0bhjj3hhvhid4vk1vfzgqpy2wpb725nwlgkc5xqy6y1ihqkf65r5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - co-log-core - containers - data-effects - ghc-typelits-knownnat - heftia - process - text - time - unbounded-delays - unliftio - ]; - executableHaskellDepends = [ - base - bytestring - co-log-core - containers - data-effects - extra - filepath - ghc-typelits-knownnat - heftia - process - text - time - unbounded-delays - unliftio - ]; - testHaskellDepends = [ - base - bytestring - co-log-core - containers - data-effects - ghc-typelits-knownnat - heftia - hspec - process - tasty - tasty-hspec - text - time - unbounded-delays - unliftio - ]; - testToolDepends = [ tasty-discover ]; - benchmarkHaskellDepends = [ - base - bytestring - co-log-core - containers - data-effects - eff - effectful - eveff - freer-simple - fused-effects - ghc-typelits-knownnat - heftia - logict - mpeff - mtl - polysemy - process - tasty-bench - text - time - unbounded-delays - unliftio - ]; - description = "higher-order algebraic effects done right"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { eff = null; }; - - heftia-effects_0_7_0_0 = callPackage ( - { - mkDerivation, - base, - bytestring, - co-log-core, - containers, - data-effects, - eff, effectful, filepath, - freer-simple, fused-effects, heftia, hspec, @@ -319866,9 +318270,7 @@ self: { co-log-core containers data-effects - eff effectful - freer-simple fused-effects heftia logict @@ -319884,10 +318286,8 @@ self: { ]; description = "higher-order algebraic effects done right"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; } - ) { eff = null; }; + ) { }; hegg = callPackage ( { @@ -319903,8 +318303,8 @@ self: { }: mkDerivation { pname = "hegg"; - version = "0.5.0.0"; - sha256 = "0xwxmkkvx0aj8h2vqxv3n1vi94sp1kyh02yrh3mwr24d7xjq1qzs"; + version = "0.6.0.0"; + sha256 = "0xld2r3arba3lgjc4rz4gpfnvpxhhkf8cihsnb2a88a8ydjhlnav"; libraryHaskellDepends = [ base containers @@ -320406,8 +318806,8 @@ self: { }: mkDerivation { pname = "heist-extra"; - version = "0.3.0.0"; - sha256 = "11gswvr4kmrci4xnl2sq0hhfg1mmrx8hnyd8lw74zv5vwhacl00m"; + version = "0.4.0.0"; + sha256 = "0pfdrqhm84lcg7xsz8mb5cpr5j0yzzyy9p3wxx2rsww1ngl9fz18"; libraryHaskellDepends = [ base data-default @@ -321677,8 +320077,8 @@ self: { }: mkDerivation { pname = "hercules-ci-agent"; - version = "0.10.6"; - sha256 = "1mkgh544f5zxgbm6gx5dl8pnw3kpvj08b3qzh2k8vd4hlgnwhlam"; + version = "0.10.7"; + sha256 = "1d2hmhh2r0drg37cm9f3jwv5k8gjmg3mnsrsvfip0m49n09bmpqi"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ @@ -322212,8 +320612,8 @@ self: { }: mkDerivation { pname = "hercules-ci-cli"; - version = "0.3.7"; - sha256 = "1h4y8jkviiahshvky20jdda8sfmlbzpkpx313ddg9bvfqafps2mz"; + version = "0.3.8"; + sha256 = "1dkb2njp9agmawfyfsyy3sz3kx42jlv0zmbrr2b4r6zmv8v9q97h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -322323,8 +320723,8 @@ self: { }: mkDerivation { pname = "hercules-ci-cnix-expr"; - version = "0.4.0.0"; - sha256 = "1v96q27x66cdrd1mibb2cpnqiwly408ac67h1mw5dr0l1bdasvds"; + version = "0.5.0.0"; + sha256 = "0dlci548d4kpi3za59fdfd5y5p8h08rfyyvhi0a0vm4zz4jip249"; setupHaskellDepends = [ base Cabal @@ -322407,8 +320807,8 @@ self: { }: mkDerivation { pname = "hercules-ci-cnix-store"; - version = "0.3.7.0"; - sha256 = "1cfkfp8n61v7wssgs4f466pb241mm9pfsqkrnrlvqrx2w6ka5svg"; + version = "0.4.0.0"; + sha256 = "0jrln90r7yg2gdd5xiwfqz8wsmzx21pfvi8bn23p30hfv5flpha8"; setupHaskellDepends = [ base Cabal @@ -322620,8 +321020,10 @@ self: { }: mkDerivation { pname = "hermes-json"; - version = "0.6.1.0"; - sha256 = "05xxc3r9gbicrdc2jfhxv556n3y46alafkcfks7dz31kq9mz619g"; + version = "0.7.0.0"; + sha256 = "1261sm969kwji4gwk474l41rk0f3i8isb5x4zd77l3y4d5hgz85b"; + revision = "1"; + editedCabalFile = "1dnk3gdhpr13m9y2j71ivjsbjkns9jvjpasf5vhlsz7w4v679zni"; libraryHaskellDepends = [ base bytestring @@ -322866,6 +321268,8 @@ self: { ]; description = "helpers for deploying to Heroku"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -323297,6 +321701,33 @@ self: { } ) { }; + heterogeneous-comparison = callPackage ( + { + mkDerivation, + base, + deepseq, + hashable, + ord-axiomata, + primitive, + stm, + }: + mkDerivation { + pname = "heterogeneous-comparison"; + version = "0.1.0.0"; + sha256 = "03gprs0c5jjn4nc0xv1529cdjdwyy4xdkzmbb2xdrl735kjnhxw0"; + libraryHaskellDepends = [ + base + deepseq + hashable + ord-axiomata + primitive + stm + ]; + description = "Comparison of distinctly typed values with evidence capture"; + license = lib.licenses.bsd3; + } + ) { }; + heterogeneous-list-literals = callPackage ( { mkDerivation, @@ -323484,6 +321915,7 @@ self: { githash, gmp, here, + hspec, libff, megaparsec, memory, @@ -323492,6 +321924,7 @@ self: { optics-core, optics-extra, optics-th, + optparse-applicative, optparse-generic, pretty-hex, process, @@ -323521,16 +321954,16 @@ self: { tree-view, unliftio-core, unordered-containers, + utf8-string, vector, witch, - with-utf8, witherable, wreq, }: mkDerivation { pname = "hevm"; - version = "0.54.2"; - sha256 = "0hbivn9008wml61bm8dchqwywc8fk0jmb4ffr18ks2qsscf2kph7"; + version = "0.55.1"; + sha256 = "15yrqf0z0phjgvr4d91qkcxh5zzhvk12nlf723hdj2qda9d3cim9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -323603,11 +322036,12 @@ self: { filepath githash optics-core + optparse-applicative optparse-generic + split text unliftio-core witch - with-utf8 ]; testHaskellDepends = [ aeson @@ -323623,6 +322057,7 @@ self: { filemanip filepath here + hspec mtl operational optics-core @@ -323631,6 +322066,7 @@ self: { QuickCheck quickcheck-instances regex + split tasty tasty-expected-failure tasty-hunit @@ -323649,10 +322085,13 @@ self: { containers filemanip filepath + here + mtl tasty tasty-bench text unliftio-core + utf8-string ]; doHaddock = false; description = "Symbolic EVM Evaluator"; @@ -323761,8 +322200,8 @@ self: { pname = "hex-text"; version = "0.1.0.9"; sha256 = "1dzv1jpjga4nsrxbwrh5nhnzv5f0mnl5i8da0blqc73vavsjhny5"; - revision = "2"; - editedCabalFile = "1ym53q8zpnl5vh049z4lki7l8154fbfvizrc5sf6wra5vqgvys35"; + revision = "3"; + editedCabalFile = "1w7hhzbnp3rjz09fxqabzchibd5snraz5b72yhb3z8xc6kkmmibp"; libraryHaskellDepends = [ base base16-bytestring @@ -325935,6 +324374,8 @@ self: { ]; description = "Haskell interface to GMP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -326041,6 +324482,7 @@ self: { ]; description = "Tools for working on (di)graphs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -326396,8 +324838,8 @@ self: { }: mkDerivation { pname = "hi-file-parser"; - version = "0.1.7.0"; - sha256 = "1rss6j85kj33jfp14qlafqlcbld6ibhhki2rjkdsz8ilchq32hqq"; + version = "0.1.8.0"; + sha256 = "1hyn87s4gvfmidiq8vp8wsflcy3wcyd92pqwkhs5zaq0imydhzi5"; libraryHaskellDepends = [ base binary @@ -326417,7 +324859,7 @@ self: { text vector ]; - description = "Parser for GHC's hi files"; + description = "Parser for GHC's *.hi files"; license = lib.licenses.bsd3; } ) { }; @@ -326757,10 +325199,10 @@ self: { }: mkDerivation { pname = "hie-bios"; - version = "0.15.0"; - sha256 = "1lih0gab4r33vyjmrfd7dq6fzwy6bzgkr2xw4cf3yxvxk3m1czaj"; + version = "0.17.0"; + sha256 = "0dgkckj73zknnhgnval0igb3v183ygyda65mfyibqmrm05phk9yi"; revision = "1"; - editedCabalFile = "1rcvcsz97y4b242mdjxlxmgv05bhb56hss1sqf4w07i9a6bjhnba"; + editedCabalFile = "1ayi02194h4fqbrd797lv0r0apzrwv368ghndyyd8s7v5qj8r928"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -327140,6 +325582,8 @@ self: { ]; description = "See README on Github for more information"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -328455,7 +326899,9 @@ self: { doHaddock = false; description = "Extensible Haskell pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hindent"; + broken = true; } ) { }; @@ -329321,6 +327767,8 @@ self: { ]; description = "Haskell Image Processing (HIP) Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -330115,6 +328563,8 @@ self: { ]; description = "Simple Data.Map-based histogram"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -330438,6 +328888,7 @@ self: { ]; description = "XPath-like syntax for querying JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -330543,6 +328994,8 @@ self: { ]; description = "JSON parsing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -330924,6 +329377,8 @@ self: { ]; description = "\"higher-kinded data\""; license = "(BSD-2-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -331290,20 +329745,23 @@ self: { hashable, haskeline, hledger-lib, + http-client, + http-types, lucid, math-functions, megaparsec, microlens, + modern-uri, mtl, process, regex-tdfa, + req, safe, shakespeare, split, tabular, tasty, temporary, - terminfo, text, text-ansi, time, @@ -331316,10 +329774,8 @@ self: { }: mkDerivation { pname = "hledger"; - version = "1.40"; - sha256 = "189lbp9dmg9kxik5zg7nk6jm8h5p8hpq1z01zsj8c29x8b8md7b7"; - revision = "1"; - editedCabalFile = "00vyxy5airrh388m1zvb3sq0jdqpfdzqiq3zdin8zq0r1jdyhzxc"; + version = "1.43.2"; + sha256 = "043gw3amc29fbjxlzyc4m97bw5i5462352lmk61adlxcd12l47i1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -331339,20 +329795,23 @@ self: { hashable haskeline hledger-lib + http-client + http-types lucid math-functions megaparsec microlens + modern-uri mtl process regex-tdfa + req safe shakespeare split tabular tasty temporary - terminfo text text-ansi time @@ -331378,19 +329837,21 @@ self: { githash haskeline hledger-lib + http-client + http-types math-functions megaparsec microlens mtl process regex-tdfa + req safe shakespeare split tabular tasty temporary - terminfo text text-ansi time @@ -331416,19 +329877,21 @@ self: { githash haskeline hledger-lib + http-client + http-types math-functions megaparsec microlens mtl process regex-tdfa + req safe shakespeare split tabular tasty temporary - terminfo text text-ansi time @@ -331440,7 +329903,7 @@ self: { wizards ]; description = "Command-line interface for the hledger accounting system"; - license = lib.licenses.gpl3Only; + license = lib.licenses.gpl3Plus; mainProgram = "hledger"; maintainers = [ lib.maintainers.maralorn @@ -331449,7 +329912,7 @@ self: { } ) { }; - hledger_1_43_2 = callPackage ( + hledger_1_50 = callPackage ( { mkDerivation, aeson, @@ -331497,8 +329960,8 @@ self: { }: mkDerivation { pname = "hledger"; - version = "1.43.2"; - sha256 = "043gw3amc29fbjxlzyc4m97bw5i5462352lmk61adlxcd12l47i1"; + version = "1.50"; + sha256 = "140yg0nds681dk2g4lyldvjlwcb3v8lg2dd82vi7zp5i9af2v9k8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -331863,8 +330326,8 @@ self: { pname = "hledger-iadd"; version = "1.3.21"; sha256 = "00x0vbfp08kqs1nbknndk9h56hcidf6xnrk0ldz45dvjrmgcv3w2"; - revision = "9"; - editedCabalFile = "0fhkk8gsqiv7mxjk8jlz43i2h0cqampr8w5f1lxcnfz9g4k0bv5l"; + revision = "10"; + editedCabalFile = "0138k01cba9xd3sab6kjh59rfxn96w2h21gjl579xqq76yvbibni"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -331944,8 +330407,8 @@ self: { pname = "hledger-interest"; version = "1.6.7"; sha256 = "1jirygghw82zi8z160j45qzfcj1l89vckqr7hrv78h3f3pim6np4"; - revision = "2"; - editedCabalFile = "1inrlrz2rgk99sspm33r7rnfiycx8pllsh95ais9x05fp88cxhcf"; + revision = "3"; + editedCabalFile = "0f7aqbiy8s4137wa37awgjx5xmlj9x18zc10292hgsbyrzvnisdq"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -332001,168 +330464,6 @@ self: { ) { }; hledger-lib = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-terminal, - array, - base, - base-compat, - blaze-markup, - bytestring, - call-stack, - cassava, - cassava-megaparsec, - cmdargs, - colour, - containers, - data-default, - Decimal, - deepseq, - directory, - doclayout, - doctest, - extra, - file-embed, - filepath, - Glob, - hashtables, - lucid, - megaparsec, - microlens, - microlens-th, - mtl, - pager, - parser-combinators, - pretty-simple, - regex-tdfa, - safe, - tabular, - tasty, - tasty-hunit, - template-haskell, - terminal-size, - text, - text-ansi, - time, - timeit, - transformers, - uglymemo, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.40"; - sha256 = "05kap7kgjlh3y7j6ld0jqih21ad7acxd9cv18h0gb7kbwn7qm8vi"; - revision = "1"; - editedCabalFile = "0j7z1ji5az5lmcxd3bqdv9pfkphvvl3wja2vqhhja1jf63bhml57"; - libraryHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - array - base - base-compat - blaze-markup - bytestring - call-stack - cassava - cassava-megaparsec - cmdargs - colour - containers - data-default - Decimal - deepseq - directory - doclayout - extra - file-embed - filepath - Glob - hashtables - lucid - megaparsec - microlens - microlens-th - mtl - pager - parser-combinators - pretty-simple - regex-tdfa - safe - tabular - tasty - tasty-hunit - template-haskell - terminal-size - text - text-ansi - time - timeit - transformers - uglymemo - unordered-containers - utf8-string - ]; - testHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - array - base - base-compat - blaze-markup - bytestring - call-stack - cassava - cassava-megaparsec - cmdargs - colour - containers - data-default - Decimal - deepseq - directory - doclayout - doctest - extra - file-embed - filepath - Glob - hashtables - lucid - megaparsec - microlens - microlens-th - mtl - pager - parser-combinators - pretty-simple - regex-tdfa - safe - tabular - tasty - tasty-hunit - template-haskell - terminal-size - text - text-ansi - time - timeit - transformers - uglymemo - unordered-containers - utf8-string - ]; - description = "A library providing the core functionality of hledger"; - license = lib.licenses.gpl3Only; - } - ) { }; - - hledger-lib_1_43_2 = callPackage ( { mkDerivation, aeson, @@ -332319,6 +330620,169 @@ self: { ]; description = "A library providing the core functionality of hledger"; license = lib.licenses.gpl3Plus; + } + ) { }; + + hledger-lib_1_50 = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + ansi-terminal, + array, + base, + blaze-html, + blaze-markup, + bytestring, + call-stack, + cassava, + cassava-megaparsec, + cmdargs, + colour, + containers, + data-default, + Decimal, + deepseq, + directory, + doclayout, + doctest, + encoding, + extra, + file-embed, + filepath, + Glob, + hashtables, + lucid, + megaparsec, + microlens, + microlens-th, + mtl, + parser-combinators, + pretty-simple, + process, + regex-tdfa, + safe, + tabular, + tasty, + tasty-hunit, + template-haskell, + terminal-size, + text, + these, + time, + timeit, + transformers, + uglymemo, + unordered-containers, + utf8-string, + }: + mkDerivation { + pname = "hledger-lib"; + version = "1.50"; + sha256 = "1fk579j56wbxxk3bz4m9hwfkdb02mz374y72bplbrf3y40cd2a48"; + libraryHaskellDepends = [ + aeson + aeson-pretty + ansi-terminal + array + base + blaze-html + blaze-markup + bytestring + call-stack + cassava + cassava-megaparsec + cmdargs + colour + containers + data-default + Decimal + deepseq + directory + doclayout + encoding + extra + file-embed + filepath + Glob + hashtables + lucid + megaparsec + microlens + microlens-th + mtl + parser-combinators + pretty-simple + process + regex-tdfa + safe + tabular + tasty + tasty-hunit + template-haskell + terminal-size + text + these + time + timeit + transformers + uglymemo + unordered-containers + utf8-string + ]; + testHaskellDepends = [ + aeson + aeson-pretty + ansi-terminal + array + base + blaze-html + blaze-markup + bytestring + call-stack + cassava + cassava-megaparsec + cmdargs + colour + containers + data-default + Decimal + deepseq + directory + doclayout + doctest + encoding + extra + file-embed + filepath + Glob + hashtables + lucid + megaparsec + microlens + microlens-th + mtl + parser-combinators + pretty-simple + process + regex-tdfa + safe + tabular + tasty + tasty-hunit + template-haskell + terminal-size + text + these + time + timeit + transformers + uglymemo + unordered-containers + utf8-string + ]; + description = "A library providing the core functionality of hledger"; + license = lib.licenses.gpl3Plus; hydraPlatforms = lib.platforms.none; } ) { }; @@ -332481,10 +330945,8 @@ self: { }: mkDerivation { pname = "hledger-ui"; - version = "1.40"; - sha256 = "0rvijrnmkc21nllqcbkn6fh51ifp1n1p8qgmckfp5pngqg40vvnz"; - revision = "1"; - editedCabalFile = "1sj141sr23j1xajy6c9r9aqxy8gr98c9qcgx5myn78nh3420kxsm"; + version = "1.43.2"; + sha256 = "1xz5ndkg5mci689n82dnmwhhr8a08qw12czsf4b82ha7zlmbkmnv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -332521,13 +330983,13 @@ self: { ]; executableHaskellDepends = [ base ]; description = "Terminal interface for the hledger accounting system"; - license = lib.licenses.gpl3Only; + license = lib.licenses.gpl3Plus; mainProgram = "hledger-ui"; maintainers = [ lib.maintainers.maralorn ]; } ) { }; - hledger-ui_1_43_2 = callPackage ( + hledger-ui_1_50 = callPackage ( { mkDerivation, ansi-terminal, @@ -332563,8 +331025,8 @@ self: { }: mkDerivation { pname = "hledger-ui"; - version = "1.43.2"; - sha256 = "1xz5ndkg5mci689n82dnmwhhr8a08qw12czsf4b82ha7zlmbkmnv"; + version = "1.50"; + sha256 = "15kn2yy44jpn0ag6248z0cmp3rkbdcxbbr02am41jlg6igv9kqkq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -332663,6 +331125,7 @@ self: { Decimal, directory, extra, + file-embed, filepath, githash, hjsmin, @@ -332698,10 +331161,8 @@ self: { }: mkDerivation { pname = "hledger-web"; - version = "1.40"; - sha256 = "1dsvsgdan7f8zc0z9x4zri2q6ccajvqpjpv18zj488ihknshiwgq"; - revision = "1"; - editedCabalFile = "18aginmx6wlqk0zpf8jvisgl4hrlqd1g83wgfnqj3lrj66p0x4bd"; + version = "1.43.2"; + sha256 = "0d4sv9k3m7s0764lbq2l8w9p2p47cby177l0avl5w3fa9y8d0gyd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -332721,6 +331182,7 @@ self: { Decimal directory extra + file-embed filepath githash hjsmin @@ -332757,13 +331219,13 @@ self: { executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "Web user interface for the hledger accounting system"; - license = lib.licenses.gpl3Only; + license = lib.licenses.gpl3Plus; mainProgram = "hledger-web"; maintainers = [ lib.maintainers.maralorn ]; } ) { }; - hledger-web_1_43_2 = callPackage ( + hledger-web_1_50 = callPackage ( { mkDerivation, aeson, @@ -332818,8 +331280,8 @@ self: { }: mkDerivation { pname = "hledger-web"; - version = "1.43.2"; - sha256 = "0d4sv9k3m7s0764lbq2l8w9p2p47cby177l0avl5w3fa9y8d0gyd"; + version = "1.50"; + sha256 = "04zmvlyij95v31v6p9124jicpgv7mbz2141j60ci18ci17r48fd8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -333138,79 +331600,6 @@ self: { ) { }; hlint = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - cmdargs, - containers, - cpphs, - data-default, - deriving-aeson, - directory, - extra, - file-embed, - filepath, - filepattern, - ghc-lib-parser, - ghc-lib-parser-ex, - hscolour, - process, - refact, - text, - transformers, - uniplate, - unordered-containers, - utf8-string, - vector, - yaml, - }: - mkDerivation { - pname = "hlint"; - version = "3.8"; - sha256 = "0x5xkd8n9idmg334kj1kky6bcl4wl8ks4i87j3r8zwp75fv3dwm8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - cmdargs - containers - cpphs - data-default - deriving-aeson - directory - extra - file-embed - filepath - filepattern - ghc-lib-parser - ghc-lib-parser-ex - hscolour - process - refact - text - transformers - uniplate - unordered-containers - utf8-string - vector - yaml - ]; - executableHaskellDepends = [ base ]; - description = "Source code suggestions"; - license = lib.licenses.bsd3; - mainProgram = "hlint"; - maintainers = [ lib.maintainers.maralorn ]; - } - ) { }; - - hlint_3_10 = callPackage ( { mkDerivation, aeson, @@ -333278,7 +331667,6 @@ self: { executableHaskellDepends = [ base ]; description = "Source code suggestions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hlint"; maintainers = [ lib.maintainers.maralorn ]; } @@ -333465,6 +331853,8 @@ self: { pname = "hlrdb"; version = "0.5.0.0"; sha256 = "19m4k0w8gd3p5khjy9pqjdy0mgmgibg66dxc1vw187yppl9d82an"; + revision = "1"; + editedCabalFile = "0h50jakhd57njpna5pn83rin0bcybkwby6k1i286kzqfympw6b3r"; libraryHaskellDepends = [ base base64 @@ -333502,8 +331892,8 @@ self: { pname = "hlrdb-core"; version = "0.2.0.0"; sha256 = "0hkjll4v4kxc133b19kk9k4dkrbag6qdw24gwrhikrxlk666jsbl"; - revision = "5"; - editedCabalFile = "1wd5fx9q9h8ypc1rzpgpdcdvrvmd7v9rricy0k856jl1r7blsm93"; + revision = "6"; + editedCabalFile = "0lmlxc668ndc9diyr9qrpqkxqwc8nga83kp56h8pypxq5n2xjj9w"; libraryHaskellDepends = [ base bytestring @@ -333617,8 +332007,6 @@ self: { sha256 = "11hnkbpg13zvnq69svm46zm5k55yshgz97kjjx1g3jcb9ah1brm1"; description = "Integration with the Brittany code formatter"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -333862,8 +332250,6 @@ self: { sha256 = "0jib2y256fb5b8wgsi9rjsdb3ywwpcbcnbbxmg6q3gwnglrdb1lx"; description = "Class/instance management plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334240,8 +332626,6 @@ self: { sha256 = "1wyk88lynchhzriqj7m9ph0s2c2ivkqg1nmhgb1knkvp8ag27iik"; description = "Integration with the Floskell code formatter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334310,8 +332694,6 @@ self: { sha256 = "0aa602m024s3ch23np2iixmkwv6474va20bjdgiwdgc8vahg4grg"; description = "Convert to GADT syntax plugin"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334401,8 +332783,6 @@ self: { sha256 = "0wp8hk5hwl43z5mjcas332z92y3zv9g8wrc5zhzli8pa37ab6r8x"; description = "Haddock comments plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334414,8 +332794,6 @@ self: { sha256 = "0ix89wp8nq3iywh6d3w8j7lnfm2g3l9gks8sxkww0z0mfhfxvywc"; description = "Hlint integration plugin with Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334813,8 +333191,6 @@ self: { sha256 = "0lqy7c3vqn832gs9z86n4clsqb6g73rhnlrvn3sg3h8hkxasfzjf"; description = "Exactprint refactorings for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334875,8 +333251,6 @@ self: { sha256 = "15gjh7r9cc43yz1zp52q349fag4nxv25vhzn5pdma4ch366xyr4g"; description = "Rename plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -334888,8 +333262,6 @@ self: { sha256 = "11cl4q79jxl73s62ccdarp1570k95picgn3q8lgnqznc6ywdv3zh"; description = "Retrie integration plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -335042,72 +333414,17 @@ self: { sha256 = "00fx8rxdnmam0672vb0az2lw5inqyc22cjfrh8wiwx36i28r8zqj"; description = "HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; hls-stan-plugin = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - deepseq, - directory, - filepath, - ghc, - ghcide, - hashable, - hie-compat, - hls-plugin-api, - hls-test-utils, - lens, - lsp-types, - stan, - text, - transformers, - trial, - unordered-containers, - }: + { mkDerivation }: mkDerivation { pname = "hls-stan-plugin"; version = "2.6.0.0"; sha256 = "1zhw2ysf5ccsrz1vahff6hr683b581v4py2pyf9xfnjfay5gl0id"; - libraryHaskellDepends = [ - base - containers - data-default - deepseq - directory - ghc - ghcide - hashable - hie-compat - hls-plugin-api - lsp-types - stan - text - transformers - trial - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - containers - filepath - hls-plugin-api - hls-test-utils - lens - lsp-types - text - ]; description = "Stan integration plugin with Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -335119,8 +333436,6 @@ self: { sha256 = "171068mmb7sdk14s5v794jc0n0mrrq8fkzp2z2wlrmk38mqi3773"; description = "Integration with the Stylish Haskell code formatter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -335132,8 +333447,6 @@ self: { sha256 = "05rgapkpr3giln245aswlcgwqpfglifsjq1n8sgwgi04bn2w6vng"; description = "Wingman plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -336471,8 +334784,8 @@ self: { }: mkDerivation { pname = "hmp3-ng"; - version = "2.16.0"; - sha256 = "0xhvq6jfj6argpqvbqjy784cpb75lgkmlxmamngwq44knz58pp2q"; + version = "2.16.2"; + sha256 = "0n46rjl52vcwmliqaisi6jw9b4phwdcy5b60sq71k76zfhhffybn"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -336972,7 +335285,7 @@ self: { } ) { }; - hnix-store-core_0_6_1_0 = callPackage ( + hnix-store-core = callPackage ( { mkDerivation, algebraic-graphs, @@ -337066,7 +335379,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Core effects for interacting with the Nix store"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Anton-Latukha lib.maintainers.sorki @@ -337074,7 +335386,7 @@ self: { } ) { }; - hnix-store-core = callPackage ( + hnix-store-core_0_8_0_0 = callPackage ( { mkDerivation, attoparsec, @@ -337149,6 +335461,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Core types used for interacting with the Nix store"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Anton-Latukha lib.maintainers.sorki @@ -337203,6 +335516,8 @@ self: { testHaskellDepends = [ base ]; description = "Nix store database support"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -337873,64 +336188,6 @@ self: { ) { }; hoauth2 = callPackage ( - { - mkDerivation, - aeson, - base, - base64, - binary, - bytestring, - containers, - crypton, - data-default, - exceptions, - hspec, - hspec-discover, - http-conduit, - http-types, - memory, - microlens, - text, - transformers, - uri-bytestring, - uri-bytestring-aeson, - }: - mkDerivation { - pname = "hoauth2"; - version = "2.14.0"; - sha256 = "1gbdb01iinhcfc91iw2ld4lpvmpcvy6d9r1zl5a58jg16z5v6j8k"; - libraryHaskellDepends = [ - aeson - base - base64 - binary - bytestring - containers - crypton - data-default - exceptions - http-conduit - http-types - memory - microlens - text - transformers - uri-bytestring - uri-bytestring-aeson - ]; - testHaskellDepends = [ - aeson - base - hspec - uri-bytestring - ]; - testToolDepends = [ hspec-discover ]; - description = "Haskell OAuth2 authentication client"; - license = lib.licenses.mit; - } - ) { }; - - hoauth2_2_14_3 = callPackage ( { mkDerivation, aeson, @@ -337988,7 +336245,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell OAuth2 authentication client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -338106,6 +336362,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "OAuth2 Identity Providers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -339312,6 +337570,78 @@ self: { } ) { }; + home-assistant-client = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + deriving-aeson, + exceptions, + http-client, + http-client-tls, + http-types, + optparse-applicative, + servant, + servant-client, + text, + }: + mkDerivation { + pname = "home-assistant-client"; + version = "0.1.0.0"; + sha256 = "0sk233yzfrkgqhshxkrcx8wqg0yvcpqwl5ai7x5hk2fv1wlm8hs4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + bytestring + containers + deriving-aeson + exceptions + http-client + http-client-tls + http-types + servant + servant-client + text + ]; + executableHaskellDepends = [ + aeson + base + bytestring + containers + deriving-aeson + exceptions + http-client + http-client-tls + http-types + optparse-applicative + servant + servant-client + text + ]; + testHaskellDepends = [ + aeson + base + bytestring + containers + deriving-aeson + exceptions + http-client + http-client-tls + http-types + servant + servant-client + text + ]; + description = "Client library for the Home Assistant API"; + license = lib.licenses.bsd3; + mainProgram = "ha-client"; + } + ) { }; + homeomorphic = callPackage ( { mkDerivation, @@ -339440,6 +337770,7 @@ self: { ]; description = "Homotuple, all whose elements are the same type"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -339527,24 +337858,24 @@ self: { { mkDerivation, base, - hourglass, split, + time-hourglass, }: mkDerivation { pname = "homura-stopwatch"; - version = "0.2.0"; - sha256 = "1vxdgxqk7zrvymmvk597s5gqkn3c93q548ssm3jdvcrg4csbk551"; + version = "0.2.0.1"; + sha256 = "0vz20paj09g6ly63wd166qjmnz1x0whd05qhwmk78jv4nb0v6pbg"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base - hourglass split + time-hourglass ]; executableHaskellDepends = [ base - hourglass split + time-hourglass ]; license = lib.licenses.mit; mainProgram = "homura-stopwatch"; @@ -341352,6 +339683,85 @@ self: { } ) { }; + horde-ad = callPackage ( + { + mkDerivation, + assert-failure, + atomic-counter, + base, + Boolean, + bytestring, + containers, + criterion, + data-default, + deepseq, + dependent-enummap, + dependent-sum, + enummapset, + ghc-typelits-knownnat, + ghc-typelits-natnormalise, + indexed-traversable, + inspection-testing, + mnist-idx, + orthotope, + ox-arrays, + random, + some, + tasty, + tasty-hunit, + tasty-quickcheck, + vector, + zlib, + }: + mkDerivation { + pname = "horde-ad"; + version = "0.2.0.0"; + sha256 = "0sjhczkfmjv8hcma7sm27b1qzfgzb8kxxh4vd8ybaa6pdn374yjr"; + libraryHaskellDepends = [ + assert-failure + atomic-counter + base + Boolean + bytestring + containers + criterion + data-default + deepseq + dependent-enummap + dependent-sum + enummapset + ghc-typelits-knownnat + ghc-typelits-natnormalise + indexed-traversable + inspection-testing + mnist-idx + orthotope + ox-arrays + random + some + tasty + tasty-hunit + tasty-quickcheck + vector + zlib + ]; + testHaskellDepends = [ + base + tasty + ]; + benchmarkHaskellDepends = [ + base + criterion + deepseq + random + ]; + doHaddock = false; + description = "Higher Order Reverse Derivatives Efficiently - Automatic Differentiation"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + horizon = callPackage ( { mkDerivation, @@ -341634,40 +340044,6 @@ self: { ) { }; hosc = callPackage ( - { - mkDerivation, - base, - binary, - blaze-builder, - bytestring, - data-binary-ieee754, - network, - parsec, - time, - transformers, - }: - mkDerivation { - pname = "hosc"; - version = "0.20"; - sha256 = "17pvv6rgl74ymq7pazxqia19smsga53kkg5h1i1dgfpikrmq7fz9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - blaze-builder - bytestring - data-binary-ieee754 - network - parsec - time - transformers - ]; - description = "Haskell Open Sound Control"; - license = lib.licenses.gpl3Only; - } - ) { }; - - hosc_0_21_1 = callPackage ( { mkDerivation, base, @@ -341698,7 +340074,6 @@ self: { ]; description = "Haskell Open Sound Control"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -342262,6 +340637,8 @@ self: { ]; description = "Non-interactive proof assistant monad for first-order logic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -342476,136 +340853,6 @@ self: { ) { }; hpack = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - Cabal, - containers, - crypton, - deepseq, - directory, - filepath, - Glob, - hspec, - hspec-discover, - http-client, - http-client-tls, - http-types, - HUnit, - infer-license, - interpolate, - mockery, - mtl, - pretty, - QuickCheck, - scientific, - template-haskell, - temporary, - text, - transformers, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "hpack"; - version = "0.37.0"; - sha256 = "0wrc3h93gxs7mkl6pdshyg1slayivglxzw2f0hkmzyyfbqip6x54"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - Cabal - containers - crypton - deepseq - directory - filepath - Glob - http-client - http-client-tls - http-types - infer-license - mtl - pretty - scientific - text - transformers - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - aeson - base - bifunctors - bytestring - Cabal - containers - crypton - deepseq - directory - filepath - Glob - http-client - http-client-tls - http-types - infer-license - mtl - pretty - scientific - text - transformers - unordered-containers - vector - yaml - ]; - testHaskellDepends = [ - aeson - base - bifunctors - bytestring - Cabal - containers - crypton - deepseq - directory - filepath - Glob - hspec - http-client - http-client-tls - http-types - HUnit - infer-license - interpolate - mockery - mtl - pretty - QuickCheck - scientific - template-haskell - temporary - text - transformers - unordered-containers - vector - yaml - ]; - testToolDepends = [ hspec-discover ]; - description = "A modern format for Haskell packages"; - license = lib.licenses.mit; - mainProgram = "hpack"; - } - ) { }; - - hpack_0_38_1 = callPackage ( { mkDerivation, aeson, @@ -342643,8 +340890,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.38.1"; - sha256 = "03qygb51jb4r6sg2bkaz7k80h11wgjr27hgpx6h08xm8axdk2gba"; + version = "0.38.2"; + sha256 = "1g47rf3pglfkjyk3qfz6wvjp0zh16s4qhayqyyzxg91aqq3fqqd6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -342733,7 +340980,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A modern format for Haskell packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hpack"; } ) { }; @@ -343441,8 +341687,8 @@ self: { }: mkDerivation { pname = "hpc-codecov"; - version = "0.6.2.0"; - sha256 = "193aqvdqh730wa362l617vs8dwsan5f631477akkz4mmighf6zv6"; + version = "0.6.3.0"; + sha256 = "0ilra8ijfsk4jrh7v36g9qq22s2rs0w4islg88wcd66m95ff1djq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -343551,65 +341797,6 @@ self: { ) { }; hpc-lcov = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hpc, - optparse-applicative, - path, - path-io, - process, - tasty, - tasty-discover, - tasty-golden, - tasty-hunit, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "hpc-lcov"; - version = "1.1.2"; - sha256 = "1bmm0nq1m6xmi5g5zyycrfi8xlxh6ip2mi32z8bp9pyjrn7jy9pv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - hpc - ]; - executableHaskellDepends = [ - aeson - base - containers - hpc - optparse-applicative - path - path-io - process - text - unordered-containers - yaml - ]; - testHaskellDepends = [ - base - containers - hpc - tasty - tasty-discover - tasty-golden - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Convert HPC output into LCOV format"; - license = lib.licenses.bsd3; - mainProgram = "hpc-lcov"; - } - ) { }; - - hpc-lcov_1_2_0 = callPackage ( { mkDerivation, aeson, @@ -343664,7 +341851,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Convert HPC output into LCOV format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpc-lcov"; } ) { }; @@ -344243,69 +342429,6 @@ self: { ) { }; hpqtypes-extras = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - containers, - crypton, - deepseq, - exceptions, - extra, - hpqtypes, - log-base, - memory, - mtl, - tasty, - tasty-bench, - tasty-hunit, - text, - text-show, - uuid-types, - }: - mkDerivation { - pname = "hpqtypes-extras"; - version = "1.16.4.4"; - sha256 = "1qi17ssciafb341ihhf1nkk3xb8vh6h3f0ymx3y409w8ckfm3kg5"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - containers - crypton - exceptions - extra - hpqtypes - log-base - memory - mtl - text - text-show - ]; - testHaskellDepends = [ - base - containers - exceptions - hpqtypes - log-base - tasty - tasty-hunit - text - uuid-types - ]; - benchmarkHaskellDepends = [ - base - deepseq - tasty-bench - ]; - description = "Extra utilities for hpqtypes library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - hpqtypes-extras_1_18_0_0 = callPackage ( { mkDerivation, base, @@ -345029,25 +343152,6 @@ self: { ) { }; hquantlib-time = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "hquantlib-time"; - version = "0.1.1"; - sha256 = "06ixjf69aadb9lpcaqz4nsaznbzazp9ym02kkkxrg382zya47h68"; - libraryHaskellDepends = [ - base - time - ]; - description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; - license = "LGPL"; - } - ) { }; - - hquantlib-time_0_1_2 = callPackage ( { mkDerivation, base, @@ -345063,7 +343167,6 @@ self: { ]; description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; license = lib.licenses.lgpl3Plus; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -345660,8 +343763,8 @@ self: { }: mkDerivation { pname = "hs-asapo"; - version = "0.9.0"; - sha256 = "0629yz0zpq6zyqxxczmpv246nz4mv2vz1nv46w72cqz4b5mbanmf"; + version = "0.9.1"; + sha256 = "0rmmmxfpx2s69jca5rd7jnxb075qjx6b6s97vnsd1gvgcjwal2li"; setupHaskellDepends = [ base cabal-doctest @@ -346016,7 +344119,9 @@ self: { ]; description = "Conllu validating parser and utils"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-conllu"; + broken = true; } ) { }; @@ -346730,6 +344835,35 @@ self: { } ) { }; + hs-onnxruntime-capi = callPackage ( + { + mkDerivation, + base, + base-compat-constptr, + bytestring, + libonnxruntime, + vector, + }: + mkDerivation { + pname = "hs-onnxruntime-capi"; + version = "0.1.0.0"; + sha256 = "1sij7bpw82xg5djk0p96jlahfmdcp4spwwa1nsman8bn4i9nzkli"; + revision = "4"; + editedCabalFile = "0872p0bcx2bv1zjv6jkhw5nvq1wwn64g73b4f4c9hj0wwz7m4jxn"; + libraryHaskellDepends = [ + base + base-compat-constptr + bytestring + vector + ]; + libraryPkgconfigDepends = [ libonnxruntime ]; + description = "Low-level bindings for ONNX Runtime"; + license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { libonnxruntime = null; }; + hs-openmoji-data = callPackage ( { mkDerivation, @@ -348353,6 +346487,65 @@ self: { } ) { }; + hs-tree-sitter = callPackage ( + { + mkDerivation, + base, + base-compat-constptr, + bytestring, + hs-tree-sitter-capi, + }: + mkDerivation { + pname = "hs-tree-sitter"; + version = "13.0.14.0"; + sha256 = "0mqxln8ci9lp1i8xpn4dp1dix0ksvqkn9fccggrgnxrwgzkydd97"; + revision = "1"; + editedCabalFile = "14ix57r4lvbx9xgvisnvvsxxdwm5fx8crknimpp6vp0pl2p5ncih"; + libraryHaskellDepends = [ + base + base-compat-constptr + bytestring + hs-tree-sitter-capi + ]; + doHaddock = false; + description = "High-level bindings for tree-sitter"; + license = lib.licenses.agpl3Only; + } + ) { }; + + hs-tree-sitter-capi = callPackage ( + { + mkDerivation, + base, + base-compat-constptr, + tasty, + tasty-hunit, + tree-sitter-while, + }: + mkDerivation { + pname = "hs-tree-sitter-capi"; + version = "13.0.14.0"; + sha256 = "0ncw6y1gcqqf4ig3calb0k6rf4rflp1a70x2231lhzbm0jn0r3pm"; + revision = "1"; + editedCabalFile = "096224gn8gi1k1l5yc0hx7hjsw772n7gjgqasnd3jbfrgw50dsfq"; + libraryHaskellDepends = [ + base + base-compat-constptr + ]; + testHaskellDepends = [ + base + base-compat-constptr + tasty + tasty-hunit + tree-sitter-while + ]; + description = "Low-level bindings for tree-sitter"; + license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { tree-sitter-while = null; }; + hs-twitter = callPackage ( { mkDerivation, @@ -349502,60 +347695,6 @@ self: { ) { }; hsc3 = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - data-ordlist, - directory, - filepath, - hosc, - mtl, - murmur-hash, - network, - process, - random, - safe, - split, - transformers, - vector, - }: - mkDerivation { - pname = "hsc3"; - version = "0.20"; - sha256 = "1pi2zzcz6xrj5w0ql5g7z6qf2vbchixc871if2yqna8wndakhcc8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - data-binary-ieee754 - data-ordlist - directory - filepath - hosc - mtl - murmur-hash - network - process - random - safe - split - transformers - vector - ]; - description = "Haskell SuperCollider"; - license = lib.licenses.gpl3Only; - } - ) { }; - - hsc3_0_21 = callPackage ( { mkDerivation, array, @@ -349606,7 +347745,6 @@ self: { ]; description = "Haskell SuperCollider"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -351475,8 +349613,8 @@ self: { }: mkDerivation { pname = "hsec-core"; - version = "0.1.0.0"; - sha256 = "0yf6vdv1v3r52i92pcjh7jpnxwxlax9vpchy0f2ixs0ddgsk6v83"; + version = "0.2.0.2"; + sha256 = "0aj2mv8b59vqp220b5dm1jx5xac9rhv7axj7dbmmfxgcqks3rvfz"; libraryHaskellDepends = [ base Cabal-syntax @@ -351496,7 +349634,6 @@ self: { ]; description = "Core package representing Haskell advisories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -351507,14 +349644,14 @@ self: { base, bytestring, directory, + either, extra, - feed, filepath, hsec-core, http-client, lens, optparse-applicative, - process, + tar, tasty, tasty-hunit, temporary, @@ -351522,29 +349659,32 @@ self: { time, transformers, wreq, + zlib, }: mkDerivation { pname = "hsec-sync"; - version = "0.1.0.0"; - sha256 = "0svk3rvsf6svhy2vqr5bpxxgngjmxb9zxwj9ljx4n56yq2gvqdp9"; - revision = "1"; - editedCabalFile = "1xk4f5yh720d16gxark20cbdywg9jrlrhd20x153a74p2gka44rm"; + version = "0.2.0.2"; + sha256 = "0dcyas96pikg3zp671wcizm1n9amr6rxpxwh2pmgj1ivpa9v714j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ + aeson base + bytestring directory + either extra - feed filepath hsec-core http-client lens - process + tar + temporary text time transformers wreq + zlib ]; executableHaskellDepends = [ aeson @@ -351558,7 +349698,6 @@ self: { base directory filepath - process tasty tasty-hunit temporary @@ -351567,9 +349706,7 @@ self: { ]; description = "Synchronize with the Haskell security advisory database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsec-sync"; - broken = true; } ) { }; @@ -351578,67 +349715,95 @@ self: { mkDerivation, aeson, aeson-pretty, + atom-conduit, base, bytestring, Cabal-syntax, commonmark, commonmark-pandoc, + conduit, + conduit-extra, containers, cvss, + data-default, directory, extra, - feed, + file-embed, filepath, + hedgehog, hsec-core, lucid, mtl, optparse-applicative, osv, + pandoc, pandoc-types, parsec, pathwalk, + pretty, pretty-simple, + prettyprinter, process, + refined, + resourcet, safe, tasty, tasty-golden, + tasty-hedgehog, tasty-hunit, + template-haskell, text, time, toml-parser, + transformers, + uri-bytestring, validation-selective, + xml-conduit, }: mkDerivation { pname = "hsec-tools"; - version = "0.1.0.0"; - sha256 = "1q48ygbw463jm77cv3sznbncr496rqzqrablj02s1vdwihkv3h86"; + version = "0.2.0.2"; + sha256 = "02vnhw6dlp5iq7pznnljlw6ilbvf4zhz6hn96m4y6y5naxafv1iy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson + atom-conduit base + bytestring Cabal-syntax commonmark commonmark-pandoc + conduit + conduit-extra containers cvss + data-default directory extra - feed + file-embed filepath hsec-core lucid mtl osv + pandoc pandoc-types parsec pathwalk + pretty + prettyprinter process + refined + resourcet safe + template-haskell text time toml-parser + uri-bytestring validation-selective + xml-conduit ]; executableHaskellDepends = [ aeson @@ -351649,21 +349814,28 @@ self: { hsec-core optparse-applicative text + transformers validation-selective ]; testHaskellDepends = [ aeson-pretty base Cabal-syntax + containers cvss directory + hedgehog hsec-core + osv pretty-simple + prettyprinter tasty tasty-golden + tasty-hedgehog tasty-hunit text time + toml-parser ]; description = "Tools for working with the Haskell security advisory database"; license = lib.licenses.bsd3; @@ -351766,7 +349938,6 @@ self: { ]; description = "sendxmpp clone, sending XMPP messages via CLI"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hsendxmpp"; } ) { }; @@ -352071,8 +350242,8 @@ self: { }: mkDerivation { pname = "hsftp"; - version = "1.4.0"; - sha256 = "01fzgrk9w6xy7wxkpg2znw5g2wkqrcz6vj1f0pdffvg0bslfn4g0"; + version = "1.5.0"; + sha256 = "0b29yiqvy92akgq4alva4wkynl2b8b26cb2v86ixgw62af6p8ygr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -352636,6 +350807,54 @@ self: { } ) { }; + hsinstall_2_9 = callPackage ( + { + mkDerivation, + base, + Cabal, + directory, + exceptions, + filepath, + formatting, + heredoc, + optparse-applicative, + prettyprinter, + process, + safe-exceptions, + transformers, + }: + mkDerivation { + pname = "hsinstall"; + version = "2.9"; + sha256 = "0lnby8681spli3qr43mybhcj6l2klfphfzja2gnapqwcm7d894r1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + directory + filepath + ]; + executableHaskellDepends = [ + base + Cabal + directory + exceptions + filepath + formatting + heredoc + optparse-applicative + prettyprinter + process + safe-exceptions + transformers + ]; + description = "Install Haskell software"; + license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + mainProgram = "hsinstall"; + } + ) { }; + hskeleton = callPackage ( { mkDerivation, @@ -352755,14 +350974,13 @@ self: { HUnit, network, network-bsd, - old-locale, time, unix, }: mkDerivation { pname = "hslogger"; - version = "1.3.1.2"; - sha256 = "0fa52jpigkvbmb006rzvairw1syh71wnb0lrfjb46ik3dwigxdh4"; + version = "1.3.2.0"; + sha256 = "0hz6v02p89ihr0130hzya78h54lf6kw3vgf7idnxpqwy8v9a49zb"; libraryHaskellDepends = [ base bytestring @@ -352770,7 +350988,6 @@ self: { deepseq network network-bsd - old-locale time unix ]; @@ -353490,7 +351707,7 @@ self: { } ) { }; - hslua-module-system_1_2_0 = callPackage ( + hslua-module-system_1_2_3 = callPackage ( { mkDerivation, base, @@ -353498,6 +351715,7 @@ self: { directory, exceptions, hslua-core, + hslua-list, hslua-marshalling, hslua-packaging, process, @@ -353510,14 +351728,15 @@ self: { }: mkDerivation { pname = "hslua-module-system"; - version = "1.2.0"; - sha256 = "0wbbz0h33wrhdpxz40gqgijkra19jg0zyy4snmj75qxcq2cc9dw2"; + version = "1.2.3"; + sha256 = "125d50q90l9w35aqgwgbv2bdmj65zlvn7pxlwrg1nr2j4bnfmyjk"; libraryHaskellDepends = [ base bytestring directory exceptions hslua-core + hslua-list hslua-marshalling hslua-packaging process @@ -354631,8 +352850,8 @@ self: { }: mkDerivation { pname = "hsparql"; - version = "0.3.9"; - sha256 = "0zdk4d5fsd4fbmw76bwq18y71r7zf0ky116a056f586qn9z7p9gq"; + version = "0.4.0"; + sha256 = "1j1im8y00g23gqhq4jnnq0jm9l44d8bn0zwrvswnyxr70f67hrxg"; libraryHaskellDepends = [ base bytestring @@ -356813,6 +355032,8 @@ self: { ]; description = "Multivariate polynomials and fractions of multivariate polynomials"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -357467,8 +355688,6 @@ self: { ]; description = "RELP (Reliable Event Logging Protocol) server implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -359924,37 +358143,6 @@ self: { ) { }; htree = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - QuickCheck, - quickcheck-instances, - template-haskell, - th-compat, - }: - mkDerivation { - pname = "htree"; - version = "0.1.1.0"; - sha256 = "1m95win8gy5h2343pa2zjij9v092az0fdq3xc3qsfycs6f1w06id"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - hspec - QuickCheck - quickcheck-instances - template-haskell - th-compat - ]; - description = "a library to build and work with heterogeneous, type level indexed rose trees"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.mangoiv ]; - } - ) { }; - - htree_0_2_0_0 = callPackage ( { mkDerivation, base, @@ -359981,7 +358169,6 @@ self: { ]; description = "a library to build and work with heterogeneous, type level indexed rose trees"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.mangoiv ]; } ) { }; @@ -361698,8 +359885,8 @@ self: { }: mkDerivation { pname = "http-grammar"; - version = "0.1.0.0"; - sha256 = "1x073nw7fagbj16x42n7xgyr5liv69l0g4ig1f4adzdc9p997l27"; + version = "0.1.0.4"; + sha256 = "0b2cjn228w06v4ziv04178hy1a0z4gnbd1c8h2i0wq1mgihzfnan"; libraryHaskellDepends = [ attoparsec base @@ -361707,8 +359894,6 @@ self: { ]; description = "Attoparsec-based parsers for the RFC-2616 HTTP grammar rules"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -361785,21 +359970,16 @@ self: { network, network-uri, openssl-streams, - snap, snap-core, snap-server, - system-filepath, text, - transformers, unordered-containers, xor, }: mkDerivation { pname = "http-io-streams"; - version = "0.1.7.0"; - sha256 = "14jn78jby18h0jnmpx523nq3wnpr4l65mn746rzmq6z49p513wmg"; - revision = "1"; - editedCabalFile = "0fmpilsyw805v0s6m0cgx4j47f88difadqwmz5xl7akqzbv66ap5"; + version = "0.1.7.2"; + sha256 = "12dykdafss0863401pjkh10cnf7kc33bqabsf34nbwj8hf2w60vx"; libraryHaskellDepends = [ attoparsec base @@ -361819,7 +359999,6 @@ self: { network-uri openssl-streams text - transformers xor ]; testHaskellDepends = [ @@ -361844,12 +360023,9 @@ self: { network network-uri openssl-streams - snap snap-core snap-server - system-filepath text - transformers unordered-containers ]; description = "HTTP and WebSocket client based on io-streams"; @@ -362543,8 +360719,8 @@ self: { }: mkDerivation { pname = "http-reverse-proxy"; - version = "0.6.1.0"; - sha256 = "0ijdcdd7025i4752mcqs6pd2wklv0df407v1yndl67k15phksp6c"; + version = "0.6.2.0"; + sha256 = "144jp4yz4i5an04yspzw0pnsxcqrfbhb5jq3bsfb8ji4zbhjzy8m"; libraryHaskellDepends = [ base blaze-builder @@ -363341,8 +361517,8 @@ self: { }: mkDerivation { pname = "http2-tls"; - version = "0.4.8"; - sha256 = "1sy2q6zyc68fjk03fc9pnd6sshjwr6djbyw45gningpfcrw41qv6"; + version = "0.4.9"; + sha256 = "180l7fqddgrxjvqikrg1q2s5p3s2h4a4fsf23l3bn9fvirnswf4d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -363401,8 +361577,8 @@ self: { }: mkDerivation { pname = "http3"; - version = "0.1.0"; - sha256 = "1ygm1a6ph24a84vsdqb7l2bn1ylzd3dl0bc6blvpqq6yhhm34cpa"; + version = "0.1.1"; + sha256 = "0bzi8w3nz6yw5ab30674p062nvps55q9f0vpxdgqgnb22jim8jyj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -364081,6 +362257,56 @@ self: { } ) { }; + huihua = callPackage ( + { + mkDerivation, + adjunctions, + base, + bytestring, + containers, + deepseq, + distributive, + doctest-parallel, + flatparse, + harpie, + markup-parse, + prettyprinter, + random, + string-interpolate, + text, + these, + vector, + }: + mkDerivation { + pname = "huihua"; + version = "0.1.0.1"; + sha256 = "0jmwqd2hnd2cpv2vhykjyyba6fz15734m1fxxqz32mqmhh6zj7zw"; + libraryHaskellDepends = [ + adjunctions + base + bytestring + containers + deepseq + distributive + flatparse + harpie + markup-parse + prettyprinter + random + string-interpolate + text + these + vector + ]; + testHaskellDepends = [ + base + doctest-parallel + ]; + description = "uiua port"; + license = lib.licenses.bsd3; + } + ) { }; + hulk = callPackage ( { mkDerivation, @@ -365679,8 +363905,8 @@ self: { pname = "hw-balancedparens"; version = "0.4.1.3"; sha256 = "0cp8nzm99ap0j8qzsn15rxcvxa3k6bywqx0y5ccflpvqysd88wfc"; - revision = "1"; - editedCabalFile = "1q8kckqqnw434vaq0mx0q3ayhrzc30v8a7m758747yis8vqxrvjb"; + revision = "3"; + editedCabalFile = "1qkci3bwjd3c1kn3l9mgxvzqg0q89xmw6x7rlp1kh1qpv9vwg9d7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -365805,6 +364031,7 @@ self: { ]; description = "Bit manipulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -366481,6 +364708,8 @@ self: { testToolDepends = [ doctest-discover ]; description = "Extra hedgehog functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -366563,6 +364792,7 @@ self: { ]; description = "Additional facilities for Integers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -366634,6 +364864,7 @@ self: { doHaddock = false; description = "Library for manipulating IP addresses and CIDR blocks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-ip"; } ) { }; @@ -366681,8 +364912,8 @@ self: { }: mkDerivation { pname = "hw-json"; - version = "1.3.3.0"; - sha256 = "1kqwz2wh0bqq91amqwljilb6grmq943z874b1avq6z1mxvxmaf9a"; + version = "1.3.3.1"; + sha256 = "06arzyxh3xrn3avd1s7fndqgg1pd99yf6syr5ha0icmwhsy9byjz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -366914,10 +365145,8 @@ self: { }: mkDerivation { pname = "hw-json-simd"; - version = "0.1.1.2"; - sha256 = "03g2gwmkp6v7b0vf4x8bh4qk91ghr0av5x3c9paj3rp3igycccd6"; - revision = "1"; - editedCabalFile = "1s06mj022lggx28hqdsd181xhbbxadqmbzrafxh4nf5q212dwkzb"; + version = "0.1.1.3"; + sha256 = "1rcmb4zpfgmxh5x04vb68lj1prgiwl5wpa4mn6w7kp7sccd4f9mi"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -367211,6 +365440,7 @@ self: { ]; description = "Avro support for Kafka infrastructure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -367894,8 +366124,8 @@ self: { pname = "hw-rankselect"; version = "0.13.4.1"; sha256 = "03nf8jwr1qpbfa20y3zlb3z6cxy8ylpdbsy0fvxdjs8q35f7bmx5"; - revision = "3"; - editedCabalFile = "1fwgjhy3wm1bbyqcq62vcf9nvha17bwzb34g2rd6z1v5qr8dm1gi"; + revision = "5"; + editedCabalFile = "0g15p5dlnfk2ggqsww8gvp877j3vz5x3vc3xvfgwqp3640sgax6j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -368069,8 +366299,8 @@ self: { pname = "hw-simd"; version = "0.1.2.2"; sha256 = "0ipcrv19xwmq6znbmwmzrjahmymmcmpbs7hpx0183hrwbx2hyhqx"; - revision = "1"; - editedCabalFile = "0c0wv09q98inana4n70qnv6226506fdw4ghbw1pxqglj0ccallib"; + revision = "2"; + editedCabalFile = "05sfkgcfl94wighx2nfrp6rsvkvbch7wn701i669r88b900w56yv"; libraryHaskellDepends = [ base bits-extra @@ -368290,6 +366520,7 @@ self: { ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -368327,6 +366558,8 @@ self: { ]; description = "String parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -368581,6 +366814,8 @@ self: { pname = "hw-xml"; version = "0.5.1.2"; sha256 = "0zv5dwi4vbacjz3rw62g320p0iy0xya3z2xd4mf238gd9v5fnhd5"; + revision = "1"; + editedCabalFile = "1jrj3lpy76aly7pm4j7ys35s75a8rgf4mqlifasx61k1rvsiiv0s"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -369973,8 +368208,8 @@ self: { }: mkDerivation { pname = "hydra"; - version = "0.8.0"; - sha256 = "1zbr11xabk4va286084wxyx49fmc3xc3wqfrx4h80mwqx9w5gr8b"; + version = "0.12.0"; + sha256 = "05pshwws8c7abbnmrfx9l646b58f567g6xs91cxvzxqs16glp87c"; libraryHaskellDepends = [ aeson aeson-pretty @@ -369984,7 +368219,6 @@ self: { directory filepath HsYAML - mtl scientific split text @@ -370010,10 +368244,8 @@ self: { vector ]; testToolDepends = [ hspec-discover ]; - description = "Type-aware transformations for data and programs"; + description = "Graph programming language"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -370657,8 +368889,8 @@ self: { pname = "hyper"; version = "0.2.1.1"; sha256 = "14p7r57g75ny8l9h4ilbm6mhdsfiysfs3rd56300dl0jkpgrh8r2"; - revision = "4"; - editedCabalFile = "1fyddc72z9vd37q5xbgfpqp3dfvqkbz1kbgwvhxhk2w5maf06ac3"; + revision = "5"; + editedCabalFile = "0dzm6qrqrrmrsmn5y1nhncy2w7kmaa4ilkf1mpi32hs9mywnl5v9"; libraryHaskellDepends = [ base blaze-html @@ -370685,8 +368917,8 @@ self: { pname = "hyper-extra"; version = "0.2.0.1"; sha256 = "13ipxwhxrndl505zzxcq7gz874l0r2g0ma1yhq14bihvlwh3qr8d"; - revision = "1"; - editedCabalFile = "0vmyidjaskca75582h3lp2wq3x0h2ii03i5fy590c9j6mq8phjdx"; + revision = "2"; + editedCabalFile = "1c3lp2wg8axcv20zyz58qcs79vcy8hzsr3gdd9d671yk9m8c7b6n"; libraryHaskellDepends = [ base diagrams-lib @@ -370721,6 +368953,8 @@ self: { pname = "hyper-haskell-server"; version = "0.2.3.1"; sha256 = "0cz1dybzgk5q051r3inv72x154q3qmf5r0hci2cxrb89ncdcszsv"; + revision = "1"; + editedCabalFile = "1vk8q06z7q20hq3cs3nnw0ap3gsa983clvykb4zlxl4fspq7rviv"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -370915,6 +369149,8 @@ self: { ]; description = "Hypergeometric function of a matrix argument"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -371009,61 +369245,6 @@ self: { ) { }; hyperloglog = callPackage ( - { - mkDerivation, - approximate, - base, - binary, - bits, - bytes, - bytestring, - cereal, - cereal-vector, - comonad, - cpu, - deepseq, - distributive, - hashable, - lens, - reflection, - semigroupoids, - semigroups, - tagged, - vector, - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.6"; - sha256 = "0zwg4dhgasa9sx7pbjjjb9kz2bnhb3r2daij2b572cszv65l91nv"; - revision = "5"; - editedCabalFile = "1acq3rhj3x019ckvvhpl4vg8islr53il9ngxd5p5k1is90hcyx97"; - libraryHaskellDepends = [ - approximate - base - binary - bits - bytes - bytestring - cereal - cereal-vector - comonad - cpu - deepseq - distributive - hashable - lens - reflection - semigroupoids - semigroups - tagged - vector - ]; - description = "An approximate streaming (constant space) unique object counter"; - license = lib.licenses.bsd3; - } - ) { }; - - hyperloglog_0_5 = callPackage ( { mkDerivation, approximate, @@ -371117,7 +369298,6 @@ self: { ]; description = "An approximate streaming (constant space) unique object counter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -371933,8 +370113,8 @@ self: { pname = "iCalendar"; version = "0.4.1.1"; sha256 = "0bdsfl108c740zn105sw765dlfw8hvpnwk7w3psy1iyn8hasl1rh"; - revision = "1"; - editedCabalFile = "09b4kqm03v6cxiq9yf0xp0sbc232gra5lg56p1rllyl2rdfq31n1"; + revision = "2"; + editedCabalFile = "1d2wwdzhfvv535v951z62a3qsd7pyk68srmb80kn46qnn33k0cvi"; libraryHaskellDepends = [ base base64-bytestring @@ -373119,6 +371299,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Deriving Applicative for sum types.. Idiomatically."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -373491,6 +371673,8 @@ self: { pname = "if-instance"; version = "0.6.0.0"; sha256 = "1pjl4dg510dp6p23hjn1rii7pf444jqn9jy6wvy6x9m8b25j2nzr"; + revision = "1"; + editedCabalFile = "0i96a850a5kb3azn40j38wi20vkcbh804b29swrz8mi60basr9rb"; libraryHaskellDepends = [ base ghc @@ -373855,128 +372039,6 @@ self: { ) { }; ihaskell = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - cmdargs, - containers, - directory, - exceptions, - filepath, - ghc, - ghc-boot, - ghc-parser, - ghc-paths, - ghc-syntax-highlighter, - haskeline, - hlint, - hspec, - hspec-contrib, - http-client, - http-client-tls, - HUnit, - ipython-kernel, - parsec, - process, - random, - raw-strings-qq, - setenv, - shelly, - split, - stm, - strict, - text, - time, - transformers, - unix, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "ihaskell"; - version = "0.11.0.0"; - sha256 = "1mjjsmjvapkmj69qzp9sskgxi04fymacvy0la7lr1rcrl9z5x5hd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - cmdargs - containers - directory - exceptions - filepath - ghc - ghc-boot - ghc-parser - ghc-paths - ghc-syntax-highlighter - haskeline - hlint - http-client - http-client-tls - ipython-kernel - parsec - process - random - shelly - split - stm - strict - text - time - transformers - unix - unordered-containers - utf8-string - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - ghc - ipython-kernel - process - strict - text - transformers - unix - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - directory - ghc - ghc-paths - hspec - hspec-contrib - HUnit - raw-strings-qq - setenv - shelly - text - transformers - ]; - description = "A Haskell backend kernel for the Jupyter project"; - license = lib.licenses.mit; - mainProgram = "ihaskell"; - } - ) { }; - - ihaskell_0_12_0_0 = callPackage ( { mkDerivation, aeson, @@ -374094,7 +372156,6 @@ self: { ]; description = "A Haskell backend kernel for the Jupyter project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ihaskell"; } ) { }; @@ -374389,7 +372450,6 @@ self: { ]; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -374581,6 +372641,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "IHaskell extension for making the use of Symtegration more seamless"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -374629,6 +372690,194 @@ self: { } ) { }; + ihp = callPackage ( + { + mkDerivation, + aeson, + async, + attoparsec, + base, + basic-prelude, + binary, + blaze-html, + blaze-markup, + bytestring, + case-insensitive, + cereal, + cereal-text, + classy-prelude, + clientsession, + conduit-extra, + containers, + cookie, + countable-inflections, + data-default, + deepseq, + directory, + fast-logger, + ghc-prim, + haskell-src-exts, + haskell-src-meta, + hspec, + http-client, + http-client-tls, + http-media, + http-types, + ihp-hsx, + ihp-postgresql-simple-extra, + inflections, + interpolate, + ip, + lens, + mime-mail, + mime-mail-ses, + mime-types, + minio-hs, + mono-traversable, + mtl, + neat-interpolation, + network, + network-uri, + parser-combinators, + postgresql-simple, + process, + pwstore-fast, + random, + random-strings, + regex-tdfa, + resource-pool, + resourcet, + safe-exceptions, + scientific, + smtp-mail, + split, + string-conversions, + template-haskell, + temporary, + text, + time, + transformers, + typerep-map, + unagi-chan, + unix, + unliftio, + unordered-containers, + uri-encode, + uuid, + vault, + vector, + wai, + wai-app-static, + wai-cors, + wai-extra, + wai-session, + wai-session-clientsession, + wai-util, + wai-websockets, + warp, + warp-systemd, + websockets, + with-utf8, + wreq, + }: + mkDerivation { + pname = "ihp"; + version = "1.4.0"; + sha256 = "0k962vpcarq07a0wb5rlpah15q629xi39h2x8x0vb5i8nv7xg0c3"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + async + attoparsec + base + basic-prelude + binary + blaze-html + blaze-markup + bytestring + case-insensitive + cereal + cereal-text + classy-prelude + clientsession + conduit-extra + containers + cookie + countable-inflections + data-default + deepseq + directory + fast-logger + ghc-prim + haskell-src-exts + haskell-src-meta + hspec + http-client + http-client-tls + http-media + http-types + ihp-hsx + ihp-postgresql-simple-extra + inflections + interpolate + ip + lens + mime-mail + mime-mail-ses + mime-types + minio-hs + mono-traversable + mtl + neat-interpolation + network + network-uri + parser-combinators + postgresql-simple + process + pwstore-fast + random + random-strings + regex-tdfa + resource-pool + resourcet + safe-exceptions + scientific + smtp-mail + split + string-conversions + template-haskell + temporary + text + time + transformers + typerep-map + unagi-chan + unix + unliftio + unordered-containers + uri-encode + uuid + vault + vector + wai + wai-app-static + wai-cors + wai-extra + wai-session + wai-session-clientsession + wai-util + wai-websockets + warp + warp-systemd + websockets + with-utf8 + wreq + ]; + description = "Haskell Web Framework"; + license = lib.licenses.mit; + } + ) { }; + ihp-hsx = callPackage ( { mkDerivation, @@ -374639,16 +372888,19 @@ self: { containers, ghc, hspec, + lucid2, megaparsec, + mtl, string-conversions, template-haskell, text, + transformers, unordered-containers, }: mkDerivation { pname = "ihp-hsx"; - version = "1.4.1"; - sha256 = "00pq72lzdnb8dbfpaacyw2jqwz5f54cdvrbyrapd4487m2jhjc9q"; + version = "1.5.0"; + sha256 = "0r4139vkhhy71kwhiiycg5ws3w1xs46dig5iihpnx0vyjkpszmar"; libraryHaskellDepends = [ base blaze-html @@ -374656,10 +372908,12 @@ self: { bytestring containers ghc + lucid2 megaparsec string-conversions template-haskell text + transformers unordered-containers ]; testHaskellDepends = [ @@ -374668,16 +372922,227 @@ self: { bytestring containers hspec + lucid2 megaparsec + mtl + string-conversions template-haskell text + unordered-containers ]; + doHaddock = false; description = "JSX-like but for Haskell"; license = lib.licenses.mit; maintainers = [ lib.maintainers.mpscholten ]; } ) { }; + ihp-ide = callPackage ( + { + mkDerivation, + aeson, + async, + attoparsec, + auto-update, + base, + base16-bytestring, + base64-bytestring, + basic-prelude, + blaze-html, + blaze-markup, + bytestring, + classy-prelude, + clientsession, + containers, + countable-inflections, + cryptohash, + data-default, + directory, + fsnotify, + http-types, + ihp, + ihp-hsx, + inflections, + interpolate, + megaparsec, + mono-traversable, + neat-interpolation, + network, + network-uri, + parser-combinators, + postgresql-simple, + process, + safe-exceptions, + split, + string-conversions, + text, + time, + transformers, + unagi-chan, + unix, + unliftio, + uri-encode, + uuid, + vault, + wai, + wai-app-static, + wai-extra, + wai-session, + wai-session-clientsession, + wai-util, + wai-websockets, + warp, + websockets, + with-utf8, + wreq, + }: + mkDerivation { + pname = "ihp-ide"; + version = "1.4.0"; + sha256 = "0mglqbbmk7y94avmb2z4mqhrbcwrhabzicyjd0cgd49v9mz32p5n"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + async + attoparsec + auto-update + base + base16-bytestring + basic-prelude + blaze-html + blaze-markup + bytestring + classy-prelude + clientsession + containers + countable-inflections + cryptohash + data-default + directory + fsnotify + http-types + ihp + ihp-hsx + inflections + interpolate + megaparsec + mono-traversable + neat-interpolation + network + network-uri + parser-combinators + postgresql-simple + process + safe-exceptions + split + string-conversions + text + time + transformers + unagi-chan + unix + unliftio + uri-encode + uuid + vault + wai + wai-app-static + wai-extra + wai-session + wai-session-clientsession + wai-util + wai-websockets + warp + websockets + with-utf8 + wreq + ]; + executableHaskellDepends = [ + aeson + async + attoparsec + auto-update + base + base16-bytestring + base64-bytestring + basic-prelude + blaze-html + blaze-markup + bytestring + classy-prelude + clientsession + containers + countable-inflections + cryptohash + data-default + directory + fsnotify + http-types + ihp + ihp-hsx + inflections + interpolate + megaparsec + mono-traversable + neat-interpolation + network + network-uri + parser-combinators + postgresql-simple + process + safe-exceptions + split + string-conversions + text + time + transformers + unagi-chan + unix + unliftio + uri-encode + uuid + vault + wai + wai-app-static + wai-extra + wai-session + wai-session-clientsession + wai-util + wai-websockets + warp + websockets + with-utf8 + wreq + ]; + description = "Dev tools for IHP"; + license = lib.licenses.mit; + } + ) { }; + + ihp-migrate = callPackage ( + { + mkDerivation, + ihp, + with-utf8, + }: + mkDerivation { + pname = "ihp-migrate"; + version = "1.4.0"; + sha256 = "1l4vapnqnnayfdrbrspsvjjyi2wd7jy3a081dpzyi4pwl4jdwgx8"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ihp + with-utf8 + ]; + description = "Provides the IHP migrate binary"; + license = lib.licenses.mit; + mainProgram = "migrate"; + } + ) { }; + ihp-openai = callPackage ( { mkDerivation, @@ -374696,6 +373161,8 @@ self: { pname = "ihp-openai"; version = "1.3.0"; sha256 = "1736f8w1696d5db9shdhqxq1gdng1gh1mijn2rnynrh8lsnndwa4"; + revision = "1"; + editedCabalFile = "03g2mz1vfxcfv02675nh33643k4baw2chx1vc9ij6p76868l1nk7"; libraryHaskellDepends = [ aeson base @@ -374715,6 +373182,60 @@ self: { ]; description = "Call GPT4 from your Haskell apps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + + ihp-postgresql-simple-extra = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + base, + basic-prelude, + bytestring, + hspec, + hspec-discover, + ip, + postgresql-simple, + text, + time, + time-compat, + }: + mkDerivation { + pname = "ihp-postgresql-simple-extra"; + version = "1.3.0"; + sha256 = "19yann37mq9ifzqfab0xkfpbns40clvdg4qc8gmk7980z5q7p39s"; + libraryHaskellDepends = [ + aeson + attoparsec + base + basic-prelude + bytestring + ip + postgresql-simple + text + time + time-compat + ]; + testHaskellDepends = [ + aeson + attoparsec + base + basic-prelude + bytestring + hspec + hspec-discover + ip + postgresql-simple + text + time + time-compat + ]; + testToolDepends = [ hspec-discover ]; + description = "Extra data types for postgresql-simple"; + license = lib.licenses.mit; } ) { }; @@ -375738,8 +374259,8 @@ self: { }: mkDerivation { pname = "immutaball-core"; - version = "0.1.0.4.1"; - sha256 = "136vbcyywfyl2kafpygz1iwv5yahlzxhj9y07wsz3dch90x0lail"; + version = "0.1.0.5.1"; + sha256 = "12i9vxhxsmka4rlmkj4ip930h4clcbn031il39x6clj2dflj5807"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -375834,7 +374355,7 @@ self: { unbounded-delays wires ]; - description = "Immutaball platformer game"; + description = "Immutaball platformer game (prototype version)"; license = lib.licenses.bsd0; hydraPlatforms = lib.platforms.none; } @@ -376321,6 +374842,8 @@ self: { ]; description = "Helps maintain consistency of imports"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -379132,7 +377655,9 @@ self: { ]; description = "A minimalistic template engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "inject"; + broken = true; } ) { }; @@ -379605,7 +378130,6 @@ self: { ieee754, inline-c, mtl, - pretty, primitive, process, quickcheck-assertions, @@ -379615,25 +378139,20 @@ self: { silently, singletons, singletons-th, - strict, tasty, tasty-expected-failure, - tasty-golden, tasty-hunit, tasty-quickcheck, template-haskell, temporary, text, - th-lift, - th-orphans, - transformers, unix, vector, }: mkDerivation { pname = "inline-r"; - version = "1.0.1"; - sha256 = "0wndjyp5y08f8m01rbcxs1dn721dp2wfcfa19k1i443r0f1wc3mf"; + version = "1.0.2"; + sha256 = "01frm1ibdpaxdpi0rik469xjcyj9nnvxjjkmf7bjfgss4slz06fd"; libraryHaskellDepends = [ aeson base @@ -379645,7 +378164,6 @@ self: { heredoc inline-c mtl - pretty primitive process reflection @@ -379655,9 +378173,6 @@ self: { template-haskell temporary text - th-lift - th-orphans - transformers unix vector ]; @@ -379674,10 +378189,8 @@ self: { quickcheck-assertions silently singletons - strict tasty tasty-expected-failure - tasty-golden tasty-hunit tasty-quickcheck template-haskell @@ -379691,15 +378204,11 @@ self: { criterion filepath primitive - process singletons template-haskell - vector ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { inherit (pkgs) R; }; @@ -379920,36 +378429,6 @@ self: { ) { }; inspection-testing = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - mtl, - template-haskell, - transformers, - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.5.0.3"; - sha256 = "1kh6lrcdyfnj0c8fqrllb21hfmnlsrllw6jkkg4hya0f9lqf4mgi"; - revision = "3"; - editedCabalFile = "1b66i5h8vbj3d3dn99wy6sffppfz8iywpwwdivxnxvn645crywa8"; - libraryHaskellDepends = [ - base - containers - ghc - mtl - template-haskell - transformers - ]; - testHaskellDepends = [ base ]; - description = "GHC plugin to do inspection testing"; - license = lib.licenses.mit; - } - ) { }; - - inspection-testing_0_6_2 = callPackage ( { mkDerivation, base, @@ -379974,7 +378453,6 @@ self: { testHaskellDepends = [ base ]; description = "GHC plugin to do inspection testing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -380662,6 +379140,8 @@ self: { ]; description = "Checked conversions between integral types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -380969,7 +379449,6 @@ self: { { mkDerivation, base, - doctest, ghc-bignum, smallcheck, tasty, @@ -380979,17 +379458,14 @@ self: { }: mkDerivation { pname = "integer-roots"; - version = "1.0.2.0"; - sha256 = "15sn3jgm8axm8f9z02aj3xdf318qwwc5qfc8b4r0n7hfr1jgrqs5"; - revision = "1"; - editedCabalFile = "1ff3w9ygyw5shshknyrcl4j7g3gbaz3dyfm8a6gwndrkg1nb7a37"; + version = "1.0.3.0"; + sha256 = "0l6pygfrlyvrbxshz6s1zd6w3q2hl1dc18y08mg0a334ky87za9k"; libraryHaskellDepends = [ base ghc-bignum ]; testHaskellDepends = [ base - doctest smallcheck tasty tasty-hunit @@ -382416,30 +380892,30 @@ self: { binary, bytestring, containers, - cryptonite, + crypton, directory, exceptions, + file-embed, filepath, - hscurses, memory, mtl, - ncurses, network-simple, random, safe, - SDL, - SDL-gfx, - SDL-mixer, - SDL-ttf, + sdl2, + sdl2-gfx, + sdl2-mixer, + sdl2-ttf, stm, + text, time, transformers, vector, }: mkDerivation { pname = "intricacy"; - version = "0.8.2.1"; - sha256 = "0aqjz6p83f79s1xwlaq6pn8581zzd669614im3j1jbn48h18bw1d"; + version = "0.9.1.0"; + sha256 = "0fw66h6k7nf8929p4kqq2wc25b5vg2hq2xhibs2bpas9maj1jijx"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -382449,34 +380925,34 @@ self: { binary bytestring containers - cryptonite + crypton directory exceptions + file-embed filepath - hscurses memory mtl network-simple random safe - SDL - SDL-gfx - SDL-mixer - SDL-ttf + sdl2 + sdl2-gfx + sdl2-mixer + sdl2-ttf stm + text time transformers vector ]; - executablePkgconfigDepends = [ ncurses ]; description = "A game of competitive puzzle-design"; - license = lib.licenses.gpl3Only; + license = lib.licenses.gpl3Plus; badPlatforms = lib.platforms.darwin; hydraPlatforms = lib.platforms.none; mainProgram = "intricacy"; broken = true; } - ) { inherit (pkgs) ncurses; }; + ) { }; intrinsic-superclasses = callPackage ( { @@ -382920,6 +381396,8 @@ self: { ]; description = "Automatically generate a function’s inverse"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -383175,6 +381653,7 @@ self: { base, bytestring, deepseq, + ghc-internal, nothunks, primitive, QuickCheck, @@ -383193,6 +381672,7 @@ self: { base bytestring deepseq + ghc-internal nothunks primitive QuickCheck @@ -383914,8 +382394,8 @@ self: { }: mkDerivation { pname = "ip2location"; - version = "8.5.1"; - sha256 = "0x5l2rv6wq5a08f7s97cyrqfl7zsrqlsgv105s02rm8r3ifabaca"; + version = "8.6.0"; + sha256 = "0my5rnrbnrr9g8rndwd8491kwf5kn5y9y0f82lqwjzv719l66wd7"; libraryHaskellDepends = [ aeson base @@ -383949,8 +382429,8 @@ self: { }: mkDerivation { pname = "ip2location-io"; - version = "1.1.0"; - sha256 = "1hzikf2ivaxmhw8z1zlcs108vww88nfk4iv4hx85v205gdxwgpwz"; + version = "1.3.0"; + sha256 = "1425ca51il1cairnv8qabxb1m242jndsi0m2m1lpvyk5jwj3k2cv"; libraryHaskellDepends = [ aeson base @@ -384399,6 +382879,7 @@ self: { ]; description = "Tiny helper for pretty-printing values in ghci console"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -385279,8 +383760,6 @@ self: { doHaddock = false; description = "RFC-compliant universal resource identifier library (URL, URI, IRI)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -385335,7 +383814,6 @@ self: { ]; description = "Orphan instances for iri"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -389163,8 +387641,8 @@ self: { }: mkDerivation { pname = "javelin-frames"; - version = "0.1.0.1"; - sha256 = "1gw9db2jqwbnkyyxpd4wj238n34c6vd7psr909wi918d79mmlc2g"; + version = "0.1.0.2"; + sha256 = "0g4vw1qb5m8ypyjr72hh0f1dmba0r43ggkvx4zpwcv7ij3qd25bl"; libraryHaskellDepends = [ base containers @@ -390958,6 +389436,82 @@ self: { } ) { }; + jose_0_12 = callPackage ( + { + mkDerivation, + aeson, + base, + base64-bytestring, + bytestring, + concise, + containers, + crypton, + crypton-x509, + hedgehog, + hspec, + lens, + memory, + monad-time, + mtl, + network-uri, + pem, + tasty, + tasty-hedgehog, + tasty-hspec, + template-haskell, + text, + time, + }: + mkDerivation { + pname = "jose"; + version = "0.12"; + sha256 = "1wsm2r6lvhgw10blgj21v4nf2293jkjhis9yl7a6r38sdarqzc59"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + concise + containers + crypton + crypton-x509 + lens + memory + monad-time + mtl + network-uri + template-haskell + text + time + ]; + testHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + concise + containers + crypton + crypton-x509 + hedgehog + hspec + lens + mtl + network-uri + pem + tasty + tasty-hedgehog + tasty-hspec + time + ]; + description = "JSON Object Signing and Encryption (JOSE) and JSON Web Token (JWT) library"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { }; + jose-jwt = callPackage ( { mkDerivation, @@ -391314,28 +389868,6 @@ self: { ) { }; js-jquery = callPackage ( - { - mkDerivation, - base, - HTTP, - }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "16q68jzbs7kp07dnq8cprdcc8fd41rim38039vg0w4x11lgniq70"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HTTP - ]; - doCheck = false; - description = "Obtain minified jQuery code"; - license = lib.licenses.mit; - } - ) { }; - - js-jquery_3_7_1 = callPackage ( { mkDerivation, base, @@ -391354,7 +389886,6 @@ self: { doCheck = false; description = "Obtain minified jQuery code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -391597,8 +390128,8 @@ self: { }: mkDerivation { pname = "jsaddle-wasm"; - version = "0.1.2.0"; - sha256 = "1anr6gg5900mcywwkx8s5j4wpq7hs0zgxc8b2mxf9nlagjjparfz"; + version = "0.1.2.1"; + sha256 = "1a87wi5drdvjcs621wdhmbpgqmnf6s0sd6rcik0hkmyvbhlxv37v"; libraryHaskellDepends = [ base bytestring @@ -391654,7 +390185,7 @@ self: { description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - maintainers = [ lib.maintainers.alexfmpe ]; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -392858,7 +391389,6 @@ self: { json-query = callPackage ( { mkDerivation, - array-chunks, base, bytebuild, byteslice, @@ -392880,12 +391410,9 @@ self: { }: mkDerivation { pname = "json-query"; - version = "0.2.3.1"; - sha256 = "06j1004is5y5fji89ns9h93qayqmgmjlv9aqlq66xxvp3ijvqzmn"; - revision = "1"; - editedCabalFile = "16pkhyxyr1pmk8g22kydqakv0a2nv7lgx3b6gvvr58xwh3alrzvp"; + version = "0.3.0.0"; + sha256 = "1w1nzl4p4q3qs2b53b6kb8mp4jdc22q02q097bi97a0x0ab4avrq"; libraryHaskellDepends = [ - array-chunks base bytebuild bytestring @@ -392895,13 +391422,12 @@ self: { primitive-unlifted profunctors scientific-notation + text text-short transformers ]; testHaskellDepends = [ - array-chunks base - bytebuild byteslice bytestring hspec @@ -392913,7 +391439,6 @@ self: { tasty-hspec tasty-hunit text - text-short ]; description = "Kitchen sink for querying JSON"; license = lib.licenses.bsd3; @@ -393353,82 +391878,6 @@ self: { ) { }; json-spec-elm-servant = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bound, - bytestring, - containers, - cookie, - directory, - elm-syntax, - filepath, - hspec, - http-types, - json-spec, - json-spec-elm, - mtl, - prettyprinter, - process, - servant, - text, - time, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "json-spec-elm-servant"; - version = "0.4.3.0"; - sha256 = "05vvm8ivpnp4f3sx7p1sxp2ywqlnii3mjalcwfv6fimsyjlk638w"; - libraryHaskellDepends = [ - base - bound - containers - directory - elm-syntax - filepath - http-types - json-spec - json-spec-elm - mtl - prettyprinter - process - servant - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - binary - bound - bytestring - containers - cookie - directory - elm-syntax - filepath - hspec - http-types - json-spec - json-spec-elm - mtl - prettyprinter - process - servant - text - time - unordered-containers - uuid - ]; - description = "Generated elm code for servant APIs"; - license = lib.licenses.mit; - } - ) { }; - - json-spec-elm-servant_0_4_4_1 = callPackage ( { mkDerivation, aeson, @@ -393501,7 +391950,6 @@ self: { ]; description = "Generated elm code for servant APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -393520,8 +391968,8 @@ self: { }: mkDerivation { pname = "json-spec-openapi"; - version = "1.0.1.1"; - sha256 = "0vk9m76ga1706b9r4ggpfk7f11jpv22mhibqxd7vqfbi3iffm2ys"; + version = "1.0.1.3"; + sha256 = "04l5fwj5dr9rhb0b2qv2750gzc4gqvkh5dvf8vx5gh67i9skc384"; libraryHaskellDepends = [ aeson base @@ -393654,13 +392102,12 @@ self: { text, text-short, transformers, - word-compat, zigzag, }: mkDerivation { pname = "json-syntax"; - version = "0.2.7.2"; - sha256 = "0niyi6vzrl9q4xlh0d5ygdm81zvbgglkmfq5p2a44y6avzqs1sq7"; + version = "0.3.0.2"; + sha256 = "0h9adxxacg5l5ggq97syy33cnnvq3nzma6xxcgff31p2h08i098w"; libraryHaskellDepends = [ array-builder array-chunks @@ -393677,7 +392124,6 @@ self: { text text-short transformers - word-compat zigzag ]; testHaskellDepends = [ @@ -397267,8 +395713,8 @@ self: { }: mkDerivation { pname = "katip"; - version = "0.8.8.2"; - sha256 = "12g0i1ndzzkgf0qgkxx525d742mkfnsdwb9rhi6z8jn5hc38sps4"; + version = "0.8.8.4"; + sha256 = "1n6bcr08b7vmzq1b9y0svjqx7hdpffn931yp1ka2ng4ibpcchba4"; libraryHaskellDepends = [ aeson async @@ -397459,6 +395905,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Katip integration for Effectful"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -400042,8 +398490,8 @@ self: { }: mkDerivation { pname = "keter"; - version = "2.1.9"; - sha256 = "06kn3xrzpqnlynzq12b511r0dqr8dinvbq8fliqvjrn5cyyl9sk5"; + version = "2.1.10"; + sha256 = "1ml0c6bhdivmp2r4n3bmridwls5ik7if28235866f5k17qr4b3c9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -400126,6 +398574,250 @@ self: { } ) { }; + keter_2_2_0 = callPackage ( + { + mkDerivation, + aeson, + array, + async, + attoparsec, + base, + blaze-builder, + bytestring, + case-insensitive, + conduit, + conduit-extra, + containers, + directory, + fast-logger, + filepath, + fsnotify, + http-client, + http-conduit, + http-reverse-proxy, + http-types, + HUnit, + indexed-traversable, + lens, + lifted-base, + monad-logger, + mtl, + network, + optparse-applicative, + process, + random, + regex-tdfa, + stm, + tar, + tasty, + tasty-hunit, + template-haskell, + text, + time, + tls, + tls-session-manager, + transformers, + unix, + unix-compat, + unliftio-core, + unordered-containers, + vector, + wai, + wai-app-static, + wai-extra, + warp, + warp-tls, + wreq, + yaml, + zlib, + }: + mkDerivation { + pname = "keter"; + version = "2.2.0"; + sha256 = "0wxq5imn77si6aljhfqka782zwpvqapkaw1qyp2yhq05vy1v2hqq"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + array + async + attoparsec + base + blaze-builder + bytestring + case-insensitive + conduit + conduit-extra + containers + directory + fast-logger + filepath + fsnotify + http-client + http-conduit + http-reverse-proxy + http-types + indexed-traversable + lifted-base + monad-logger + mtl + network + optparse-applicative + process + random + regex-tdfa + stm + tar + template-haskell + text + time + tls + tls-session-manager + transformers + unix + unix-compat + unliftio-core + unordered-containers + vector + wai + wai-app-static + wai-extra + warp + warp-tls + yaml + zlib + ]; + executableHaskellDepends = [ + base + filepath + ]; + testHaskellDepends = [ + base + bytestring + conduit + http-client + http-conduit + http-types + HUnit + lens + monad-logger + mtl + stm + tasty + tasty-hunit + transformers + unix + wai + warp + wreq + ]; + description = "Web application deployment manager, focusing on Haskell web frameworks. It mitigates downtime."; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "keter"; + } + ) { }; + + keter-rate-limiting-plugin = callPackage ( + { + mkDerivation, + aeson, + async, + base, + bytestring, + cache, + case-insensitive, + clock, + containers, + cookie, + deepseq, + directory, + filepath, + focus, + hashable, + http-types, + HUnit, + iproute, + list-t, + network, + QuickCheck, + random, + stm, + stm-containers, + tasty, + tasty-hunit, + tasty-quickcheck, + temporary, + text, + time, + unordered-containers, + wai, + wai-extra, + zlib, + }: + mkDerivation { + pname = "keter-rate-limiting-plugin"; + version = "0.2.0.0"; + sha256 = "0rswbhdg3ig0c028xdwgp8nb3h6jvf0z0137akrd4d7z8glyg00x"; + libraryHaskellDepends = [ + aeson + base + bytestring + cache + case-insensitive + clock + cookie + deepseq + directory + focus + hashable + http-types + iproute + list-t + network + stm + stm-containers + text + time + unordered-containers + wai + ]; + librarySystemDepends = [ zlib ]; + testHaskellDepends = [ + aeson + async + base + bytestring + cache + case-insensitive + clock + containers + cookie + directory + filepath + hashable + http-types + HUnit + network + QuickCheck + random + stm + stm-containers + tasty + tasty-hunit + tasty-quickcheck + temporary + text + time + unordered-containers + wai + wai-extra + ]; + description = "Simple Keter rate limiting plugin"; + license = lib.licenses.mit; + } + ) { inherit (pkgs) zlib; }; + keuringsdienst = callPackage ( { mkDerivation, @@ -400137,8 +398829,8 @@ self: { }: mkDerivation { pname = "keuringsdienst"; - version = "1.0.2.2"; - sha256 = "0wg13kgzq7hvl5fipwwsbdfi53ymz7ki794bhws8jxbc92c05whd"; + version = "1.2.0.0"; + sha256 = "0fq9l63xcw42lx6dnbws6vs6bjnah9rgkz2pax8mw2dq44h2a34j"; libraryHaskellDepends = [ aeson base @@ -400152,7 +398844,7 @@ self: { HUnit text ]; - description = "Data validation in Haskell that is composable, made easy and clean"; + description = "Data validation in Haskell: composable, easy and clean"; license = lib.licenses.lgpl3Only; } ) { }; @@ -401296,8 +399988,8 @@ self: { }: mkDerivation { pname = "kind-apply"; - version = "0.4.0.0"; - sha256 = "0bw41crzif6rdsfpskb8yanhzkcwn7hqwjawzifgi6jz3mvqqaha"; + version = "0.4.0.1"; + sha256 = "0j3aswwf5afvg1h3f6wv6yd253ynkzcbfq1fznsgi94dx90inkjy"; libraryHaskellDepends = [ base first-class-families @@ -401367,6 +400059,8 @@ self: { pname = "kind-generics-th"; version = "0.2.3.3"; sha256 = "1jilhnjqgcnaip9i8n6mff0zs91m4b8aciy1a0pi9jvqz2jdaxrz"; + revision = "1"; + editedCabalFile = "0qhcdm88rn8iradkk8xqlsdiy2rz0xwiclss3y4vknmhdl8q0cn5"; libraryHaskellDepends = [ base fcf-family @@ -401864,6 +400558,8 @@ self: { pname = "knead"; version = "1.0.1.1"; sha256 = "1sd391wpnyzcyp2d7w4xfmmafsxkhcn7wfhpwdglvxzpv0sbixrd"; + revision = "1"; + editedCabalFile = "17gx9wzva1zl7i7fk4bhadv60x9la3ralh58iv1v4hi52hx5b7bg"; libraryHaskellDepends = [ base bool8 @@ -401891,7 +400587,6 @@ self: { ]; description = "Repa-like array processing using LLVM JIT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -402232,67 +400927,6 @@ self: { ) { }; koji-tool = callPackage ( - { - mkDerivation, - base, - directory, - extra, - filepath, - formatting, - Glob, - http-conduit, - http-directory, - koji, - pretty-simple, - rpm-nvr, - safe, - simple-cmd, - simple-cmd-args, - simple-prompt, - text, - time, - utf8-string, - xdg-userdirs, - }: - mkDerivation { - pname = "koji-tool"; - version = "1.2"; - sha256 = "0kv1r4d4j9a5snj2g810b6fav3fbgw818dpzsvnfwys8xj792m6m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - extra - filepath - formatting - Glob - http-conduit - http-directory - koji - pretty-simple - rpm-nvr - safe - simple-cmd - simple-cmd-args - simple-prompt - text - time - utf8-string - xdg-userdirs - ]; - testHaskellDepends = [ - base - simple-cmd - ]; - description = "Koji CLI tool for querying tasks and installing builds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "koji-tool"; - } - ) { }; - - koji-tool_1_3 = callPackage ( { mkDerivation, base, @@ -402838,7 +401472,9 @@ self: { ]; description = "Krank checks issue tracker link status in your source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "krank"; + broken = true; } ) { }; @@ -403806,6 +402442,7 @@ self: { ]; description = "Key/Value Indexed Table container and formatting library"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -405430,7 +404067,9 @@ self: { ]; description = "Lambdabot plugin for XMPP (Jabber) protocol"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdabot-xmpp"; + broken = true; } ) { }; @@ -406513,7 +405152,6 @@ self: { ]; description = "Haskell implementation of Langchain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -406767,6 +405405,7 @@ self: { ]; description = "Language definition and parser for AVRO files"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -407390,63 +406029,6 @@ self: { ) { }; language-docker = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - data-default-class, - hspec, - hspec-discover, - hspec-megaparsec, - HUnit, - megaparsec, - prettyprinter, - QuickCheck, - split, - text, - time, - }: - mkDerivation { - pname = "language-docker"; - version = "13.0.0"; - sha256 = "16ywhy8bah81x9agckqbkad0h7k6gzxgds5frbj4nvs7x8xp6vh8"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - data-default-class - megaparsec - prettyprinter - split - text - time - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - data-default-class - hspec - hspec-megaparsec - HUnit - megaparsec - prettyprinter - QuickCheck - split - text - time - ]; - testToolDepends = [ hspec-discover ]; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = lib.licenses.gpl3Only; - } - ) { }; - - language-docker_14_0_1 = callPackage ( { mkDerivation, base, @@ -407500,7 +406082,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Dockerfile parser, pretty-printer and embedded DSL"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -408398,6 +406979,8 @@ self: { ]; description = "Lua parser and pretty-printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -409614,6 +408197,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parser and pretty printer for the Thrift IDL format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -409681,8 +408266,8 @@ self: { }: mkDerivation { pname = "language-toolkit"; - version = "1.2.0.1"; - sha256 = "0ar2h4ch0rk4ify3rd4p414qx9gn6jv61ig1jainn2p92p0hnhni"; + version = "1.3.0.0"; + sha256 = "0zfa0lzj0gvzzfgvs97ajfd3zy1sz3m37j508la8swkjvh83s6sm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -410082,7 +408667,6 @@ self: { bytestring, containers, deepseq, - fourmolu, ghc, ghc-tcplugin-api, hashable, @@ -410092,7 +408676,6 @@ self: { parsec, primitive, QuickCheck, - record-dot-preprocessor, record-hasfield, sop-core, Stream, @@ -410107,10 +408690,10 @@ self: { }: mkDerivation { pname = "large-anon"; - version = "0.3.2"; - sha256 = "0lj23kv7p9ax8gs7mgb37cq1x4jd3zmbz4v6fvvd1mwnkrjsnvvd"; - isLibrary = true; - isExecutable = true; + version = "0.3.3"; + sha256 = "1xwl72d217i10va21cf61nfjvw85zdajhff57qhpbf15my187a3h"; + revision = "1"; + editedCabalFile = "0lqv9f4hq8f1cfgg763inqi05pc7kr08qdkmhrsmrqz24xan9wir"; libraryHaskellDepends = [ aeson base @@ -410129,11 +408712,6 @@ self: { tagged typelet ]; - executableHaskellDepends = [ - base - fourmolu - text - ]; testHaskellDepends = [ aeson aeson-pretty @@ -410146,7 +408724,6 @@ self: { optics-core parsec QuickCheck - record-dot-preprocessor record-hasfield sop-core Stream @@ -410160,7 +408737,6 @@ self: { description = "Scalable anonymous records"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "large-anon-testsuite-fourmolu-preprocessor"; broken = true; } ) { }; @@ -410184,10 +408760,8 @@ self: { }: mkDerivation { pname = "large-generics"; - version = "0.2.2"; - sha256 = "1mvlyhna4s0997pzfkbhgg3v4l5fqj7rpx5nqjpgy7af5zp2mdgn"; - revision = "1"; - editedCabalFile = "1ly8qwzy3myvfsdp0dlgr80mnys6mi6b17xgh457r642qhig9cc4"; + version = "0.2.3"; + sha256 = "0sxgw2aajh79sm9pd66i7ml7z9k7vs38aarpf39yh98bppci6sgk"; libraryHaskellDepends = [ aeson base @@ -410333,8 +408907,8 @@ self: { }: mkDerivation { pname = "large-records"; - version = "0.4.2"; - sha256 = "1z61v8vi3ax2pjw0d4k3vznbiziwflgraralrkxv12s3s3kq0pm5"; + version = "0.4.3"; + sha256 = "0byhs4dr86l0shqhhj3nnwcfqb8a08363w212gjqnm3kbvh18nsy"; libraryHaskellDepends = [ base containers @@ -411362,6 +409936,60 @@ self: { } ) { }; + lawful-conversions_0_3_0_1 = callPackage ( + { + mkDerivation, + base, + bytestring, + containers, + hashable, + primitive, + profunctors, + QuickCheck, + quickcheck-instances, + rebase, + tasty, + tasty-quickcheck, + text, + time, + unordered-containers, + uuid-types, + vector, + }: + mkDerivation { + pname = "lawful-conversions"; + version = "0.3.0.1"; + sha256 = "1n4ix4gjsankh2hxzzgk7ijv1dnmb5vcyl3mlh2rsx6gva19qwdn"; + libraryHaskellDepends = [ + base + bytestring + containers + hashable + primitive + profunctors + QuickCheck + text + time + unordered-containers + uuid-types + vector + ]; + testHaskellDepends = [ + bytestring + primitive + QuickCheck + quickcheck-instances + rebase + tasty + tasty-quickcheck + text + ]; + description = "Lawful typeclasses for bidirectional conversion between types"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + lawless-concurrent-machines = callPackage ( { mkDerivation, @@ -411854,6 +410482,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for caching IO action that leverages on GHC RTS implementation"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -412027,6 +410657,57 @@ self: { } ) { }; + lazy-scope = callPackage ( + { + mkDerivation, + base, + bytestring, + deepseq, + directory, + filepath, + mtl, + relude, + tasty, + tasty-discover, + tasty-hunit, + tasty-quickcheck, + trace-embrace, + transformers, + unliftio, + }: + mkDerivation { + pname = "lazy-scope"; + version = "0.0.1"; + sha256 = "1mg61w6jlv8218d3ps5blidbdfwrybyb60qr6vnappla7yixbj9v"; + libraryHaskellDepends = [ + base + bytestring + deepseq + directory + filepath + mtl + relude + trace-embrace + transformers + unliftio + ]; + testHaskellDepends = [ + base + bytestring + directory + relude + tasty + tasty-discover + tasty-hunit + tasty-quickcheck + unliftio + ]; + testToolDepends = [ tasty-discover ]; + description = "Alternative lazy ByteString and ST-like IO Handle"; + license = lib.licenses.bsd3; + } + ) { }; + lazy-search = callPackage ( { mkDerivation, @@ -412173,6 +410854,8 @@ self: { ]; description = "Lazy Probabilistic Programming Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -412783,8 +411466,8 @@ self: { }: mkDerivation { pname = "leancheck"; - version = "1.0.2"; - sha256 = "0sp2rvz4h7mbra5jmn71ds3xz0934hhmsssbhsfgvkifgk8vcb0i"; + version = "1.0.4"; + sha256 = "15fg0bnrh7apla4y2c47gxb4jrkrvrcb3swrl3mva2lymnnxzhbd"; libraryHaskellDepends = [ base template-haskell @@ -415779,8 +414462,10 @@ self: { ]; description = "Preprocessor for typesetting Haskell sources with LaTeX"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lhs2TeX"; maintainers = [ lib.maintainers.nomeata ]; + broken = true; } ) { }; @@ -416392,6 +415077,8 @@ self: { ]; description = "Provides shared functionality between iserv and iserv-proxy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -416892,8 +415579,8 @@ self: { }: mkDerivation { pname = "libmodbus"; - version = "1.1.3"; - sha256 = "1lpdpa01b43i5x4s0qfvb86dqvh8rhn5pn19yh34hf8fa693cqck"; + version = "1.1.4"; + sha256 = "1lrczzjwvkia4g3kv5jiilp1b8x8q1rj9mwcbyca48cyl7l90523"; libraryHaskellDepends = [ base bytestring @@ -417799,7 +416486,9 @@ self: { ]; description = "libremidi bindings for haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "libremidi-exe"; + broken = true; } ) { @@ -418115,8 +416804,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.mpscholten ]; } ) { inherit (pkgs) libssh2; }; @@ -418146,7 +416834,6 @@ self: { ]; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -418344,23 +417031,41 @@ self: { base, bytestring, c10, + Cabal, containers, + directory, + filepath, hspec, + http-conduit, inline-c, inline-c-cpp, libtorch-ffi-helper, optparse-applicative, + process, safe-exceptions, sysinfo, template-haskell, + temporary, text, torch, torch_cpu, + zip-archive, }: mkDerivation { pname = "libtorch-ffi"; - version = "2.0.1.5"; - sha256 = "0qk8wdfp2c3xwn8ydszxn5zpifcgbp5ns75rinyyqybz0rls1xk8"; + version = "2.0.1.8"; + sha256 = "0aghzvhjdnqb7hx75ga2fls0waw8xwsnqqizj8407iq9n915r0yy"; + setupHaskellDepends = [ + base + bytestring + Cabal + directory + filepath + http-conduit + process + temporary + zip-archive + ]; libraryHaskellDepends = [ async base @@ -419100,6 +417805,54 @@ self: { } ) { }; + lifted-async_0_11_0 = callPackage ( + { + mkDerivation, + async, + base, + constraints, + lifted-base, + monad-control, + mtl, + tasty, + tasty-bench, + tasty-expected-failure, + tasty-hunit, + tasty-th, + transformers-base, + }: + mkDerivation { + pname = "lifted-async"; + version = "0.11.0"; + sha256 = "121j10146py2hl1lrywhbaqqghhh0lbafnljmq7qb2jfnjbyjlif"; + libraryHaskellDepends = [ + async + base + constraints + lifted-base + monad-control + transformers-base + ]; + testHaskellDepends = [ + base + lifted-base + mtl + tasty + tasty-expected-failure + tasty-hunit + tasty-th + ]; + benchmarkHaskellDepends = [ + async + base + tasty-bench + ]; + description = "Run lifted IO operations asynchronously and wait for their results"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + lifted-base = callPackage ( { mkDerivation, @@ -419739,6 +418492,8 @@ self: { ]; description = "Convert between Haskell, Markdown, Literate Haskell, TeX"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -419770,6 +418525,8 @@ self: { ]; description = "representation of Integer Linear Programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -420383,81 +419140,6 @@ self: { ) { }; linear-base = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - ghc-prim, - hashable, - hashtables, - hedgehog, - inspection-testing, - linear-generics, - mmorph, - MonadRandom, - primitive, - random, - random-shuffle, - storable-tuple, - tasty, - tasty-bench, - tasty-hedgehog, - tasty-inspection-testing, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "linear-base"; - version = "0.4.0"; - sha256 = "092xnbn29829zz1nq96h2fcw3qpkanzrhw09cjs90f19xhcs1vxw"; - libraryHaskellDepends = [ - base - containers - ghc-prim - hashable - linear-generics - primitive - storable-tuple - text - transformers - vector - ]; - testHaskellDepends = [ - base - containers - hedgehog - inspection-testing - linear-generics - mmorph - storable-tuple - tasty - tasty-hedgehog - tasty-inspection-testing - text - vector - ]; - benchmarkHaskellDepends = [ - base - containers - deepseq - hashable - hashtables - MonadRandom - random - random-shuffle - tasty-bench - unordered-containers - vector - ]; - description = "Standard library for linear types"; - license = lib.licenses.mit; - } - ) { }; - - linear-base_0_5_0 = callPackage ( { mkDerivation, base, @@ -420530,7 +419212,6 @@ self: { doHaddock = false; description = "Standard library for linear types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -420636,6 +419317,35 @@ self: { } ) { }; + linear-free = callPackage ( + { + mkDerivation, + base, + containers, + hspec, + linear-base, + QuickCheck, + }: + mkDerivation { + pname = "linear-free"; + version = "0.1.0.0"; + sha256 = "1j0g3zc3gaiz93c1zirhkh1rgj14ym12z1z3w19fr7ilknn86aw4"; + libraryHaskellDepends = [ + base + linear-base + ]; + testHaskellDepends = [ + base + containers + hspec + linear-base + QuickCheck + ]; + description = "Linear free monads"; + license = lib.licenses.mit; + } + ) { }; + linear-generics = callPackage ( { mkDerivation, @@ -422001,29 +420711,6 @@ self: { ) { }; linux-namespaces = callPackage ( - { - mkDerivation, - base, - bytestring, - unix, - }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.1"; - sha256 = "1h0ar1jqgip5k5b7c2v452jk62ig1pfgpw587faw8z0ai51yrl9a"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - description = "Work with linux namespaces: create new or enter existing ones"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.alexfmpe ]; - } - ) { }; - - linux-namespaces_0_2_0_1 = callPackage ( { mkDerivation, base, @@ -422042,7 +420729,6 @@ self: { description = "Work with linux namespaces: create new or enter existing ones"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.alexfmpe ]; } ) { }; @@ -422582,6 +421268,125 @@ self: { ) { }; liquid-fixpoint = callPackage ( + { + mkDerivation, + aeson, + ansi-terminal, + array, + ascii-progress, + async, + attoparsec, + base, + binary, + boxes, + bytestring, + cereal, + cmdargs, + containers, + deepseq, + directory, + fgl, + filepath, + hashable, + intern, + lens-family, + megaparsec, + mtl, + optparse-applicative, + parallel, + parser-combinators, + pretty, + process, + rest-rewrite, + smtlib-backends, + smtlib-backends-process, + stm, + store, + syb, + tagged, + tasty, + tasty-ant-xml, + tasty-hunit, + tasty-quickcheck, + tasty-rerun, + text, + transformers, + unordered-containers, + vector, + }: + mkDerivation { + pname = "liquid-fixpoint"; + version = "0.9.6.3.2"; + sha256 = "1anf30y3xvlhwbph2wy0iysgr28044q99knz5fzqa7hfzi9vy62n"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + ansi-terminal + array + ascii-progress + async + attoparsec + base + binary + boxes + bytestring + cereal + cmdargs + containers + deepseq + directory + fgl + filepath + hashable + intern + lens-family + megaparsec + mtl + parallel + parser-combinators + pretty + process + rest-rewrite + smtlib-backends + smtlib-backends-process + stm + store + syb + text + transformers + unordered-containers + vector + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base + containers + directory + filepath + hashable + mtl + optparse-applicative + process + stm + tagged + tasty + tasty-ant-xml + tasty-hunit + tasty-quickcheck + tasty-rerun + text + transformers + unordered-containers + ]; + description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; + license = lib.licenses.bsd3; + mainProgram = "fixpoint"; + maintainers = [ lib.maintainers.artem ]; + } + ) { }; + + liquid-fixpoint_0_9_6_3_3 = callPackage ( { mkDerivation, aeson, @@ -422697,7 +421502,7 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "fixpoint"; - broken = true; + maintainers = [ lib.maintainers.artem ]; } ) { }; @@ -422728,6 +421533,7 @@ self: { description = "Drop-in ghc-prim replacement for LH"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -422757,6 +421563,7 @@ self: { description = "LiquidHaskell specs for the parallel package"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -422825,6 +421632,7 @@ self: { description = "General utility modules for LiquidHaskell"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -422854,10 +421662,47 @@ self: { description = "LiquidHaskell specs for the vector package"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; liquidhaskell = callPackage ( + { + mkDerivation, + base, + bytestring, + Cabal, + containers, + ghc-prim, + liquidhaskell-boot, + z3, + }: + mkDerivation { + pname = "liquidhaskell"; + version = "0.9.10.1.2"; + sha256 = "16bv11zi54z5c6lh8ynpmlcdhp4v1qdpi90hlg15m4926p2cbna5"; + revision = "1"; + editedCabalFile = "115rawks2y1w2bk5qdd6yb8a5slm5ks19w0kj4smcp915hgq68qp"; + setupHaskellDepends = [ + base + Cabal + liquidhaskell-boot + ]; + libraryHaskellDepends = [ + base + bytestring + containers + ghc-prim + liquidhaskell-boot + ]; + testSystemDepends = [ z3 ]; + description = "Liquid Types for Haskell"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.artem ]; + } + ) { inherit (pkgs) z3; }; + + liquidhaskell_0_9_12_2 = callPackage ( { mkDerivation, base, @@ -422888,10 +421733,130 @@ self: { description = "Liquid Types for Haskell"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.artem ]; } ) { inherit (pkgs) z3; }; liquidhaskell-boot = callPackage ( + { + mkDerivation, + aeson, + array, + base, + binary, + bytestring, + Cabal, + cereal, + cmdargs, + containers, + deepseq, + Diff, + directory, + exceptions, + extra, + filepath, + fingertree, + free, + ghc, + ghc-boot, + ghc-internal, + ghc-paths, + ghc-prim, + githash, + gitrev, + hashable, + hscolour, + liquid-fixpoint, + megaparsec, + mtl, + optparse-applicative, + pretty, + split, + syb, + tasty, + tasty-ant-xml, + tasty-hunit, + template-haskell, + temporary, + text, + th-compat, + time, + transformers, + unordered-containers, + vector, + }: + mkDerivation { + pname = "liquidhaskell-boot"; + version = "0.9.10.1.2"; + sha256 = "0kckh95w3y1gjfhy8k2fyg9mmqq3vq8gcbacyywwsmr2mx752k5z"; + revision = "1"; + editedCabalFile = "00yxwj9x4fi4yxvv87l1fqz2wnpihvdaakv79d885vsfi9nfqxk1"; + libraryHaskellDepends = [ + aeson + array + base + binary + bytestring + Cabal + cereal + cmdargs + containers + deepseq + Diff + directory + exceptions + extra + filepath + fingertree + free + ghc + ghc-boot + ghc-prim + githash + gitrev + hashable + hscolour + liquid-fixpoint + megaparsec + mtl + optparse-applicative + pretty + split + syb + template-haskell + temporary + text + th-compat + time + transformers + unordered-containers + vector + ]; + testHaskellDepends = [ + base + directory + filepath + ghc + ghc-internal + ghc-paths + ghc-prim + liquid-fixpoint + megaparsec + syb + tasty + tasty-ant-xml + tasty-hunit + template-haskell + time + unordered-containers + ]; + description = "Liquid Types for Haskell"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.artem ]; + } + ) { }; + + liquidhaskell-boot_0_9_12_2 = callPackage ( { mkDerivation, aeson, @@ -422943,6 +421908,8 @@ self: { pname = "liquidhaskell-boot"; version = "0.9.12.2"; sha256 = "1gfphzqpj36valrmsbwijac12nr5b3fkgfxbkgq8dlws983hbadr"; + revision = "1"; + editedCabalFile = "0mywy0kck9q1rldzwi7r505a6zfbwaj6fjqq230x6abbqkba7rj6"; libraryHaskellDepends = [ aeson array @@ -423005,6 +421972,7 @@ self: { description = "Liquid Types for Haskell"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.artem ]; } ) { }; @@ -423162,6 +422130,8 @@ self: { ]; description = "testing list fusion for success"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -423669,6 +422639,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "List-like operations for tuples"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -423771,8 +422742,6 @@ self: { ]; description = "A list zipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -424066,6 +423035,18 @@ self: { } ) { }; + literally = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "literally"; + version = "0.2025.9.10"; + sha256 = "14g4m2qkaq6aanan8wrxawd44c8b6br0kcmhwrwk6k531564bjng"; + libraryHaskellDepends = [ base ]; + description = "Type-safe conversion of type literals into runtime values"; + license = lib.licenses.bsd0; + } + ) { }; + literals = callPackage ( { mkDerivation, base }: mkDerivation { @@ -424081,59 +423062,6 @@ self: { ) { }; literatex = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - conduit, - filepath, - optparse-applicative, - tasty, - tasty-hunit, - text, - ttc, - unliftio, - }: - mkDerivation { - pname = "literatex"; - version = "0.3.0.0"; - sha256 = "0ph3s26hxvnkdqc3s09d3ka1p224zmgwc3k6zi7jmma0sgrmnm9x"; - revision = "8"; - editedCabalFile = "0wg9kshyn0s8f65pchyl69i97qdk39lr8fzp9c4zb7d2lv1cgn8c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - text - ttc - unliftio - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - optparse-applicative - ttc - ]; - testHaskellDepends = [ - base - bytestring - filepath - tasty - tasty-hunit - text - ttc - unliftio - ]; - description = "transform literate source code to Markdown"; - license = lib.licenses.mit; - mainProgram = "literatex"; - } - ) { }; - - literatex_0_4_0_0 = callPackage ( { mkDerivation, ansi-wl-pprint, @@ -424182,7 +423110,6 @@ self: { ]; description = "transform literate source code to Markdown"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "literatex"; } ) { }; @@ -424476,24 +423403,54 @@ self: { { mkDerivation, aeson, + attoparsec, base, + bytestring, + conduit, + conduit-extra, + exceptions, + http-client, http-conduit, http-types, + optparse-generic, text, }: mkDerivation { pname = "llama-cpp-haskell"; - version = "0.1.0.2"; - sha256 = "11g5v696mj0rcl8w2bjd6wvklrl25xk97s5hlzqc2hazwpzfgdwk"; + version = "0.2.1"; + sha256 = "0a20i46j2hmk3nv0jq9gpp4mf0fcpqb3dzv5cygas0lhq6r862kh"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ aeson + attoparsec base + bytestring + conduit + conduit-extra + exceptions + http-client http-conduit http-types text ]; - description = "Haskell bindings for the llama.cpp llama-server"; + executableHaskellDepends = [ + aeson + attoparsec + base + bytestring + conduit + conduit-extra + exceptions + http-client + http-conduit + http-types + optparse-generic + text + ]; + description = "Haskell bindings for the llama.cpp llama-server and a simple CLI"; license = lib.licenses.agpl3Only; + mainProgram = "llamacall"; } ) { }; @@ -424942,6 +423899,8 @@ self: { pname = "llvm-dsl"; version = "0.1.2"; sha256 = "1ynldbzdlr5i08174s85nzi8iwaic0zr10x8zccvl127d9d3264q"; + revision = "1"; + editedCabalFile = "1jihb8c0jg7xby9ql3cxf7l7nkrppg5n5xhfdhfnqn53msb9bp9w"; libraryHaskellDepends = [ base bool8 @@ -424967,7 +423926,6 @@ self: { ]; description = "Support for writing an EDSL with LLVM-JIT as target"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -425035,8 +423993,8 @@ self: { }: mkDerivation { pname = "llvm-extra"; - version = "0.12.1"; - sha256 = "0i8209qf00fbl1wmfin27ym0ampa4ijxr8ymhqvcvkq8xg1y2ayy"; + version = "0.13"; + sha256 = "0j87l1d6ypg1lm5bjfimgrnygr160rw7igr34kaj33mh0lry6jcr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -425069,8 +424027,6 @@ self: { doHaddock = false; description = "Utility functions for the llvm interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -425079,24 +424035,24 @@ self: { mkDerivation, base, enumset, - LLVM-21git, + LLVM, }: mkDerivation { pname = "llvm-ffi"; - version = "21.0"; - sha256 = "1dfl6zxcghhyyp49lgkknlq8nkvii7aag7y8b38ny93cpcczgx0g"; + version = "21.0.0.2"; + sha256 = "0siiz33d3wnx0pqn8np098xv16bg76pg49zkppijixqqcglxa8j3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base enumset ]; - librarySystemDepends = [ LLVM-21git ]; + librarySystemDepends = [ LLVM ]; description = "FFI bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; maintainers = [ lib.maintainers.thielema ]; } - ) { LLVM-21git = null; }; + ) { LLVM = null; }; llvm-ffi-tools = callPackage ( { @@ -425122,6 +424078,8 @@ self: { ]; description = "Tools for maintaining the llvm-ffi package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -425571,10 +424529,8 @@ self: { }: mkDerivation { pname = "llvm-pkg-config"; - version = "0.0.2"; - sha256 = "1p4ww8ylhr4ag1dfz4sffkg2qsyjj4zxccda3nr50k3c26pmmdz1"; - revision = "1"; - editedCabalFile = "0wd3vvcas446skkmp2w3jp7f3d1cbl7b58kikwgrmlqa6ddzyzlk"; + version = "0.0.3"; + sha256 = "0cjjn2q3i87bnlqi81nfy5fjbin98k8lanv21qigzbnxv2m9l4q9"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -427743,10 +426699,8 @@ self: { }: mkDerivation { pname = "logging-effect"; - version = "1.4.0"; - sha256 = "0ff794800pn4gxdig85nr2svajph01rdg3sm0vjpfa71q67wlq0q"; - revision = "1"; - editedCabalFile = "0yjlwlc4rybygpbksclid3wskp5ng8gwwwrh8frq6vl08d1rwmf7"; + version = "1.4.1"; + sha256 = "1w8al4wlrda7qdifs86zqvlqdzzpd0awjn1nvcln7ax2yd5ncwnp"; libraryHaskellDepends = [ async base @@ -429008,6 +427962,8 @@ self: { ]; description = "FFI bindings for C long double"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -429158,6 +428114,8 @@ self: { ]; description = "A simple text parser with decent errors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -430130,6 +429088,8 @@ self: { ]; description = "LRU cache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -430319,6 +429279,199 @@ self: { } ) { }; + lsm-tree = callPackage ( + { + mkDerivation, + ansi-terminal, + async, + barbies, + base, + binary, + bitvec, + blockio, + bloomfilter-blocked, + bytestring, + cborg, + clock, + constraints, + containers, + contra-tracer, + crc32c, + criterion, + cryptohash-sha256, + data-elevator, + deepseq, + directory, + filepath, + fs-api, + fs-sim, + heaps, + indexed-traversable, + io-classes, + io-sim, + mtl, + nonempty-containers, + nothunks, + optparse-applicative, + pretty-show, + primes, + primitive, + QuickCheck, + quickcheck-classes, + quickcheck-dynamic, + quickcheck-instances, + quickcheck-lockstep, + random, + rocksdb, + safe-wild-cards, + semialign, + serialise, + split, + splitmix, + tasty, + tasty-bench, + tasty-golden, + tasty-hunit, + tasty-quickcheck, + temporary, + text, + these, + time, + transformers, + utf8-string, + vector, + vector-algorithms, + wide-word, + }: + mkDerivation { + pname = "lsm-tree"; + version = "1.0.0.0"; + sha256 = "1vm9314pa5b8w3kwyncmnh1kqq61kxfidcw52iv6728456dda4m4"; + libraryHaskellDepends = [ + base + binary + bitvec + blockio + bloomfilter-blocked + bytestring + cborg + containers + contra-tracer + crc32c + data-elevator + deepseq + filepath + fs-api + fs-sim + indexed-traversable + io-classes + nonempty-containers + nothunks + primes + primitive + QuickCheck + quickcheck-instances + random + serialise + text + transformers + utf8-string + vector + vector-algorithms + wide-word + ]; + librarySystemDepends = [ rocksdb ]; + testHaskellDepends = [ + ansi-terminal + barbies + base + bitvec + blockio + bloomfilter-blocked + bytestring + cborg + constraints + containers + contra-tracer + crc32c + cryptohash-sha256 + deepseq + directory + filepath + fs-api + fs-sim + heaps + io-classes + io-sim + mtl + nothunks + primitive + QuickCheck + quickcheck-classes + quickcheck-dynamic + quickcheck-instances + quickcheck-lockstep + random + safe-wild-cards + semialign + split + splitmix + tasty + tasty-bench + tasty-golden + tasty-hunit + tasty-quickcheck + temporary + text + these + transformers + vector + vector-algorithms + wide-word + ]; + benchmarkHaskellDepends = [ + async + base + binary + blockio + bloomfilter-blocked + bytestring + clock + containers + contra-tracer + criterion + cryptohash-sha256 + deepseq + directory + fs-api + heaps + io-classes + mtl + optparse-applicative + pretty-show + primitive + QuickCheck + random + split + splitmix + tasty + tasty-bench + tasty-hunit + tasty-quickcheck + temporary + time + transformers + vector + vector-algorithms + wide-word + ]; + doHaddock = false; + description = "Log-structured merge-trees"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { inherit (pkgs) rocksdb; }; + lsp_2_1_0_0 = callPackage ( { mkDerivation, @@ -430525,6 +429678,8 @@ self: { pname = "lsp"; version = "2.7.0.1"; sha256 = "1z3kc0vpgijzg56n70vmbi9draxzk02fifz83kgjq73rjc2scp7w"; + revision = "1"; + editedCabalFile = "1lq1gs8b47k3fv79lwz6a9zfkkywp95jy7xzxh0sb5k21x5yy7m9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -430982,7 +430137,9 @@ self: { executableHaskellDepends = [ base ]; description = "A tool for CSV files data querying from the shell with short queries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lsql-csv"; + broken = true; } ) { }; @@ -432197,8 +431354,8 @@ self: { pname = "lumberjack"; version = "1.0.3.0"; sha256 = "05a4gvc47448crb0yn0fwi3y9bwdqlmnch839hljwpyamqvqwi8q"; - revision = "2"; - editedCabalFile = "1szaa11cdmdb8i2hpj0hl8cpwhkbk7s2iwq0hpck75as0xiqk36z"; + revision = "3"; + editedCabalFile = "16nq7699s30bs896brfpm1ssh39730ba9a3zizjg81xl9hqh8z5g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -432363,18 +431520,14 @@ self: { { mkDerivation, base, - containers, - relude, stm, }: mkDerivation { pname = "lvar"; - version = "0.1.0.0"; - sha256 = "1hllvr4nsjv3c3x5aybp05wr9pdvwlw101vq7c37ydnb91hbfdv4"; + version = "0.2.0.0"; + sha256 = "1wp4yi6c7d893hjgwnpdla8hwiqp7gg8190fmji5gn0vbihl6csb"; libraryHaskellDepends = [ base - containers - relude stm ]; description = "TMVar that can be listened to"; @@ -436571,6 +435724,7 @@ self: { ]; description = "Convert C++ type signatures to their mangled form"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mangle"; } ) { }; @@ -437126,58 +436280,6 @@ self: { ) { }; mappings = callPackage ( - { - mkDerivation, - base, - cond, - containers, - formatting, - hspec, - hspec-discover, - indexed-traversable, - partialord, - }: - mkDerivation { - pname = "mappings"; - version = "0.3.1.0"; - sha256 = "1yf6qvsipjfq8s9z9lk7q29m3dkpa5kgvjpkm4wap5vawp2rzqyd"; - revision = "1"; - editedCabalFile = "1xg13149rlb00gb8bmnwwy7hncsjsw961mwfffwj99a1ki2ym5qw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cond - containers - formatting - indexed-traversable - partialord - ]; - executableHaskellDepends = [ - base - cond - containers - formatting - indexed-traversable - partialord - ]; - testHaskellDepends = [ - base - cond - containers - formatting - hspec - indexed-traversable - partialord - ]; - testToolDepends = [ hspec-discover ]; - description = "Types which represent functions k -> v"; - license = lib.licenses.bsd3; - mainProgram = "view"; - } - ) { }; - - mappings_0_3_2_0 = callPackage ( { mkDerivation, base, @@ -437223,7 +436325,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types which represent functions k -> v"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "view"; } ) { }; @@ -437324,6 +436425,8 @@ self: { ]; description = "library for MIDI control of hardware"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -437896,51 +436999,6 @@ self: { ) { }; markup-parse = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - doctest-parallel, - flatparse, - string-interpolate, - tasty, - tasty-golden, - these, - tree-diff, - }: - mkDerivation { - pname = "markup-parse"; - version = "0.1.1.1"; - sha256 = "0k9ga485l7nvhny0kqjb6s4q407a1mnfpcsy90892qgj42dkkdb4"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - flatparse - string-interpolate - tasty - tasty-golden - these - tree-diff - ]; - testHaskellDepends = [ - base - bytestring - doctest-parallel - string-interpolate - tasty - tasty-golden - tree-diff - ]; - description = "A markup parser"; - license = lib.licenses.bsd3; - } - ) { }; - - markup-parse_0_2_0_0 = callPackage ( { mkDerivation, base, @@ -437957,8 +437015,8 @@ self: { }: mkDerivation { pname = "markup-parse"; - version = "0.2.0.0"; - sha256 = "1z08d3chvgl9zk9y2crfjih0crh5dv7pih6x0n7af38l6lhsgkhz"; + version = "0.2.1.0"; + sha256 = "0g80sx8naqbzk21pb8msz7sr9z09brkdr2nkwx1qc3b2g41j5fd9"; libraryHaskellDepends = [ base bytestring @@ -437978,7 +437036,6 @@ self: { ]; description = "A markup parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -438966,41 +438023,6 @@ self: { ) { }; matchable = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - hspec, - tagged, - unordered-containers, - vector, - }: - mkDerivation { - pname = "matchable"; - version = "0.1.2.1"; - sha256 = "0vpjqw9hkx8ck1x56fbjmhhgmdmxzjbxiqdq1i3kqsh8p67dnshq"; - revision = "1"; - editedCabalFile = "0gawa35cnb7qv7fgjpxn1x8ljzx93blw9bnfmpzazlij61cw6lq4"; - libraryHaskellDepends = [ - base - containers - hashable - tagged - unordered-containers - vector - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - description = "A type class for Matchable Functors"; - license = lib.licenses.bsd3; - } - ) { }; - - matchable_0_2 = callPackage ( { mkDerivation, base, @@ -439037,7 +438059,6 @@ self: { ]; description = "A type class for Matchable Functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -441469,8 +440490,8 @@ self: { }: mkDerivation { pname = "mcp-server"; - version = "0.1.0.14"; - sha256 = "0lyr19sg5cjsgiq16v0cfkf1rkwgvyacz4siflf4wapllrkr82fz"; + version = "0.1.0.15"; + sha256 = "0wmrjgd7sabkb9y2dx0bjdxabm2qply5rnfhnskbrshzx72rnrj7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -441505,8 +440526,6 @@ self: { ]; description = "Library for building Model Context Protocol (MCP) servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -441776,23 +440795,33 @@ self: { mkDerivation, adjunctions, base, + clock, containers, + deepseq, doctest-parallel, + formatn, harpie, harpie-numhask, + mtl, mwc-probability, numhask, + optics-core, + optparse-applicative, + perf, primitive, profunctors, tdigest, text, + time, vector, vector-algorithms, }: mkDerivation { pname = "mealy"; - version = "0.5.0.0"; - sha256 = "0cijjmi3wqi7z3vbhm0ya8va9397rlkr3wkri6kf94qqr1vimgxy"; + version = "0.5.0.1"; + sha256 = "095rqkb2skzj5sizj1f8l3d37brqmws4jx2pi004gkff2czawdzz"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ adjunctions base @@ -441808,12 +440837,29 @@ self: { vector vector-algorithms ]; + executableHaskellDepends = [ + base + clock + containers + deepseq + formatn + harpie + harpie-numhask + mtl + optics-core + optparse-applicative + perf + tdigest + text + time + ]; testHaskellDepends = [ base doctest-parallel ]; description = "Mealy machines for processing time-series and ordered data"; license = lib.licenses.bsd3; + mainProgram = "mealy-perf"; } ) { }; @@ -441931,8 +440977,8 @@ self: { pname = "med-module"; version = "0.1.3"; sha256 = "04p1aj85hsr3wpnnfg4nxbqsgq41ga63mrg2w39d8ls8ljvajvna"; - revision = "2"; - editedCabalFile = "0b557rrqki2rjb922s1yqkd7gbm9cjhzg52f0h5mp19v53nds3vz"; + revision = "4"; + editedCabalFile = "19a96nn7dpmvq4g1n7zg00xk3y98p39r509acz5zl3smpn6pbspr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -442652,52 +441698,6 @@ self: { ) { }; megaparsec = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - criterion, - deepseq, - mtl, - parser-combinators, - scientific, - text, - transformers, - weigh, - }: - mkDerivation { - pname = "megaparsec"; - version = "9.6.1"; - sha256 = "1zyb1mqa2mjjig5aggndifh6zqlwbw8sn4nm4an73gkxhjz5f8m3"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - deepseq - mtl - parser-combinators - scientific - text - transformers - ]; - benchmarkHaskellDepends = [ - base - bytestring - containers - criterion - deepseq - text - weigh - ]; - description = "Monadic parser combinators"; - license = lib.licenses.bsd2; - } - ) { }; - - megaparsec_9_7_0 = callPackage ( { mkDerivation, array, @@ -442742,70 +441742,10 @@ self: { ]; description = "Monadic parser combinators"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; } ) { }; megaparsec-tests = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - hspec, - hspec-discover, - hspec-megaparsec, - megaparsec, - mtl, - QuickCheck, - scientific, - temporary, - text, - transformers, - }: - mkDerivation { - pname = "megaparsec-tests"; - version = "9.6.1"; - sha256 = "1l3rmg4ymw4czqkkb3502g322ijdg11c1img9l4p6ipy7hdzw52n"; - revision = "1"; - editedCabalFile = "0vycmn3c32z1bk19612277df41in55rkyk23gk3m007drsaq3xdl"; - libraryHaskellDepends = [ - base - bytestring - containers - hspec - hspec-megaparsec - megaparsec - mtl - QuickCheck - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - case-insensitive - containers - hspec - hspec-megaparsec - megaparsec - mtl - QuickCheck - scientific - temporary - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Test utilities and the test suite of Megaparsec"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - megaparsec-tests_9_7_0 = callPackage ( { mkDerivation, base, @@ -442859,8 +441799,83 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test utilities and the test suite of Megaparsec"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; + } + ) { }; + + megaparsec-time = callPackage ( + { + mkDerivation, + base, + hspec, + hspec-discover, + megaparsec, + megaparsec-utils, + parser-combinators, + QuickCheck, + time, + }: + mkDerivation { + pname = "megaparsec-time"; + version = "0.2.0.1"; + sha256 = "0w5br2skph6ylbf1fdb1r8z4kpqr571dr5jzf6hdmm4f18k57v1v"; + libraryHaskellDepends = [ + base + megaparsec + megaparsec-utils + parser-combinators + time + ]; + testHaskellDepends = [ + base + hspec + megaparsec + megaparsec-utils + parser-combinators + QuickCheck + time + ]; + testToolDepends = [ hspec-discover ]; + description = "Parsers and utilities for the Megaparsec library"; + license = lib.licenses.gpl3Only; + } + ) { }; + + megaparsec-utils = callPackage ( + { + mkDerivation, + aeson, + base, + hspec, + megaparsec, + parser-combinators, + QuickCheck, + text, + uuid, + }: + mkDerivation { + pname = "megaparsec-utils"; + version = "0.1.1.3"; + sha256 = "15hygajcslwxfyk37s9hzgxk8a207ylbbisps3jv8b1dm2f60md5"; + libraryHaskellDepends = [ + aeson + base + megaparsec + parser-combinators + text + uuid + ]; + testHaskellDepends = [ + aeson + base + hspec + megaparsec + parser-combinators + QuickCheck + text + uuid + ]; + description = "Parsers and utilities for the Megaparsec library"; + license = lib.licenses.gpl3Only; } ) { }; @@ -443315,67 +442330,6 @@ self: { ) { }; mem-info = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - fmt, - genvalidity, - genvalidity-hspec, - genvalidity-text, - hashable, - hspec, - optparse-applicative, - QuickCheck, - text, - unix, - validity, - validity-text, - }: - mkDerivation { - pname = "mem-info"; - version = "0.3.1.0"; - sha256 = "032r34swgdmb6xh3ralcpb0223i2gqfixxgly7v9da0w76cj6g7y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - fmt - hashable - optparse-applicative - text - unix - validity - validity-text - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - fmt - genvalidity - genvalidity-hspec - genvalidity-text - hashable - hspec - optparse-applicative - QuickCheck - text - unix - ]; - description = "Print the core memory usage of programs"; - license = lib.licenses.bsd3; - mainProgram = "printmem"; - } - ) { }; - - mem-info_0_4_1_1 = callPackage ( { mkDerivation, base, @@ -443439,7 +442393,6 @@ self: { ]; description = "Print the core memory usage of programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "printmem"; } ) { }; @@ -445619,6 +444572,7 @@ self: { ]; description = "A simple tcp and udp socket server framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -445656,6 +444610,7 @@ self: { ]; description = "Socket transport for metro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -445695,6 +444650,7 @@ self: { ]; description = "Crypto transport for metro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -445753,6 +444709,7 @@ self: { ]; description = "Websockets transport for metro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -445776,6 +444733,7 @@ self: { ]; description = "XOR transport for metro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -446104,42 +445062,32 @@ self: { bytestring, containers, deepseq, - fail, - QuickCheck, quickcheck-instances, tasty, tasty-quickcheck, text, - unordered-containers, vector, }: mkDerivation { pname = "microaeson"; - version = "0.1.0.2"; - sha256 = "025vnzs4j2nmkin5x8h5hbrj25spamqppg68wfqlnbrr1519lxfz"; - revision = "2"; - editedCabalFile = "04kq6sh1fl0xgkai0d055s7hkwf21vlksgqizh4xfvsb2xbakgiz"; + version = "0.1.0.3"; + sha256 = "04sngljny67zcs4271b4f1yvcjlahmn55yh30nwjpmwjybwahg66"; libraryHaskellDepends = [ array base bytestring containers deepseq - fail text ]; libraryToolDepends = [ alex ]; testHaskellDepends = [ aeson base - bytestring containers - QuickCheck quickcheck-instances tasty tasty-quickcheck - text - unordered-containers vector ]; description = "A tiny JSON library with light dependency footprint"; @@ -446306,8 +445254,8 @@ self: { }: mkDerivation { pname = "microformats2-parser"; - version = "1.0.2.2"; - sha256 = "0r1j0ky2kqc1qkvdhmcxxjwc7gplmsr0pdra2fc0xb0k7ccb2hvc"; + version = "1.0.2.3"; + sha256 = "0b2cvf8z8hylgcmxfql9rchkfi4cnhjzy3awv6jrjy6gzyq3y9kr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -446357,8 +445305,6 @@ self: { ]; description = "A Microformats 2 parser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -446418,20 +445364,6 @@ self: { ) { }; microlens = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "microlens"; - version = "0.4.13.1"; - sha256 = "1z6ph89sgdhgdf8sqaw9g978mlnvlc4k8y50pssaxxplizpanm0a"; - revision = "1"; - editedCabalFile = "07d5lm0p98aly7wfm1ishm8dy6ccgg2mklrxkgry9s3qblmnw9gw"; - libraryHaskellDepends = [ base ]; - description = "A tiny lens library with no dependencies"; - license = lib.licenses.bsd3; - } - ) { }; - - microlens_0_4_14_0 = callPackage ( { mkDerivation, base }: mkDerivation { pname = "microlens"; @@ -446440,7 +445372,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A tiny lens library with no dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -446533,33 +445464,6 @@ self: { ) { }; microlens-ghc = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - microlens, - transformers, - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.14.3"; - sha256 = "13sczn286n6yjjhnf3nsjq1l43rgxawr61ma1f4pmwd4aj1ihdcp"; - libraryHaskellDepends = [ - array - base - bytestring - containers - microlens - transformers - ]; - description = "microlens + array, bytestring, containers, transformers"; - license = lib.licenses.bsd3; - } - ) { }; - - microlens-ghc_0_4_15_1 = callPackage ( { mkDerivation, array, @@ -446583,38 +445487,10 @@ self: { ]; description = "microlens + array, bytestring, containers, transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; microlens-mtl = callPackage ( - { - mkDerivation, - base, - microlens, - mtl, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.2.0.3"; - sha256 = "1ilz0zyyk9f6h97gjsaqq65njfs23fk3wxhigvj4z0brf7rnlssd"; - revision = "1"; - editedCabalFile = "0xw3hjsfdg0hz12bk9yh2zqs2xi4jxaspwkd968ajxq13rmygxlj"; - libraryHaskellDepends = [ - base - microlens - mtl - transformers - transformers-compat - ]; - description = "microlens support for Reader/Writer/State from mtl"; - license = lib.licenses.bsd3; - } - ) { }; - - microlens-mtl_0_2_1_0 = callPackage ( { mkDerivation, base, @@ -446636,44 +445512,10 @@ self: { ]; description = "microlens support for Reader/Writer/State from mtl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; microlens-platform = callPackage ( - { - mkDerivation, - base, - hashable, - microlens, - microlens-ghc, - microlens-mtl, - microlens-th, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.4.3.6"; - sha256 = "0bbskwm9lh2lmk54a0hwc4aq9fpw4zpq5089nd7w2w0m9rny9jka"; - libraryHaskellDepends = [ - base - hashable - microlens - microlens-ghc - microlens-mtl - microlens-th - text - unordered-containers - vector - ]; - description = "microlens + all batteries included (best for apps)"; - license = lib.licenses.bsd3; - } - ) { }; - - microlens-platform_0_4_4_1 = callPackage ( { mkDerivation, base, @@ -446703,7 +445545,6 @@ self: { ]; description = "microlens + all batteries included (best for apps)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -447307,6 +446148,8 @@ self: { ]; description = "Utility functions for processing MIDI files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -447847,8 +446690,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "High performance web server on WAI/warp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.sternenseemann ]; } ) { }; @@ -448497,6 +447339,8 @@ self: { ]; description = "Double-ended priority queues"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -449635,16 +448479,16 @@ self: { mkDerivation, async, base, + system-cxx-std-lib, }: mkDerivation { pname = "minisat"; - version = "0.1.3"; - sha256 = "172l1zn3ls0s55llnp4z1kgf388bs5vq4a8qys2x7dqk9zmgpbqb"; - revision = "1"; - editedCabalFile = "1h5p30fmkgn8d2rl9cjd7ggwph2bhhiziz9zdi5caasnklsr1cvk"; + version = "0.1.4"; + sha256 = "0v696v733hvllp2gfa9dp0nsw8d1836wjdirih912zap4igralfq"; libraryHaskellDepends = [ async base + system-cxx-std-lib ]; description = "A Haskell bundle of the Minisat SAT solver"; license = lib.licenses.bsd3; @@ -451883,6 +450727,35 @@ self: { } ) { }; + mmzk-env = callPackage ( + { + mkDerivation, + base, + containers, + gigaparsec, + hspec, + }: + mkDerivation { + pname = "mmzk-env"; + version = "0.1.0.0"; + sha256 = "1lrm2cp0xl5qbas91rij940c169jv29n2iyjv6nx2873yqa3ig37"; + libraryHaskellDepends = [ + base + containers + gigaparsec + ]; + testHaskellDepends = [ + base + containers + gigaparsec + hspec + ]; + description = "Read environment variables into a user-defined data type"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + mmzk-typeid = callPackage ( { mkDerivation, @@ -452285,8 +451158,8 @@ self: { }: mkDerivation { pname = "mod"; - version = "0.2.0.1"; - sha256 = "0wp8623f8i10l73yagnz0ivyfm35j08jkw3xsly0jic5x3jghqra"; + version = "0.2.1.0"; + sha256 = "1fgkiczhvn2w23jyn571c5cbhnl3v1yhai9sfqg0brxrba7kqjyq"; libraryHaskellDepends = [ base deepseq @@ -453878,8 +452751,10 @@ self: { ]; description = "A library for probabilistic programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; maintainers = [ lib.maintainers.turion ]; + broken = true; } ) { }; @@ -453951,35 +452826,6 @@ self: { ) { }; monad-chronicle = callPackage ( - { - mkDerivation, - base, - data-default-class, - mtl, - semigroupoids, - these, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "monad-chronicle"; - version = "1.0.2"; - sha256 = "1mmp2r75b3j9l0rvxjvl1znlr7x4d8baj6ykffdsbnf9v59h0dcx"; - libraryHaskellDepends = [ - base - data-default-class - mtl - semigroupoids - these - transformers - transformers-compat - ]; - description = "These as a transformer, ChronicleT"; - license = lib.licenses.bsd3; - } - ) { }; - - monad-chronicle_1_1 = callPackage ( { mkDerivation, base, @@ -454003,7 +452849,6 @@ self: { ]; description = "These as a transformer, ChronicleT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -454789,8 +453634,8 @@ self: { }: mkDerivation { pname = "monad-logger-aeson"; - version = "0.4.1.3"; - sha256 = "13w60v9kadvdcvwf5p376yvxsf7ifh86b94z0hyzvrq0l4d9p73v"; + version = "0.4.1.4"; + sha256 = "0gfzp22c4my130wxk1q9xzigl7kn30f203f7d53mgcrmg43kvnbq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -454824,7 +453669,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON logging using monad-logger interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "readme-example"; + broken = true; } ) { }; @@ -456826,43 +455673,6 @@ self: { ) { }; monadology = callPackage ( - { - mkDerivation, - base, - constraints, - invariant, - tasty, - tasty-hunit, - text, - transformers, - type-rig, - witness, - }: - mkDerivation { - pname = "monadology"; - version = "0.3"; - sha256 = "1nfx9hl6vimqwr7dv3nlvf0c5brjppznjzrqr0kqdxjz7mvjmvy1"; - libraryHaskellDepends = [ - base - constraints - invariant - transformers - type-rig - witness - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - text - transformers - ]; - description = "The best ideas in monad-related classes and types"; - license = lib.licenses.bsd2; - } - ) { }; - - monadology_0_4 = callPackage ( { mkDerivation, base, @@ -456895,7 +455705,6 @@ self: { ]; description = "The best ideas in monad-related classes and types"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -457596,6 +456405,8 @@ self: { ]; description = "Type-classes for interacting with monomorphic containers with a key"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -457680,34 +456491,6 @@ self: { ) { }; monoid-extras = callPackage ( - { - mkDerivation, - base, - criterion, - groups, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "monoid-extras"; - version = "0.6.5"; - sha256 = "00snvxpah65dx14652dljfz8xyv1dijm38yhx81pjzz8qzsnk14f"; - libraryHaskellDepends = [ - base - groups - semigroupoids - ]; - benchmarkHaskellDepends = [ - base - criterion - semigroups - ]; - description = "Various extra monoid-related definitions and utilities"; - license = lib.licenses.bsd3; - } - ) { }; - - monoid-extras_0_7 = callPackage ( { mkDerivation, base, @@ -457732,7 +456515,6 @@ self: { ]; description = "Various extra monoid-related definitions and utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -457859,6 +456641,8 @@ self: { ]; description = "Monoids for calculation of statistics of sample"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -458015,69 +456799,6 @@ self: { ) { }; monoidmap = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - groups, - hspec, - hspec-discover, - monoid-subclasses, - nothunks, - pretty-show, - QuickCheck, - quickcheck-classes, - quickcheck-groups, - quickcheck-monoid-subclasses, - quickcheck-quid, - tasty-bench, - tasty-hunit, - text, - }: - mkDerivation { - pname = "monoidmap"; - version = "0.0.4.3"; - sha256 = "1f8fk22l1929ryb672db3z0jqgm7nkpm0mqk6a0g1wl5nm5swwmq"; - libraryHaskellDepends = [ - base - containers - deepseq - groups - monoid-subclasses - nothunks - ]; - testHaskellDepends = [ - base - containers - groups - hspec - monoid-subclasses - pretty-show - QuickCheck - quickcheck-classes - quickcheck-groups - quickcheck-monoid-subclasses - quickcheck-quid - text - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - base - containers - deepseq - tasty-bench - tasty-hunit - ]; - doHaddock = false; - description = "Monoidal map type"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - monoidmap_0_0_4_4 = callPackage ( { mkDerivation, base, @@ -458103,8 +456824,6 @@ self: { ]; description = "Monoidal map type"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -458151,7 +456870,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON support for monoidmap"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -458185,7 +456903,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Examples for monoidmap"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -458271,7 +456988,6 @@ self: { ]; description = "QuickCheck support for monoidmap"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -458460,6 +457176,7 @@ self: { ]; description = "A GUI library for writing native Haskell applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dev-test-app"; } ) { inherit (pkgs) glew; }; @@ -458562,6 +457279,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A datagrid widget for the Monomer library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -458812,8 +457530,6 @@ self: { ]; description = "MonthName"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -459841,6 +458557,7 @@ self: { ]; description = "Morpheus GraphQL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -460104,7 +458821,9 @@ self: { ]; description = "Morpheus GraphQL CLI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "morpheus"; + broken = true; } ) { }; @@ -461676,6 +460395,7 @@ self: { ]; description = "Datastructures to describe TCP and MPTCP connections"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -463398,6 +462118,25 @@ self: { } ) { }; + mtl-mhs = callPackage ( + { + mkDerivation, + base, + transformers, + }: + mkDerivation { + pname = "mtl-mhs"; + version = "2.3.1"; + sha256 = "15hxl9n6lb4d4cn5wgkhy6yya1haq3f69l6klbjmwajhb7wlx8pd"; + libraryHaskellDepends = [ + base + transformers + ]; + description = "Monad classes for transformers, using functional dependencies"; + license = lib.licenses.bsd3; + } + ) { }; + mtl-misc-yj = callPackage ( { mkDerivation, @@ -464489,6 +463228,8 @@ self: { pname = "muesli"; version = "0.1.1.0"; sha256 = "0cysqy3g9zgvbzj9gnwlpqk63inkm26dvhhqx8qlzp1lan6f125w"; + revision = "1"; + editedCabalFile = "05gfs4lh5qm5sy7swdgf4qq3bfyc4b2n90jf17xiswaw3w1spwqg"; libraryHaskellDepends = [ base bytestring @@ -464764,6 +463505,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A few multimap variants"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -466137,6 +464880,40 @@ self: { } ) { Vector = null; }; + multiverse-debugging = callPackage ( + { + mkDerivation, + base, + containers, + haskeline, + }: + mkDerivation { + pname = "multiverse-debugging"; + version = "0.2.0.1"; + sha256 = "1hkjiqikg27s2azh76klg2j85y7nfxqgn1r8jxn2xm2h20kak0jv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + haskeline + ]; + executableHaskellDepends = [ + base + containers + haskeline + ]; + testHaskellDepends = [ + base + containers + haskeline + ]; + description = "A framework for multiverse debugging"; + license = lib.licenses.bsd3; + mainProgram = "multiverse-debugging-exe"; + } + ) { }; + multiwalk = callPackage ( { mkDerivation, @@ -466255,7 +465032,6 @@ self: { ]; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -467917,6 +466693,7 @@ self: { ]; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -468714,7 +467491,6 @@ self: { bytestring, bytestring-lexing, case-insensitive, - containers, criterion, crypton, crypton-x509, @@ -468735,6 +467511,7 @@ self: { scanner, scientific, tasty, + tasty-expected-failure, tasty-hunit, tasty-quickcheck, text, @@ -468746,8 +467523,8 @@ self: { }: mkDerivation { pname = "mysql-haskell"; - version = "1.1.6"; - sha256 = "1dzin4xk5d6dn1grqh6dagmcwj2q1rycxfsi2l23kbapm26a7m0b"; + version = "1.1.7"; + sha256 = "0798v6ybbknfp0xxq8wc8ladisrnnn8yhh1k6z5ya62gppp5v48m"; libraryHaskellDepends = [ base binary @@ -468777,8 +467554,6 @@ self: { base binary bytestring - bytestring-lexing - containers deepseq directory filepath @@ -468788,6 +467563,7 @@ self: { quickcheck-instances scientific tasty + tasty-expected-failure tasty-hunit tasty-quickcheck text @@ -470231,6 +469007,7 @@ self: { ]; description = "A parameterized named text type and associated functionality"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -470528,17 +469305,14 @@ self: { criterion, nanomsg, QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, + tasty, + tasty-quickcheck, zeromq4-haskell, }: mkDerivation { pname = "nanomsg-haskell"; - version = "0.2.4"; - sha256 = "00941a7vp6y4gzxpjlr4516ic96l5892w0akqajq3jyh5601jqg3"; - revision = "1"; - editedCabalFile = "02ahbmda51j7ayvda9nwvkbw8wnd1gm9kqa3lqdqh8s587wl4wm7"; + version = "0.2.5"; + sha256 = "17qqb9bqjzl8whylwc784ksv69zw5dyx5gvjjjfi68qnafx9fka5"; libraryHaskellDepends = [ base binary @@ -470547,12 +469321,10 @@ self: { librarySystemDepends = [ nanomsg ]; testHaskellDepends = [ base - binary bytestring QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th + tasty + tasty-quickcheck ]; benchmarkHaskellDepends = [ base @@ -470562,8 +469334,6 @@ self: { ]; description = "Bindings to the nanomsg library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { inherit (pkgs) nanomsg; }; @@ -470738,6 +469508,8 @@ self: { ]; description = "Haskell bindings for nanovg"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { @@ -470962,6 +469734,8 @@ self: { ]; description = "Refinement types for natural numbers with an optics interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -472277,8 +471051,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Nerd Font Icons for use in haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -472888,6 +471660,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "An MQTT Protocol Implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -472922,6 +471696,7 @@ self: { ]; description = "Optics for net-mqtt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -472969,6 +471744,7 @@ self: { ]; description = "Make RPC calls via an MQTT broker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mqtt-rpc"; } ) { }; @@ -473742,8 +472518,8 @@ self: { }: mkDerivation { pname = "netrc"; - version = "0.2.0.1"; - sha256 = "0scp0y4l5cmj8jkf64rjd0sw51nv8ndk43fg6fwkij37z7pcy42l"; + version = "0.2.0.2"; + sha256 = "0dhy1l41yprqn0n6m0gy8aqj2byxjq0qqlap66zvz14kczj7ly5w"; libraryHaskellDepends = [ base bytestring @@ -474238,8 +473014,8 @@ self: { }: mkDerivation { pname = "network"; - version = "3.2.7.0"; - sha256 = "12vjx5nr65x7wz5napj85cvp60l8rh4gwcqc4fdw18rj0rk8wm38"; + version = "3.2.8.0"; + sha256 = "1j2zbjqpnrwkhi5673by8z1dp92mh3glik8a4r7jcxvxxdg8wy2i"; libraryHaskellDepends = [ base bytestring @@ -476699,6 +475475,45 @@ self: { } ) { }; + network-wait_0_4_0_0 = callPackage ( + { + mkDerivation, + base, + bytestring, + exceptions, + network, + network-simple, + retry, + tasty, + tasty-hunit, + }: + mkDerivation { + pname = "network-wait"; + version = "0.4.0.0"; + sha256 = "16pc8d6byma1srkljz02wbp0kwfskybq0d1rb01q3c17l0dqqp61"; + libraryHaskellDepends = [ + base + bytestring + exceptions + network + retry + ]; + testHaskellDepends = [ + base + bytestring + exceptions + network + network-simple + retry + tasty + tasty-hunit + ]; + description = "Lightweight library for waiting on networked services to become available"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + network-websocket = callPackage ( { mkDerivation, @@ -477616,8 +476431,8 @@ self: { pname = "newtype-generics"; version = "0.6.2"; sha256 = "0km7cp041bgdgrxrbrawz611mcylxp943880a2yg228a09961b51"; - revision = "4"; - editedCabalFile = "1489zmir2l591y7k9rik6khj6vf9zjnkxyhnpmpr4djpdzk6pcin"; + revision = "5"; + editedCabalFile = "0arlqrq482ai3j6cwgb8kc34zc8y3ghg8fgrxxcnw752hzrl1g71"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -478846,8 +477661,8 @@ self: { pname = "nix-derivation"; version = "1.1.3"; sha256 = "11drhg3zjhwbvdw25k0icvbkcpqilx0m9qw60k7snfaz1iadfkdb"; - revision = "1"; - editedCabalFile = "1w84h665dls927g1zwzyfp91jyk97dy0ccii8m07y1prp007ccxa"; + revision = "2"; + editedCabalFile = "0vh21lq7wishsv6wysi1yrmij1iq7kafyrv02nr06sdgfwh0vzan"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -478920,6 +477735,8 @@ self: { pname = "nix-diff"; version = "1.0.21"; sha256 = "0c9v9n75p1zfr546l2h2n0d42whyr1xm5whq86a22inmjqrbbq4y"; + revision = "1"; + editedCabalFile = "0j7xk1v0rq7k3d0yh02173nilws6iwrbgkn134px84rn9fcwq3vg"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -479296,8 +478113,8 @@ self: { }: mkDerivation { pname = "nix-thunk"; - version = "0.7.2.1"; - sha256 = "0j31dl1jv1219cpbgp2gixqdhpdgxi19gvlwbf9wamxwbdiml133"; + version = "0.7.2.2"; + sha256 = "1p78bvj7d8by69bnfma9lgj58vd6r471cr40v097hl4l3y9a6am7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -479595,6 +478412,8 @@ self: { pname = "nixfmt"; version = "0.6.0"; sha256 = "0jgg8cp2q6ip15cjw10zk2ff4avqc5nwd8amkrrqm0zka41pc0jz"; + revision = "1"; + editedCabalFile = "0bfc9pg4s6xhq2spm32xxg9ivmrcbang4pm62wwkq8rhby6yszwr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -481360,12 +480179,16 @@ self: { hspec, hspec-core, hspec-discover, + template-haskell, }: mkDerivation { pname = "nonempty-wrapper"; - version = "0.1.0.0"; - sha256 = "057c0ry3p4z1x2br6v5gm4c044i0z868kk5jihyf8s0r821zfzxj"; - libraryHaskellDepends = [ base ]; + version = "0.1.1.0"; + sha256 = "0pd8hid5a7m7v7vgcf0gvp2321aim03jq57pcgpj5v99lf3545cg"; + libraryHaskellDepends = [ + base + template-haskell + ]; testHaskellDepends = [ base hspec @@ -481391,8 +480214,8 @@ self: { }: mkDerivation { pname = "nonempty-wrapper-aeson"; - version = "0.1.0.0"; - sha256 = "0qg0xl93vl4nkm2aqsfqnwgk7vsaxvbib302n4ap6m5vks84b8fg"; + version = "0.1.0.1"; + sha256 = "0rc78k8mig3l2s7xzr71rnsf795q0p3f2nmdi9gnf5s1v77rli5i"; libraryHaskellDepends = [ aeson base @@ -481422,8 +480245,8 @@ self: { }: mkDerivation { pname = "nonempty-wrapper-quickcheck"; - version = "0.1.0.0"; - sha256 = "1k0bb0ir5k9cmgv261s1l86yd0sfrl0m9h0dfc2qhq9qzz9k2lvz"; + version = "0.1.0.1"; + sha256 = "1c86ggam7ay381cw5yhi74bbab5nmm0vjd0xg25m5as87agycj7k"; libraryHaskellDepends = [ base nonempty-wrapper @@ -481444,8 +480267,8 @@ self: { }: mkDerivation { pname = "nonempty-wrapper-text"; - version = "0.1.0.0"; - sha256 = "1v2my0dcy7frmnnhf46rqsiqi5mfsk7d1fi28agcg9qva73qiw4q"; + version = "0.1.1.0"; + sha256 = "04g43biz6vc8d6b61p53xs02vs2jwk216sn2clzkaljzmljzcycl"; libraryHaskellDepends = [ base bytestring @@ -481986,10 +480809,10 @@ self: { }: mkDerivation { pname = "nothunks"; - version = "0.3.0.0"; - sha256 = "0fnwad49mv0q46wrnapkqh4hm4rm43gw0papppqrg0z96r658yc4"; + version = "0.3.1"; + sha256 = "0pcpgv4pp0likra1rxyf70w48qn0nyqqghagym1x73j4zr9gk0rp"; revision = "1"; - editedCabalFile = "08w1sgh8z7i24623bx7lkhap80zmfhs4kfxgylsvz0zb8hbg7gvp"; + editedCabalFile = "1qsabpyjcwkm75jh7pa6yv2aza0z50rpn0q27sxjxmhw1gbv0rja"; libraryHaskellDepends = [ base bytestring @@ -484371,8 +483194,8 @@ self: { }: mkDerivation { pname = "numhask"; - version = "0.12.1.0"; - sha256 = "1709f96j4jk81cqadb2lngr35j7jv7rixjx1i7qcccqr80dxhbq6"; + version = "0.13.1.0"; + sha256 = "0l326qwhra12ryjq9xmssl6pphfa4c5rhhbg1rm47rklclahwcy5"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -484384,29 +483207,6 @@ self: { } ) { }; - numhask_0_13_0_0 = callPackage ( - { - mkDerivation, - base, - doctest-parallel, - QuickCheck, - }: - mkDerivation { - pname = "numhask"; - version = "0.13.0.0"; - sha256 = "13174w30c9pmmfjc5gn9yfzvlyr6ljm0diyh0q0gysiq0wspx2ni"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest-parallel - QuickCheck - ]; - description = "A numeric class hierarchy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - numhask-array = callPackage ( { mkDerivation, @@ -484429,6 +483229,8 @@ self: { ]; description = "Multi-dimensional arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -484597,43 +483399,6 @@ self: { ) { }; numhask-space = callPackage ( - { - mkDerivation, - adjunctions, - base, - containers, - distributive, - numhask, - random, - semigroupoids, - tdigest, - text, - time, - vector, - }: - mkDerivation { - pname = "numhask-space"; - version = "0.11.1.0"; - sha256 = "0hl6f91c86i0yv9pv97m4kqyx3mb6kzixcxianxvgmv10gbn2c82"; - libraryHaskellDepends = [ - adjunctions - base - containers - distributive - numhask - random - semigroupoids - tdigest - text - time - vector - ]; - description = "Numerical spaces"; - license = lib.licenses.bsd3; - } - ) { }; - - numhask-space_0_13_0_0 = callPackage ( { mkDerivation, adjunctions, @@ -484650,8 +483415,8 @@ self: { }: mkDerivation { pname = "numhask-space"; - version = "0.13.0.0"; - sha256 = "0nhjj99b170axz8fncxvsshxvf9z57gyas2qnwyr53kawandl49j"; + version = "0.13.1.0"; + sha256 = "145jb3vcy1n1i0xfhsnz4bm9fl2wnvikrazavv6x5yxjnba1m24m"; libraryHaskellDepends = [ adjunctions base @@ -484670,7 +483435,6 @@ self: { ]; description = "Numerical spaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -484836,7 +483600,9 @@ self: { text ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nuxeo"; + broken = true; } ) { }; @@ -485535,7 +484301,9 @@ self: { ]; description = "Type-safe time library"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "play-o-clock"; + broken = true; } ) { }; @@ -486127,7 +484895,6 @@ self: { doHaddock = false; description = "Oberon0 Compiler"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -487084,10 +485851,8 @@ self: { }: mkDerivation { pname = "ods2csv"; - version = "0.1.0.1"; - sha256 = "1a1qrknqh24hgv5v46vnxnaqcnx3n92rcwgh3b6h6k27kassx4xa"; - revision = "1"; - editedCabalFile = "0sb7k4sw64ld5jdsx1g522q911d4z9c92mh0vfjb0p7h4r1h71hm"; + version = "0.1.0.2"; + sha256 = "0smbbyn74khs1ldfh7cax7drhv383pyfq1j5ljwzlx3fj5b0hlh1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -487284,6 +486049,50 @@ self: { } ) { }; + ogma-cli_1_9_0 = callPackage ( + { + mkDerivation, + aeson, + base, + HUnit, + microstache, + ogma-core, + optparse-applicative, + process, + test-framework, + test-framework-hunit, + text, + unix, + }: + mkDerivation { + pname = "ogma-cli"; + version = "1.9.0"; + sha256 = "0br6rv5bli12xhbr8igxgwrp3j4cbm8mxqhva6mxykg6s2s19wab"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson + base + microstache + ogma-core + optparse-applicative + text + ]; + testHaskellDepends = [ + base + HUnit + process + test-framework + test-framework-hunit + unix + ]; + description = "Ogma: Helper tool to interoperate between Copilot and other languages"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + mainProgram = "ogma"; + } + ) { }; + ogma-core = callPackage ( { mkDerivation, @@ -487356,6 +486165,79 @@ self: { } ) { }; + ogma-core_1_9_0 = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + directory, + filepath, + graphviz, + HUnit, + megaparsec, + mtl, + ogma-extra, + ogma-language-c, + ogma-language-copilot, + ogma-language-csv, + ogma-language-jsonspec, + ogma-language-lustre, + ogma-language-smv, + ogma-language-xlsx, + ogma-language-xmlspec, + ogma-spec, + process, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, + text, + }: + mkDerivation { + pname = "ogma-core"; + version = "1.9.0"; + sha256 = "1nh0qnb84sy0qwks1fpyvz7i7sini5sqk1a7na82axw5jkhjdhrg"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson + base + bytestring + containers + directory + filepath + graphviz + megaparsec + mtl + ogma-extra + ogma-language-c + ogma-language-copilot + ogma-language-csv + ogma-language-jsonspec + ogma-language-lustre + ogma-language-smv + ogma-language-xlsx + ogma-language-xmlspec + ogma-spec + process + text + ]; + testHaskellDepends = [ + base + directory + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + ]; + description = "Ogma: Helper tool to interoperate between Copilot and other languages"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-extra = callPackage ( { mkDerivation, @@ -487396,6 +486278,47 @@ self: { } ) { }; + ogma-extra_1_9_0 = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + Cabal, + directory, + filepath, + microstache, + QuickCheck, + test-framework, + test-framework-quickcheck2, + text, + }: + mkDerivation { + pname = "ogma-extra"; + version = "1.9.0"; + sha256 = "0cl4gfkkms75p1yl137dlpfivqqgc491dmh55iwagqszkgaix0lg"; + libraryHaskellDepends = [ + aeson + base + bytestring + Cabal + directory + filepath + microstache + text + ]; + testHaskellDepends = [ + base + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + description = "Ogma: Helper tool to interoperate between Copilot and other languages"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-c = callPackage ( { mkDerivation, @@ -487439,6 +486362,50 @@ self: { } ) { }; + ogma-language-c_1_9_0 = callPackage ( + { + mkDerivation, + alex, + array, + base, + BNFC, + Cabal, + happy, + process, + QuickCheck, + test-framework, + test-framework-quickcheck2, + }: + mkDerivation { + pname = "ogma-language-c"; + version = "1.9.0"; + sha256 = "1s6acmdbvqzhdjd67vlsc0y5ld4s7z0w5g35ka3d6sqk4sj0j795"; + setupHaskellDepends = [ + base + Cabal + process + ]; + libraryHaskellDepends = [ + array + base + ]; + libraryToolDepends = [ + alex + BNFC + happy + ]; + testHaskellDepends = [ + base + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + description = "Ogma: Runtime Monitor translator: C Language Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-cocospec = callPackage ( { mkDerivation, @@ -487490,6 +486457,19 @@ self: { } ) { }; + ogma-language-copilot_1_9_0 = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "ogma-language-copilot"; + version = "1.9.0"; + sha256 = "0sl2n2m1nkllmzrb2av6s1q1iq7jz9zrjh5mxczriwk3c1jv7x2c"; + libraryHaskellDepends = [ base ]; + description = "Ogma: Runtime Monitor translator: Copilot Language Endpoints"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-csv = callPackage ( { mkDerivation, @@ -487519,6 +486499,36 @@ self: { } ) { }; + ogma-language-csv_1_9_0 = callPackage ( + { + mkDerivation, + base, + bytestring, + cassava, + mtl, + ogma-spec, + text, + vector, + }: + mkDerivation { + pname = "ogma-language-csv"; + version = "1.9.0"; + sha256 = "0mkkbgia5dvnpqy11pqxvikjvgck0zq7cx1alnsh6hi9j1qj75ad"; + libraryHaskellDepends = [ + base + bytestring + cassava + mtl + ogma-spec + text + vector + ]; + description = "Ogma: Runtime Monitor translator: CSV Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-fret-cs = callPackage ( { mkDerivation, @@ -487624,6 +486634,38 @@ self: { } ) { }; + ogma-language-jsonspec_1_9_0 = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + jsonpath, + megaparsec, + mtl, + ogma-spec, + text, + }: + mkDerivation { + pname = "ogma-language-jsonspec"; + version = "1.9.0"; + sha256 = "0wlkl13gg0jbi8fvszk4z1l0c4l7b0n68gnhnmn93srcn14iinkn"; + libraryHaskellDepends = [ + aeson + base + bytestring + jsonpath + megaparsec + mtl + ogma-spec + text + ]; + description = "Ogma: Runtime Monitor translator: JSON Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-lustre = callPackage ( { mkDerivation, @@ -487667,6 +486709,50 @@ self: { } ) { }; + ogma-language-lustre_1_9_0 = callPackage ( + { + mkDerivation, + alex, + array, + base, + BNFC, + Cabal, + happy, + process, + QuickCheck, + test-framework, + test-framework-quickcheck2, + }: + mkDerivation { + pname = "ogma-language-lustre"; + version = "1.9.0"; + sha256 = "0rb22md683flgxkg08jzga4q7fynykzh25k1gcr6rsj0kaaxi4fj"; + setupHaskellDepends = [ + base + Cabal + process + ]; + libraryHaskellDepends = [ + array + base + ]; + libraryToolDepends = [ + alex + BNFC + happy + ]; + testHaskellDepends = [ + base + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + description = "Ogma: Runtime Monitor translator: Lustre Language Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-smv = callPackage ( { mkDerivation, @@ -487710,6 +486796,50 @@ self: { } ) { }; + ogma-language-smv_1_9_0 = callPackage ( + { + mkDerivation, + alex, + array, + base, + BNFC, + Cabal, + happy, + process, + QuickCheck, + test-framework, + test-framework-quickcheck2, + }: + mkDerivation { + pname = "ogma-language-smv"; + version = "1.9.0"; + sha256 = "15dsh5j6iaapaxi6i05z44shvbxvs5945r93046d6shxvxz5q5gb"; + setupHaskellDepends = [ + base + Cabal + process + ]; + libraryHaskellDepends = [ + array + base + ]; + libraryToolDepends = [ + alex + BNFC + happy + ]; + testHaskellDepends = [ + base + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + description = "Ogma: Runtime Monitor translator: SMV Language Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-xlsx = callPackage ( { mkDerivation, @@ -487735,6 +486865,32 @@ self: { } ) { }; + ogma-language-xlsx_1_9_0 = callPackage ( + { + mkDerivation, + base, + bytestring, + ogma-spec, + text, + xlsx, + }: + mkDerivation { + pname = "ogma-language-xlsx"; + version = "1.9.0"; + sha256 = "191s4kc2gicgrdl3jzw9j31l0yncaradii2vz7h3gqg2rz63qfsv"; + libraryHaskellDepends = [ + base + bytestring + ogma-spec + text + xlsx + ]; + description = "Ogma: Runtime Monitor translator: XLSX Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-language-xmlspec = callPackage ( { mkDerivation, @@ -487764,6 +486920,36 @@ self: { } ) { }; + ogma-language-xmlspec_1_9_0 = callPackage ( + { + mkDerivation, + base, + hxt, + hxt-regex-xmlschema, + hxt-xpath, + mtl, + ogma-spec, + pretty, + }: + mkDerivation { + pname = "ogma-language-xmlspec"; + version = "1.9.0"; + sha256 = "07cp3d543pnbmb7qma8l9v1zfnh3nn41azl1clv8p9bsfgm5a86j"; + libraryHaskellDepends = [ + base + hxt + hxt-regex-xmlschema + hxt-xpath + mtl + ogma-spec + pretty + ]; + description = "Ogma: Runtime Monitor translator: XML Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogma-spec = callPackage ( { mkDerivation, base }: mkDerivation { @@ -487776,6 +486962,19 @@ self: { } ) { }; + ogma-spec_1_9_0 = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "ogma-spec"; + version = "1.9.0"; + sha256 = "1vg67wg2px1lp89m29h1dyy4cqgpxq5yfsdq6kg63b0i8dlv71g8"; + libraryHaskellDepends = [ base ]; + description = "Ogma: Runtime Monitor translator: JSON Frontend"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + ogmarkup = callPackage ( { mkDerivation, @@ -488167,64 +487366,6 @@ self: { ) { }; ollama-haskell = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - directory, - filepath, - http-client, - http-types, - silently, - tasty, - tasty-hunit, - text, - time, - }: - mkDerivation { - pname = "ollama-haskell"; - version = "0.1.3.0"; - sha256 = "1ds9hkjhmkaw7mgxbpbq83df30iwjmnxi343f2sbm8xl8hhc8c1g"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - directory - filepath - http-client - http-types - text - time - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - directory - filepath - http-client - http-types - silently - tasty - tasty-hunit - text - time - ]; - description = "Haskell bindings for ollama"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - ollama-haskell_0_2_0_0 = callPackage ( { mkDerivation, aeson, @@ -488288,8 +487429,6 @@ self: { ]; description = "Haskell client for ollama"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -488321,7 +487460,6 @@ self: { ]; description = "A typed-hole plugin that uses LLMs to generate valid hole-fits"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -488417,8 +487555,8 @@ self: { }: mkDerivation { pname = "om-doh"; - version = "0.1.0.3"; - sha256 = "0zk87kycigpzycrr898xgn5lzazmfcqcghf7qacj0cgzqsw62xww"; + version = "0.1.0.4"; + sha256 = "12n3qap371fkwdkpm4fjr42xqnfs3kk3pmikzxxkx9zfvxk7zw58"; libraryHaskellDepends = [ base base64 @@ -488452,8 +487590,8 @@ self: { }: mkDerivation { pname = "om-elm"; - version = "2.0.1.0"; - sha256 = "0gi6frmdlv2sqhy63jjvswiahppxmapsrf1z66y3hdxi8dwhv2gm"; + version = "2.0.1.1"; + sha256 = "0vxyy8izj5rdqr7hm690mph34ag111pynn5gfkvjkwyjnv3q39hz"; libraryHaskellDepends = [ base bytestring @@ -488600,6 +487738,69 @@ self: { } ) { }; + om-http_0_6_0_0 = callPackage ( + { + mkDerivation, + aeson, + async, + base, + base64, + bytestring, + case-insensitive, + containers, + directory, + filepath, + http-types, + mime-types, + monad-logger-aeson, + network, + om-show, + safe-exceptions, + servant, + template-haskell, + text, + time, + unix, + uuid, + wai, + warp, + }: + mkDerivation { + pname = "om-http"; + version = "0.6.0.0"; + sha256 = "05szwhsd4pyxnlq215n584hnxck09grsqypdh7im9gkfx8mmqxkg"; + libraryHaskellDepends = [ + aeson + async + base + base64 + bytestring + case-insensitive + containers + directory + filepath + http-types + mime-types + monad-logger-aeson + network + om-show + safe-exceptions + servant + template-haskell + text + time + unix + uuid + wai + warp + ]; + description = "Http utilities"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + om-http-logging = callPackage ( { mkDerivation, @@ -488710,8 +487911,8 @@ self: { }: mkDerivation { pname = "om-legion"; - version = "6.9.0.7"; - sha256 = "0cpmk7qi50d1az4sdq0qdishs7pp58pxv85mq3x8qmmrmiz4qs8l"; + version = "6.9.0.8"; + sha256 = "0n5angaqy7q4s2krapgvlwd5ss0j1xwrayfii3w75hfd65gw3frj"; libraryHaskellDepends = [ aeson async @@ -489232,6 +488433,8 @@ self: { ]; description = "HTML-parsing primitives for Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -489298,6 +488501,8 @@ self: { ]; description = "Pretty-printing short Aeson values as text"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -489803,8 +489008,10 @@ self: { }: mkDerivation { pname = "opaleye"; - version = "0.10.5.0"; - sha256 = "0vp0k043a22l18hi54grn7drpp2486r43k90my59ymqyy79blh68"; + version = "0.10.7.0"; + sha256 = "0giy1g65lsvfhqqczxf0gqd4vbpb9n5van583jdlrd9w3vyf388b"; + revision = "1"; + editedCabalFile = "1mmbwdrslh4gfcc370cssv51yfjlfya9fwvxdh3254amzgh1232v"; libraryHaskellDepends = [ aeson base @@ -490174,27 +489381,6 @@ self: { ) { }; open-browser = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.1"; - sha256 = "013qjlvx2rm1hr907ls3wqw3av0alw8q7gql05bb2ccf4g1h3ay2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - process - ]; - description = "Open a web browser from Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - open-browser_0_4_0_0 = callPackage ( { mkDerivation, base, @@ -490212,7 +489398,6 @@ self: { ]; description = "Open a web browser from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -490416,45 +489601,6 @@ self: { ) { }; open-witness = callPackage ( - { - mkDerivation, - base, - constraints, - hashable, - mtl, - random, - tasty, - tasty-hunit, - template-haskell, - transformers, - witness, - }: - mkDerivation { - pname = "open-witness"; - version = "0.6"; - sha256 = "0zysnzp7zdmv9d03xnlcqdsnwjrw934gkz6ngahwaqpbx4pp1zmb"; - libraryHaskellDepends = [ - base - constraints - hashable - random - template-haskell - transformers - witness - ]; - testHaskellDepends = [ - base - mtl - tasty - tasty-hunit - witness - ]; - description = "open witnesses"; - license = lib.licenses.bsd2; - } - ) { }; - - open-witness_0_7 = callPackage ( { mkDerivation, base, @@ -490488,7 +489634,6 @@ self: { ]; description = "open witnesses"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -490515,8 +489660,8 @@ self: { }: mkDerivation { pname = "openai"; - version = "1.1.0"; - sha256 = "1kja27qbdy5zxczswrn53k1lgxf2y9hw77pj4jlc7arkpl6nndai"; + version = "1.1.1"; + sha256 = "18ny5r06nfs7px4bgr9k930w1v5ksbzc1vslx75y4bb1lndg3ipd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -490526,6 +489671,7 @@ self: { containers filepath http-api-data + http-client http-client-tls servant servant-client @@ -490536,8 +489682,11 @@ self: { vector ]; executableHaskellDepends = [ + aeson base + bytestring text + vector ]; testHaskellDepends = [ aeson @@ -490552,7 +489701,6 @@ self: { description = "Servant bindings to OpenAI"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "openai-example"; broken = true; } ) { }; @@ -491160,8 +490308,8 @@ self: { }: mkDerivation { pname = "opencascade-hs"; - version = "0.5.1.0"; - sha256 = "12c77xnh0h0h2sw23q5v891iddnmsq5j1853b90wypm6p18kpnsw"; + version = "0.6.0.0"; + sha256 = "0bi2hyz863hmrw06qjlxmwkncmzbqf5kq54cfy5ky2f3p8r0kdx9"; libraryHaskellDepends = [ base resourcet @@ -493776,57 +492924,6 @@ self: { ) { }; opt-env-conf = callPackage ( - { - mkDerivation, - aeson, - autodocodec, - autodocodec-nix, - autodocodec-schema, - autodocodec-yaml, - base, - containers, - hashable, - mtl, - path, - path-io, - safe-coloured-text, - safe-coloured-text-layout, - safe-coloured-text-terminfo, - selective, - text, - validity, - validity-containers, - }: - mkDerivation { - pname = "opt-env-conf"; - version = "0.8.0.0"; - sha256 = "0wfayv1k0xxl033knm4fjfc77ffijvh75xpg0g5f0bvc5i7kvgyc"; - libraryHaskellDepends = [ - aeson - autodocodec - autodocodec-nix - autodocodec-schema - autodocodec-yaml - base - containers - hashable - mtl - path - path-io - safe-coloured-text - safe-coloured-text-layout - safe-coloured-text-terminfo - selective - text - validity - validity-containers - ]; - description = "Settings parsing for Haskell: command-line arguments, environment variables, and configuration values"; - license = lib.licenses.lgpl3Only; - } - ) { }; - - opt-env-conf_0_9_0_0 = callPackage ( { mkDerivation, aeson, @@ -493874,7 +492971,6 @@ self: { ]; description = "Settings parsing for Haskell: command-line arguments, environment variables, and configuration values"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -494183,38 +493279,6 @@ self: { ) { }; optima = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-data, - base, - optparse-applicative, - rerebase, - text, - text-builder, - }: - mkDerivation { - pname = "optima"; - version = "0.4.0.5"; - sha256 = "0wdlnfl39zaq9mv7xxaljxq851hp4xzmblkfpfvg4qdfhk4hn7k6"; - libraryHaskellDepends = [ - attoparsec - attoparsec-data - base - optparse-applicative - text - text-builder - ]; - testHaskellDepends = [ - attoparsec-data - rerebase - ]; - description = "Simple command line interface arguments parser"; - license = lib.licenses.mit; - } - ) { }; - - optima_0_4_0_7 = callPackage ( { mkDerivation, attoparsec, @@ -494243,7 +493307,6 @@ self: { ]; description = "Simple command line interface arguments parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -494614,6 +493677,29 @@ self: { } ) { }; + optparse-applicative-dex = callPackage ( + { + mkDerivation, + base, + optparse-applicative, + prettyprinter, + text, + }: + mkDerivation { + pname = "optparse-applicative-dex"; + version = "1.0.1"; + sha256 = "0r3m43l21bn5j6sj2njkjjmh44xxnwhaah05h21866wr5vf82h0p"; + libraryHaskellDepends = [ + base + optparse-applicative + prettyprinter + text + ]; + description = "Extra functions for working with optparse-applicative"; + license = lib.licenses.isc; + } + ) { }; + optparse-applicative-simple = callPackage ( { mkDerivation, @@ -494713,8 +493799,8 @@ self: { pname = "optparse-generic"; version = "1.5.2"; sha256 = "0dca5q57jv4b8l1af4ywimaiw9rfrysambcghfmll4il5prm3d67"; - revision = "1"; - editedCabalFile = "190nlp7dh878232ia2nsl75q6bzr62szl1vcyinz528lmdbnbpdc"; + revision = "3"; + editedCabalFile = "0rmfwb4plak9vymdcf553ml7b5kpx81arjszwk4fsswx3mry6kif"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -495243,6 +494329,18 @@ self: { } ) { }; + ord-axiomata = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "ord-axiomata"; + version = "0.1.0.0"; + sha256 = "1fgzxlz2rynscnic1jawvrymhp70wxq04lpvp0ls84ky90zyzak8"; + libraryHaskellDepends = [ base ]; + description = "Axiomata & lemmata for easier use of Data.Type.Ord"; + license = lib.licenses.bsd3; + } + ) { }; + order-maintenance = callPackage ( { mkDerivation, @@ -495507,7 +494605,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Convert numbers to words in different languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ordinal"; + broken = true; } ) { }; @@ -496316,196 +495416,6 @@ self: { ) { }; ormolu = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - base, - binary, - bytestring, - Cabal-syntax, - containers, - deepseq, - Diff, - directory, - file-embed, - filepath, - ghc-lib-parser, - hspec, - hspec-discover, - hspec-megaparsec, - megaparsec, - MemoTrie, - mtl, - optparse-applicative, - path, - path-io, - QuickCheck, - syb, - temporary, - text, - th-env, - }: - mkDerivation { - pname = "ormolu"; - version = "0.7.4.0"; - sha256 = "1s7a9crjhbsmjkdvpv8ycygpiikv96s96p3lmjik4pb3q7idir2z"; - revision = "5"; - editedCabalFile = "107p02xhq0gfacc6j8kackqn16a0wnayq7qpi26acvzqqyxhcjxy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - array - base - binary - bytestring - Cabal-syntax - containers - deepseq - Diff - directory - file-embed - filepath - ghc-lib-parser - megaparsec - MemoTrie - mtl - syb - text - ]; - executableHaskellDepends = [ - base - Cabal-syntax - containers - directory - filepath - ghc-lib-parser - optparse-applicative - text - th-env - ]; - testHaskellDepends = [ - base - Cabal-syntax - containers - directory - filepath - ghc-lib-parser - hspec - hspec-megaparsec - megaparsec - path - path-io - QuickCheck - temporary - text - ]; - testToolDepends = [ hspec-discover ]; - description = "A formatter for Haskell source code"; - license = lib.licenses.bsd3; - mainProgram = "ormolu"; - } - ) { }; - - ormolu_0_7_7_0 = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - base, - binary, - bytestring, - Cabal-syntax, - choice, - containers, - deepseq, - Diff, - directory, - file-embed, - filepath, - ghc-lib-parser, - hspec, - hspec-discover, - hspec-megaparsec, - megaparsec, - MemoTrie, - mtl, - optparse-applicative, - path, - path-io, - QuickCheck, - syb, - temporary, - text, - th-env, - }: - mkDerivation { - pname = "ormolu"; - version = "0.7.7.0"; - sha256 = "1069j7cldvqqazmfrpfc6wy816227c5vz7fbq860yfb5h9ycv5ns"; - revision = "1"; - editedCabalFile = "1v8n4kf8wskyizn868k1662rqsd8myhvrjkchb9hiysw9lgja79c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - array - base - binary - bytestring - Cabal-syntax - choice - containers - deepseq - Diff - directory - file-embed - filepath - ghc-lib-parser - megaparsec - MemoTrie - mtl - syb - text - ]; - executableHaskellDepends = [ - base - Cabal-syntax - containers - directory - filepath - ghc-lib-parser - optparse-applicative - text - th-env - ]; - testHaskellDepends = [ - base - Cabal-syntax - choice - containers - directory - filepath - ghc-lib-parser - hspec - hspec-megaparsec - megaparsec - path - path-io - QuickCheck - temporary - text - ]; - testToolDepends = [ hspec-discover ]; - description = "A formatter for Haskell source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ormolu"; - } - ) { }; - - ormolu_0_8_0_0 = callPackage ( { mkDerivation, ansi-terminal, @@ -496539,8 +495449,8 @@ self: { }: mkDerivation { pname = "ormolu"; - version = "0.8.0.0"; - sha256 = "1drs1ks12wcydpdk4px1bfd2397isds7w3blhf74jg8cqwbkzms9"; + version = "0.8.0.1"; + sha256 = "12ix16zvz0i1i8yyhbfbv4r0735r2i2darkbz3jh7lfd1fgh6zs3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -496595,7 +495505,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A formatter for Haskell source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ormolu"; } ) { }; @@ -496616,8 +495525,8 @@ self: { }: mkDerivation { pname = "orthotope"; - version = "0.1.7.0"; - sha256 = "1ciii3sfs7zm22gp4ymsk30ngcv2fkgp7qfr1msqd7lj500f5hrw"; + version = "0.1.7.1"; + sha256 = "1g2hh8q035mnb7zwfhhsj2la8j96aab52lns6iqlj5ds6rmpvzrg"; libraryHaskellDepends = [ base deepseq @@ -496681,13 +495590,14 @@ self: { text, time, transformers, + unliftio, unliftio-core, uuid, }: mkDerivation { pname = "orville-postgresql"; - version = "1.0.0.0"; - sha256 = "1gri9224fsznbfz4ijawjbn32y88wfnry005dk45qg8mdd5gkn33"; + version = "1.1.0.0"; + sha256 = "11yax49l861qkx22nqphdch1w1gg1yp01m6kb2dcrgn50clbxqql"; libraryHaskellDepends = [ attoparsec base @@ -496716,6 +495626,8 @@ self: { safe-exceptions text time + transformers + unliftio uuid ]; description = "A Haskell library for PostgreSQL"; @@ -496918,7 +495830,21 @@ self: { } ) { }; - os-string = callPackage ( + os-string_1_0_0 = callPackage ( + { mkDerivation, filepath }: + mkDerivation { + pname = "os-string"; + version = "1.0.0"; + sha256 = "0znnp88cgbj3r858r2w6mlf2sjg3lxfajyih4bdshs0vgy1dyhr6"; + libraryHaskellDepends = [ filepath ]; + doHaddock = false; + description = "Library for manipulating Operating system strings"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + + os-string_2_0_8 = callPackage ( { mkDerivation, base, @@ -496933,10 +495859,8 @@ self: { }: mkDerivation { pname = "os-string"; - version = "2.0.7"; - sha256 = "186b4swiga0nk05np512iw50pz9w88l3bqz47pr241997bykb71k"; - revision = "1"; - editedCabalFile = "0504jf7wa84z3a8gd60cx7df6232xq31wqc532jcxrxh3hl0hm6b"; + version = "2.0.8"; + sha256 = "11i62ysdlqjzajj5s7s6n696mqhflpfn1a251mxjwa1hvmwl4y82"; libraryHaskellDepends = [ base bytestring @@ -496960,6 +495884,7 @@ self: { ]; description = "Library for manipulating Operating system strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -497270,6 +496195,7 @@ self: { aeson, base, cvss, + purl, tasty, tasty-hunit, text, @@ -497277,12 +496203,13 @@ self: { }: mkDerivation { pname = "osv"; - version = "0.1.0.0"; - sha256 = "11w2x76ifx4sf6z5gz116pky4w4qv3l8nj2z57x61802l9ckrlqd"; + version = "0.2.0.0"; + sha256 = "09lbnl3piba0195b55pvl174l7lxnlimqwvi6mmv4c7kymzyrfgh"; libraryHaskellDepends = [ aeson base cvss + purl text time ]; @@ -497293,8 +496220,6 @@ self: { ]; description = "Open Source Vulnerability format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -498278,8 +497203,6 @@ self: { base, bytestring, deepseq, - doctest, - env-guard, hedgehog, tasty, tasty-hedgehog, @@ -498289,10 +497212,8 @@ self: { }: mkDerivation { pname = "package-version"; - version = "0.4"; - sha256 = "00ack16vq6c1pqrnm5pl8m0p5dx0rgrzk2ylsl22l9fj70v730a6"; - revision = "1"; - editedCabalFile = "0yi88ilxyppyjpybladc5vf5kzvi1jhacpsgiw8y5xk634rwr6gn"; + version = "0.4.1"; + sha256 = "116r62wk0pyp1cqhsfjsp0jchyqf5638by6vl7k3c7ylac6ki45c"; libraryHaskellDepends = [ base bytestring @@ -498302,8 +497223,6 @@ self: { ]; testHaskellDepends = [ base - doctest - env-guard hedgehog tasty tasty-hedgehog @@ -499857,8 +498776,8 @@ self: { }: mkDerivation { pname = "pandoc"; - version = "3.6"; - sha256 = "1f7rjwgxlhhzpxcm29kgc1c4bzb827vidxh48qvd2bw597ykp5ns"; + version = "3.7.0.2"; + sha256 = "1l33amh5dkbxbgicvk4hh231b8x36fb90jlpxmgqwfqldk7j3lmz"; configureFlags = [ "-f-trypandoc" ]; enableSeparateDataOutput = true; libraryHaskellDepends = [ @@ -499976,7 +498895,7 @@ self: { } ) { }; - pandoc_3_7_0_2 = callPackage ( + pandoc_3_8 = callPackage ( { mkDerivation, aeson, @@ -500049,6 +498968,7 @@ self: { tls, typst, unicode-collation, + unicode-data, unicode-transforms, unix, vector, @@ -500061,8 +498981,8 @@ self: { }: mkDerivation { pname = "pandoc"; - version = "3.7.0.2"; - sha256 = "1l33amh5dkbxbgicvk4hh231b8x36fb90jlpxmgqwfqldk7j3lmz"; + version = "3.8"; + sha256 = "1yj2v60acr1v0x82jqvikdw30qs216g1975kkdxr7hbcrazd7agn"; configureFlags = [ "-f-trypandoc" ]; enableSeparateDataOutput = true; libraryHaskellDepends = [ @@ -500130,6 +499050,7 @@ self: { tls typst unicode-collation + unicode-data unicode-transforms unix vector @@ -500368,8 +499289,8 @@ self: { }: mkDerivation { pname = "pandoc-cli"; - version = "3.6"; - sha256 = "0crqm20rl95g557biqvlsm0yjgn31sfhm5sa9s65sbpzi81cvp07"; + version = "3.7.0.2"; + sha256 = "0g9x7h2aimiffnv03pcvai64kpwxykz18kd126x92lpsdjwclkgz"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -500391,7 +499312,7 @@ self: { } ) { }; - pandoc-cli_3_7_0_2 = callPackage ( + pandoc-cli_3_8 = callPackage ( { mkDerivation, base, @@ -500407,8 +499328,8 @@ self: { }: mkDerivation { pname = "pandoc-cli"; - version = "3.7.0.2"; - sha256 = "0g9x7h2aimiffnv03pcvai64kpwxykz18kd126x92lpsdjwclkgz"; + version = "3.8"; + sha256 = "0zhlsbj3k1dgxy382gxsdjnzg6p34llfs8y9v3ahxvyxsgfv5hwq"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -500491,8 +499412,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.3.19"; - sha256 = "0zzdnv8prz1jkksrmfr3gz23483mkbj1vkjpxda97qld3n8zkdhb"; + version = "0.3.21"; + sha256 = "1srfkh987jx3ha8p5yrvy4pxkkypcajb4wvzbnf8sbd4wc2vichh"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -500534,99 +499455,7 @@ self: { filepath hspec microlens - mtl - pandoc - pandoc-types - text - ]; - testToolDepends = [ pandoc-cli ]; - benchmarkHaskellDepends = [ - base - criterion - pandoc - pandoc-types - text - ]; - doHaddock = false; - description = "Pandoc filter for cross-references"; - license = lib.licenses.gpl2Only; - mainProgram = "pandoc-crossref"; - } - ) { }; - - pandoc-crossref_0_3_20 = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - data-default, - deepseq, - directory, - filepath, - gitrev, - hspec, - microlens, - microlens-ghc, - microlens-mtl, - microlens-th, - mtl, - open-browser, - optparse-applicative, - pandoc, - pandoc-cli, - pandoc-types, - syb, - template-haskell, - temporary, - text, - utility-ht, - }: - mkDerivation { - pname = "pandoc-crossref"; - version = "0.3.20"; - sha256 = "10fgmddlyva8yyqh9m5c8d417bcyxvfqgw9l0q77lp6b161593ya"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - data-default - directory - filepath - microlens - microlens-ghc microlens-mtl - microlens-th - mtl - pandoc - pandoc-types - syb - template-haskell - text - utility-ht - ]; - executableHaskellDepends = [ - base - deepseq - gitrev - open-browser - optparse-applicative - pandoc - pandoc-types - template-haskell - temporary - text - ]; - testHaskellDepends = [ - base - containers - data-default - directory - filepath - hspec - microlens mtl pandoc pandoc-types @@ -500645,6 +499474,7 @@ self: { license = lib.licenses.gpl2Only; hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-crossref"; + broken = true; } ) { }; @@ -500707,6 +499537,8 @@ self: { ]; description = "Decodes pandoc to dhall"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -501103,8 +499935,8 @@ self: { }: mkDerivation { pname = "pandoc-lens"; - version = "0.7.0"; - sha256 = "0prc0wv808l1l7m6rg78r6alwqgajj0h2yn3w7sgxmsvxdr8aj1w"; + version = "0.8.0"; + sha256 = "0vkprbma7jmy7vzplbdv49vwj5fi8snf4n6nl8j72dyis3836dki"; libraryHaskellDepends = [ base containers @@ -501114,8 +499946,6 @@ self: { ]; description = "Lenses for Pandoc documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -501245,8 +500075,10 @@ self: { }: mkDerivation { pname = "pandoc-lua-engine"; - version = "0.4.1.1"; - sha256 = "1nxk3ban38bc4avqjjwisk40licxkr217dgjm991ny2kny28r4rf"; + version = "0.4.3"; + sha256 = "1s5g1mvl13pa411kyd2jp5jz0lw8alxqpv984nnfnq17d2nj4mkw"; + revision = "2"; + editedCabalFile = "0a00gmr5ymp5jl6dp6f1qcmyxcqz1nqp2d4y6x1342zhqsi1zs8s"; libraryHaskellDepends = [ aeson base @@ -501295,7 +500127,7 @@ self: { } ) { }; - pandoc-lua-engine_0_4_3 = callPackage ( + pandoc-lua-engine_0_5 = callPackage ( { mkDerivation, aeson, @@ -501332,8 +500164,8 @@ self: { }: mkDerivation { pname = "pandoc-lua-engine"; - version = "0.4.3"; - sha256 = "1s5g1mvl13pa411kyd2jp5jz0lw8alxqpv984nnfnq17d2nj4mkw"; + version = "0.5"; + sha256 = "0za5xp1q996bpydkz73779gp5mxlq1a5spk4cz5rsckc18cf11xc"; libraryHaskellDepends = [ aeson base @@ -501872,6 +500704,52 @@ self: { } ) { }; + pandoc-server_0_1_1 = callPackage ( + { + mkDerivation, + aeson, + base, + base64-bytestring, + bytestring, + containers, + data-default, + doctemplates, + pandoc, + pandoc-types, + servant-server, + skylighting, + text, + unicode-collation, + wai, + wai-cors, + }: + mkDerivation { + pname = "pandoc-server"; + version = "0.1.1"; + sha256 = "0xpz73k93zxy0yflbqi4b1vvzjfbzl3w4vrnvaac8xadyfd7605c"; + libraryHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + containers + data-default + doctemplates + pandoc + pandoc-types + servant-server + skylighting + text + unicode-collation + wai + wai-cors + ]; + description = "Pandoc document conversion as an HTTP servant-server"; + license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; + } + ) { }; + pandoc-sidenote = callPackage ( { mkDerivation, @@ -502811,6 +501689,186 @@ self: { } ) { }; + pantry_0_11_1 = callPackage ( + { + mkDerivation, + aeson, + aeson-warning-parser, + ansi-terminal, + base, + bytestring, + Cabal, + casa-client, + casa-types, + companion, + conduit, + conduit-extra, + containers, + crypton, + crypton-conduit, + digest, + exceptions, + filelock, + generic-deriving, + hackage-security, + hedgehog, + hpack, + hspec, + hspec-discover, + http-client, + http-client-tls, + http-conduit, + http-download, + http-types, + memory, + mtl, + network-uri, + path, + path-io, + persistent, + persistent-sqlite, + persistent-template, + primitive, + QuickCheck, + raw-strings-qq, + resourcet, + rio, + rio-orphans, + rio-prettyprint, + static-bytes, + tar-conduit, + text, + text-metrics, + time, + transformers, + unix-compat, + unliftio, + unordered-containers, + vector, + yaml, + zip-archive, + }: + mkDerivation { + pname = "pantry"; + version = "0.11.1"; + sha256 = "1qgmxfv74qqyn26x06gnx71ms8k0fiijlpz55k08yn8bcr05phzr"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + aeson-warning-parser + ansi-terminal + base + bytestring + Cabal + casa-client + casa-types + companion + conduit + conduit-extra + containers + crypton + crypton-conduit + digest + filelock + generic-deriving + hackage-security + hpack + http-client + http-client-tls + http-conduit + http-download + http-types + memory + mtl + network-uri + path + path-io + persistent + persistent-sqlite + persistent-template + primitive + resourcet + rio + rio-orphans + rio-prettyprint + static-bytes + tar-conduit + text + text-metrics + time + transformers + unix-compat + unliftio + unordered-containers + vector + yaml + zip-archive + ]; + testHaskellDepends = [ + aeson + aeson-warning-parser + ansi-terminal + base + bytestring + Cabal + casa-client + casa-types + companion + conduit + conduit-extra + containers + crypton + crypton-conduit + digest + exceptions + filelock + generic-deriving + hackage-security + hedgehog + hpack + hspec + http-client + http-client-tls + http-conduit + http-download + http-types + memory + mtl + network-uri + path + path-io + persistent + persistent-sqlite + persistent-template + primitive + QuickCheck + raw-strings-qq + resourcet + rio + rio-orphans + rio-prettyprint + static-bytes + tar-conduit + text + text-metrics + time + transformers + unix-compat + unliftio + unordered-containers + vector + yaml + zip-archive + ]; + testToolDepends = [ hspec-discover ]; + doHaddock = false; + description = "Content addressable Haskell package management"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + pantry-tmp = callPackage ( { mkDerivation, @@ -503953,8 +503011,8 @@ self: { pname = "parallel"; version = "3.2.2.0"; sha256 = "1xkfi96w6yfpppd0nw1rnszdxmvifwzm699ilv6332ra3akm610p"; - revision = "9"; - editedCabalFile = "109xh71lzvivyvfypflibav8zmrvli41v8zc69vzch3rafn38ywx"; + revision = "10"; + editedCabalFile = "0rm92b8ny5qxalhg83dk2i4b4ca455vrbnqad905waz18z16xx1x"; libraryHaskellDepends = [ array base @@ -506176,6 +505234,8 @@ self: { ]; description = "Provides typeclass suitable for types admitting a partial order"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -506283,31 +505343,6 @@ self: { ) { }; partialord = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - }: - mkDerivation { - pname = "partialord"; - version = "0.0.2"; - sha256 = "1cnsjn3s154ar439gcphblm1pwvqn6w88c1hyvin7xapnssrg32g"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - description = "Data structure supporting partial orders"; - license = lib.licenses.bsd3; - } - ) { }; - - partialord_0_1_1 = callPackage ( { mkDerivation, base, @@ -506329,7 +505364,6 @@ self: { ]; description = "Data structure supporting partial orders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -507032,6 +506066,7 @@ self: { base, base64-bytestring, bytestring, + case-insensitive, colour, containers, directory, @@ -507062,8 +506097,8 @@ self: { }: mkDerivation { pname = "patat"; - version = "0.15.1.0"; - sha256 = "1n8yprcb8s26wc5k0c3r8fm01bs8jayi27p50ffvvy103l1ia2rr"; + version = "0.15.2.0"; + sha256 = "0r9bx8f7q1h56mf8bvz6jaqrgl9iczac9qffmaqqsnqlvzn85wfi"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -507074,6 +506109,7 @@ self: { base base64-bytestring bytestring + case-insensitive colour containers directory @@ -507112,8 +506148,10 @@ self: { ]; description = "Terminal-based presentations using Pandoc"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "patat"; maintainers = [ lib.maintainers.dalpd ]; + broken = true; } ) { }; @@ -507218,8 +506256,8 @@ self: { pname = "patch-image"; version = "0.3.3.2"; sha256 = "1kbd19vaizhbrpb4pa3py125kaw313yn3aq70yr7wygk1kk6v7ql"; - revision = "3"; - editedCabalFile = "1y3fv802jvnrc08qpmh4vvk2h83lbdkv12g6rckhcl4ppgrzc5lz"; + revision = "4"; + editedCabalFile = "0li4lra7d79vkmlzbgrdr19szvhdm5ifsszk54l5w3pkrijiqv5k"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -507297,59 +506335,6 @@ self: { ) { }; path = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deepseq, - exceptions, - filepath, - genvalidity, - genvalidity-hspec, - genvalidity-property, - hashable, - hspec, - mtl, - QuickCheck, - template-haskell, - text, - validity, - }: - mkDerivation { - pname = "path"; - version = "0.9.5"; - sha256 = "0cy4vilmhzhi5nfh4v2kyvizhjzjpjib3bvgm1sgmvjzj40dfgrd"; - libraryHaskellDepends = [ - aeson - base - deepseq - exceptions - filepath - hashable - template-haskell - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - filepath - genvalidity - genvalidity-hspec - genvalidity-property - hspec - mtl - QuickCheck - template-haskell - validity - ]; - description = "Support for well-typed paths"; - license = lib.licenses.bsd3; - } - ) { }; - - path_0_9_6 = callPackage ( { mkDerivation, aeson, @@ -507399,7 +506384,6 @@ self: { doHaddock = false; description = "Support for well-typed paths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -507973,62 +506957,6 @@ self: { ) { }; patrol = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - containers, - exceptions, - hspec, - http-client, - http-client-tls, - http-types, - network-uri, - text, - time, - uuid, - }: - mkDerivation { - pname = "patrol"; - version = "1.0.1.0"; - sha256 = "1yk90shi4idxdzf82mvxpsbgslx3psrwpxgwhnqpcl0kj4sdblf1"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - exceptions - http-client - http-client-tls - http-types - network-uri - text - time - uuid - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - hspec - http-client - http-types - network-uri - text - time - uuid - ]; - description = "Sentry SDK"; - license = lib.licenses.mit; - } - ) { }; - - patrol_1_1_0_0 = callPackage ( { mkDerivation, aeson, @@ -508082,7 +507010,6 @@ self: { ]; description = "Sentry SDK"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -508158,6 +507085,8 @@ self: { ]; description = "A library for compiling pattern-matching to decision trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -509895,8 +508824,8 @@ self: { }: mkDerivation { pname = "peano"; - version = "0.1.0.2"; - sha256 = "0qa2qxm492c4bac8il2riw17djk9pbjymng16dhilnxsimqyi3wa"; + version = "0.1.0.3"; + sha256 = "0hfxxfs0ds28p8mm7v5bmn176za3q13znl6b52pfqr3yr7r5jygx"; libraryHaskellDepends = [ base ]; benchmarkHaskellDepends = [ base @@ -510842,6 +509771,7 @@ self: { benchmarkToolDepends = [ cpphs ]; description = "Find duplicate images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "phash"; } ) { }; @@ -510967,57 +509897,6 @@ self: { ) { }; perf = callPackage ( - { - mkDerivation, - base, - clock, - containers, - deepseq, - formatn, - mtl, - numhask-space, - optparse-applicative, - recursion-schemes, - text, - vector, - }: - mkDerivation { - pname = "perf"; - version = "0.13.0.0"; - sha256 = "0xqwg42cl9f1s9niyc2r9py75w26bp7rlax04ifjjbbq5y9aw2gb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clock - containers - deepseq - formatn - mtl - numhask-space - optparse-applicative - recursion-schemes - text - vector - ]; - executableHaskellDepends = [ - base - clock - containers - deepseq - formatn - mtl - optparse-applicative - text - ]; - benchmarkHaskellDepends = [ base ]; - description = "Performance methods and monad"; - license = lib.licenses.bsd3; - mainProgram = "perf-explore"; - } - ) { }; - - perf_0_14_0_2 = callPackage ( { mkDerivation, base, @@ -511041,8 +509920,8 @@ self: { }: mkDerivation { pname = "perf"; - version = "0.14.0.2"; - sha256 = "0xwfny9y389v9kalzj0dshbmzv6nyacxa7vvdwp2ax12vl0pnp00"; + version = "0.14.0.3"; + sha256 = "1w8svzwgxmspaigys1pkr6ba7xr0cl158c1gsw244jda0zr47qjj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -511077,7 +509956,6 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Performance methods and monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "perf-explore"; } ) { }; @@ -511827,8 +510705,8 @@ self: { }: mkDerivation { pname = "persist"; - version = "0.1.1.5"; - sha256 = "19s0jpbcas6c64lzl9plhp1b3qk89g3jrqhj2ljxvkzk81dbr2r3"; + version = "1.0.0.0"; + sha256 = "1waqnc96f8bnrlkcqk79b28p75pyczbbgw3nfbkb2n5bgwq62mc0"; libraryHaskellDepends = [ base bytestring @@ -512002,131 +510880,6 @@ self: { ) { }; persistent = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-aeson, - base, - base64-bytestring, - blaze-html, - bytestring, - conduit, - containers, - criterion, - deepseq, - fast-logger, - file-embed, - hspec, - http-api-data, - lift-type, - monad-logger, - mtl, - path-pieces, - QuickCheck, - quickcheck-instances, - resource-pool, - resourcet, - scientific, - shakespeare, - silently, - template-haskell, - text, - th-lift-instances, - time, - transformers, - unliftio, - unliftio-core, - unordered-containers, - vault, - vector, - }: - mkDerivation { - pname = "persistent"; - version = "2.14.6.3"; - sha256 = "1nqmd1ml1s4cm9hwfz9cz5qj4i9zm8ip69gmgysfgbs0h64f7w2d"; - revision = "1"; - editedCabalFile = "1rx07qblwxaq9fcl8z66lvmqd48widnlqcg3hgdd8ni9yrvwfmxi"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-aeson - base - base64-bytestring - blaze-html - bytestring - conduit - containers - deepseq - fast-logger - http-api-data - lift-type - monad-logger - mtl - path-pieces - resource-pool - resourcet - scientific - silently - template-haskell - text - th-lift-instances - time - transformers - unliftio - unliftio-core - unordered-containers - vault - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - blaze-html - bytestring - conduit - containers - deepseq - fast-logger - hspec - http-api-data - monad-logger - mtl - path-pieces - QuickCheck - quickcheck-instances - resource-pool - resourcet - scientific - shakespeare - silently - template-haskell - text - th-lift-instances - time - transformers - unliftio - unliftio-core - unordered-containers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - file-embed - template-haskell - text - ]; - description = "Type-safe, multi-backend data serialization"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.psibi ]; - } - ) { }; - - persistent_2_17_0_0 = callPackage ( { mkDerivation, aeson, @@ -512171,8 +510924,8 @@ self: { }: mkDerivation { pname = "persistent"; - version = "2.17.0.0"; - sha256 = "0y0rmg4xfqmkndckz2a8ndl8djmdc9zab36qb56g9as1zpm91wfn"; + version = "2.17.1.0"; + sha256 = "0c3kz36nv9n8xd21z7hgk8djj2ldvzfmy3qrmxhr8p617s18182g"; libraryHaskellDepends = [ aeson attoparsec @@ -512252,7 +511005,6 @@ self: { ]; description = "Type-safe, multi-backend data serialization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.psibi ]; } ) { }; @@ -512724,6 +511476,8 @@ self: { ]; description = "Code for using the ip package with yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -512965,83 +511719,6 @@ self: { ) { }; persistent-mtl = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - esqueleto, - exceptions, - explainable-predicates, - monad-logger, - mtl, - persistent, - persistent-postgresql, - persistent-sqlite, - resource-pool, - resourcet, - tasty, - tasty-autocollect, - tasty-golden, - tasty-hunit, - text, - transformers, - unliftio, - unliftio-core, - unliftio-pool, - }: - mkDerivation { - pname = "persistent-mtl"; - version = "0.5.1"; - sha256 = "13sz2j3g5vyvfhs97xzmzcb5a83lg4wlzmqnbmwg6l419jpj23fq"; - revision = "1"; - editedCabalFile = "0frfp7hifii11sk85j44rbd4ic0inp2gzzpfdylkbrbpfw32s54d"; - libraryHaskellDepends = [ - base - conduit - containers - exceptions - monad-logger - mtl - persistent - resource-pool - resourcet - text - transformers - unliftio - unliftio-core - unliftio-pool - ]; - testHaskellDepends = [ - base - bytestring - conduit - containers - esqueleto - explainable-predicates - monad-logger - persistent - persistent-postgresql - persistent-sqlite - resource-pool - resourcet - tasty - tasty-autocollect - tasty-golden - tasty-hunit - text - unliftio - ]; - testToolDepends = [ tasty-autocollect ]; - description = "Monad transformer for the persistent API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - persistent-mtl_0_5_2 = callPackage ( { mkDerivation, base, @@ -513536,10 +512213,8 @@ self: { }: mkDerivation { pname = "persistent-postgresql"; - version = "2.13.6.2"; - sha256 = "1z6cy54qnxpml86b6dr67kin6ww0dfn9vg3bzb3iw5s9srf7zwn2"; - revision = "1"; - editedCabalFile = "1a58a602nnwrb3s72q12piw18r458w3ha9nfjmpz5na566ndqmgl"; + version = "2.13.7.0"; + sha256 = "1774fh28jls2r692164ln66ipa6gl3sqj8pb04nf3sl1m498qjd7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -513596,7 +512271,7 @@ self: { } ) { }; - persistent-postgresql_2_13_7_0 = callPackage ( + persistent-postgresql_2_14_0_0 = callPackage ( { mkDerivation, aeson, @@ -513620,6 +512295,7 @@ self: { persistent-test, postgresql-libpq, postgresql-simple, + postgresql-simple-interval, QuickCheck, quickcheck-instances, resource-pool, @@ -513636,8 +512312,8 @@ self: { }: mkDerivation { pname = "persistent-postgresql"; - version = "2.13.7.0"; - sha256 = "1774fh28jls2r692164ln66ipa6gl3sqj8pb04nf3sl1m498qjd7"; + version = "2.14.0.0"; + sha256 = "0fxqg4ia73m9cv9qk4l4nr4y8x0a14wc0kpbj3b2nrwnrbiwyffc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -513653,6 +512329,7 @@ self: { persistent postgresql-libpq postgresql-simple + postgresql-simple-interval resource-pool resourcet string-conversions @@ -513678,6 +512355,7 @@ self: { persistent persistent-qq persistent-test + postgresql-simple-interval QuickCheck quickcheck-instances resourcet @@ -513783,8 +512461,8 @@ self: { }: mkDerivation { pname = "persistent-qq"; - version = "2.12.0.6"; - sha256 = "1z017xb7mq3npbz1jw7d9b2x8ylwr4qcpi7d87pi6dw89nwqcwwd"; + version = "2.12.0.7"; + sha256 = "1swbhc1gqn2njc4ycpizqbkl77xrz7a8sizlcb6lcizb9zaakkf4"; libraryHaskellDepends = [ base haskell-src-meta @@ -514044,8 +512722,8 @@ self: { }: mkDerivation { pname = "persistent-sql-lifted"; - version = "0.4.3.1"; - sha256 = "1lcr99d84pyvcz7b0vln2q1ai98g8n44afp0xb0zfgmhal2zidic"; + version = "0.4.4.0"; + sha256 = "07jl90fwv4cnjzrgnimbz1n8nqjf7y56kknr9pn8q1rb77w8g6r0"; libraryHaskellDepends = [ annotated-exception base @@ -514060,99 +512738,10 @@ self: { ]; description = "Monad classes for running queries with Persistent and Esqueleto"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; persistent-sqlite = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - containers, - exceptions, - fast-logger, - hspec, - HUnit, - microlens, - microlens-th, - monad-logger, - mtl, - persistent, - persistent-test, - QuickCheck, - resource-pool, - resourcet, - sqlite, - system-fileio, - system-filepath, - temporary, - text, - time, - transformers, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.13.3.0"; - sha256 = "014ibary358yq2shi72ry56xfqzqj173al33nsmcp5z13j8m5hdx"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - containers - microlens-th - monad-logger - mtl - persistent - resource-pool - resourcet - text - time - transformers - unliftio-core - unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - testHaskellDepends = [ - base - bytestring - conduit - containers - exceptions - fast-logger - hspec - HUnit - microlens - monad-logger - mtl - persistent - persistent-test - QuickCheck - resourcet - system-fileio - system-filepath - temporary - text - time - transformers - unliftio-core - ]; - description = "Backend for the persistent library using sqlite3"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.psibi ]; - } - ) { inherit (pkgs) sqlite; }; - - persistent-sqlite_2_13_3_1 = callPackage ( { mkDerivation, aeson, @@ -514235,7 +512824,6 @@ self: { ]; description = "Backend for the persistent library using sqlite3"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.psibi ]; } ) { inherit (pkgs) sqlite; }; @@ -514374,8 +512962,8 @@ self: { }: mkDerivation { pname = "persistent-test"; - version = "2.13.1.3"; - sha256 = "0qqv00nlqpnfx4h3kkd8k0y41a8dfmgj0rc0smdf6p4kl2g1hrdl"; + version = "2.13.2.0"; + sha256 = "0mzj2k07yhbx8674c1yh6brl8clncqc7ci8295hjazrmr528rc2x"; libraryHaskellDepends = [ aeson base @@ -514410,78 +512998,6 @@ self: { } ) { }; - persistent-test_2_13_1_4 = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - conduit, - containers, - exceptions, - hspec, - hspec-expectations, - http-api-data, - HUnit, - monad-control, - monad-logger, - mtl, - path-pieces, - persistent, - QuickCheck, - quickcheck-instances, - random, - resourcet, - text, - time, - transformers, - transformers-base, - unliftio, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "persistent-test"; - version = "2.13.1.4"; - sha256 = "1k2wq6ag4jvqr1krdjfx84mmx0mg09hy38w569zxwdrd03ffcjpy"; - revision = "1"; - editedCabalFile = "1kzqhvs4h8xpx2x153gh64rc006mvjxv6fzsyxvnfknmqcx8xn19"; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - conduit - containers - exceptions - hspec - hspec-expectations - http-api-data - HUnit - monad-control - monad-logger - mtl - path-pieces - persistent - QuickCheck - quickcheck-instances - random - resourcet - text - time - transformers - transformers-base - unliftio - unliftio-core - unordered-containers - ]; - description = "Tests for Persistent"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - persistent-typed-db = callPackage ( { mkDerivation, @@ -515954,6 +514470,7 @@ self: { ]; description = "FAT filesystem sort utility"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -515961,6 +514478,7 @@ self: { { mkDerivation, aeson, + array, base, binary-ieee754, bytestring, @@ -515976,10 +514494,12 @@ self: { prettyprinter, process, random, + regex-pcre-builtin, scientific, silently, text, time, + transformers, utf8-string, vector, xml-conduit, @@ -515987,12 +514507,13 @@ self: { }: mkDerivation { pname = "phino"; - version = "0.0.0.14"; - sha256 = "1nl2n0y636bdppxc29p4zyxlyra2zjiy3a1s6xw2yin64q3gqrim"; + version = "0.0.0.40"; + sha256 = "0hrnh8l6z9y1a096ddcpqhmcxxcql2al388z7chfvl0mj8w9g77m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson + array base binary-ieee754 bytestring @@ -516004,9 +514525,11 @@ self: { optparse-applicative prettyprinter random + regex-pcre-builtin scientific text time + transformers utf8-string vector xml-conduit @@ -517556,59 +516079,64 @@ self: { photoname = callPackage ( { mkDerivation, - ansi-wl-pprint, + ansi-terminal, base, + co-log-simple, containers, directory, filepath, formatting, heredoc, hsexif, - hslogger, mtl, optparse-applicative, parsec, + prettyprinter, process, regex-posix, tasty, tasty-hunit, tasty-quickcheck, + text, time, unix, }: mkDerivation { pname = "photoname"; - version = "5.4"; - sha256 = "01gd6rl1qnidgd8i65syxli0iqv5fsdyp909s1gd2bvya11k7k6h"; + version = "5.5"; + sha256 = "1v6fk94f62djchbmkpacb04cll8i65z3x1x20lc08hsybsgha32h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ + ansi-terminal base + co-log-simple containers directory filepath formatting hsexif - hslogger mtl parsec process + text time unix ]; executableHaskellDepends = [ - ansi-wl-pprint base + co-log-simple directory filepath formatting heredoc - hslogger optparse-applicative + prettyprinter unix ]; testHaskellDepends = [ base + co-log-simple directory filepath process @@ -518705,8 +517233,8 @@ self: { }: mkDerivation { pname = "pinboard-notes-backup"; - version = "1.0.7"; - sha256 = "0mbfp81ak9i7nwnwycd1bhjhhlpwidy2n1n3wbx50snaanmx7v22"; + version = "1.0.7.1"; + sha256 = "1pybnfyqig3vy4appkzjmvs179jljnrjnihqsli1qm34f12w8ax1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -519022,6 +517550,7 @@ self: { ]; description = "icmp echo requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -519123,8 +517652,8 @@ self: { }: mkDerivation { pname = "pinned-warnings"; - version = "0.1.2.0"; - sha256 = "1wgjiqfv56iaqzv6brp0c8ni13zvn8sgx6iifm5zzlq3p20q62cm"; + version = "0.1.3.0"; + sha256 = "1ya45nm85rdrgdcxx8iycs5r9rh0zkzc6i0y6x58vsy3mnq9qn37"; libraryHaskellDepends = [ base bytestring @@ -519853,6 +518382,7 @@ self: { description = "Pipes for Noise-secured network connections"; license = lib.licenses.publicDomain; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -520651,6 +519181,8 @@ self: { ]; description = "Interleave and merge streams of elements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -520868,7 +519400,9 @@ self: { ]; description = "LZMA compressors and decompressors for the Pipes package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pipes-lzma-unxz"; + broken = true; } ) { }; @@ -524413,7 +522947,9 @@ self: { async-pool, base, data-default, + directory, fast-logger, + filepath, hspec, hspec-discover, lens, @@ -524428,15 +522964,17 @@ self: { }: mkDerivation { pname = "pms-application-service"; - version = "0.0.4.0"; - sha256 = "0a91pa5rs2vplixky8bap4gl8i8mm3j7454w7s4pihyf4h7wfhpl"; + version = "0.0.8.0"; + sha256 = "05j7p58wi7vjrcpgs0zd3br74jprbyn1w0xf0llj5rkl5mhnr4hj"; libraryHaskellDepends = [ aeson async async-pool base data-default + directory fast-logger + filepath lens monad-logger mtl @@ -524488,10 +523026,11 @@ self: { }: mkDerivation { pname = "pms-domain-model"; - version = "0.0.5.0"; - sha256 = "0z0a04j6x4jrq6xpfdd6jnbq7q7p71y51gar6i6g0apfliiydq9w"; + version = "0.1.0.0"; + sha256 = "0y6xi7mqrvl1fp87nxyrx7jfbh8rwmgm5wmcvw9am7mqc7kz2scy"; libraryHaskellDepends = [ aeson + async base bytestring data-default @@ -524556,8 +523095,8 @@ self: { }: mkDerivation { pname = "pms-domain-service"; - version = "0.0.4.0"; - sha256 = "1akacdrh2ngyvik46sjhag8kp9hyyr7rv9grswx7i3ngy6pk64yn"; + version = "0.0.9.0"; + sha256 = "1icxrid4a1slsz6vpfzm78mljjmvylji68wwl7i1xpha1fgw10a1"; libraryHaskellDepends = [ aeson base @@ -524626,8 +523165,8 @@ self: { }: mkDerivation { pname = "pms-infra-cmdrun"; - version = "0.0.2.0"; - sha256 = "0c4jhci5im04ks49if7ncbqipbln2ixw2f262qw64ir5a5hdygzy"; + version = "0.0.7.0"; + sha256 = "1cmyxcvbx7637p96psklpm0vip1998kcl0v4mxvlbb2yjddrb1q2"; libraryHaskellDepends = [ aeson async @@ -524694,8 +523233,8 @@ self: { }: mkDerivation { pname = "pms-infra-procspawn"; - version = "0.0.1.0"; - sha256 = "1wg0508h2svl0pk9yrwrnmssrqnm2vnlws9w9nm5ydqlqibdr282"; + version = "0.0.7.0"; + sha256 = "09bhgq681pj2jn24wrmh38mb6574qvj77719cp8sm8aws0sanclx"; libraryHaskellDepends = [ aeson async @@ -524735,6 +523274,80 @@ self: { } ) { }; + pms-infra-serial = callPackage ( + { + mkDerivation, + aeson, + async, + base, + base16-bytestring, + bytestring, + conduit, + data-default, + directory, + fast-logger, + filepath, + hspec, + hspec-discover, + lens, + monad-logger, + mtl, + network, + pms-domain-model, + process, + safe-exceptions, + serialport, + stm, + text, + transformers, + unix, + }: + mkDerivation { + pname = "pms-infra-serial"; + version = "0.0.4.0"; + sha256 = "14nxa1pb2hv5vclp9qix7wqm9r0m9infjmcjxg4a6zs0cq42kx43"; + libraryHaskellDepends = [ + aeson + async + base + base16-bytestring + bytestring + conduit + data-default + directory + fast-logger + filepath + lens + monad-logger + mtl + network + pms-domain-model + process + safe-exceptions + serialport + stm + text + transformers + ]; + testHaskellDepends = [ + async + base + data-default + hspec + hspec-discover + lens + monad-logger + pms-domain-model + stm + unix + ]; + testToolDepends = [ hspec-discover ]; + description = "pms-infra-serial"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { }; + pms-infra-socket = callPackage ( { mkDerivation, @@ -524764,8 +523377,8 @@ self: { }: mkDerivation { pname = "pms-infra-socket"; - version = "0.0.1.0"; - sha256 = "01iz8ws1wc04k52djy37wrlyrr8g33n7zvd03md06wjycahhrri5"; + version = "0.0.6.0"; + sha256 = "1blwia1j9wc840r45dcwhm51i6813zfksy563bk42ifp644kc8pk"; libraryHaskellDepends = [ aeson async @@ -524835,8 +523448,8 @@ self: { }: mkDerivation { pname = "pms-infra-watch"; - version = "0.0.3.0"; - sha256 = "0lwiydxf9p7pvri6s3p0wg0lya9imp6rpggb2mrpb49nqknnpxpx"; + version = "0.0.5.0"; + sha256 = "1y1gqi6mfx5v6j0syh4p2za3p7a2v402qj1zrq5z6r8c677b96jf"; libraryHaskellDepends = [ aeson async @@ -524907,8 +523520,8 @@ self: { }: mkDerivation { pname = "pms-infrastructure"; - version = "0.0.4.0"; - sha256 = "1vawlgs6i1rpw2266zbzxwykjsf5p61w88vi2lyj69dgl3dd0kiz"; + version = "0.0.8.0"; + sha256 = "1z7xaainrb4dhhgzkgnj24ix9f28j3isx4ghhf9szfz0cq0zxq58"; libraryHaskellDepends = [ aeson async @@ -524975,8 +523588,8 @@ self: { }: mkDerivation { pname = "pms-ui-notification"; - version = "0.0.3.0"; - sha256 = "1fq1kasqmghbic59v815032spcl9wahm9wqjyjmg93di92xz8mm3"; + version = "0.0.4.0"; + sha256 = "0nhsm3l15wi73mi1rqs1qwnrp18a773zv1z3pis2c9vx9bap6b66"; libraryHaskellDepends = [ aeson base @@ -525036,8 +523649,8 @@ self: { }: mkDerivation { pname = "pms-ui-request"; - version = "0.0.4.0"; - sha256 = "1yg42dy0jrv0xhz657kys41i0prr2xn417ji2p6wahgnlfkiy6am"; + version = "0.0.6.0"; + sha256 = "1whhi2npja49xifkqhlfmm1j4snw3vhs4vw39205sypvp6irq8ny"; libraryHaskellDepends = [ aeson base @@ -525097,8 +523710,8 @@ self: { }: mkDerivation { pname = "pms-ui-response"; - version = "0.0.4.0"; - sha256 = "0045ddj3v34aycvnh72fvy9159iv4vad1jghd1ndslhphav1d91b"; + version = "0.0.5.0"; + sha256 = "05p16wb90wlj15h442wqfmnypks9bk8pynmfhydyg0f2rbrn6dsa"; libraryHaskellDepends = [ aeson base @@ -526511,7 +525124,6 @@ self: { ]; description = "Polykinded extensible records"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -526768,6 +525380,7 @@ self: { ]; description = "Multivariate polynomial rings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -526813,6 +525426,28 @@ self: { } ) { }; + polyparse_1_13_1 = callPackage ( + { + mkDerivation, + base, + bytestring, + text, + }: + mkDerivation { + pname = "polyparse"; + version = "1.13.1"; + sha256 = "1mmz8akbws38k6w95kdj270h9vfip4bjlbb5magb3s81k7nqjnrr"; + libraryHaskellDepends = [ + base + bytestring + text + ]; + description = "A variety of alternative parser combinator libraries"; + license = "LGPL"; + hydraPlatforms = lib.platforms.none; + } + ) { }; + polysemy = callPackage ( { mkDerivation, @@ -527756,6 +526391,8 @@ self: { ]; description = "Colog adapters for polysemy-log"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -528742,6 +527379,32 @@ self: { } ) { }; + polytyped = callPackage ( + { + mkDerivation, + base, + QuickCheck, + tasty, + tasty-hunit, + tasty-quickcheck, + }: + mkDerivation { + pname = "polytyped"; + version = "0.1.0.0"; + sha256 = "1lvgr8al65b67xs34g9h28ymrw5hs12pa04majs269j1chi7qqcr"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + QuickCheck + tasty + tasty-hunit + tasty-quickcheck + ]; + description = "Alternative to `Dynamic` with type guarantees"; + license = lib.licenses.bsd3; + } + ) { }; + polyvariadic = callPackage ( { mkDerivation, @@ -529234,8 +527897,6 @@ self: { ]; description = "XEPs implementation on top of pontarius-xmpp"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -529349,8 +528010,8 @@ self: { }: mkDerivation { pname = "poolboy"; - version = "0.4.0.1"; - sha256 = "0ifdp2p2c257k52c9prm072c1gmfx55a40gaanba083viq6cxzal"; + version = "0.4.1.0"; + sha256 = "0xzk9ibildpv90hzn6h5c82wl2aqn8j18628ld27pddw3xq7aq08"; libraryHaskellDepends = [ base unliftio @@ -531060,8 +529721,8 @@ self: { }: mkDerivation { pname = "posplyu"; - version = "0.1.0.3"; - sha256 = "1b02i7c6kjmkd8naazfdr7fjy19rd0p2hyrhjgf3q60h09ipi15g"; + version = "0.1.1"; + sha256 = "07pafmfqk8i4g3zp0yq6gylfjb0jmbqla9kdvkfi068cm26m3ryq"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -531326,8 +529987,8 @@ self: { }: mkDerivation { pname = "postgres-websockets"; - version = "0.11.2.4"; - sha256 = "1xckjdkzzbd4kqx6ciyagz1zy6i09zvpg1dkmn4ymr8xvm8rk2d7"; + version = "0.11.2.5"; + sha256 = "1f4k7gmy76l18i63zkc3lsc2a99qmaqddb1gdpnkh4z4l77cab5p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -531482,8 +530143,8 @@ self: { }: mkDerivation { pname = "postgresql-binary"; - version = "0.14.0.1"; - sha256 = "090plscva1np15p5ya62aqyzpagpyzz6f3fxkkp44p20aw2w78bp"; + version = "0.14.2"; + sha256 = "08a404sgyvlv8zsxyfbqcifn6y5dvdbp2sicaqh9ahky3yz3xw73"; libraryHaskellDepends = [ aeson base @@ -532237,6 +530898,7 @@ self: { ]; description = "pure Haskell PostgreSQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -532474,7 +531136,6 @@ self: { cryptohash-md5, filepath, hashable, - HUnit, inspection-testing, Only, postgresql-libpq, @@ -532491,10 +531152,8 @@ self: { }: mkDerivation { pname = "postgresql-simple"; - version = "0.7.0.0"; - sha256 = "0gm1wk2zq35h46v0l1qc0z63jv3gxgqd059j1mcmww80a6sipf4c"; - revision = "3"; - editedCabalFile = "1vbdiniz18m1kk4wxdnc43ry7gq00vxxvklmnrn8v3vc5r55inka"; + version = "0.7.0.1"; + sha256 = "16dbydsi5hib4zksl2sri0mz0hwfnagb2f757q1xc603clhg6z2r"; libraryHaskellDepends = [ aeson attoparsec @@ -532522,7 +531181,6 @@ self: { containers cryptohash-md5 filepath - HUnit inspection-testing postgresql-libpq tasty @@ -532620,6 +531278,50 @@ self: { } ) { }; + postgresql-simple-interval = callPackage ( + { + mkDerivation, + attoparsec, + base, + bytestring, + hspec, + persistent, + postgresql-libpq, + postgresql-simple, + scientific, + text, + time, + }: + mkDerivation { + pname = "postgresql-simple-interval"; + version = "1.0.0.0"; + sha256 = "01d550bhmbpy3bsz37m21hpgpg9x2v72qhv6fa2p0m6p61p1hadx"; + libraryHaskellDepends = [ + attoparsec + base + bytestring + persistent + postgresql-simple + scientific + text + time + ]; + testHaskellDepends = [ + attoparsec + base + bytestring + hspec + postgresql-libpq + postgresql-simple + time + ]; + description = "A simple interval type for PostgreSQL"; + license = lib.licenses.bsd0; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + postgresql-simple-ltree = callPackage ( { mkDerivation, @@ -532968,51 +531670,6 @@ self: { ) { }; postgresql-syntax = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - hashable, - headed-megaparsec, - hedgehog, - megaparsec, - parser-combinators, - rerebase, - tasty, - tasty-hunit, - text, - text-builder, - unordered-containers, - }: - mkDerivation { - pname = "postgresql-syntax"; - version = "0.4.1.2"; - sha256 = "0z2mnx8npickm5h208mqm76ybr37cmqqf3q1nfy3kh19xdgqhfy7"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - hashable - headed-megaparsec - megaparsec - parser-combinators - text - text-builder - unordered-containers - ]; - testHaskellDepends = [ - hedgehog - rerebase - tasty - tasty-hunit - ]; - description = "PostgreSQL AST parsing and rendering"; - license = lib.licenses.mit; - } - ) { }; - - postgresql-syntax_0_4_1_3 = callPackage ( { mkDerivation, base, @@ -533054,7 +531711,6 @@ self: { ]; description = "PostgreSQL AST parsing and rendering"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -534148,6 +532804,8 @@ self: { ]; description = "Potrace bindings for the diagrams library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -534201,6 +532859,8 @@ self: { ]; description = "PowerDNS API bindings for api/v1"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -535345,6 +534005,84 @@ self: { } ) { }; + pr-tools = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + case-insensitive, + containers, + Diff, + directory, + extra, + filepath, + Glob, + http-client, + http-client-tls, + http-types, + optparse-applicative, + process, + split, + temporary, + text, + time, + uuid, + yaml, + }: + mkDerivation { + pname = "pr-tools"; + version = "0.1.0.0"; + sha256 = "0r9588mdf2n65gnnc4jy9nwvklmdd0mzyyp0k8hsd12k7av8fl1f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + bytestring + case-insensitive + containers + Diff + directory + extra + http-client + http-client-tls + http-types + process + split + text + time + uuid + yaml + ]; + executableHaskellDepends = [ + aeson + base + bytestring + case-insensitive + containers + Diff + directory + filepath + Glob + http-client + http-client-tls + http-types + optparse-applicative + process + split + temporary + time + uuid + yaml + ]; + description = "Decentralized git pull request and code review flows"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + practice-room = callPackage ( { mkDerivation, @@ -535467,42 +534205,6 @@ self: { ) { }; prairie = callPackage ( - { - mkDerivation, - aeson, - base, - constraints, - containers, - hspec, - lens, - template-haskell, - text, - }: - mkDerivation { - pname = "prairie"; - version = "0.0.4.0"; - sha256 = "0d5bfci30ck6kx9pspv0d68lxgs700xv6y6067ki9yvlnrimrff2"; - libraryHaskellDepends = [ - aeson - base - constraints - containers - lens - template-haskell - text - ]; - testHaskellDepends = [ - aeson - base - hspec - lens - ]; - description = "A first class record field library"; - license = lib.licenses.bsd3; - } - ) { }; - - prairie_0_1_0_0 = callPackage ( { mkDerivation, aeson, @@ -535541,7 +534243,6 @@ self: { ]; description = "A first class record field library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -537506,50 +536207,6 @@ self: { ) { }; prettychart = callPackage ( - { - mkDerivation, - async, - base, - box, - bytestring, - chart-svg, - containers, - doctest-parallel, - markup-parse, - numhask-space, - optics-core, - text, - time, - web-rep, - }: - mkDerivation { - pname = "prettychart"; - version = "0.2.2.0"; - sha256 = "1mj20bhpjn7gf7kb123zmn27bfpk1zncqqg606xmdcyx225m43al"; - libraryHaskellDepends = [ - async - base - box - bytestring - chart-svg - containers - markup-parse - numhask-space - optics-core - text - time - web-rep - ]; - testHaskellDepends = [ - base - doctest-parallel - ]; - description = "Pretty print charts from ghci"; - license = lib.licenses.bsd3; - } - ) { }; - - prettychart_0_3_0_1 = callPackage ( { mkDerivation, async, @@ -537571,8 +536228,8 @@ self: { }: mkDerivation { pname = "prettychart"; - version = "0.3.0.1"; - sha256 = "0m1gc6vwywrihrwa6w204vyfsrisim1f7fznyvip48dzn7sh3c2v"; + version = "0.3.0.2"; + sha256 = "0qa4p1yx5ld2gbxymq2x5pd3y37hcqmjiyymxcwd8ndxh3f66llp"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -537605,7 +536262,6 @@ self: { ]; description = "Pretty print charts from ghci"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "prettychart-watch"; } ) { }; @@ -538337,6 +536993,25 @@ self: { } ) { }; + primdata = callPackage ( + { + mkDerivation, + base, + ghc-prim, + }: + mkDerivation { + pname = "primdata"; + version = "0.1.2.2"; + sha256 = "0cjsjcm6d71d61idkmb9d8ia26hcwzrmx8k5w1afhzpla73zfia9"; + libraryHaskellDepends = [ + base + ghc-prim + ]; + description = "Minimum-overhead primitive datatypes"; + license = lib.licenses.mit; + } + ) { }; + prime = callPackage ( { mkDerivation, @@ -538643,6 +537318,8 @@ self: { ]; description = "containers backed by arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -539049,47 +537726,6 @@ self: { ) { }; primitive-unlifted = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - primitive, - QuickCheck, - quickcheck-classes-base, - stm, - tasty, - tasty-quickcheck, - text-short, - }: - mkDerivation { - pname = "primitive-unlifted"; - version = "2.1.0.0"; - sha256 = "07ix39sraijgajprpzdbnl67m8ghixxbqg93k4m02k1gi83j2d31"; - revision = "1"; - editedCabalFile = "169j22x9xbw35pgsqixqbjhk5gbshbf1cvq2i84yz4b3g74164gg"; - libraryHaskellDepends = [ - array - base - bytestring - primitive - text-short - ]; - testHaskellDepends = [ - base - primitive - QuickCheck - quickcheck-classes-base - stm - tasty - tasty-quickcheck - ]; - description = "Primitive GHC types with unlifted types inside"; - license = lib.licenses.bsd3; - } - ) { }; - - primitive-unlifted_2_2_0_0 = callPackage ( { mkDerivation, array, @@ -539125,7 +537761,6 @@ self: { ]; description = "Primitive GHC types with unlifted types inside"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -540731,6 +539366,8 @@ self: { ]; description = "Some curated and opinionated packages for building Haskell services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -542579,8 +541216,8 @@ self: { }: mkDerivation { pname = "prometheus-wai"; - version = "0.0.0.0"; - sha256 = "027i17zyxk3wgzw7161h57rnmgb5iqqnlnlcg129q28dw005wg9h"; + version = "0.0.0.1"; + sha256 = "1l1xab87n1ll5m8h439mcq7bcy0lf7sw8zf97ld6wy6jlq82ncin"; libraryHaskellDepends = [ base bytestring @@ -542716,8 +541353,8 @@ self: { }: mkDerivation { pname = "prompt-hs"; - version = "1.0.1.0"; - sha256 = "1yarj087xyardxpf7ibv2bpfkaiyikzpzcpa1sf76lfd6v5rwr7s"; + version = "1.0.3.1"; + sha256 = "1amcnss78h93b1fxda1ng0ldn60ma6f456g32jaqhc129y3iqqzv"; libraryHaskellDepends = [ base microlens @@ -542729,6 +541366,30 @@ self: { } ) { }; + prompt-hs_1_1_0_1 = callPackage ( + { + mkDerivation, + base, + microlens, + terminal, + text, + }: + mkDerivation { + pname = "prompt-hs"; + version = "1.1.0.1"; + sha256 = "1x6h8cahb6rwdmk2w155gq2mqk4gl11qrsi96h1l0i0a6nzma9wh"; + libraryHaskellDepends = [ + base + microlens + terminal + text + ]; + description = "A user-friendly, dependently-typed library for asking your users questions"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + pronounce = callPackage ( { mkDerivation, @@ -542946,8 +541607,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "5.17"; - sha256 = "0g5f3vywbdh6hl6rkzprpnldr9c8cc2lzz2xb31l6dni6ymyns5a"; + version = "5.18"; + sha256 = "06mp5rlw7w33iabyq2dhvmdsq5kw7jqflrlclwlsfg2lb85dg5g9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -543783,44 +542444,6 @@ self: { ) { }; proto-lens-protobuf-types = callPackage ( - { - mkDerivation, - base, - Cabal, - lens-family, - proto-lens, - proto-lens-protoc, - proto-lens-runtime, - proto-lens-setup, - protobuf, - text, - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.7.2.1"; - sha256 = "0622dfxc7s260fhb2hcjis5p0k7cidr7vvxicmhhk2n3zamngvrb"; - setupHaskellDepends = [ - base - Cabal - proto-lens-setup - ]; - libraryHaskellDepends = [ - base - lens-family - proto-lens - proto-lens-runtime - text - ]; - libraryToolDepends = [ - proto-lens-protoc - protobuf - ]; - description = "Basic protocol buffer message types"; - license = lib.licenses.bsd3; - } - ) { inherit (pkgs) protobuf; }; - - proto-lens-protobuf-types_0_7_2_2 = callPackage ( { mkDerivation, base, @@ -543855,59 +542478,10 @@ self: { ]; description = "Basic protocol buffer message types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) protobuf; }; proto-lens-protoc = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - ghc, - ghc-paths, - ghc-source-gen, - lens-family, - pretty, - proto-lens, - proto-lens-runtime, - protobuf, - text, - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.8.0.1"; - sha256 = "0kyvcmvsjrj6mwi71k1rfpzvxjy379yb981fj8nacgv5ka1xmja6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base - bytestring - containers - filepath - ghc - ghc-paths - ghc-source-gen - lens-family - pretty - proto-lens - proto-lens-runtime - text - ]; - description = "Protocol buffer compiler for the proto-lens library"; - license = lib.licenses.bsd3; - mainProgram = "proto-lens-protoc"; - } - ) { inherit (pkgs) protobuf; }; - - proto-lens-protoc_0_9_0_0 = callPackage ( { mkDerivation, base, @@ -543951,7 +542525,6 @@ self: { ]; description = "Protocol buffer compiler for the proto-lens library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "proto-lens-protoc"; } ) { inherit (pkgs) protobuf; }; @@ -545460,15 +544033,11 @@ self: { psqueues = callPackage ( { mkDerivation, - array, base, - containers, criterion, deepseq, - ghc-prim, hashable, HUnit, - mtl, PSQueue, QuickCheck, random, @@ -545476,23 +544045,19 @@ self: { tasty, tasty-hunit, tasty-quickcheck, - unordered-containers, }: mkDerivation { pname = "psqueues"; - version = "0.2.8.1"; - sha256 = "0xrz47nq9mksdg1h9zh5dlhwfrfj4nbbrgsjpskv8wz314pi0znb"; + version = "0.2.8.2"; + sha256 = "0kkr0ya5j0g8z86ihq1h3m7hr88hy6yg0bkrg6vdwmhr6vqlcfzn"; libraryHaskellDepends = [ base deepseq - ghc-prim hashable ]; testHaskellDepends = [ - array base deepseq - ghc-prim hashable HUnit QuickCheck @@ -545503,15 +544068,11 @@ self: { ]; benchmarkHaskellDepends = [ base - containers criterion deepseq - ghc-prim hashable - mtl PSQueue random - unordered-containers ]; description = "Pure priority search queues"; license = lib.licenses.bsd3; @@ -545824,6 +544385,58 @@ self: { } ) { }; + ptr-peeker = callPackage ( + { + mkDerivation, + base, + bytestring, + cereal, + criterion, + ptr, + QuickCheck, + quickcheck-instances, + rerebase, + store, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + vector, + }: + mkDerivation { + pname = "ptr-peeker"; + version = "0.2"; + sha256 = "02wwg9b2kk4lcjncpfwgy7gl43nx4zkj13kk9nxbwi7vyx1m36z6"; + libraryHaskellDepends = [ + base + bytestring + ptr + text + vector + ]; + testHaskellDepends = [ + cereal + QuickCheck + quickcheck-instances + rerebase + tasty + tasty-hunit + tasty-quickcheck + ]; + benchmarkHaskellDepends = [ + cereal + criterion + rerebase + store + tasty-hunit + ]; + description = "High-performance composable binary data deserializers"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + ptr-poker = callPackage ( { mkDerivation, @@ -545884,6 +544497,7 @@ self: { pms-domain-service, pms-infra-cmdrun, pms-infra-procspawn, + pms-infra-serial, pms-infra-socket, pms-infra-watch, pms-infrastructure, @@ -545894,8 +544508,8 @@ self: { }: mkDerivation { pname = "pty-mcp-server"; - version = "0.0.5.0"; - sha256 = "0vra3p8cfzijkz3m5aw3m97vf3awqfc5ga72ks7hmk4fbf7hiwkq"; + version = "0.1.2.0"; + sha256 = "17mczija7br6l2c4x8svjn60si6hxlv6iy5zwf1l42y2sv5y9hh9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -545906,6 +544520,7 @@ self: { pms-domain-service pms-infra-cmdrun pms-infra-procspawn + pms-infra-serial pms-infra-socket pms-infra-watch pms-infrastructure @@ -547153,8 +545768,8 @@ self: { }: mkDerivation { pname = "purebred-email"; - version = "0.6.0.2"; - sha256 = "1nnv48yxvzs0fk5d6syrkijh2ailarqs14iand116hfk7xz6as0j"; + version = "0.7"; + sha256 = "1rw72rjji7bclql975gqpbisapjgzzywydql6p6b1v0ivzpsaq3s"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -547928,6 +546543,44 @@ self: { } ) { }; + purl = callPackage ( + { + mkDerivation, + aeson, + base, + case-insensitive, + containers, + http-types, + parsec, + tasty, + tasty-hunit, + text, + }: + mkDerivation { + pname = "purl"; + version = "0.1.0.0"; + sha256 = "07p3jn5ljj0b98hcmacz2yv735c2ywnqywpw2bnyzqxg9ld0c7bx"; + libraryHaskellDepends = [ + aeson + base + case-insensitive + containers + http-types + parsec + text + ]; + testHaskellDepends = [ + base + containers + tasty + tasty-hunit + text + ]; + description = "Support for purl (mostly universal package url)"; + license = lib.licenses.bsd3; + } + ) { }; + pursuit-client = callPackage ( { mkDerivation, @@ -547958,7 +546611,6 @@ self: { ]; description = "A cli client for pursuit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pursuit-search"; } ) { }; @@ -548463,8 +547115,8 @@ self: { }: mkDerivation { pname = "pusher-http-haskell"; - version = "2.1.0.20"; - sha256 = "1yvl6ydgix16jxjj40ga9kq832n96ifywra1l3z8cr8apjm3wyin"; + version = "2.1.0.21"; + sha256 = "1vmdijr13yf7bc4lxmgshqvny6gc0dgaiy5138pxvimnsvzr19by"; libraryHaskellDepends = [ aeson base @@ -549020,7 +547672,9 @@ self: { ]; description = "Public Verifiable Secret Sharing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pvss-exe"; + broken = true; } ) { }; @@ -550491,10 +549145,8 @@ self: { }: mkDerivation { pname = "quadratic-irrational"; - version = "0.1.1"; - sha256 = "11nksvr6wnbrphq3ymg93w2xpqw6in3j1qpgbl2f3x9bgiss2l7s"; - revision = "3"; - editedCabalFile = "0y272jnh73ww4768zm4h5vh6ir2l1pnrmk4sbnpvjcx49n83lgs2"; + version = "0.1.2"; + sha256 = "01n7kwg1diqdgid1ixc76c0rj2px1mvgrss0plf43w93dpj7apvn"; libraryHaskellDepends = [ arithmoi base @@ -550516,8 +549168,6 @@ self: { ]; description = "An implementation of quadratic irrationals"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -550658,6 +549308,8 @@ self: { ]; description = "Rage against the quantification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -550685,6 +549337,7 @@ self: { ]; description = "Rage against the quantification - integration with Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -551411,8 +550064,8 @@ self: { pname = "queues"; version = "1.0.0"; sha256 = "0mnn6lgd7101lrmwqy4lf04ncq8ci2kfxydm1rlh879gjvzz3lsr"; - revision = "4"; - editedCabalFile = "19appf6z8aavky899wy93487zmjzfhz6jiw1imzm6903q65w4p6r"; + revision = "5"; + editedCabalFile = "00qbr5h2k6hkykfsw6qqqz8krfd06hvridpzijyvdskg97pggjv5"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -551489,6 +550142,7 @@ self: { crypto-token, crypton, crypton-x509, + crypton-x509-store, crypton-x509-system, crypton-x509-validation, fast-logger, @@ -551509,8 +550163,8 @@ self: { }: mkDerivation { pname = "quic"; - version = "0.2.17"; - sha256 = "15fk5786rkryjixqiqk9y7zh5wazwakp6gkk5jr4ryckjdgjyyjj"; + version = "0.2.20"; + sha256 = "1kam5r9i9zvq3z1nandz38jm1nr8npghxpqrav3mr28rbnlwmd3k"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -551523,6 +550177,7 @@ self: { crypto-token crypton crypton-x509 + crypton-x509-store crypton-x509-system crypton-x509-validation fast-logger @@ -552083,8 +550738,8 @@ self: { }: mkDerivation { pname = "quickcheck-dynamic"; - version = "4.0.0"; - sha256 = "11cd2d1sx6qlyhc2ik20a7ppc0a8ggnf3zalbsj8i3vnj20240pa"; + version = "4.0.1"; + sha256 = "0i40k3ymgdx95w8f6gzn3jasxyqiqa38jjxm398jkrfnj45jxmph"; libraryHaskellDepends = [ base containers @@ -552314,8 +550969,8 @@ self: { }: mkDerivation { pname = "quickcheck-lockstep"; - version = "0.8.0"; - sha256 = "1y3icjvd9qbv38q1cxkn48d6fp4b7c0j0j0l3mwkfi8ph8qjg2y6"; + version = "0.8.1"; + sha256 = "10x2yzr4pykgb8krassql1dl81vp78yx06ykswwy6cld46hq1d5h"; libraryHaskellDepends = [ base constraints @@ -552766,8 +551421,8 @@ self: { }: mkDerivation { pname = "quickcheck-state-machine"; - version = "0.10.1"; - sha256 = "03ignyi3db1hciwjk03xvwd1ls53sszm4j3398vdw97s53d5li7l"; + version = "0.10.2"; + sha256 = "01cs422p7jqqgnhhm2lcdsm2ilz0hcakhm16vcdfgmxbmp0af15c"; libraryHaskellDepends = [ base base-compat @@ -552838,6 +551493,8 @@ self: { doHaddock = false; description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -554327,6 +552984,8 @@ self: { ]; description = "Monad transformer for Quote from template-haskell"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -555823,7 +554482,6 @@ self: { tasty, tasty-bench, tasty-hunit, - tasty-inspection-testing, tasty-smallcheck, time, transformers, @@ -555848,7 +554506,6 @@ self: { stm tasty tasty-hunit - tasty-inspection-testing tasty-smallcheck transformers ]; @@ -556261,6 +554918,70 @@ self: { } ) { }; + random-mhs = callPackage ( + { + mkDerivation, + base, + bytestring, + containers, + deepseq, + mtl, + primitive, + random, + rdtsc, + smallcheck, + split, + splitmix, + stm, + tasty, + tasty-bench, + tasty-hunit, + tasty-smallcheck, + time, + transformers, + }: + mkDerivation { + pname = "random-mhs"; + version = "1.3.2"; + sha256 = "0kal37pcjh9a3j4mglysar00dz7n1vgyrq30z335v3fsjn0g31i5"; + libraryHaskellDepends = [ + base + bytestring + deepseq + mtl + splitmix + transformers + ]; + testHaskellDepends = [ + base + bytestring + containers + random + smallcheck + stm + tasty + tasty-hunit + tasty-smallcheck + transformers + ]; + benchmarkHaskellDepends = [ + base + mtl + primitive + random + rdtsc + split + splitmix + tasty-bench + time + ]; + description = "Pseudo-random number generation"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + random-names = callPackage ( { mkDerivation, @@ -556683,32 +555404,6 @@ self: { ) { }; ranged-list = callPackage ( - { - mkDerivation, - base, - doctest, - typecheck-plugin-nat-simple, - }: - mkDerivation { - pname = "ranged-list"; - version = "0.1.2.1"; - sha256 = "0higq2v525f0i4fwckcq16lf0ig85hlkhiqz0cc3ipanwap8wr6n"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - typecheck-plugin-nat-simple - ]; - testHaskellDepends = [ - base - doctest - typecheck-plugin-nat-simple - ]; - description = "The list like structure whose length or range of length can be specified"; - license = lib.licenses.bsd3; - } - ) { }; - - ranged-list_0_1_2_3 = callPackage ( { mkDerivation, base, @@ -556734,7 +555429,6 @@ self: { ]; description = "The list like structure whose length or range of length can be specified"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -556959,6 +555653,8 @@ self: { ]; description = "Hot reload and reload-surviving values with GHCi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -557942,8 +556638,8 @@ self: { }: mkDerivation { pname = "rattletrap"; - version = "14.1.3"; - sha256 = "0x6n149s39kas2wivnpnpdbwa4v1r1wiyima1vca2bj8h33mbmp4"; + version = "14.1.4"; + sha256 = "1qskyb2m4szwhs2f6npg55abxz1jc0rc0pcp4hzbfapwr588myy6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -558279,6 +556975,48 @@ self: { } ) { }; + raytrace = callPackage ( + { + mkDerivation, + base, + Color, + linear, + massiv, + massiv-io, + mtl, + random, + }: + mkDerivation { + pname = "raytrace"; + version = "0.2.0.0"; + sha256 = "1152vr6g4vaz19vri3fkk8aw83mcy4r3kjnvxwcj9nb6wh66612c"; + revision = "1"; + editedCabalFile = "0ahh2q6h0dq5kzz28vbnhr6szf3aahmsmdpcxkq8060b5z46rm44"; + libraryHaskellDepends = [ + base + Color + linear + massiv + massiv-io + mtl + random + ]; + testHaskellDepends = [ + base + Color + linear + massiv + massiv-io + mtl + random + ]; + description = "Ray tracing library"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + raz = callPackage ( { mkDerivation, @@ -561300,7 +560038,9 @@ self: { ]; description = "Preprocessor to allow record.field syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "record-dot-preprocessor"; + broken = true; } ) { }; @@ -561427,6 +560167,8 @@ self: { time ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -561659,7 +560401,6 @@ self: { bytestring, containers, ghc-heap, - ghc-prim, mtl, primitive, QuickCheck, @@ -561674,17 +560415,14 @@ self: { }: mkDerivation { pname = "recover-rtti"; - version = "0.5.0"; - sha256 = "17jx201m9x14d624agxx96wkscmlppilmdsjwnh9p930504f66mp"; - revision = "1"; - editedCabalFile = "1m39pwdlnk20lbp45zlgwwp931rhh98qba0rwvzs2789qw3ma57m"; + version = "0.5.1"; + sha256 = "1k8sxwgbbcx38hlkwvpxa44ifw0mr1k10b01a0pym4n0aha9wp90"; libraryHaskellDepends = [ aeson base bytestring containers ghc-heap - ghc-prim mtl primitive sop-core @@ -561698,8 +560436,6 @@ self: { base bytestring containers - ghc-heap - ghc-prim mtl primitive QuickCheck @@ -562108,54 +560844,6 @@ self: { ) { }; redact = callPackage ( - { - mkDerivation, - ansi-terminal, - ansi-wl-pprint, - base, - directory, - explainable-predicates, - HMock, - optparse-applicative, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "redact"; - version = "0.5.0.0"; - sha256 = "0f9nfkli9spbcidfwq81z4ryjnlyqf4snj1dmhsngpcp0x2am798"; - revision = "3"; - editedCabalFile = "05rf8wvc27fw9j8j75yx55v17vnwyr1gmqw5rqd1ph1zrqwykj2l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - text - ]; - executableHaskellDepends = [ - ansi-terminal - ansi-wl-pprint - base - directory - optparse-applicative - ]; - testHaskellDepends = [ - ansi-terminal - base - explainable-predicates - HMock - tasty - tasty-hunit - ]; - description = "hide secret text on the terminal"; - license = lib.licenses.mit; - mainProgram = "redact"; - } - ) { }; - - redact_0_6_0_0 = callPackage ( { mkDerivation, ansi-terminal, @@ -562221,7 +560909,6 @@ self: { ]; description = "hide secret text on the terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "redact"; } ) { }; @@ -562605,6 +561292,8 @@ self: { ]; description = "Typed, schema-based, composable Redis library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -563167,6 +561856,8 @@ self: { ]; description = "A reference counting library to alias linear resources"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -564756,7 +563447,9 @@ self: { ]; description = "Helper functions to use reflex with gi-gtk"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "reflex-gi-gtk-example"; + broken = true; } ) { }; @@ -565206,7 +563899,9 @@ self: { ]; description = "SDL2 and reflex FRP"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "reflex-sdl2-exe"; + broken = true; } ) { }; @@ -565321,8 +564016,8 @@ self: { }: mkDerivation { pname = "reflex-vty"; - version = "0.6.1.0"; - sha256 = "0s8xqikz9gcaqax99cn96izqv8srmcxs9d93nz9k3f7ncrb0c5zw"; + version = "0.6.1.1"; + sha256 = "0i1745p0kgc7y2zfzix1vfljmgi4aq8nqng9c3nsm420jkys3xz6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -565383,8 +564078,8 @@ self: { }: mkDerivation { pname = "reform"; - version = "0.2.7.5"; - sha256 = "14p98i2682dm1n4drdrvilz67wfp2lr7m8f0wlmk40q3qmhc05xb"; + version = "0.2.7.6"; + sha256 = "0zfyy42i0q5knqsswbz5bgpkq09mf6rksznrb0dv1qszxg1cdlls"; libraryHaskellDepends = [ base containers @@ -565394,8 +564089,6 @@ self: { ]; description = "reform is a type-safe HTML form generation and validation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -565421,7 +564114,6 @@ self: { ]; description = "Add support for using blaze-html with Reform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -565466,8 +564158,8 @@ self: { }: mkDerivation { pname = "reform-happstack"; - version = "0.2.5.6"; - sha256 = "1v76z620b0iw3j2cr7mjs13jcf2lk800ilnl2k46jixc4zk75biy"; + version = "0.2.5.8"; + sha256 = "09h4shfz4vvm4sasg7a0c2s447z4hvrnia1ybr2qdrj5sw8jvh26"; libraryHaskellDepends = [ base bytestring @@ -565480,7 +564172,6 @@ self: { ]; description = "Happstack support for reform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -566154,6 +564845,8 @@ self: { ]; description = "PCRE wrapper"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -567426,6 +566119,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "data structure for assembling components"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -567486,6 +566180,7 @@ self: { ]; description = "Aeson encoders / decoders"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -567552,6 +566247,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "utilities to work with Hedgehog generators and `registry`"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -567629,6 +566325,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Hedgehog generators for Aeson"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -567811,6 +566508,8 @@ self: { ]; description = "Simple linear and quadratic regression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -568116,25 +566815,20 @@ self: { mkDerivation, aeson, attoparsec, - attoparsec-aeson, base, base-compat, base16, bifunctors, - binary-parser, bytestring, case-insensitive, comonad, containers, contravariant, - data-dword, - data-textual, hasql, hasql-transaction, hedgehog, iproute, mmorph, - network-ip, opaleye, pretty, product-profunctors, @@ -568155,26 +566849,22 @@ self: { }: mkDerivation { pname = "rel8"; - version = "1.6.0.0"; - sha256 = "1ljw3zihy3d3nihfc8f791h5bggd2r4gb8vq2zraa8s7brml3bx9"; + version = "1.7.0.0"; + sha256 = "1wdrwmxbvl9qchqhys74ddx5y621j9ngn1mkjr6wxsj8k27bz419"; libraryHaskellDepends = [ aeson attoparsec - attoparsec-aeson base base-compat base16 bifunctors - binary-parser bytestring case-insensitive comonad + containers contravariant - data-dword - data-textual hasql iproute - network-ip opaleye pretty product-profunctors @@ -568196,17 +566886,16 @@ self: { bytestring case-insensitive containers - data-dword hasql hasql-transaction hedgehog iproute mmorph - network-ip scientific tasty tasty-hedgehog text + these time tmp-postgres transformers @@ -568997,10 +567686,8 @@ self: { }: mkDerivation { pname = "relude"; - version = "1.2.2.0"; - sha256 = "0ikp23nbzrxfalpsk6n8yg3byh43f8hp156wpxx45yc297gmgpil"; - revision = "4"; - editedCabalFile = "1pfhfswpmqlyhia8lwbx6yf9in3l8m09w1n6g40njqy95s0cxynz"; + version = "1.2.2.2"; + sha256 = "1865bladis4czglyvkcj05qh3fr2bvrm1w5dm5gz3wjs2cnsivci"; libraryHaskellDepends = [ base bytestring @@ -569166,6 +567853,8 @@ self: { ]; description = "`rematch` matchers for Data.Text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -571087,14 +569776,15 @@ self: { base, bytestring, case-insensitive, + hspec, http-client, http-client-tls, http-types, }: mkDerivation { pname = "request"; - version = "0.2.2.0"; - sha256 = "057x980cs826j7yjhiph6m9j33zh0nlrshfdbq4i8g887scbqgnx"; + version = "0.3.0.0"; + sha256 = "1cankhlqmqcs1qnrqf2k53vdwdp3x2dh7gqz37cynvi7ndxzxavd"; libraryHaskellDepends = [ base bytestring @@ -571103,6 +569793,11 @@ self: { http-client-tls http-types ]; + testHaskellDepends = [ + base + bytestring + hspec + ]; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -571246,8 +569941,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Abstraction to manage user defined Type Errors"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -571264,7 +569957,6 @@ self: { fin, parsec, QuickCheck, - quickcheck-instances, tasty, tasty-quickcheck, transformers, @@ -571272,10 +569964,8 @@ self: { }: mkDerivation { pname = "rere"; - version = "0.2.0.1"; - sha256 = "1cbdn8jz1zcbddc0b4ahln1k7vwg0npxhmnmqaasm3byrrr6l271"; - revision = "4"; - editedCabalFile = "1bn9hif7mb6spyplmxw5sjm5y505yvsa9xnq1aqskn5i74k0hq3h"; + version = "0.2.0.2"; + sha256 = "14lmqbihrhy9cdskxgk9l36ndr323vqiwxs8fry5s64gg00ahlyf"; libraryHaskellDepends = [ base containers @@ -571289,7 +569979,6 @@ self: { base containers QuickCheck - quickcheck-instances tasty tasty-quickcheck ]; @@ -571301,14 +569990,10 @@ self: { containers criterion derp - fin parsec - vec ]; description = "Regular-expressions extended with fixpoints for context-free powers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -571664,10 +570349,8 @@ self: { }: mkDerivation { pname = "resolv"; - version = "0.2.0.2"; - sha256 = "0jz798kliih4lb16s9bjk7sa9034x1qhyrr8z9sp6ahkz4yjh3c8"; - revision = "5"; - editedCabalFile = "0ck1bka5c4mpzgafbnv8brld1c8z7q1nyk2kwy8jirpcgpqwda2q"; + version = "0.2.0.3"; + sha256 = "00viayfl655hibms5nh3nr3j7jhb1bvlhiscinvwnb4bp25a80kp"; libraryHaskellDepends = [ base base16-bytestring @@ -572649,6 +571332,8 @@ self: { pname = "rest-rewrite"; version = "0.4.5"; sha256 = "0yxg3wfwxcrg036cxqcf601vfc5472vx9zwl21y23kpx031h7ny4"; + revision = "1"; + editedCabalFile = "15n4xgrrcxrm8wkxhi9vw1imdx1y7wifbm8l6p0b5sqp995h86fb"; libraryHaskellDepends = [ base containers @@ -573417,6 +572102,7 @@ self: { description = "A powerful, easy-to-use codemodding tool for Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -573508,6 +572194,8 @@ self: { ]; description = "A powerful, easy-to-use codemodding tool for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -574773,6 +573461,7 @@ self: { ]; description = "monad-bayes backend for Rhine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rhine-bayes-gloss"; } ) { }; @@ -576631,6 +575320,8 @@ self: { pname = "risc386"; version = "0.0.20230928"; sha256 = "139cxdvb9lg0p9nkqkrwicsiwlhq8vphq6l1dhv8s6aia556w6kw"; + revision = "1"; + editedCabalFile = "0wmj5b3bgdbqdl213z70zplvmxznz75kzg23idaca0nl6nx9jynf"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -576646,9 +575337,7 @@ self: { ]; description = "Reduced instruction set i386 simulator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "risc386"; - broken = true; } ) { }; @@ -577199,6 +575888,60 @@ self: { } ) { }; + rme = callPackage ( + { + mkDerivation, + base, + containers, + vector, + }: + mkDerivation { + pname = "rme"; + version = "0.1"; + sha256 = "1d4mrmyq9124l13skx3na5xwhqh90hj1bhydars0jyd9axllyx89"; + libraryHaskellDepends = [ + base + containers + vector + ]; + description = "Reed-Muller Expansion normal form for Boolean Formulas"; + license = lib.licenses.bsd3; + } + ) { }; + + rme-what4 = callPackage ( + { + mkDerivation, + base, + bv-sized, + containers, + parameterized-utils, + rme, + vector, + what4, + }: + mkDerivation { + pname = "rme-what4"; + version = "0.1"; + sha256 = "1ngcydw0ns0yxm393lwrw05jl0rmhhsh2jpr05nv9l0v71sbg087"; + revision = "1"; + editedCabalFile = "19l4p4c88m9hpxr6wpmfrk0rsk52wkfj0msj36bipjp1cdyxf7rz"; + libraryHaskellDepends = [ + base + bv-sized + containers + parameterized-utils + rme + vector + what4 + ]; + description = "What4 adapter for the RME solver"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + rmonad = callPackage ( { mkDerivation, @@ -578127,6 +576870,40 @@ self: { } ) { }; + rollbar_2_0_0_0 = callPackage ( + { + mkDerivation, + aeson, + base, + http-conduit, + lifted-base, + monad-control, + network, + resourcet, + text, + vector, + }: + mkDerivation { + pname = "rollbar"; + version = "2.0.0.0"; + sha256 = "1nyxs35j5fz7h3cdhrp2agqb9l49w7rp92p8ghrrs9r51i4x934d"; + libraryHaskellDepends = [ + aeson + base + http-conduit + lifted-base + monad-control + network + resourcet + text + vector + ]; + description = "error tracking through rollbar.com"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + rollbar-cli = callPackage ( { mkDerivation, @@ -578735,14 +577512,16 @@ self: { filepath, hspec, hspec-golden, + prettyprinter, text, }: mkDerivation { pname = "ronn"; - version = "1.1.1.0"; - sha256 = "0hrahajjmgfb93z2csyqjzbywv74z0c8yaagq5pbhasmrha2jg2i"; + version = "1.2.0.0"; + sha256 = "03jpq7layr7mg97hnxiny26fgjjmksr57la37ma56a3pwbh80zz8"; libraryHaskellDepends = [ base + prettyprinter text ]; testHaskellDepends = [ @@ -578768,8 +577547,8 @@ self: { }: mkDerivation { pname = "ronn-envparse"; - version = "1.0.1.0"; - sha256 = "00vl088d5c64ds9gz979s07zhz65290px4vij7zg4l9hsxhnbnnr"; + version = "1.0.1.1"; + sha256 = "1c3ad2ik59g1an1j5dl9hmyp6a5012isjbdvppmc4qxqz4flhjvg"; libraryHaskellDepends = [ base envparse @@ -578800,8 +577579,8 @@ self: { }: mkDerivation { pname = "ronn-opt-env-conf"; - version = "1.0.1.0"; - sha256 = "0s2myfg84d3ki0ls816xvllw2dinyzn7gy7ckk6zgc56jckrbs3y"; + version = "1.0.1.1"; + sha256 = "1vb0gisl7gwi8b62plv839fz1kk24qiirjq4b652zxq98634hm8r"; libraryHaskellDepends = [ base opt-env-conf @@ -578833,8 +577612,8 @@ self: { }: mkDerivation { pname = "ronn-optparse-applicative"; - version = "1.0.1.0"; - sha256 = "1l8hsdlb2j3c4q1lmz7kxp16z9vky83gai5kl8jqcb6n7is9c5m2"; + version = "1.0.2.1"; + sha256 = "06cfpl6yfjq94n83y61wwn66kzcxn4p8c6b96yn5g3ck8fpy8mhx"; libraryHaskellDepends = [ base optparse-applicative @@ -579538,6 +578317,7 @@ self: { ]; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { @@ -579602,6 +578382,7 @@ self: { ]; description = "Directed rounding for built-in floating types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -580792,6 +579573,8 @@ self: { ]; description = "Streaming parser/renderer for the RSS standard"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -581057,39 +579840,49 @@ self: { rtorrent-rpc = callPackage ( { mkDerivation, + aeson, + aeson-pretty, attoparsec, base, + base64-bytestring, blaze-builder, blaze-textual, bytestring, - deepseq, - haxr, + containers, + directory, mtl, network, - split, - utf8-string, + network-uri, + scientific, + text, + vector, + vector-split, }: mkDerivation { pname = "rtorrent-rpc"; - version = "0.2.2.0"; - sha256 = "0k14m4r0zsalngb6c4dckr7z521mymabc0ihk0zz402l7s13n68s"; + version = "0.3.0.0"; + sha256 = "0ks30wvqqhgjfn71cah11csms40rrj8h2rvpkp7wxqx01wc4xmfw"; libraryHaskellDepends = [ + aeson + aeson-pretty attoparsec base + base64-bytestring blaze-builder blaze-textual bytestring - deepseq - haxr + containers + directory mtl network - split - utf8-string + network-uri + scientific + text + vector + vector-split ]; - description = "A library for communicating with RTorrent over its XML-RPC interface"; + description = "A library for communicating with RTorrent over its JSON-RPC interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -581477,6 +580270,8 @@ self: { ]; description = "Running newly generated Haskell source module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -581985,8 +580780,8 @@ self: { }: mkDerivation { pname = "rzk"; - version = "0.7.5"; - sha256 = "0x9485rs2hc51jfaczcmx89jn2nnppfnrk717xc559rzb64s2sgk"; + version = "0.7.6"; + sha256 = "0gr1ay9fg6iilc12jfi4ixmw5mgrhv36x1k12f96zk83ppwam765"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ @@ -582521,6 +581316,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Safe and very efficient arithmetic operations on fixed decimal point numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -583231,8 +582028,6 @@ self: { lens, lens-action, old-time, - QuickCheck, - quickcheck-instances, tasty, tasty-quickcheck, template-haskell, @@ -583243,10 +582038,8 @@ self: { }: mkDerivation { pname = "safecopy"; - version = "0.10.4.2"; - sha256 = "0r2mf0p82gf8vnldx477b5ykrj1x7hyg13nqfn6gzb50japs6h3i"; - revision = "11"; - editedCabalFile = "034pd8j432bnwpx8gh08fdbdk7mjb986gqwrailjvrcym3rdkcjm"; + version = "0.10.4.3"; + sha256 = "03hkb4znm7jaszz290hqal3zbmw3606gafrbdxrvlcfkrpg1m71c"; libraryHaskellDepends = [ array base @@ -583270,8 +582063,6 @@ self: { HUnit lens lens-action - QuickCheck - quickcheck-instances tasty tasty-quickcheck template-haskell @@ -584783,8 +583574,8 @@ self: { }: mkDerivation { pname = "sandwich"; - version = "0.3.0.4"; - sha256 = "1j6xlnhb58kg776jl1bp82lfi95a9xy27haqanbx67mw7n471gc6"; + version = "0.3.0.5"; + sha256 = "1xx99hlscbqyyl5z8yby4x13bnkxzbxcxq817jf4b4v2qyha1a0b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -585033,8 +583824,8 @@ self: { }: mkDerivation { pname = "sandwich-contexts-kubernetes"; - version = "0.1.1.0"; - sha256 = "00g2fq9xnk8icrvfjmqkhl3g7pz7159kqajx10vgy4xgdxp25zfz"; + version = "0.1.1.1"; + sha256 = "186xbfpx2fgvckzmagmxw3cyp6k1avk3jvdii9857i3xwccinc1s"; libraryHaskellDepends = [ aeson base @@ -585070,7 +583861,6 @@ self: { ]; testHaskellDepends = [ base - exceptions random relude sandwich @@ -585111,8 +583901,8 @@ self: { }: mkDerivation { pname = "sandwich-contexts-minio"; - version = "0.1.0.0"; - sha256 = "1jdh7qlsixb15ca2f62llqxdjp3frs5h8yggnhmy72zcamg7j2rg"; + version = "0.1.0.2"; + sha256 = "0s8aqra7h52sa1md8x9a38ikd4z1wx5kxdg4a5hw5nvmr0c86y4w"; libraryHaskellDepends = [ aeson base @@ -585192,50 +583982,6 @@ self: { ) { }; sandwich-quickcheck = callPackage ( - { - mkDerivation, - base, - free, - monad-control, - mtl, - QuickCheck, - safe-exceptions, - sandwich, - text, - time, - }: - mkDerivation { - pname = "sandwich-quickcheck"; - version = "0.1.0.7"; - sha256 = "10l3k71lhppss9fdckp4wm3wd16ljg9jy3vq4gsmkzccs66wy7x8"; - libraryHaskellDepends = [ - base - free - monad-control - mtl - QuickCheck - safe-exceptions - sandwich - text - time - ]; - testHaskellDepends = [ - base - free - monad-control - mtl - QuickCheck - safe-exceptions - sandwich - text - time - ]; - description = "Sandwich integration with QuickCheck"; - license = lib.licenses.bsd3; - } - ) { }; - - sandwich-quickcheck_0_2_0_0 = callPackage ( { mkDerivation, base, @@ -585267,7 +584013,6 @@ self: { ]; description = "Sandwich integration with QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -585484,6 +584229,132 @@ self: { } ) { }; + sandwich-webdriver_0_4_0_1 = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + data-default, + directory, + exceptions, + filepath, + http-client, + http-client-tls, + http-conduit, + http-types, + microlens, + microlens-aeson, + monad-control, + monad-logger, + mtl, + network, + process, + random, + regex-tdfa, + retry, + safe, + sandwich, + sandwich-contexts, + string-interpolate, + temporary, + text, + time, + transformers, + unix, + unliftio, + unliftio-core, + unordered-containers, + vector, + webdriver, + }: + mkDerivation { + pname = "sandwich-webdriver"; + version = "0.4.0.1"; + sha256 = "1q2ipwvyn4l9zch5h6cgbvgcjbrywpc5zrz2y9bdlbhdpdk9a2iv"; + libraryHaskellDepends = [ + aeson + base + bytestring + containers + data-default + directory + exceptions + filepath + http-client + http-client-tls + http-conduit + http-types + microlens + microlens-aeson + monad-control + monad-logger + mtl + network + process + random + regex-tdfa + retry + safe + sandwich + sandwich-contexts + string-interpolate + temporary + text + time + transformers + unix + unliftio + unliftio-core + unordered-containers + vector + webdriver + ]; + testHaskellDepends = [ + aeson + base + bytestring + containers + data-default + directory + exceptions + filepath + http-client + http-client-tls + http-conduit + http-types + microlens + microlens-aeson + monad-control + monad-logger + mtl + network + process + random + regex-tdfa + retry + safe + sandwich + sandwich-contexts + string-interpolate + temporary + text + time + transformers + unix + unliftio + unliftio-core + unordered-containers + vector + webdriver + ]; + description = "Sandwich integration with Selenium WebDriver"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + sarasvati = callPackage ( { mkDerivation, @@ -585643,8 +584514,8 @@ self: { pname = "sasha"; version = "0.2"; sha256 = "1z99hdbn94ngfinijgsd5x4lllwpyxc8jkf67lk0f6p12jfq7qv0"; - revision = "1"; - editedCabalFile = "0k3c54jajid7ggrm87xa0fvh11zjmhy2qn6lply1nykjhip9q1qn"; + revision = "2"; + editedCabalFile = "07zzjr1klfiafxxlxjdyqxdwvy2np6dg60qskv8bq12b863wxrf4"; libraryHaskellDepends = [ base bytestring @@ -585673,7 +584544,6 @@ self: { testToolDepends = [ alex ]; description = "A staged lexer generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -585778,6 +584648,8 @@ self: { ]; description = "A high-level wrapper over minisat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -585985,8 +584857,8 @@ self: { }: mkDerivation { pname = "saturn"; - version = "1.0.0.8"; - sha256 = "00aakwr06ygbidbawr60lq07vk5gp74fp7wj71ndzc1ph6crivwp"; + version = "1.0.0.9"; + sha256 = "1c2z4ar1jiqgmkbrgxb7lg1xgcz4fappgd32xgdxl39q7qa4w1mn"; libraryHaskellDepends = [ base containers @@ -586006,6 +584878,45 @@ self: { } ) { }; + saturn_1_1_0_0 = callPackage ( + { + mkDerivation, + base, + containers, + heck, + hspec, + hspec-core, + parsec, + QuickCheck, + text, + time, + }: + mkDerivation { + pname = "saturn"; + version = "1.1.0.0"; + sha256 = "0qwv38aas0lv01bgbdrl60bikkpx7wm1zij7jyyb07y4615ssrjx"; + libraryHaskellDepends = [ + base + containers + heck + hspec + parsec + QuickCheck + text + time + ]; + testHaskellDepends = [ + base + heck + hspec + hspec-core + ]; + description = "Handle POSIX cron schedules"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + satyros = callPackage ( { mkDerivation, @@ -586325,8 +585236,8 @@ self: { }: mkDerivation { pname = "sbp"; - version = "6.2.1"; - sha256 = "0cq2a62ipkbqmrryync5jqmlgyx5pgkrknk3lpcwmv1l1f9l9dgr"; + version = "6.2.2"; + sha256 = "1bgvkmp5l92vsadnj6hjrhxzsdfcfc3b1pdrg9a901vhib0sa98w"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -586420,8 +585331,10 @@ self: { array, async, base, + base16-bytestring, bytestring, containers, + cryptohash-sha512, deepseq, directory, filepath, @@ -586441,19 +585354,23 @@ self: { text, time, transformers, + tree-view, uniplate, z3, }: mkDerivation { pname = "sbv"; - version = "11.0"; - sha256 = "1pdyy3mrhyrqacs7snn4dc9drawqij28svn8qlqxx0wr1bwx86gp"; + version = "11.7"; + sha256 = "1nq1yjc4wfjmqhp0y61aqmva99vxnpj2mpksyai63ijmx9zq8yzs"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array async base + base16-bytestring + bytestring containers + cryptohash-sha512 deepseq directory filepath @@ -586468,6 +585385,7 @@ self: { text time transformers + tree-view uniplate ]; testHaskellDepends = [ @@ -586504,7 +585422,7 @@ self: { } ) { inherit (pkgs) z3; }; - sbv_12_0 = callPackage ( + sbv_12_2 = callPackage ( { mkDerivation, array, @@ -586541,8 +585459,8 @@ self: { }: mkDerivation { pname = "sbv"; - version = "12.0"; - sha256 = "14c9i9aa6rbm6kfxjcdbcy7vajh3v6bhsginhn1v6hg8430f93rp"; + version = "12.2"; + sha256 = "1ws5mnd2xv4k50pwwghm3yldir4a0p6r8pi6n7zsk7wcp7mxz5m3"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -590146,7 +589064,9 @@ self: { executableHaskellDepends = [ base ]; description = "Take screenshot and copy it to the system clipboard"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "screenshot-to-clipboard"; + broken = true; } ) { }; @@ -590478,6 +589398,7 @@ self: { ]; description = "Multidimensional integration over simplices"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -592549,6 +591470,8 @@ self: { ]; description = "Multi-backend, high-level EDSL for interacting with SQL databases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -592574,6 +591497,7 @@ self: { ]; description = "JSON support for the Selda database library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -592644,6 +591568,7 @@ self: { ]; description = "SQLite backend for the Selda database EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -592675,8 +591600,8 @@ self: { }: mkDerivation { pname = "select-rpms"; - version = "0.2.0"; - sha256 = "14w9j0jdjsqqd75ppka418hjy0ns1cf30q65cakz8mv81ycdpslc"; + version = "0.3.1"; + sha256 = "0vsy0yq6a154k9hklzg5hciwyvkvk6hmcrbf4qldkqpbrx4dx2d5"; libraryHaskellDepends = [ base directory @@ -592694,42 +591619,6 @@ self: { } ) { }; - select-rpms_0_3_0 = callPackage ( - { - mkDerivation, - base, - directory, - extra, - filepath, - Glob, - rpm-nvr, - safe, - simple-cmd, - simple-cmd-args, - simple-prompt, - }: - mkDerivation { - pname = "select-rpms"; - version = "0.3.0"; - sha256 = "0xzhhic205nvh8n2mdb85675x8kdvlgjy0d4xxyw1nq8p078cn51"; - libraryHaskellDepends = [ - base - directory - extra - filepath - Glob - rpm-nvr - safe - simple-cmd - simple-cmd-args - simple-prompt - ]; - description = "Select a subset of RPM packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - selections = callPackage ( { mkDerivation, base }: mkDerivation { @@ -594752,70 +593641,6 @@ self: { ) { }; sequence-formats = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - errors, - exceptions, - foldl, - hspec, - lens-family, - pipes, - pipes-attoparsec, - pipes-bytestring, - pipes-safe, - pipes-zlib, - streaming-commons, - tasty, - tasty-hunit, - transformers, - vector, - }: - mkDerivation { - pname = "sequence-formats"; - version = "1.10.0.0"; - sha256 = "1hsmhhrd88r3wan6b1z1x5j9shy3qg36m27g9lks4fvs95hf76yg"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - errors - exceptions - foldl - lens-family - pipes - pipes-attoparsec - pipes-bytestring - pipes-safe - pipes-zlib - streaming-commons - transformers - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - foldl - hspec - pipes - pipes-safe - pipes-zlib - tasty - tasty-hunit - transformers - vector - ]; - description = "A package with basic parsing utilities for several Bioinformatic data formats"; - license = lib.licenses.gpl3Only; - } - ) { }; - - sequence-formats_1_11_0_2 = callPackage ( { mkDerivation, attoparsec, @@ -594877,76 +593702,10 @@ self: { ]; description = "A package with basic parsing utilities for several Bioinformatic data formats"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; sequenceTools = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - foldl, - hspec, - lens-family, - optparse-applicative, - pipes, - pipes-group, - pipes-ordered-zip, - pipes-safe, - random, - sequence-formats, - split, - transformers, - vector, - }: - mkDerivation { - pname = "sequenceTools"; - version = "1.5.3.1"; - sha256 = "1h2bfapfqs03j46lx5lpyayajwicapycpyli6nkzs7h7cqiwri6f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - optparse-applicative - pipes - random - sequence-formats - vector - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - bytestring - foldl - lens-family - optparse-applicative - pipes - pipes-group - pipes-ordered-zip - pipes-safe - random - sequence-formats - split - transformers - vector - ]; - testHaskellDepends = [ - base - bytestring - hspec - pipes - sequence-formats - vector - ]; - description = "A package with tools for processing DNA sequencing data"; - license = lib.licenses.gpl3Only; - } - ) { }; - - sequenceTools_1_6_0_0 = callPackage ( { mkDerivation, base, @@ -595010,7 +593769,6 @@ self: { ]; description = "A package with tools for processing DNA sequencing data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -595105,6 +593863,8 @@ self: { ]; description = "Grammar-based compression algorithms SEQUITUR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -595168,17 +593928,14 @@ self: { base, binary, bytestring, - mtl, serdoc-core, tasty, tasty-quickcheck, - text, - time, }: mkDerivation { pname = "serdoc-binary"; - version = "0.3.1.0"; - sha256 = "1v8psfn9l2zagsxrpbmp63pkg4mqy86zlq5g0x33vygyflrlihqv"; + version = "0.3.2.0"; + sha256 = "059kljs9gcmhn2n4cpbq5i6kc20p936ji6wgrbqvsbrs3sh85faz"; libraryHaskellDepends = [ base binary @@ -595189,16 +593946,12 @@ self: { base binary bytestring - mtl serdoc-core tasty tasty-quickcheck - text - time ]; description = "`binary` backend for `serdoc`"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -595214,23 +593967,18 @@ self: { template-haskell, text, th-abstraction, - time, }: mkDerivation { pname = "serdoc-core"; - version = "0.3.1.0"; - sha256 = "03x18gcm3n5vgm82kp0b237pl5jgrlxim83zznlchdlx1scxdwzw"; + version = "0.3.2.0"; + sha256 = "042qwr8bh3wk0qmbzl3xdq3zj5y6hgvf4mphq5d86ssm18bx4kx5"; libraryHaskellDepends = [ base bytestring containers - mtl - tasty - tasty-quickcheck template-haskell text th-abstraction - time ]; testHaskellDepends = [ base @@ -595238,14 +593986,9 @@ self: { mtl tasty tasty-quickcheck - template-haskell - text - time ]; description = "Generated documentation of serialization formats"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -595808,6 +594551,8 @@ self: { pname = "servant"; version = "0.20.3.0"; sha256 = "00k6pwqxpyjp5qm5pjl8qb75iqmpql5iv3ac43xdvikcixffcwzj"; + revision = "2"; + editedCabalFile = "0wvq6jj6js7sxq1rrn4v6749zfwkz3cl8dsypf5cvbpkz1qp4d7j"; libraryHaskellDepends = [ aeson attoparsec @@ -596142,8 +594887,8 @@ self: { pname = "servant-auth-client"; version = "0.4.2.0"; sha256 = "1pvqiygnwnkj6y4mi03qnpjlp305cjmpzp7nrqmc2p6qwnl2l4q9"; - revision = "1"; - editedCabalFile = "0knqj557cxmjih4dxcyqgyraabsbgihlmf3p06x5rqav6ks2zr8n"; + revision = "2"; + editedCabalFile = "1cbsy3kpbwqliyc59fcwxgl5x31gigawl8zb4zhlv5afnq6inm3q"; libraryHaskellDepends = [ base bytestring @@ -596287,8 +595032,8 @@ self: { pname = "servant-auth-docs"; version = "0.2.11.0"; sha256 = "127w2ggii2vqs60cnd5ir4azyrxnm7mhfydi156liykk2v8jkkaj"; - revision = "1"; - editedCabalFile = "0hnjh3ybc7x39sj4cy3m1c0zq5jwbkq5kz2zh4x1263nyddnxha9"; + revision = "2"; + editedCabalFile = "1afn8h6j7fljz5q6p2pml3xpdrbkapy14nb33fxsdasg4nmfzgzr"; setupHaskellDepends = [ base Cabal @@ -596474,6 +595219,8 @@ self: { pname = "servant-auth-server"; version = "0.4.9.1"; sha256 = "04sy2g81pp0pr31xi6h1hqm199z6r4xv3fy2x307dlydxmdm8qb3"; + revision = "1"; + editedCabalFile = "0n29r1359vs9pl5rk7d7yh33i821qn9bcmrbfd4ddxl4n3sy27v1"; libraryHaskellDepends = [ aeson base @@ -596549,8 +595296,8 @@ self: { pname = "servant-auth-swagger"; version = "0.2.11.0"; sha256 = "1h5ckkai4qxz9c2a62l2lv0ss8az5j1lwyzs4g652zffrgx9qk28"; - revision = "1"; - editedCabalFile = "1djifng1y6sgxbcwavdc9w52n0wv99b0wya8byszzg5kjk2vzfkj"; + revision = "2"; + editedCabalFile = "171xyzbay3x6bp5zvx9jcn6hi4sh13hh1ydp6z528xh70lr4krrn"; libraryHaskellDepends = [ base lens @@ -597070,6 +595817,8 @@ self: { pname = "servant-cassava"; version = "0.10.2"; sha256 = "1g2d6gvy21mfxl4f0slqxm7jrapqs47m9n615gijmb536i8csfq1"; + revision = "1"; + editedCabalFile = "09zcd3733hb97wnxvwyk5j19c3b6ar0nk2ak5c1iww2mpkv9lvz2"; libraryHaskellDepends = [ base base-compat @@ -597313,8 +596062,8 @@ self: { pname = "servant-client"; version = "0.20.3.0"; sha256 = "0kxmixgv5nmir2bk3zfrhaal4969rf414wi2ccnngjm3395bqrwn"; - revision = "1"; - editedCabalFile = "0644af144zy4axv8hhqhv8mj7amnqd09fbz5rglr6l60d27hpqx1"; + revision = "2"; + editedCabalFile = "01if9an74258ri4sg91z64f200wl5z9i368ngc25wcgqkzpda3xd"; libraryHaskellDepends = [ base base-compat @@ -597402,8 +596151,8 @@ self: { pname = "servant-client-core"; version = "0.20.3.0"; sha256 = "1vv6xf340hyk60vv6jb1zxfpsb7x2ykacb84yrn3h1w4k075hlyn"; - revision = "1"; - editedCabalFile = "1g8arzgcqc9qp1fimrs8iwqvzgsp6br76kkh72hsz0nsg6gmlvc1"; + revision = "2"; + editedCabalFile = "1gnnbybxpvvc82p45iqqiggrw545m6qmkgwfnv18rv83p5lqzcv0"; libraryHaskellDepends = [ aeson attoparsec @@ -598219,10 +596968,8 @@ self: { }: mkDerivation { pname = "servant-event-stream"; - version = "0.3.0.1"; - sha256 = "1nd9v3dmpnqwj63psm6zikgcd635fc80a7bhn0azzlgi551s5kf2"; - revision = "1"; - editedCabalFile = "1dw8rknp2a2b92ri6f4qgvz93r99c7jzrhdmll3n7kkz0lyk9z28"; + version = "0.3.1.0"; + sha256 = "1hpwm093ry1kclyxj4fgr03zcg85c7v9d9drcaxrmrsnihra6ii3"; libraryHaskellDepends = [ base bytestring @@ -598235,8 +596982,6 @@ self: { testHaskellDepends = [ base ]; description = "Servant support for Server-Sent events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -598923,8 +597668,8 @@ self: { pname = "servant-http-streams"; version = "0.20.2"; sha256 = "029i6rqmj6q5fn32vimr92rwgfb0c5l5cm19ncrw48nh78pgp0zm"; - revision = "1"; - editedCabalFile = "1k1yl2n7j1j8n5d88y0i6ddxgakzd55h94my4rgmga7c8vrd2ynn"; + revision = "2"; + editedCabalFile = "0790nxwl0wiv8qvfl6pv7aqcqivx7yhjyfld9xvpkwkg8ny6z86d"; libraryHaskellDepends = [ base base-compat @@ -598983,6 +597728,8 @@ self: { ]; description = "Automatic derivation of querying functions for servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -600767,8 +599514,8 @@ self: { pname = "servant-quickcheck"; version = "0.1.1.0"; sha256 = "0hzfwqxbcgf9mxzlhw53pv99jxlpib56xjsnh8yw15j2pgb908qs"; - revision = "1"; - editedCabalFile = "0lppp61x971hkz3cw2ag2aqnpfjk4bk3vsf80rivhw4r2fv53p07"; + revision = "2"; + editedCabalFile = "1gxbwicayab51avfn5phxbhd4r03l1qadblwkswxkv56b7qlb6av"; libraryHaskellDepends = [ aeson base @@ -600816,6 +599563,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "QuickCheck entire APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -601208,6 +599957,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate route descriptions from Servant APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -601254,6 +600005,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Golden test your Servant APIs using `servant-routes`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -601382,6 +600134,8 @@ self: { ]; description = "Generate Robots.txt and Sitemap.xml specification for your servant API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -601410,7 +600164,9 @@ self: { executableHaskellDepends = [ base ]; description = "Automatically generate Servant API modules"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-serf"; + broken = true; } ) { }; @@ -603721,8 +602477,6 @@ self: { ]; description = "Storage backend for serversession using acid-state"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -604365,6 +603119,8 @@ self: { ]; description = "Set monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -605298,6 +604054,8 @@ self: { ]; description = "SGF (Smart Game Format) parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -606868,6 +605626,83 @@ self: { ) { }; shakespeare = callPackage ( + { + mkDerivation, + aeson, + base, + blaze-html, + blaze-markup, + bytestring, + containers, + directory, + exceptions, + file-embed, + ghc-prim, + hspec, + HUnit, + parsec, + process, + scientific, + template-haskell, + text, + th-lift, + time, + transformers, + unordered-containers, + vector, + }: + mkDerivation { + pname = "shakespeare"; + version = "2.1.0.1"; + sha256 = "0byj0zhxi1pr8l5f18phzkwcf7z38lyk2zznz8hbkqadfgrmbdkc"; + libraryHaskellDepends = [ + aeson + base + blaze-html + blaze-markup + bytestring + containers + directory + exceptions + file-embed + ghc-prim + parsec + process + scientific + template-haskell + text + th-lift + time + transformers + unordered-containers + vector + ]; + testHaskellDepends = [ + aeson + base + blaze-html + blaze-markup + bytestring + containers + directory + exceptions + ghc-prim + hspec + HUnit + parsec + process + template-haskell + text + time + transformers + ]; + description = "A toolkit for making compile-time interpolated templates"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.psibi ]; + } + ) { }; + + shakespeare_2_1_4 = callPackage ( { mkDerivation, aeson, @@ -606940,6 +605775,7 @@ self: { ]; description = "A toolkit for making compile-time interpolated templates"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.psibi ]; } ) { }; @@ -607895,61 +606731,6 @@ self: { ) { }; shellify = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - directory, - extra, - hspec, - hspec-core, - HStringTemplate, - mtl, - raw-strings-qq, - shake, - text, - unordered-containers, - }: - mkDerivation { - pname = "shellify"; - version = "0.11.0.4"; - sha256 = "1q0fjdsw76507f0abx6vcqhm1khsx8rd4d1nnipfpj4vsp5w1dbc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default-class - directory - extra - HStringTemplate - mtl - raw-strings-qq - shake - text - unordered-containers - ]; - executableHaskellDepends = [ - base - raw-strings-qq - text - ]; - testHaskellDepends = [ - base - hspec - hspec-core - raw-strings-qq - text - ]; - description = "A tool for generating shell.nix files"; - license = lib.licenses.asl20; - mainProgram = "nix-shellify"; - maintainers = [ lib.maintainers.danielrolls ]; - } - ) { }; - - shellify_0_14_0_1 = callPackage ( { mkDerivation, base, @@ -607971,8 +606752,8 @@ self: { }: mkDerivation { pname = "shellify"; - version = "0.14.0.1"; - sha256 = "1gnr4ii3wn7i0b8facg5a9d3b83lwm7nyk56576ll3nyywqh577i"; + version = "0.14.0.2"; + sha256 = "0hv3ggkx00qn62pdgk3paiqmhm6l3ckgw3ajwg43b9xwji5iiz3r"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -608008,7 +606789,6 @@ self: { ]; description = "A tool for generating shell.nix files"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "nix-shellify"; maintainers = [ lib.maintainers.danielrolls ]; } @@ -608257,8 +607037,8 @@ self: { }: mkDerivation { pname = "shellwords"; - version = "0.1.4.3"; - sha256 = "054pmhh6yiblycckx9702wxqdx6wj3a29j3vb8arbm9mgyfjvy26"; + version = "0.1.4.4"; + sha256 = "1609i2s68hx3h9zbjyfwdj286w1acrd8z9m7g7f9slbdk9ps3hn5"; libraryHaskellDepends = [ base megaparsec @@ -608302,10 +607082,8 @@ self: { }: mkDerivation { pname = "shelly"; - version = "1.12.1"; - sha256 = "0xqcz0105cvvhngnlzbn2pfrh17vx5p20a1c4c9rp3124922cnhk"; - revision = "1"; - editedCabalFile = "0f71dbh0a3xb82y578z95wchspm2r4i38wiv1s5ls6p6vchk7phm"; + version = "1.12.1.1"; + sha256 = "16fy3mgky92w85g4vhnl3xf9bxjil3kc2vh85qy85jg2kz5mw208"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -608317,7 +607095,6 @@ self: { enclosed-exceptions exceptions filepath - lifted-async lifted-base monad-control mtl @@ -610248,6 +609025,8 @@ self: { ]; description = "Multisets with negative membership"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -613735,6 +612514,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "a class for single tuple implementations"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -613892,8 +612673,8 @@ self: { }: mkDerivation { pname = "singletons-base"; - version = "3.3"; - sha256 = "1h879yy50g6pldnshjh3syvw8qvqzkm8vxsrj237fk76n56x0iq8"; + version = "3.4"; + sha256 = "1cypbpfg0xlh9dy3rwa9yhs2k007x34z7v5h3qd3ncwrvy0f450d"; setupHaskellDepends = [ base Cabal @@ -614046,11 +612827,12 @@ self: { reflection, singletons, singletons-base, + transformers, }: mkDerivation { pname = "singletons-presburger"; - version = "0.7.4.0"; - sha256 = "1c58ckqnhqsmshdc9fmjd5y0x63i3q1jajj8v9cacybhi8krl0sq"; + version = "0.7.4.1"; + sha256 = "1h2xwcnwlrkfd5yi1h3q5xw4yy891mq979iajdxaz7a8dxzz58ga"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -614061,9 +612843,11 @@ self: { reflection singletons singletons-base + transformers ]; description = "Presburger Arithmetic Solver for GHC Type-level natural numbers with Singletons package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -614083,8 +612867,8 @@ self: { }: mkDerivation { pname = "singletons-th"; - version = "3.3"; - sha256 = "131v6gfx43mwxaqxx4m1lkyb1cxybwpd02m91r83i1phkxmla2qv"; + version = "3.4"; + sha256 = "1fkfaj04g03sw6zsz553a3zyjrhdv7cw1m2dsqb1plk10fj7zi51"; libraryHaskellDepends = [ base containers @@ -614454,7 +613238,7 @@ self: { ]; description = "Sitemap parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.mpscholten ]; } ) { }; @@ -614752,6 +613536,7 @@ self: { ]; description = "Sized sequence data-types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -615030,7 +613815,9 @@ self: { ]; description = "Recursively show space (size and i-nodes) used in subdirectories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sizes"; + broken = true; } ) { }; @@ -615224,9 +614011,7 @@ self: { ]; description = "Batteries-included, opinionated test framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "skeletest-preprocessor"; - broken = true; } ) { }; @@ -615454,8 +614239,6 @@ self: { ]; description = "Random access lists: skew binary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -615493,8 +614276,6 @@ self: { ]; description = "A very quick-and-dirty WebSocket server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -615650,53 +614431,6 @@ self: { ) { }; skylighting = callPackage ( - { - mkDerivation, - base, - binary, - blaze-html, - bytestring, - containers, - pretty-show, - skylighting-core, - skylighting-format-ansi, - skylighting-format-blaze-html, - skylighting-format-context, - skylighting-format-latex, - text, - }: - mkDerivation { - pname = "skylighting"; - version = "0.14.5"; - sha256 = "1xs3vhxa8nyn8fm99jzn8cmd3n0y50sjrvy7k05vp5jr5g00zhkc"; - configureFlags = [ "-fexecutable" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - skylighting-core - skylighting-format-ansi - skylighting-format-blaze-html - skylighting-format-context - skylighting-format-latex - ]; - executableHaskellDepends = [ - base - blaze-html - bytestring - containers - pretty-show - text - ]; - description = "syntax highlighting library"; - license = lib.licenses.gpl2Only; - mainProgram = "skylighting"; - } - ) { }; - - skylighting_0_14_6 = callPackage ( { mkDerivation, base, @@ -615715,8 +614449,8 @@ self: { }: mkDerivation { pname = "skylighting"; - version = "0.14.6"; - sha256 = "1g73jsxq4ybbghiqyrs3aly5km90qsmp2yvyp399hr7f7pjkpqza"; + version = "0.14.7"; + sha256 = "07q087vryki5dklha90bh7v36a70rf8ii3k1ggdgfnms1b76ppq5"; configureFlags = [ "-fexecutable" ]; isLibrary = true; isExecutable = true; @@ -615741,7 +614475,6 @@ self: { ]; description = "syntax highlighting library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "skylighting"; } ) { }; @@ -615777,8 +614510,8 @@ self: { }: mkDerivation { pname = "skylighting-core"; - version = "0.14.5"; - sha256 = "1bld0xwrbhspycm9ii7rb3c2wnydvc6vmw9q0sxyk6iavsmia0kd"; + version = "0.14.7"; + sha256 = "1gbxmdfmbjpnwva9r4vak3c98prpplk0zqcsh5lwpda389xvqkz0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -615828,91 +614561,6 @@ self: { } ) { }; - skylighting-core_0_14_6 = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - case-insensitive, - colour, - containers, - criterion, - Diff, - directory, - filepath, - mtl, - pretty-show, - QuickCheck, - safe, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - utf8-string, - xml-conduit, - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.14.6"; - sha256 = "1zvdgrqqr9xlbnrrp2lbrxqdbpjl11j13qbpibp5rl3y5azqn89y"; - revision = "1"; - editedCabalFile = "0yz5yjvllkxwjzdg7jhm7ma8lv7ymwy3cl4myv0j4krgp30lcdc8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - binary - bytestring - case-insensitive - colour - containers - directory - filepath - mtl - safe - text - transformers - utf8-string - xml-conduit - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - Diff - directory - filepath - pretty-show - QuickCheck - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - text - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - filepath - text - ]; - description = "syntax highlighting library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - skylighting-extensions = callPackage ( { mkDerivation, @@ -617396,6 +616044,61 @@ self: { } ) { }; + slynx_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + base, + bytestring, + containers, + elynx-markov, + elynx-seq, + elynx-tools, + elynx-tree, + hmatrix, + matrices, + optparse-applicative, + random, + statistics, + text, + transformers, + vector, + }: + mkDerivation { + pname = "slynx"; + version = "0.9.0.0"; + sha256 = "0gmm3qimsr45a7h80f9115jqn7bkyfjpczf7l4wpjvw85la4n4hp"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + attoparsec + base + bytestring + containers + elynx-markov + elynx-seq + elynx-tools + elynx-tree + hmatrix + matrices + optparse-applicative + random + statistics + text + transformers + vector + ]; + executableHaskellDepends = [ base ]; + description = "Handle molecular sequences"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + mainProgram = "slynx"; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + small-bytearray-builder = callPackage ( { mkDerivation, @@ -618703,6 +617406,7 @@ self: { ]; description = "Low-level functions for SMT-LIB-based interaction with SMT solvers"; license = lib.licenses.mit; + maintainers = [ lib.maintainers.artem ]; } ) { }; @@ -618742,8 +617446,7 @@ self: { ]; description = "An SMT-LIB backend running solvers as external processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.artem ]; } ) { }; @@ -618759,8 +617462,8 @@ self: { pname = "smtlib-backends-tests"; version = "0.3"; sha256 = "0lj4bpl4nkw6w2hfjzz16zmrbaj5g3myvbmzlsc5rdsz0xwisfb8"; - revision = "4"; - editedCabalFile = "1yw863054cf2bmb2khhvb1dlanvjq0pqy0k06rfa9x89b9s08lwi"; + revision = "5"; + editedCabalFile = "1frvbpr40dyp2rj2b1hj34f7lfjdb8a3kvbl447gzrqaqapvlya1"; libraryHaskellDepends = [ base smtlib-backends @@ -618769,8 +617472,7 @@ self: { ]; description = "Testing SMT-LIB backends"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.artem ]; } ) { }; @@ -618813,7 +617515,6 @@ self: { ]; description = "An SMT-LIB backend implemented using Z3's C API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { @@ -619324,6 +618025,8 @@ self: { ]; description = "Strict ByteString Parser Combinator"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -620382,7 +619085,9 @@ self: { ]; description = "Scaffolding CLI for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "snap"; + broken = true; } ) { }; @@ -620861,6 +619566,8 @@ self: { ]; description = "Alternate authentication snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -622539,6 +621246,37 @@ self: { } ) { }; + snappy-hs = callPackage ( + { + mkDerivation, + base, + bytestring, + vector, + }: + mkDerivation { + pname = "snappy-hs"; + version = "0.1.0.3"; + sha256 = "1fbl5zw8ag379sacd735948qzaikzv01qzfczgn1lp0wy424q9hv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + bytestring + vector + ]; + executableHaskellDepends = [ + base + bytestring + ]; + testHaskellDepends = [ base ]; + description = "Snappy compression library"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "snappy-hs"; + broken = true; + } + ) { }; + snappy-iteratee = callPackage ( { mkDerivation, @@ -623062,8 +621800,6 @@ self: { ]; description = "A checksummed variation on Twitter's Snowflake UID generation algorithm"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -624026,8 +622762,8 @@ self: { }: mkDerivation { pname = "socks5"; - version = "0.6.0.1"; - sha256 = "1q4084wvfhyni3dw0xa5a08k3lkylr6g5bzv6d463iqwn5skjwsq"; + version = "0.8.0.0"; + sha256 = "1lvzrvj5gc6c1vmq05yy269jc7ll4wahqgmyn6gqhs20pkg3cp2g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -625011,6 +623747,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Apply sound changes to words"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -626419,8 +625157,8 @@ self: { }: mkDerivation { pname = "sparse-set"; - version = "0.1.0"; - sha256 = "0yy5n4dli33s6hqlpaifi7p81bp656lymlk3zfw97ijz8ac07dsn"; + version = "0.3.0"; + sha256 = "0wgnl1xd047j3g222clm5vx1g7g1br27zzj43vv33k9gf37xcsrn"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -626512,8 +625250,8 @@ self: { }: mkDerivation { pname = "sparse-vector"; - version = "0.1.0"; - sha256 = "0q01fjip1lql62kpqia23mhhv906n3hr7axs760gj7sclqgvcmyr"; + version = "0.3.0"; + sha256 = "0f86qh8akaimz7q146w6sbshxiay0w7bqi7zx7n4877gsq0hirys"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -626742,6 +625480,8 @@ self: { ]; description = "Rotate about any suitable axis"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -627033,6 +625773,8 @@ self: { ]; description = "Computational combinatorial species"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -627985,7 +626727,6 @@ self: { base, containers, ghc, - hlint, stm, }: mkDerivation { @@ -627996,7 +626737,6 @@ self: { base containers ghc - hlint stm ]; description = "HLint as a GHC source plugin"; @@ -628195,8 +626935,8 @@ self: { }: mkDerivation { pname = "splitmix-distributions"; - version = "1.0.0"; - sha256 = "03ffkpz3877y2jj1cblxk5gvcpl8zdsiccaq0x7xh761fgz3vsd6"; + version = "1.1.0"; + sha256 = "0rq99yr7mfv0z795s3z2shnsn1ynd7f6gkp3bazpv01sa95rjgj8"; libraryHaskellDepends = [ base containers @@ -628208,18 +626948,14 @@ self: { ]; testHaskellDepends = [ base - erf hspec - mtl - splitmix - transformers ]; description = "Random samplers for some common distributions, based on splitmix"; license = lib.licenses.bsd3; } ) { }; - splitmix-distributions_1_1_0 = callPackage ( + splitmix-distributions_1_2_0 = callPackage ( { mkDerivation, base, @@ -628233,8 +626969,8 @@ self: { }: mkDerivation { pname = "splitmix-distributions"; - version = "1.1.0"; - sha256 = "0rq99yr7mfv0z795s3z2shnsn1ynd7f6gkp3bazpv01sa95rjgj8"; + version = "1.2.0"; + sha256 = "0r47f5gnga16gxmm9x37q636r5kww5g4xy52s79l581a4wygkw6x"; libraryHaskellDepends = [ base containers @@ -629790,8 +628526,6 @@ self: { ]; description = "A primitive yet easy to use sqlite library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -630192,6 +628926,55 @@ self: { } ) { }; + squeal-postgresql-qq = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + generics-sop, + hspec, + postgresql-syntax, + squeal-postgresql, + template-haskell, + text, + time, + uuid, + }: + mkDerivation { + pname = "squeal-postgresql-qq"; + version = "0.1.3.0"; + sha256 = "04kfccn22ik76fgr9bhlk9rh0ldyk010icr1rbzqs6mj3iddyd3w"; + libraryHaskellDepends = [ + aeson + base + bytestring + generics-sop + postgresql-syntax + squeal-postgresql + template-haskell + text + time + uuid + ]; + testHaskellDepends = [ + aeson + base + bytestring + generics-sop + hspec + postgresql-syntax + squeal-postgresql + template-haskell + text + time + uuid + ]; + description = "QuasiQuoter transforming raw sql into Squeal expressions"; + license = lib.licenses.mit; + } + ) { }; + squeal-postgresql-uuid-ossp = callPackage ( { mkDerivation, @@ -630409,6 +629192,8 @@ self: { ]; description = "Module limbo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -630602,121 +629387,6 @@ self: { ) { }; srtree = callPackage ( - { - mkDerivation, - ad, - attoparsec, - attoparsec-expr, - base, - bytestring, - containers, - dlist, - exceptions, - filepath, - hashable, - HUnit, - ieee754, - lens, - list-shuffle, - massiv, - mtl, - nlopt, - normaldistribution, - optparse-applicative, - random, - split, - statistics, - transformers, - unordered-containers, - vector, - zlib, - }: - mkDerivation { - pname = "srtree"; - version = "2.0.0.2"; - sha256 = "1azvqikk4d9rdd2hc96s7bsnzn575w0lvw6xrl1iiv40655xsdzf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - attoparsec-expr - base - bytestring - containers - dlist - exceptions - filepath - hashable - ieee754 - lens - list-shuffle - massiv - mtl - random - split - statistics - transformers - unordered-containers - vector - zlib - ]; - librarySystemDepends = [ nlopt ]; - executableHaskellDepends = [ - attoparsec - attoparsec-expr - base - bytestring - containers - dlist - exceptions - filepath - hashable - ieee754 - lens - list-shuffle - massiv - mtl - normaldistribution - optparse-applicative - random - split - statistics - transformers - unordered-containers - vector - zlib - ]; - testHaskellDepends = [ - ad - attoparsec - attoparsec-expr - base - bytestring - containers - dlist - exceptions - filepath - hashable - HUnit - ieee754 - lens - list-shuffle - massiv - mtl - random - split - statistics - transformers - unordered-containers - vector - zlib - ]; - description = "A general library to work with Symbolic Regression expression trees"; - license = lib.licenses.bsd3; - } - ) { inherit (pkgs) nlopt; }; - - srtree_2_0_1_5 = callPackage ( { mkDerivation, ad, @@ -630842,7 +629512,6 @@ self: { ]; description = "A general library to work with Symbolic Regression expression trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) nlopt; }; @@ -631998,8 +630667,8 @@ self: { }: mkDerivation { pname = "stack-all"; - version = "0.6.4"; - sha256 = "1yvzglvaalk537fza2nhzjacm7aanrnwsz0grg00ln0a06hb8wcb"; + version = "0.7.1"; + sha256 = "0s9z8ca6g4gc728nn5kgg5j8qykg23cha1qg01y9xpb25mjjprdq"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -632023,51 +630692,6 @@ self: { } ) { }; - stack-all_0_7 = callPackage ( - { - mkDerivation, - aeson, - base, - cached-json-file, - config-ini, - directory, - extra, - filepath, - http-query, - process, - simple-cmd, - simple-cmd-args, - text, - yaml, - }: - mkDerivation { - pname = "stack-all"; - version = "0.7"; - sha256 = "12h5ddkfjv93h677gp2jd254viizbkcg09fflp9mlwxl30bghzdh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - cached-json-file - config-ini - directory - extra - filepath - http-query - process - simple-cmd - simple-cmd-args - text - yaml - ]; - description = "CLI tool for building over Stackage major versions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-all"; - } - ) { }; - stack-bump = callPackage ( { mkDerivation, @@ -634122,7 +632746,9 @@ self: { executableHaskellDepends = [ base ]; description = "Static site generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stagen"; + broken = true; } ) { }; @@ -634213,8 +632839,8 @@ self: { pname = "stan"; version = "0.2.1.0"; sha256 = "1mf01bpy291131jfl4fcslv0jfn8i8jqwr29v1v48j6c6q49rias"; - revision = "1"; - editedCabalFile = "0b7lf7g8kg7xxxl3zgfxk86bs0pl9i9xm1cvn1n2bpmfvymm19qa"; + revision = "2"; + editedCabalFile = "1ddjjy5sa22k6hbra3y4v1rlh01x5s5k39ihdwbrl4vr2q93q6c9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -635348,6 +633974,8 @@ self: { pname = "statistics"; version = "0.16.3.0"; sha256 = "1rx1dckaj54hzx03zqf4rz43hp80rxxgi8dp31rwy9qjckk4dv03"; + revision = "1"; + editedCabalFile = "1996zyq4n7c5zh36h3nhzx5xyd7z6fa3mqsldrgii56g7ixq1rkz"; libraryHaskellDepends = [ aeson async @@ -636485,35 +635113,6 @@ self: { ) { }; step-function = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - QuickCheck, - }: - mkDerivation { - pname = "step-function"; - version = "0.2.0.1"; - sha256 = "0hpzbjgjgsrx6q7sjk2dz40i2lggx8wraqlf58ibbv3y1yvb2q6a"; - revision = "2"; - editedCabalFile = "034mk1k23qs8d9y1iyxnpxn0zcq0yy6z7jy9lp3l4vin6gmpz0vk"; - libraryHaskellDepends = [ - base - containers - deepseq - QuickCheck - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Staircase functions or piecewise constant functions"; - license = lib.licenses.bsd3; - } - ) { }; - - step-function_0_2_1 = callPackage ( { mkDerivation, base, @@ -636525,8 +635124,8 @@ self: { pname = "step-function"; version = "0.2.1"; sha256 = "1izshxrfhidvdhmnyrnqx2lqv2qjpisjdrxa687yywswcd4nlf9g"; - revision = "1"; - editedCabalFile = "1xh4slrjyrbzp5fzrx65bld6y8h8rmqrrb36xprs7c2kq08c6wwv"; + revision = "2"; + editedCabalFile = "1vrlv163yl2997lsas5qj1d5jp563dzy78mdhfp3bd57lvjz396r"; libraryHaskellDepends = [ base containers @@ -636539,7 +635138,6 @@ self: { ]; description = "Staircase functions or piecewise constant functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -637353,6 +635951,7 @@ self: { ]; description = "Bounded channel for STM where item sizes can vary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -637449,6 +636048,8 @@ self: { ]; description = "Mutable, singly-linked list in STM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -637723,12 +636324,13 @@ self: { base, clock, hspec, + hspec-discover, transformers, }: mkDerivation { pname = "stopwatch"; - version = "0.1.0.6"; - sha256 = "1gvlh58hkg02a5814lm5f123p853z92dlmv4r5mhhlg5j6g7c62h"; + version = "0.1.0.7"; + sha256 = "0vbbb60gi2cyi9nxf4xwxjfrx5kc614pgywkl65ayakrvn8ab2hp"; libraryHaskellDepends = [ base clock @@ -637739,10 +636341,9 @@ self: { clock hspec ]; + testToolDepends = [ hspec-discover ]; description = "A simple stopwatch utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -640063,6 +638664,59 @@ self: { } ) { }; + streamly_0_11_0 = callPackage ( + { + mkDerivation, + atomic-primops, + base, + containers, + deepseq, + directory, + exceptions, + fusion-plugin-types, + hashable, + heaps, + lockfree-queue, + monad-control, + mtl, + network, + streamly-core, + template-haskell, + transformers, + unicode-data, + unordered-containers, + }: + mkDerivation { + pname = "streamly"; + version = "0.11.0"; + sha256 = "1ha7rr6038k1hikfhg2bi0ican8b9yf1gcbaf82b4889wymy7xyc"; + libraryHaskellDepends = [ + atomic-primops + base + containers + deepseq + directory + exceptions + fusion-plugin-types + hashable + heaps + lockfree-queue + monad-control + mtl + network + streamly-core + template-haskell + transformers + unicode-data + unordered-containers + ]; + description = "Streaming data pipelines with declarative concurrency"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.maralorn ]; + } + ) { }; + streamly-archive = callPackage ( { mkDerivation, @@ -640180,10 +638834,8 @@ self: { }: mkDerivation { pname = "streamly-bytestring"; - version = "0.2.2"; - sha256 = "0c1dnvmqjwk18i8mbimaa1khhj6x6ch45i57giidqin00n11n3cq"; - revision = "1"; - editedCabalFile = "161x23kagixbvf9zvmhdvnaxh8sixilj5rz7f51blq3c8578ljfx"; + version = "0.2.3"; + sha256 = "1j4bjc8f7xwxk19558xxvrmbrahphhn1dh70h9z23pxf18lpnlrn"; libraryHaskellDepends = [ base bytestring @@ -640326,6 +638978,44 @@ self: { } ) { }; + streamly-core_0_3_0 = callPackage ( + { + mkDerivation, + base, + containers, + exceptions, + filepath, + fusion-plugin-types, + ghc-bignum, + ghc-prim, + heaps, + monad-control, + template-haskell, + transformers, + }: + mkDerivation { + pname = "streamly-core"; + version = "0.3.0"; + sha256 = "1qycnqxc7icqfd2y06rg7bgymigmrcmm75q7l7m2c92ssh5rbv4q"; + libraryHaskellDepends = [ + base + containers + exceptions + filepath + fusion-plugin-types + ghc-bignum + ghc-prim + heaps + monad-control + template-haskell + transformers + ]; + description = "Streaming, parsers, arrays, serialization and more"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + streamly-examples = callPackage ( { mkDerivation, @@ -640333,6 +639023,7 @@ self: { containers, directory, exceptions, + filepath, fusion-plugin, hashable, mtl, @@ -640340,6 +639031,7 @@ self: { random, streamly, streamly-core, + streamly-fsevents, tasty-bench, transformers, transformers-base, @@ -640348,8 +639040,8 @@ self: { }: mkDerivation { pname = "streamly-examples"; - version = "0.2.0"; - sha256 = "0m2mzsbijd11hxq6kvsd61700ndvj58qdixvp7mkdrvb7pw5jf4q"; + version = "0.3.0"; + sha256 = "1jha5ay5ympy1hmz02f0jsqhv6k0qma2bv6iycriss076gr529rl"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -640357,6 +639049,7 @@ self: { containers directory exceptions + filepath fusion-plugin hashable mtl @@ -640364,6 +639057,7 @@ self: { random streamly streamly-core + streamly-fsevents tasty-bench transformers transformers-base @@ -640377,6 +639071,44 @@ self: { } ) { }; + streamly-fsevents = callPackage ( + { + mkDerivation, + base, + containers, + directory, + filepath, + hspec, + streamly, + streamly-core, + temporary, + }: + mkDerivation { + pname = "streamly-fsevents"; + version = "0.1.0"; + sha256 = "1dsbhp5x4m05sqr27xlgfhvd5h4zvf8gf49v55x2384i33g28hnw"; + libraryHaskellDepends = [ + base + containers + directory + streamly-core + ]; + testHaskellDepends = [ + base + directory + filepath + hspec + streamly + streamly-core + temporary + ]; + description = "File system event notification API"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + streamly-fsnotify = callPackage ( { mkDerivation, @@ -640617,6 +639349,53 @@ self: { ]; description = "Use OS processes as stream transformation functions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + + streamly-process_0_4_0 = callPackage ( + { + mkDerivation, + base, + directory, + exceptions, + hspec, + process, + QuickCheck, + streamly, + streamly-core, + tasty-bench, + }: + mkDerivation { + pname = "streamly-process"; + version = "0.4.0"; + sha256 = "0kzb372vq18ybisskyqsqkxsvgz5gk51777jhjzlc4pcp6wm4ds9"; + libraryHaskellDepends = [ + base + exceptions + process + streamly + streamly-core + ]; + testHaskellDepends = [ + base + directory + exceptions + hspec + QuickCheck + streamly-core + ]; + benchmarkHaskellDepends = [ + base + directory + streamly-core + tasty-bench + ]; + description = "Use OS processes as stream transformation functions"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -640678,6 +639457,42 @@ self: { } ) { }; + streamly-text = callPackage ( + { + mkDerivation, + base, + hspec, + quickcheck-instances, + random, + streamly-core, + temporary, + text, + }: + mkDerivation { + pname = "streamly-text"; + version = "0.1.0"; + sha256 = "163bmfnrx54qcq4r3dv9shgm1g84m6cxkq9dcmpnypv8j491agzi"; + libraryHaskellDepends = [ + base + streamly-core + text + ]; + testHaskellDepends = [ + base + hspec + quickcheck-instances + random + streamly-core + temporary + text + ]; + description = "Library for streamly and text interoperation"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + streamly-zip = callPackage ( { mkDerivation, @@ -641142,6 +639957,8 @@ self: { ]; description = "Strict containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -641167,6 +639984,7 @@ self: { ]; description = "Strict containers - Lens instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -641194,6 +640012,7 @@ self: { ]; description = "Strict containers - Serialise instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -641311,8 +640130,8 @@ self: { }: mkDerivation { pname = "strict-impl-params"; - version = "1.0.0"; - sha256 = "0qbc5vk8079vcwxj8sgy696jd629arsws92bcv3vcavnkvzz696c"; + version = "1.1.0"; + sha256 = "1778h3ck3px9cdrxgpcm1f9k76c538c1y8d9nlyhldigrvyminjb"; libraryHaskellDepends = [ base ghc @@ -641321,8 +640140,6 @@ self: { ]; description = "Plugin for making top-level implicit parameters strict"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -641516,8 +640333,8 @@ self: { pname = "strict-tuple"; version = "0.1.5.4"; sha256 = "1znx5lmi7lgn4jzkr73lsc2xac0ypl65bx0pa1hxrc4c74ilysbk"; - revision = "1"; - editedCabalFile = "05s4z3crwb0akjfgcgrqrmzd690wn5s765srhmwdg6b1is8zm1zn"; + revision = "2"; + editedCabalFile = "1qxp8122z7bgbklc8jpd0cv6yjgvszkj86wzc2axk10jhcxwdnrx"; libraryHaskellDepends = [ base bifunctors @@ -641590,8 +640407,8 @@ self: { { mkDerivation, base }: mkDerivation { pname = "strict-wrapper"; - version = "0.0.1.0"; - sha256 = "06g79nq6mdbvp8cskdmnxbza4fj1bh0xk4hdvijnx3cljv2rnq7g"; + version = "0.0.2.0"; + sha256 = "1qv3qpfn0v0c0cbr8mdhczgd428d17hnf7gg99y7nnakylyz55y1"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "Lightweight strict types"; @@ -641870,8 +640687,8 @@ self: { pname = "string-fromto"; version = "1.0.0.0"; sha256 = "0vnf500vahgccbbg7zvxqjxllvyq3jxzf2difqwh46fp62jfqwmx"; - revision = "2"; - editedCabalFile = "0h6w39bx4vvrzyg3bbcr3s78g427akzg7nykxa6zwdxk9sq67fsp"; + revision = "3"; + editedCabalFile = "0lg4iwgi22g4pykp27pf9izjz8n3nmgl9j7ga9dnssa80g92xxgy"; libraryHaskellDepends = [ base bytestring @@ -641880,8 +640697,6 @@ self: { ]; description = "Conversions between common string types, as well as Base16/Base32/Base64"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -642511,6 +641326,30 @@ self: { } ) { }; + strip-ansi = callPackage ( + { + mkDerivation, + ansi-terminal, + base, + hspec, + hspec-discover, + }: + mkDerivation { + pname = "strip-ansi"; + version = "0.0.1"; + sha256 = "1g0vp8q4c5jmvf243jm2l127dak5ic2558vv7ddvb5qsvjkbv4b4"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + ansi-terminal + base + hspec + ]; + testToolDepends = [ hspec-discover ]; + description = "Strip ANSI escape codes from strings"; + license = lib.licenses.mit; + } + ) { }; + strip-ansi-escape = callPackage ( { mkDerivation, @@ -642990,8 +641829,6 @@ self: { ]; description = "Use the Stripe API via Wreq"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -643087,8 +641924,8 @@ self: { }: mkDerivation { pname = "strive"; - version = "6.0.0.12"; - sha256 = "1376pkfkzm3pvhl1k8kqls20vj00zfhyhriccwlzvw918h4f73nc"; + version = "6.0.0.17"; + sha256 = "07sqrn4rx4y7pm82nmqayz4zl53cqq30a6a5zgiixj0h6szwlhdh"; libraryHaskellDepends = [ aeson base @@ -643108,13 +641945,12 @@ self: { } ) { }; - strive_6_0_0_17 = callPackage ( + strive_6_1_0_0 = callPackage ( { mkDerivation, aeson, base, bytestring, - data-default, gpolyline, http-client, http-client-tls, @@ -643126,13 +641962,12 @@ self: { }: mkDerivation { pname = "strive"; - version = "6.0.0.17"; - sha256 = "07sqrn4rx4y7pm82nmqayz4zl53cqq30a6a5zgiixj0h6szwlhdh"; + version = "6.1.0.0"; + sha256 = "1nhm1spxqjp80ik96vz3a0yhfa5i7zmliky0jz76bj687y70kbwz"; libraryHaskellDepends = [ aeson base bytestring - data-default gpolyline http-client http-client-tls @@ -643286,52 +642121,6 @@ self: { ) { }; strongweak = callPackage ( - { - mkDerivation, - base, - generic-random, - hspec, - hspec-discover, - QuickCheck, - quickcheck-instances, - rerefined, - text, - text-builder-linear, - vector, - vector-sized, - }: - mkDerivation { - pname = "strongweak"; - version = "0.11.0"; - sha256 = "0bzx25pwc2mg92f72lj32g78yn5gx8pl8341cxbv3j0ysim1fhfj"; - libraryHaskellDepends = [ - base - rerefined - text - text-builder-linear - vector - vector-sized - ]; - testHaskellDepends = [ - base - generic-random - hspec - QuickCheck - quickcheck-instances - rerefined - text - text-builder-linear - vector - vector-sized - ]; - testToolDepends = [ hspec-discover ]; - description = "Convert between strong and weak representations of types"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raehik ]; - } - ) { }; - - strongweak_0_12_0 = callPackage ( { mkDerivation, base, @@ -643373,7 +642162,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Convert between strong and weak representations of types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.raehik ]; } ) { }; @@ -643601,6 +642389,8 @@ self: { ]; description = "Structure (hash) of your data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -644284,104 +643074,6 @@ self: { } ) { }; - stylish-haskell = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - directory, - file-embed, - filepath, - ghc-lib-parser, - ghc-lib-parser-ex, - HsYAML, - HsYAML-aeson, - HUnit, - mtl, - optparse-applicative, - random, - regex-tdfa, - strict, - syb, - test-framework, - test-framework-hunit, - text, - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.14.6.0"; - sha256 = "1v72i3dxn30z832cs19sbnj5p40y873sv4kciaivd0ls7i5mm8vb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - directory - file-embed - filepath - ghc-lib-parser - ghc-lib-parser-ex - HsYAML - HsYAML-aeson - mtl - regex-tdfa - syb - text - ]; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - directory - file-embed - filepath - ghc-lib-parser - ghc-lib-parser-ex - HsYAML - HsYAML-aeson - mtl - optparse-applicative - regex-tdfa - strict - syb - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - directory - file-embed - filepath - ghc-lib-parser - ghc-lib-parser-ex - HsYAML - HsYAML-aeson - HUnit - mtl - random - regex-tdfa - syb - test-framework - test-framework-hunit - text - ]; - description = "Haskell code prettifier"; - license = lib.licenses.bsd3; - mainProgram = "stylish-haskell"; - } - ) { }; - stylish-haskell_0_15_0_1 = callPackage ( { mkDerivation, @@ -644481,7 +643173,7 @@ self: { } ) { }; - stylish-haskell_0_15_1_0 = callPackage ( + stylish-haskell = callPackage ( { mkDerivation, aeson, @@ -644575,7 +643267,6 @@ self: { ]; description = "Haskell code prettifier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stylish-haskell"; } ) { }; @@ -644884,8 +643575,8 @@ self: { }: mkDerivation { pname = "subcategories"; - version = "0.2.1.1"; - sha256 = "14n1f28wbk0jczig211jj4181ljnczy18hy5pi1y1c6pmbj9mxci"; + version = "0.2.1.2"; + sha256 = "071kcgw07f5wnnbgf9mgflx4z23jf6pjc19wphnw235sqdd65p66"; libraryHaskellDepends = [ base containers @@ -647828,7 +646519,9 @@ self: { ]; description = "A tool to prune unused symbols from icon SVG files"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "svgsym"; + broken = true; } ) { }; @@ -649182,6 +647875,33 @@ self: { } ) { }; + syb_0_7_3 = callPackage ( + { + mkDerivation, + base, + containers, + mtl, + tasty, + tasty-hunit, + }: + mkDerivation { + pname = "syb"; + version = "0.7.3"; + sha256 = "139vmi0nvgcxga9qk0daks8cnfx1g9rgsb6xdgi1pz21d7a6hrk7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + containers + mtl + tasty + tasty-hunit + ]; + description = "Scrap Your Boilerplate"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + syb-extras = callPackage ( { mkDerivation, @@ -649293,8 +648013,8 @@ self: { }: mkDerivation { pname = "sydtest"; - version = "0.19.0.0"; - sha256 = "12wp36pi2w7f3wffrmss8ra5y3xcpar4i9zp04z5r1g11y9i2h80"; + version = "0.20.0.0"; + sha256 = "0f1ipp6wqykkyiibn1prx61ysvydf4bybiqg5mlzgi5h1cnqh22i"; libraryHaskellDepends = [ async autodocodec @@ -649328,7 +648048,7 @@ self: { } ) { }; - sydtest_0_20_0_0 = callPackage ( + sydtest_0_20_0_1 = callPackage ( { mkDerivation, async, @@ -649360,8 +648080,8 @@ self: { }: mkDerivation { pname = "sydtest"; - version = "0.20.0.0"; - sha256 = "0f1ipp6wqykkyiibn1prx61ysvydf4bybiqg5mlzgi5h1cnqh22i"; + version = "0.20.0.1"; + sha256 = "1jnks9znjr4ar6x4a6965w6yijcd80ci6z5qwln4v98ls1a81x19"; libraryHaskellDepends = [ async autodocodec @@ -651705,6 +650425,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for symbolic integration of mathematical expressions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -652783,8 +651505,8 @@ self: { pname = "synthesizer-llvm"; version = "1.1.0.1"; sha256 = "166551a0g4m48f0mxccwcrgg488i4v8jpj6rjhd39mh6gxb874yr"; - revision = "1"; - editedCabalFile = "1kjiqwmfp2g7mqg6818qdhjjc5lw8hxf895763npjv5dx62b6dc3"; + revision = "2"; + editedCabalFile = "1rgb81in79d8yvks08hr5lrsbvvwc7p70gz7l9jcp59w2lgg42yb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -654212,6 +652934,25 @@ self: { } ) { }; + tabler-icons = callPackage ( + { + mkDerivation, + base, + bytestring, + }: + mkDerivation { + pname = "tabler-icons"; + version = "0.1.0.2"; + sha256 = "0hz4pwb83lv75dynjallmyf9p08yg8pkvam1g4bg27ji5mckr6vv"; + libraryHaskellDepends = [ + base + bytestring + ]; + description = "Haskell bindings for Tabler SVG icons"; + license = lib.licenses.mit; + } + ) { }; + tables = callPackage ( { mkDerivation, @@ -654612,6 +653353,7 @@ self: { description = "A desktop bar similar to xmobar, but with more GUI"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "taffybar"; maintainers = [ lib.maintainers.rvl ]; } @@ -654720,31 +653462,6 @@ self: { ) { }; tagged = callPackage ( - { - mkDerivation, - base, - deepseq, - template-haskell, - transformers, - }: - mkDerivation { - pname = "tagged"; - version = "0.8.8"; - sha256 = "19x66y8zqh06mmkbbnpy0m5sk402zj6iqfj3d30h6qji6mwgm0x0"; - revision = "1"; - editedCabalFile = "0chbxdppgpsrjqzf28z53x9wqwz0ncfimhfc6rr9knixvvxxx4wi"; - libraryHaskellDepends = [ - base - deepseq - template-haskell - transformers - ]; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = lib.licenses.bsd3; - } - ) { }; - - tagged_0_8_9 = callPackage ( { mkDerivation, base, @@ -654764,7 +653481,6 @@ self: { ]; description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -655072,8 +653788,6 @@ self: { ]; description = "Lenses for the taggy html/xml parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -656141,6 +654855,60 @@ self: { } ) { }; + tail = callPackage ( + { + mkDerivation, + async, + base, + directory, + filepath, + hspec, + hspec-discover, + process, + relude, + stm, + stm-chans, + temporary, + text, + which, + }: + mkDerivation { + pname = "tail"; + version = "0.1.0.0"; + sha256 = "1zpld1s7nac596ahc5as594px750arajqqw7d5b2i6as1660d8vp"; + libraryHaskellDepends = [ + async + base + directory + filepath + process + relude + stm + stm-chans + text + which + ]; + testHaskellDepends = [ + async + base + directory + filepath + hspec + hspec-discover + process + relude + stm + stm-chans + temporary + text + which + ]; + testToolDepends = [ hspec-discover ]; + description = "Haskell API for tail -f streaming"; + license = lib.licenses.mit; + } + ) { }; + tailfile-hinotify = callPackage ( { mkDerivation, @@ -657020,7 +655788,7 @@ self: { } ) { }; - tar = callPackage ( + tar_0_6_3_0 = callPackage ( { mkDerivation, array, @@ -657088,10 +655856,11 @@ self: { doHaddock = false; description = "Reading, writing and manipulating \".tar\" archive files."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; - tar_0_6_4_0 = callPackage ( + tar = callPackage ( { mkDerivation, array, @@ -657117,8 +655886,8 @@ self: { pname = "tar"; version = "0.6.4.0"; sha256 = "1apkq11xg0rqbgs83hag85r4ibdw7v09n1qj0l0962d80h0aajbr"; - revision = "1"; - editedCabalFile = "05fqzjmcp7qqk1cb23dahszrcpk88cpasi4703irkzj90hvlj9d7"; + revision = "2"; + editedCabalFile = "074f5a4qcdl5vb7334i41azj4aj8i5ql03qrlr3hb5smxhvvk386"; libraryHaskellDepends = [ array base @@ -657164,6 +655933,75 @@ self: { doHaddock = false; description = "Reading, writing and manipulating \".tar\" archive files."; license = lib.licenses.bsd3; + } + ) { }; + + tar_0_7_0_0 = callPackage ( + { + mkDerivation, + array, + base, + bytestring, + containers, + deepseq, + directory, + directory-ospath-streaming, + file-embed, + file-io, + filepath, + os-string, + QuickCheck, + tasty, + tasty-bench, + tasty-quickcheck, + temporary, + time, + transformers, + }: + mkDerivation { + pname = "tar"; + version = "0.7.0.0"; + sha256 = "0dlhf8hhcgl5zvqqsykvg4vwi05b2cy0ml3p6yz4bngqxhnd2jkf"; + libraryHaskellDepends = [ + array + base + bytestring + containers + deepseq + directory + directory-ospath-streaming + file-io + filepath + os-string + time + transformers + ]; + testHaskellDepends = [ + array + base + bytestring + containers + deepseq + directory + directory-ospath-streaming + file-embed + filepath + QuickCheck + tasty + tasty-quickcheck + temporary + time + ]; + benchmarkHaskellDepends = [ + base + bytestring + directory + tasty-bench + temporary + ]; + doHaddock = false; + description = "Reading, writing and manipulating \".tar\" archive files."; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; } ) { }; @@ -657813,16 +656651,17 @@ self: { optparse-applicative, protolude, tasklite-core, + template-haskell, + temporary, text, yaml, }: mkDerivation { pname = "tasklite"; - version = "0.3.0.0"; - sha256 = "0zmpf1b6k6xlypvv04gwwqkmghsxpqii2zci361whfsy3qyyy0hs"; + version = "0.5.0.0"; + sha256 = "0fx3f8v6lg5gk0rzq9mli6f85yw83aw6nvbqs7rbilc9fj0431xg"; isLibrary = false; isExecutable = true; - enableSeparateDataOutput = true; executableHaskellDepends = [ base directory @@ -657834,10 +656673,13 @@ self: { ]; testHaskellDepends = [ base + directory hspec optparse-applicative protolude tasklite-core + template-haskell + temporary ]; description = "CLI task / todo list manager with SQLite backend"; license = lib.licenses.agpl3Plus; @@ -657860,6 +656702,7 @@ self: { directory, editor-open, exceptions, + extra, file-embed, filepath, fuzzily, @@ -657869,6 +656712,7 @@ self: { hsemail, hspec, iso8601-duration, + MissingH, neat-interpolation, optparse-applicative, parsec, @@ -657887,6 +656731,7 @@ self: { simple-sql-parser, sqlite-simple, syb, + terminal-size, text, time, ulid, @@ -657901,8 +656746,8 @@ self: { }: mkDerivation { pname = "tasklite-core"; - version = "0.3.0.0"; - sha256 = "1did4b3gh4pfrwawi2g2ka7d6mg7xcg7vgbdwyfdvwzva5ynrx99"; + version = "0.5.0.0"; + sha256 = "1vkklq4v65ms4nav1ph2zkpq8sqcnrd8272kzmbrfs1jlyzgfrn1"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson @@ -657915,6 +656760,7 @@ self: { directory editor-open exceptions + extra file-embed filepath fuzzily @@ -657940,6 +656786,7 @@ self: { simple-sql-parser sqlite-simple syb + terminal-size text time ulid @@ -657955,12 +656802,16 @@ self: { testHaskellDepends = [ aeson base + bytestring hourglass hspec + iso8601-duration + MissingH neat-interpolation protolude sqlite-simple text + ulid yaml ]; benchmarkHaskellDepends = [ @@ -658385,6 +657236,7 @@ self: { ]; description = "Determine time complexity of a given function"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -658425,6 +657277,8 @@ self: { ]; description = "Check multiple items during a tasty test"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -658537,6 +657391,76 @@ self: { } ) { }; + tasty-discover_5_1_0 = callPackage ( + { + mkDerivation, + ansi-terminal, + base, + bytestring, + containers, + directory, + filepath, + Glob, + hedgehog, + hspec, + hspec-core, + process, + tasty, + tasty-expected-failure, + tasty-golden, + tasty-hedgehog, + tasty-hspec, + tasty-hunit, + tasty-quickcheck, + tasty-smallcheck, + temporary, + }: + mkDerivation { + pname = "tasty-discover"; + version = "5.1.0"; + sha256 = "0y6py4l63idqvvr063cnkqcl3wbsglk3bpizmlgbwmq4gq9aprif"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + directory + filepath + Glob + tasty + ]; + executableHaskellDepends = [ + base + filepath + ]; + testHaskellDepends = [ + ansi-terminal + base + bytestring + containers + directory + filepath + hedgehog + hspec + hspec-core + process + tasty + tasty-expected-failure + tasty-golden + tasty-hedgehog + tasty-hspec + tasty-hunit + tasty-quickcheck + tasty-smallcheck + temporary + ]; + description = "Test discovery for the tasty framework"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "tasty-discover"; + } + ) { }; + tasty-expected-failure = callPackage ( { mkDerivation, @@ -658745,8 +657669,8 @@ self: { pname = "tasty-golden-extra"; version = "0.1.0.0"; sha256 = "1bfd9ql3pws2vd37nbc5a8b49p7zbq3n48slxkrrwx1szaxkp8nj"; - revision = "3"; - editedCabalFile = "1hdkxsn075bc6f318vk81bddagxsyp390604v3azskfp52bwbl8r"; + revision = "4"; + editedCabalFile = "10bcysc2i1s1p0ih2i9nrqpi0839pgpzzl625iqcbjhv9hnx01kd"; libraryHaskellDepends = [ aeson aeson-diff @@ -659662,42 +658586,6 @@ self: { ) { }; tasty-quickcheck = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - pcre-light, - QuickCheck, - random, - tagged, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.11"; - sha256 = "07liq4wjz7wad8xwgwb5x9ijl8626cfd9f5gb37mjqc23ab268lx"; - libraryHaskellDepends = [ - base - optparse-applicative - QuickCheck - random - tagged - tasty - ]; - testHaskellDepends = [ - base - pcre-light - QuickCheck - tasty - tasty-hunit - ]; - description = "QuickCheck support for the Tasty test framework"; - license = lib.licenses.mit; - } - ) { }; - - tasty-quickcheck_0_11_1 = callPackage ( { mkDerivation, base, @@ -659732,7 +658620,6 @@ self: { ]; description = "QuickCheck support for the Tasty test framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -659786,8 +658673,8 @@ self: { pname = "tasty-rerun"; version = "1.1.20"; sha256 = "0px58jm1yqbg32qf2s0yk09d2qdjxkkz9df89f31q3nzw85jv2ky"; - revision = "1"; - editedCabalFile = "13xmx91hp7i0qzrhada9ckliqkynwlwa8x6pjbvxjcy1y0qsd7hk"; + revision = "2"; + editedCabalFile = "1izl4r9bp61qdrv50lsg7rshzvhj18ija69jp7ybk1z0qcsmm6lj"; libraryHaskellDepends = [ base containers @@ -659809,11 +658696,9 @@ self: { { mkDerivation, ansi-terminal, - async, base, bytestring, containers, - deepseq, directory, filepath, mtl, @@ -659828,19 +658713,16 @@ self: { tasty-hunit, temporary, text, - transformers, }: mkDerivation { pname = "tasty-silver"; - version = "3.3.2"; - sha256 = "1ysdfxnl46d4vnkhw79pcyswqrip68nr7p2rhrk48vy7kxyhca5g"; + version = "3.3.2.1"; + sha256 = "01w3576kymglcddinh10m1wgy71dia49k2pnw5y1c97jjrhanf17"; libraryHaskellDepends = [ ansi-terminal - async base bytestring containers - deepseq directory filepath mtl @@ -659854,18 +658736,15 @@ self: { tasty temporary text - transformers ]; testHaskellDepends = [ base directory filepath - process silently tasty tasty-hunit temporary - transformers ]; description = "A fancy test runner, including support for golden tests"; license = lib.licenses.mit; @@ -659958,8 +658837,8 @@ self: { }: mkDerivation { pname = "tasty-sugar"; - version = "2.2.2.0"; - sha256 = "1ac9ciqlrq25ipqnjssk3288gnpsi6y9ia8s0f3d6dvcv73593rb"; + version = "2.2.2.1"; + sha256 = "009n17zzaxyw0gfy6jr3869bjd8qwadwwf2ya788kasa00qh8if2"; libraryHaskellDepends = [ base containers @@ -659993,6 +658872,7 @@ self: { doHaddock = false; description = "Tests defined by Search Using Golden Answer References"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -662009,6 +660889,7 @@ self: { description = "Astronomical Observations (FITS, ASDF, WCS, etc)"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -663840,39 +662721,6 @@ self: { ) { }; tensort = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - random, - random-shuffle, - }: - mkDerivation { - pname = "tensort"; - version = "1.0.1.4"; - sha256 = "1k1cp1hx9b845pnj0rmyx450893bgi7l77m3pi83l7mfzx0zbkiz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - random - random-shuffle - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - mtl - QuickCheck - ]; - description = "Tunable sorting for responsive robustness and beyond"; - license = lib.licenses.mit; - mainProgram = "tensort"; - } - ) { }; - - tensort_1_1_0_0 = callPackage ( { mkDerivation, base, @@ -663901,7 +662749,6 @@ self: { ]; description = "Tunable sorting for responsive robustness and beyond"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tensort"; } ) { }; @@ -663922,8 +662769,8 @@ self: { }: mkDerivation { pname = "term-rewriting"; - version = "0.4.0.2"; - sha256 = "0k0aylm6vzcqghp5zw461p68zgzjzr6k4ki7d00zl471lmbdbs8n"; + version = "0.5"; + sha256 = "0cxzccdkhljijca42f5gf03wjqymd4rzsdl5ziy3b7dj1c0ms7vc"; libraryHaskellDepends = [ ansi-wl-pprint array @@ -664434,8 +663281,10 @@ self: { description = "Terminal emulator configurable in Haskell"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "termonad"; maintainers = [ lib.maintainers.cdepillabout ]; + broken = true; } ) { @@ -665901,10 +664750,8 @@ self: { }: mkDerivation { pname = "testcontainers"; - version = "0.5.1.0"; - sha256 = "17739lvasks03m6f2fgqb9cgsxf4780da44ya1qy3s5672czv6dp"; - revision = "1"; - editedCabalFile = "1i7pqsg0la8jkh2jcgn5wyjlk9zak455pa5ibrrgfp9r5k6a5gcc"; + version = "0.5.2.0"; + sha256 = "0dvzp77gpmiswdnsksw1avxh9b4xn3pvk3q47kqxgvv41rhh5bnd"; libraryHaskellDepends = [ aeson aeson-optics @@ -665943,6 +664790,27 @@ self: { } ) { }; + testcontainers-postgresql = callPackage ( + { + mkDerivation, + base, + testcontainers, + text, + }: + mkDerivation { + pname = "testcontainers-postgresql"; + version = "0.0.1.1"; + sha256 = "0zycclxn0wnnj0qhhxixlljl0jirsfd00wihhlx6azpy0h6qc8lw"; + libraryHaskellDepends = [ + base + testcontainers + text + ]; + description = "Testcontainers integration for PostgreSQL"; + license = lib.licenses.mit; + } + ) { }; + testing-feat = callPackage ( { mkDerivation, @@ -665982,10 +664850,8 @@ self: { }: mkDerivation { pname = "testing-tensor"; - version = "0.1.0"; - sha256 = "1kylr8ip97975n99v9d16j14wda34fxihj22jc4222jkqkh755a1"; - revision = "1"; - editedCabalFile = "0614vzh1zv5h6x0pdfczrxn34wyx51y19w9g9cljbz5rqik7j3q6"; + version = "0.2.0"; + sha256 = "1d5i4vfqcdsq8r400i1509kynddhlk1xjv1y2xvw140a9f74c1h0"; libraryHaskellDepends = [ base fin @@ -666006,8 +664872,6 @@ self: { ]; description = "Pure implementation of tensors, for use in tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -666322,8 +665186,8 @@ self: { }: mkDerivation { pname = "texmath"; - version = "0.12.10.1"; - sha256 = "0cxdwnfz61zpcwh2va1vmm4mi41zmh72i8c28v17mb1jwvlk59f1"; + version = "0.12.10.3"; + sha256 = "0xpv5zxaixn2kkc3kn547jg7rkg6bl2mrmxiwvxf2r0qgj4kmr2p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -666355,7 +665219,7 @@ self: { } ) { }; - texmath_0_12_10_3 = callPackage ( + texmath_0_13 = callPackage ( { mkDerivation, base, @@ -666378,8 +665242,8 @@ self: { }: mkDerivation { pname = "texmath"; - version = "0.12.10.3"; - sha256 = "0xpv5zxaixn2kkc3kn547jg7rkg6bl2mrmxiwvxf2r0qgj4kmr2p"; + version = "0.13"; + sha256 = "1cap5mgh7ca0b7sk1k68wpxa1alhyvzgayj65llzyw94j9pbb23x"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -666461,7 +665325,7 @@ self: { } ) { }; - text_2_1_2 = callPackage ( + text_2_1_3 = callPackage ( { mkDerivation, array, @@ -666481,14 +665345,13 @@ self: { tasty-inspection-testing, tasty-quickcheck, template-haskell, + temporary, transformers, }: mkDerivation { pname = "text"; - version = "2.1.2"; - sha256 = "1dmcrvgavan5r5h4w0rjcmjii3l1rglr03wi4nd8xlw7jbshr9l4"; - revision = "1"; - editedCabalFile = "0m57vdin9bkn9fbdlhhc9dl625asy39rv7vfzhg92q9sd50d5618"; + version = "2.1.3"; + sha256 = "17gqrvcw7hsm64560dypvmvpqfn1zwb772fllwbn9b4x7vj1xfxi"; libraryHaskellDepends = [ array base @@ -666504,7 +665367,6 @@ self: { binary bytestring deepseq - directory ghc-prim QuickCheck tasty @@ -666512,6 +665374,7 @@ self: { tasty-inspection-testing tasty-quickcheck template-haskell + temporary transformers ]; benchmarkHaskellDepends = [ @@ -666522,6 +665385,7 @@ self: { directory filepath tasty-bench + temporary transformers ]; doCheck = false; @@ -666672,7 +665536,7 @@ self: { } ) { }; - text-builder = callPackage ( + text-builder_0_6_10 = callPackage ( { mkDerivation, base, @@ -666707,10 +665571,11 @@ self: { ]; description = "Efficient strict text builder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; - text-builder_1_0_0_4 = callPackage ( + text-builder = callPackage ( { mkDerivation, base, @@ -666757,7 +665622,6 @@ self: { ]; description = "Efficient and flexible strict text builder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -666803,7 +665667,7 @@ self: { } ) { }; - text-builder-dev = callPackage ( + text-builder-dev_0_3_10 = callPackage ( { mkDerivation, base, @@ -666858,10 +665722,11 @@ self: { ]; description = "Edge of developments for \"text-builder\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; } ) { }; - text-builder-dev_0_4 = callPackage ( + text-builder-dev = callPackage ( { mkDerivation, base, @@ -666904,7 +665769,6 @@ self: { ]; description = "Edge of developments for \"text-builder\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -666922,8 +665786,8 @@ self: { }: mkDerivation { pname = "text-builder-lawful-conversions"; - version = "0.1.1"; - sha256 = "0kjsznkn7l4m16z9m7l1i47yf4kygyyjpvdsjnwjdn6ix07nwd6d"; + version = "0.1.4"; + sha256 = "0dqinf0nkrviaxz2p465w7zh9nz73a2ivs35b2kx1bd3l8gvl9wp"; libraryHaskellDepends = [ base lawful-conversions @@ -667006,8 +665870,6 @@ self: { ]; description = "Various formats for \"time\" in terms of \"text-builder\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -668393,46 +667255,6 @@ self: { ) { }; text-rope = callPackage ( - { - mkDerivation, - base, - deepseq, - random, - tasty, - tasty-bench, - tasty-quickcheck, - text, - vector, - }: - mkDerivation { - pname = "text-rope"; - version = "0.2"; - sha256 = "12z7radm15mlfz5nrpii2dkjkiis05a88x923jipbhwwbs2j4i5i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - text - vector - ]; - testHaskellDepends = [ - base - tasty - tasty-quickcheck - text - ]; - benchmarkHaskellDepends = [ - base - random - tasty-bench - text - ]; - description = "Text lines and ropes"; - license = lib.licenses.bsd3; - } - ) { }; - - text-rope_0_3 = callPackage ( { mkDerivation, base, @@ -668470,7 +667292,6 @@ self: { ]; description = "Text lines and ropes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -668501,6 +667322,8 @@ self: { ]; description = "2D text zipper based on text-rope"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -669800,10 +668623,8 @@ self: { }: mkDerivation { pname = "th-desugar"; - version = "1.16"; - sha256 = "0442hqc2b0a1rqcwdlng63bfqa80b2sws414lr08q9v1sgh8gjsf"; - revision = "1"; - editedCabalFile = "18qjikbyjzbhickq11hrn5ill89jdfdzbdx3q2s3630k4g8g2qzi"; + version = "1.17"; + sha256 = "0a00l9r7qyhl30bizrydcsjcraia2vq3r4jc7papab4mdv59z1wz"; libraryHaskellDepends = [ base containers @@ -670263,8 +669084,8 @@ self: { pname = "th-letrec"; version = "0.1.1"; sha256 = "0z4zh9lnp60nih7dwy697jbnk19f1h3ypazw23jbf0z93f7d90b6"; - revision = "1"; - editedCabalFile = "1zghhmlqzz5lfq8zbbxnbyl9naf9ixjpawi6l00z2b31l0wspfsr"; + revision = "2"; + editedCabalFile = "1qdsysi3w9axzwyzn9qzdmw5yfvk8h2k8qi0bg912spydchqgfav"; libraryHaskellDepends = [ base codet @@ -672308,8 +671129,8 @@ self: { }: mkDerivation { pname = "thrift-compiler"; - version = "0.1.0.1"; - sha256 = "09cchacymbacg9i6r375pshl3k23hr16967hjrnmfq4865x7kc9r"; + version = "0.2.0.0"; + sha256 = "0w4m3hqs24lc4bszk0df944v9vr08r8l3i2nk32yrmc96b8ncl7x"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -672381,8 +671202,8 @@ self: { }: mkDerivation { pname = "thrift-haxl"; - version = "0.1.0.1"; - sha256 = "0ggl264m25qfmb6wi1mnvn24z6ivhybdzbwj4wfvb08865gw06y0"; + version = "0.2.0.0"; + sha256 = "1lvlz4cbzifsqcddcqnygp8mjdmg6aygdpddcq3250nf60s1b925"; libraryHaskellDepends = [ base hashable @@ -672432,8 +671253,8 @@ self: { }: mkDerivation { pname = "thrift-http"; - version = "0.1.0.1"; - sha256 = "1vsh56axfzi9p374nbxis6k9c9lzba7czkzag3wa3l9l30y3504n"; + version = "0.2.0.0"; + sha256 = "0n4s8wanfl27b5vjlqlf8jf3cmxmy447zwlgffw1w90940fznj9p"; libraryHaskellDepends = [ aeson async @@ -672524,8 +671345,8 @@ self: { }: mkDerivation { pname = "thrift-lib"; - version = "0.1.0.1"; - sha256 = "0y9wg720q18mwn39iq8fd1xldy2vf1km85b2dxmwwb2nl71dxmmj"; + version = "0.2.0.0"; + sha256 = "1kfmlk02yrcz1iczbpzln0sadr3bmw6l8hbvlmpqabyj9rspkixz"; libraryHaskellDepends = [ aeson aeson-pretty @@ -673327,72 +672148,6 @@ self: { ) { }; tidal = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - colour, - containers, - criterion, - deepseq, - exceptions, - hosc, - microspec, - mtl, - network, - parsec, - primitive, - random, - text, - tidal-link, - transformers, - weigh, - }: - mkDerivation { - pname = "tidal"; - version = "1.9.5"; - sha256 = "1skm8x9gh60c0i1rr0a18jxi6y4mpi83fvzjcadlziwjna5x6a3w"; - revision = "2"; - editedCabalFile = "0l306jxlzkaxyry7p6kmxp7yv8yfw5f1sims2hk3gvhwmb0d64pz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - clock - colour - containers - deepseq - exceptions - hosc - mtl - network - parsec - primitive - random - text - tidal-link - transformers - ]; - testHaskellDepends = [ - base - containers - deepseq - hosc - microspec - parsec - ]; - benchmarkHaskellDepends = [ - base - criterion - weigh - ]; - description = "Pattern language for improvised music"; - license = lib.licenses.gpl3Only; - } - ) { }; - - tidal_1_10_0 = callPackage ( { mkDerivation, base, @@ -673418,10 +672173,8 @@ self: { }: mkDerivation { pname = "tidal"; - version = "1.10.0"; - sha256 = "07ky2bj0hfm734sf4c2pymxlxs0rmgdd13q7fmb390p5m5fbxy54"; - revision = "2"; - editedCabalFile = "0pka2nxlmf2sh3c4cmpjzb9zmcmhqhf5bz8qprcmxvmzkwm5a4yz"; + version = "1.10.1"; + sha256 = "0pkklwnl49ldmasbdsgz385n9ba2rryivrb66c0hq437f62b0f4q"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base @@ -673459,7 +672212,6 @@ self: { ]; description = "Pattern language for improvised music"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -673476,8 +672228,8 @@ self: { }: mkDerivation { pname = "tidal-core"; - version = "1.10.0"; - sha256 = "1dg6z0z52zxrqai4jfgqrp4ghsdkcflixwspcbnyrxq1d4jw0zdf"; + version = "1.10.1"; + sha256 = "1wgzfmhmw5f0jzmrjksr84fbc2yhm836b45vyr9mdzgrs8872v9j"; libraryHaskellDepends = [ base colour @@ -673498,29 +672250,6 @@ self: { ) { }; tidal-link = callPackage ( - { - mkDerivation, - base, - system-cxx-std-lib, - }: - mkDerivation { - pname = "tidal-link"; - version = "1.0.3"; - sha256 = "1yqxwjs2y8n01j3x6mc4cg2ka4kl0k3yi0wmcxcs5v257g8f8dg7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - system-cxx-std-lib - ]; - executableHaskellDepends = [ base ]; - description = "Ableton Link integration for Tidal"; - license = lib.licenses.gpl3Only; - mainProgram = "linktest"; - } - ) { }; - - tidal-link_1_2_0 = callPackage ( { mkDerivation, base, @@ -673545,7 +672274,6 @@ self: { executableHaskellDepends = [ base ]; description = "Ableton Link integration for Tidal"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tidal-linktest"; } ) { }; @@ -673581,6 +672309,44 @@ self: { } ) { }; + tidal-parse = callPackage ( + { + mkDerivation, + base, + containers, + haskellish, + hspec, + mtl, + template-haskell, + text, + tidal-core, + transformers, + }: + mkDerivation { + pname = "tidal-parse"; + version = "0.0.3"; + sha256 = "0ral5xa3wa2jihqlyphrkkz3ma6a1srwndn6za3ak8lwxqg0nmaj"; + libraryHaskellDepends = [ + base + containers + haskellish + mtl + template-haskell + text + tidal-core + transformers + ]; + testHaskellDepends = [ + base + containers + hspec + tidal-core + ]; + description = "Parser for TidalCycles"; + license = lib.licenses.gpl3Only; + } + ) { }; + tidal-serial = callPackage ( { mkDerivation, @@ -673743,6 +672509,60 @@ self: { } ) { }; + tigerbeetle-hs = callPackage ( + { + mkDerivation, + base, + binary, + bytestring, + containers, + hspec, + mtl, + QuickCheck, + stm, + tb_client, + text, + vector, + wide-word, + }: + mkDerivation { + pname = "tigerbeetle-hs"; + version = "0.1.0.0"; + sha256 = "1dlby3x3hap57lzyw6m091bf81bppyxbfvjrrlbr1dyzw8kr9l8p"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + binary + bytestring + containers + mtl + stm + text + vector + wide-word + ]; + libraryPkgconfigDepends = [ tb_client ]; + executableHaskellDepends = [ + base + containers + stm + ]; + executableSystemDepends = [ tb_client ]; + testHaskellDepends = [ + base + hspec + QuickCheck + ]; + testSystemDepends = [ tb_client ]; + description = "A Haskell client library for Tigerbeetle database"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "tigerbeetle-hs"; + broken = true; + } + ) { tb_client = null; }; + tight-apply = callPackage ( { mkDerivation, base }: mkDerivation { @@ -674004,7 +672824,7 @@ self: { } ) { }; - time_1_14 = callPackage ( + time_1_15 = callPackage ( { mkDerivation, base, @@ -674019,10 +672839,8 @@ self: { }: mkDerivation { pname = "time"; - version = "1.14"; - sha256 = "0gkzffnvi33ksw4zln0d31dpmqiyl8gicrx04g8j13kjr5ygx86z"; - revision = "1"; - editedCabalFile = "13brg65cvava8w5wlfp3jwn7mpkprad1chws2v14jw1lgzh5b14i"; + version = "1.15"; + sha256 = "0632fg4n4psg4b756fhs6cq0yspyb6k5n3nvpql6bycsbj7i78jg"; libraryHaskellDepends = [ base deepseq @@ -674077,51 +672895,6 @@ self: { ) { }; time-compat = callPackage ( - { - mkDerivation, - base, - base-orphans, - deepseq, - hashable, - HUnit, - QuickCheck, - tagged, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - }: - mkDerivation { - pname = "time-compat"; - version = "1.9.7"; - sha256 = "1k0xcd73wx4l6wsj3c2ksdxch9c4kdbg0v8qmxik4v033nibx3y9"; - revision = "2"; - editedCabalFile = "03xjd6jcdnj1fn6zj6x9hlplnlviz88birkrnqvgzbpsyrdg3gzh"; - libraryHaskellDepends = [ - base - base-orphans - deepseq - hashable - time - ]; - testHaskellDepends = [ - base - deepseq - hashable - HUnit - QuickCheck - tagged - tasty - tasty-hunit - tasty-quickcheck - time - ]; - description = "Compatibility package for time"; - license = lib.licenses.bsd3; - } - ) { }; - - time-compat_1_9_8 = callPackage ( { mkDerivation, base, @@ -674166,7 +672939,6 @@ self: { ]; description = "Compatibility package for time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -674268,6 +673040,44 @@ self: { } ) { }; + time-hourglass = callPackage ( + { + mkDerivation, + base, + deepseq, + tasty, + tasty-bench, + tasty-hunit, + tasty-quickcheck, + time, + }: + mkDerivation { + pname = "time-hourglass"; + version = "0.3.0"; + sha256 = "08lx5dhs529wqxqh454svyx1l814hwzcn1l669h320x5vms7qz4w"; + libraryHaskellDepends = [ + base + deepseq + ]; + testHaskellDepends = [ + base + deepseq + tasty + tasty-hunit + tasty-quickcheck + time + ]; + benchmarkHaskellDepends = [ + base + deepseq + tasty-bench + time + ]; + description = "A simple and efficient time library"; + license = lib.licenses.bsd3; + } + ) { }; + time-http = callPackage ( { mkDerivation, @@ -674594,6 +673404,8 @@ self: { pname = "time-qq"; version = "0.0.1.0"; sha256 = "11sch73355fpwqgvg8cq0br0108mj9ph085vycnyq1jndrd0wvxd"; + revision = "1"; + editedCabalFile = "0k7ajxvsabqcpg7bl6axmjxf5bc2plcacqvx96cp1x16rhl63qgw"; libraryHaskellDepends = [ base template-haskell @@ -675148,8 +673960,8 @@ self: { pname = "timeline"; version = "0.1.1.0"; sha256 = "15npn5wfhdg2mcvr92n7c9k7jj1jcifm6rcpmyi64mcfsb2g1ry6"; - revision = "1"; - editedCabalFile = "0njs6asmfkq3lvl6i1pagxaxfirq9yjrgh6iaw1vy129wq4vjp2v"; + revision = "2"; + editedCabalFile = "1qqhf50g4b89fa5wjhhgjsvyx3gqrdmpswsyjwkwbrbh6m795xja"; libraryHaskellDepends = [ base containers @@ -675741,12 +674553,13 @@ self: { mkDerivation, base, containers, + mtl, text, }: mkDerivation { pname = "timestats"; - version = "0.2.0"; - sha256 = "085jbizsxn7hxn8i8621gbyss924qzysc56c81lg13xng7s8b3f3"; + version = "0.2.1"; + sha256 = "0a6x2kranf8s25f7lzwksfbxsas5n1l88n5s1xqbcld485x7g2m4"; libraryHaskellDepends = [ base containers @@ -675754,6 +674567,7 @@ self: { ]; testHaskellDepends = [ base + mtl text ]; description = "A library for profiling time in Haskell applications"; @@ -676235,8 +675049,8 @@ self: { }: mkDerivation { pname = "tinyapp"; - version = "0.2.1.0"; - sha256 = "1rbr41wwyi2y8ybzz0fn8bbsqc5gnnvj5nchr6d2gjxylsn8c61d"; + version = "0.2.1.1"; + sha256 = "1gh525aylrlpv5m7qfw4dgzyc442vfnfgqbcrmg0fqzyq4asyv08"; libraryHaskellDepends = [ base brick @@ -677374,7 +676188,7 @@ self: { crypton-x509, crypton-x509-store, crypton-x509-validation, - data-default-class, + data-default, hourglass, hspec, hspec-discover, @@ -677385,17 +676199,17 @@ self: { serialise, transformers, unix-time, + zlib, }: mkDerivation { pname = "tls"; - version = "2.1.1"; - sha256 = "1rzbyrc5x4zq0xdm5h4h0jh2l2ajhbjx5qny6x79ij7zv0c79hkp"; + version = "2.1.8"; + sha256 = "1csdy3426lva1a5f7gh9qm96vzfraqj91jbxlm79wbf1jsdzfhsq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ asn1-encoding asn1-types - async base base16-bytestring bytestring @@ -677404,13 +676218,14 @@ self: { crypton-x509 crypton-x509-store crypton-x509-validation - data-default-class + data-default memory mtl network serialise transformers unix-time + zlib ]; testHaskellDepends = [ asn1-types @@ -677420,7 +676235,6 @@ self: { crypton crypton-x509 crypton-x509-validation - data-default-class hourglass hspec QuickCheck @@ -677432,7 +676246,7 @@ self: { } ) { }; - tls_2_1_10 = callPackage ( + tls_2_1_11 = callPackage ( { mkDerivation, asn1-encoding, @@ -677465,8 +676279,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "2.1.10"; - sha256 = "18ffiz82a2jsdfliygynn50pxwndh7kykg7z4xq016p2si5nzxaq"; + version = "2.1.11"; + sha256 = "1qw4yvvxv10gh7as8lhg4z1q4l547gikwm1krz6h6kshk0rig6h5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -677723,6 +676537,63 @@ self: { } ) { }; + tlynx_0_9_0_0 = callPackage ( + { + mkDerivation, + aeson, + async, + attoparsec, + base, + bytestring, + comonad, + containers, + data-default, + elynx-tools, + elynx-tree, + gnuplot, + optparse-applicative, + parallel, + random, + statistics, + text, + transformers, + vector, + }: + mkDerivation { + pname = "tlynx"; + version = "0.9.0.0"; + sha256 = "1f3x2yi72g7syhjvrhh33vyz21i8kar9hc6973isn2c5x66i60dx"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + async + attoparsec + base + bytestring + comonad + containers + data-default + elynx-tools + elynx-tree + gnuplot + optparse-applicative + parallel + random + statistics + text + transformers + vector + ]; + executableHaskellDepends = [ base ]; + description = "Handle phylogenetic trees"; + license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + mainProgram = "tlynx"; + maintainers = [ lib.maintainers.dschrempf ]; + } + ) { }; + tmapchan = callPackage ( { mkDerivation, @@ -678182,6 +677053,8 @@ self: { ]; description = "Launch ZipKin in docker using tmp-proc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -679129,6 +678002,8 @@ self: { pname = "toml-parser"; version = "2.0.1.2"; sha256 = "0fm3anvslylamazr4jgm3y3v3sjh0jv5ydf565cfm1ma9kw4kbhv"; + revision = "1"; + editedCabalFile = "0p6h6yh2x93bgspan1s5hkwg10s834m5gkx1bha9y3ljppffpg2c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -679162,57 +678037,6 @@ self: { ) { }; toml-reader = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - megaparsec, - parser-combinators, - process, - tasty, - tasty-golden, - tasty-hunit, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "toml-reader"; - version = "0.2.2.0"; - sha256 = "01adpq3sn87shhd7nrl52wycv4ksziqnp9d5b5xhgyrsn9vrbs4n"; - libraryHaskellDepends = [ - base - containers - megaparsec - parser-combinators - text - time - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - process - tasty - tasty-golden - tasty-hunit - text - time - unordered-containers - vector - ]; - description = "TOML format parser compliant with v1.0.0."; - license = lib.licenses.bsd3; - } - ) { }; - - toml-reader_0_3_0_0 = callPackage ( { mkDerivation, aeson, @@ -679257,7 +678081,6 @@ self: { testToolDepends = [ skeletest ]; description = "TOML format parser compliant with v1.0.0."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -679341,6 +678164,8 @@ self: { ]; description = "toml-parser test drivers"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -679369,8 +678194,8 @@ self: { pname = "tomland"; version = "1.3.3.3"; sha256 = "1asnz773mrbg8fkfabq5w24v63sgqljspc4p4nmf4dm6abm2p6d0"; - revision = "2"; - editedCabalFile = "070x95r3silsswl74b5jpsy3s8644mcjqihq3b334jlvvqql5ypw"; + revision = "3"; + editedCabalFile = "0aclzlwr7xmjzda327vzfb8av90g3lpcln1h1gkw76x5w7xq662s"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -680304,6 +679129,7 @@ self: { ]; description = "Extensible records library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -681269,8 +680095,8 @@ self: { }: mkDerivation { pname = "tpdb"; - version = "2.8.1"; - sha256 = "1y162ny5c37n58cqd057w8c8865205qi7xq8jsm7gjz3qr86izs8"; + version = "2.8.6"; + sha256 = "0gxjxlwbdbwlygw0n8rd00564vp96jgasf49s6rkm4pgi3hzh1m8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -681482,7 +680308,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Smart version of Debug.Trace module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -683733,8 +682558,8 @@ self: { pname = "tree-diff"; version = "0.3.4"; sha256 = "0fqfyrab0bf98z251lsfvl2jdcaja6ikfn9q537jbxkx402fi6jy"; - revision = "1"; - editedCabalFile = "1nq6bx4zzp37vw7mmnab5nsc6z8x09xga4aqbfia8r6rp1zxbm10"; + revision = "2"; + editedCabalFile = "1hb62nd833n7gmg508qkbndbj13p8dscwfanilwifbxqwwcn98ah"; libraryHaskellDepends = [ aeson ansi-terminal @@ -684212,6 +683037,8 @@ self: { ]; description = "Functions and newtype wrappers for traversing Trees"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -684714,8 +683541,8 @@ self: { }: mkDerivation { pname = "trexio-hs"; - version = "0.1.0"; - sha256 = "1b64kkisyis9fx577xmppv02z36qy4yk74qsp5ybf517k69vc8nr"; + version = "0.2.0"; + sha256 = "1w5rr889q16z5nmjfbmqs8kc2j2vyd6gs290zvq6ps54ndc9vz86"; libraryHaskellDepends = [ aeson base @@ -685460,6 +684287,8 @@ self: { ]; description = "Template Haskell hack to violate module abstractions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -686140,44 +684969,6 @@ self: { ) { }; ttc = callPackage ( - { - mkDerivation, - base, - bytestring, - tasty, - tasty-hunit, - template-haskell, - text, - text-short, - }: - mkDerivation { - pname = "ttc"; - version = "1.4.0.0"; - sha256 = "0kp3kpdv5hf13qri8ms8jb9ydyn3fpviw0wgkqb3g2m4ccyl8ssq"; - revision = "1"; - editedCabalFile = "0g0p1fq7r90dd89alky78x6cl5g7mq7cs5j033cwy9s1jck17km0"; - libraryHaskellDepends = [ - base - bytestring - template-haskell - text - text-short - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - template-haskell - text - text-short - ]; - description = "Textual Type Classes"; - license = lib.licenses.mit; - } - ) { }; - - ttc_1_5_0_0 = callPackage ( { mkDerivation, base, @@ -686210,7 +685001,6 @@ self: { ]; description = "Textual Type Classes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -687222,6 +686012,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Elegant UCI chess engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "turncoat"; } ) { }; @@ -687833,14 +686624,11 @@ self: { { mkDerivation, base, - Cabal, - cabal-test-quickcheck, containers, deepseq, directory, filepath, heap, - HUnit-Plus, monad-loops, MonadRandom, mtl, @@ -687850,6 +686638,10 @@ self: { QuickCheck, ref-fd, split, + tagged, + tasty, + tasty-hunit, + tasty-quickcheck, template-haskell, time, transformers, @@ -687857,10 +686649,8 @@ self: { }: mkDerivation { pname = "twentyseven"; - version = "0.0.0"; - sha256 = "0cq1nz0d8x37h46arf7xf33sk652s834nx7bwk4nqa22fx3905j7"; - revision = "1"; - editedCabalFile = "0izi8ci7sq62zvcfnl4fhkjbf3fhr76wnljlyfc6k9d5qcxxbc9j"; + version = "1.0.0"; + sha256 = "0j1m96s6iajcbpf88i984xrw9233jrzapr2bz9xqc015qccpbvgl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -687887,17 +686677,19 @@ self: { ]; testHaskellDepends = [ base - Cabal - cabal-test-quickcheck - HUnit-Plus QuickCheck split + tagged + tasty + tasty-hunit + tasty-quickcheck vector ]; description = "Rubik's cube solver"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "twentyseven"; + broken = true; } ) { }; @@ -689922,6 +688714,65 @@ self: { } ) { }; + type-machine = callPackage ( + { + mkDerivation, + base, + containers, + criterion, + extensible, + hspec, + lens, + mtl, + superrecord, + syb, + template-haskell, + }: + mkDerivation { + pname = "type-machine"; + version = "0.1.0.2"; + sha256 = "0x7dnlsd2qac99ijqxzj0cjlf8mrrz0dpsfl4wvxkyypqjy4n9jq"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + mtl + syb + template-haskell + ]; + executableHaskellDepends = [ + base + containers + mtl + syb + template-haskell + ]; + testHaskellDepends = [ + base + containers + hspec + mtl + syb + template-haskell + ]; + benchmarkHaskellDepends = [ + base + containers + criterion + extensible + lens + mtl + superrecord + syb + template-haskell + ]; + description = "Type-level functions for record types"; + license = lib.licenses.bsd3; + mainProgram = "vector-example"; + } + ) { }; + type-map = callPackage ( { mkDerivation, @@ -690003,6 +688854,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Type-level natural and proofs of their properties"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -690692,23 +689544,26 @@ self: { base, containers, ghc, + ghc-internal, ghc-tcplugins-extra, }: mkDerivation { pname = "typecheck-plugin-nat-simple"; - version = "0.1.0.9"; - sha256 = "0ada389g1zmprwj2injmx49dcj8z6n1vxbbii4c6327mvw39ay0w"; + version = "0.1.0.11"; + sha256 = "0rb4cxib6i7byn7syym252gvrw7mgrfjglqwsiwprc7mx254k42i"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base containers ghc + ghc-internal ghc-tcplugins-extra ]; testHaskellDepends = [ base containers ghc + ghc-internal ghc-tcplugins-extra ]; description = "Simple type check plugin which calculate addition, subtraction and less-or-equal-than"; @@ -690716,7 +689571,7 @@ self: { } ) { }; - typecheck-plugin-nat-simple_0_1_0_11 = callPackage ( + typecheck-plugin-nat-simple_0_1_0_12 = callPackage ( { mkDerivation, base, @@ -690727,8 +689582,8 @@ self: { }: mkDerivation { pname = "typecheck-plugin-nat-simple"; - version = "0.1.0.11"; - sha256 = "0rb4cxib6i7byn7syym252gvrw7mgrfjglqwsiwprc7mx254k42i"; + version = "0.1.0.12"; + sha256 = "0zr49wan5wbd3iqh98fkqh6p431a1v4ny170dsp2ryr0xdmrs480"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base @@ -690995,8 +689850,6 @@ self: { ]; description = "A framework for strongly typed FSM"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -691025,7 +689878,6 @@ self: { testHaskellDepends = [ base ]; description = "GUI framework based on typed-fsm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -691121,29 +689973,26 @@ self: { io-classes, io-sim, network, - primitive, QuickCheck, serialise, singletons, tasty, tasty-quickcheck, - time, unix, }: mkDerivation { pname = "typed-protocols"; - version = "1.0.0.0"; - sha256 = "109503w2fsnfpnf0s1988c6km17pj56vlgwrcxi0d4yjy5n88462"; + version = "1.1.0.0"; + sha256 = "0zxm7440985vlir9g7qn61g8k31afx33ca5s6jn5yi3j9q5vny5y"; libraryHaskellDepends = [ base bytestring contra-tracer io-classes network - primitive + QuickCheck serialise singletons - time ]; testHaskellDepends = [ base @@ -691161,6 +690010,8 @@ self: { doHaddock = false; description = "A framework for strongly typed protocols"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -691708,8 +690559,8 @@ self: { }: mkDerivation { pname = "typelet"; - version = "0.1.5"; - sha256 = "120hwkwv1zriqjhwlplqql5qs30kxydwi07w8px6zfqhk6yixkq5"; + version = "0.1.6"; + sha256 = "0bf5g30zbjwk8z30vad6hqslpslfxzmanpv4zpdn41kdcnc1dj8k"; libraryHaskellDepends = [ base containers @@ -692200,6 +691051,8 @@ self: { ]; description = "Typelevel printf"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -692514,8 +691367,8 @@ self: { }: mkDerivation { pname = "typst"; - version = "0.6.1"; - sha256 = "1vcg5lvqxsxf5q1jg8c5g2fcmalfah92fqv6rzr8b5m1ipai2c10"; + version = "0.8.0.2"; + sha256 = "1q17vy9x5g64zzw5156bdh3mippin6ygkc3yqk0mbffkrfdcn21m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -692557,100 +691410,7 @@ self: { } ) { }; - typst_0_8_0_1 = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - cassava, - containers, - directory, - filepath, - mtl, - ordered-containers, - parsec, - pretty, - pretty-show, - regex-tdfa, - scientific, - tasty, - tasty-golden, - text, - time, - toml-parser, - typst-symbols, - vector, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "typst"; - version = "0.8.0.1"; - sha256 = "00vqm67smsh4idp9506b3698k573p5h101ygff0wkrbkk7bmaf4v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - bytestring - cassava - containers - directory - filepath - mtl - ordered-containers - parsec - pretty - regex-tdfa - scientific - text - time - toml-parser - typst-symbols - vector - xml-conduit - yaml - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - pretty-show - tasty - tasty-golden - text - time - ]; - description = "Parsing and evaluating typst syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - typst-symbols = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "typst-symbols"; - version = "0.1.7"; - sha256 = "1f158pjvkbx05aj0nv4qwlz2h7a811v9r7nlhnp54vws4h4rdvnz"; - libraryHaskellDepends = [ - base - text - ]; - description = "Symbol and emoji lookup for typst language"; - license = lib.licenses.mit; - } - ) { }; - - typst-symbols_0_1_8_1 = callPackage ( { mkDerivation, base, @@ -692666,7 +691426,6 @@ self: { ]; description = "Symbol and emoji lookup for typst language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -692878,6 +691637,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Safe timezone-aware handling of time"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -693821,9 +692582,7 @@ self: { executableHaskellDepends = [ base ]; description = "Minimalistic console UI (getLine), arrow key support (edit, browse cmd history)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; } ) { }; @@ -694014,7 +692773,9 @@ self: { ]; description = "Display Ukulele fingering charts in the terminal"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "uku"; + broken = true; } ) { }; @@ -694119,6 +692880,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Another ULID implementation with tight memory representation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -694485,8 +693248,6 @@ self: { ]; description = "Unification based on unbound-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -695039,6 +693800,8 @@ self: { ]; description = "Make any action thread safe"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -695417,6 +694180,36 @@ self: { } ) { }; + unicode-data_0_7_0 = callPackage ( + { + mkDerivation, + base, + deepseq, + hspec, + tasty, + tasty-bench, + }: + mkDerivation { + pname = "unicode-data"; + version = "0.7.0"; + sha256 = "1l21qmhg9pgfnfxi8bsdvbb5zq9izz23caz44s32r9xmd7mdxqc0"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + hspec + ]; + benchmarkHaskellDepends = [ + base + deepseq + tasty + tasty-bench + ]; + description = "Access Unicode Character Database (UCD)"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + } + ) { }; + unicode-data-names = callPackage ( { mkDerivation, @@ -695429,8 +694222,8 @@ self: { }: mkDerivation { pname = "unicode-data-names"; - version = "0.4.0"; - sha256 = "041vkwzxk2fiq3icxkp9rrvvi2z4w7fjdh75cx8nsg8g573g1q05"; + version = "0.5.0"; + sha256 = "0hyx4lwz9y2nzk2jmrjcway02wbgam8yrsgggn28p8aabn452kp4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -695451,6 +694244,8 @@ self: { ]; description = "Unicode characters names and aliases"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -695462,8 +694257,8 @@ self: { }: mkDerivation { pname = "unicode-data-parser"; - version = "0.3.0.2"; - sha256 = "1zz5n9x4pn1whyam0kkbsml8iawk1savzp7xc7idvripdm61dd31"; + version = "0.3.0.3"; + sha256 = "1bayaa83d6iacddbz7sywjflkm42lr3p76glmnvfysfgj76hm8ni"; libraryHaskellDepends = [ base bytestring @@ -695484,8 +694279,8 @@ self: { }: mkDerivation { pname = "unicode-data-scripts"; - version = "0.4.0"; - sha256 = "04v87r7hqvkyzdsrjiap1brxdaqvsk5vpg2m7jd6i630ag0lvvzy"; + version = "0.5.0"; + sha256 = "0s01wjps018i67xgrkrvzw6ncmvsa3hpbl7qs75pvfskhjh9bjvq"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base @@ -695514,8 +694309,8 @@ self: { }: mkDerivation { pname = "unicode-data-security"; - version = "0.4.0"; - sha256 = "0awmdzv6d619c0lpk0jwnr0dh1sa2f8jr1h0ab3ysjp7gq969qfq"; + version = "0.5.0"; + sha256 = "199gk9444wbr1balpl1nzl0ivbpx5md9qhd9gf4jrjkb2nkk1hi6"; libraryHaskellDepends = [ base unicode-data @@ -695532,6 +694327,8 @@ self: { ]; description = "Unicode security mechanisms database"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -696496,43 +695293,6 @@ self: { ) { }; union = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - hashable, - lens, - profunctors, - tagged, - vinyl, - }: - mkDerivation { - pname = "union"; - version = "0.1.2"; - sha256 = "1i4fvlwkw1wx64a6l8342aqfqsdq7fqa4p24g3i5gn5704lxrsb3"; - revision = "9"; - editedCabalFile = "11h6qk4gnnlprrgi9cnpcbklwqnjsvk97h9gbp7ka4ib78xgxr84"; - libraryHaskellDepends = [ - base - deepseq - hashable - profunctors - tagged - vinyl - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - lens - ]; - description = "Extensible type-safe unions"; - license = lib.licenses.bsd3; - } - ) { }; - - union_0_1_3 = callPackage ( { mkDerivation, base, @@ -696564,7 +695324,6 @@ self: { ]; description = "Extensible type-safe unions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -696585,8 +695344,8 @@ self: { { mkDerivation, base }: mkDerivation { pname = "union-color"; - version = "0.1.2.1"; - sha256 = "188pmc32i1c112hph1irdpcf9b1jxc68yydqm2xzdcvyf1xpp0vr"; + version = "0.1.4.0"; + sha256 = "01nnnvvnb41j780zkx1krw2z8vc7vfxckv7ya0g5nyk5v0xr4yn4"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "Unify verious color formats"; @@ -696673,12 +695432,15 @@ self: { bytestring, containers, data-default, + dir-traverse, directory, filepath, filepattern, fsnotify, + hspec, lvar, monad-logger, + monad-logger-extras, mtl, relude, text, @@ -696688,8 +695450,8 @@ self: { }: mkDerivation { pname = "unionmount"; - version = "0.2.2.0"; - sha256 = "0gifmxi8z74s6ckh5naqp3y4ililxzp52adnlp10cglbjw18vkis"; + version = "0.3.0.0"; + sha256 = "12c1h1b6ikhzdk6cdd0q3sn3brb3fy1i6fv2l92kr99fnp709vmk"; libraryHaskellDepends = [ async base @@ -696709,6 +695471,28 @@ self: { unliftio with-utf8 ]; + testHaskellDepends = [ + async + base + bytestring + containers + data-default + dir-traverse + directory + filepath + filepattern + fsnotify + hspec + lvar + monad-logger + monad-logger-extras + mtl + relude + text + time + unliftio + with-utf8 + ]; description = "Union mount filesystem paths into Haskell datastructures"; license = lib.licenses.mit; } @@ -696823,10 +695607,8 @@ self: { }: mkDerivation { pname = "unique"; - version = "0.0.1"; - sha256 = "1dgln2dr64ma1isqskj1qnjslg9smmr7jssg8hmk68wp36i3rwkd"; - revision = "1"; - editedCabalFile = "0l95cgs8hbvakrcqzqk5l9rkz3cr3jnnszq7pgjnxrqfhgsp58r7"; + version = "0.0.2"; + sha256 = "1bjlwzbyqdjnn5fvdnkkbkq7hwlqsc9n6h8c7ndk758gwzkf4j75"; libraryHaskellDepends = [ base hashable @@ -696913,10 +695695,8 @@ self: { }: mkDerivation { pname = "unique-logic-tf"; - version = "0.5.1"; - sha256 = "0a2hjkm7kwfnqyscxxdw2r2cq3gsydv5ny91vpxxd3paknqqr0cb"; - revision = "4"; - editedCabalFile = "05dl9xbbd1zlynqzz0vmi41q2vhjj7jrgpdzb4jxdxkcg5xrxccr"; + version = "0.5.1.1"; + sha256 = "0l6clsazbcvbxb65hhjp3cpsf00ksi625mvxg0v9gxqibssdziwk"; libraryHaskellDepends = [ base containers @@ -697915,6 +696695,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Custom prelude used in Serokell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -697933,8 +696715,8 @@ self: { pname = "unix"; version = "2.8.7.0"; sha256 = "10zv2vcq82vv56hll5mpvfwfsx6ymp2f75fwxvp5a1xgbafqgpfb"; - revision = "1"; - editedCabalFile = "1mvyq9qajqhjrv8m3zch07v8h0b3i4fj40d8jfcpbmqsq6h8sa9d"; + revision = "2"; + editedCabalFile = "0xbk68mf4j22kw1a4q732b5n6j8v5yqc55kxdk3hcwgcm0a12wys"; libraryHaskellDepends = [ base bytestring @@ -697979,7 +696761,6 @@ self: { mkDerivation, base, directory, - extra, hspec, HUnit, monad-parallel, @@ -697988,8 +696769,8 @@ self: { }: mkDerivation { pname = "unix-compat"; - version = "0.7.4"; - sha256 = "1x7gnyfx8bny5x021pha30frqxn4slwvg9aaal82kqcg1jb3m6v8"; + version = "0.7.4.1"; + sha256 = "0m20wi8z3bzdc9b61rilb9hrbrd0wwzyc06rfbk7a30h99i135iz"; libraryHaskellDepends = [ base unix @@ -697997,7 +696778,6 @@ self: { testHaskellDepends = [ base directory - extra hspec HUnit monad-parallel @@ -698409,6 +697189,7 @@ self: { ]; description = "Unleash feature toggle client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; } ) { }; @@ -698456,6 +697237,8 @@ self: { ]; description = "Unleash feature toggle client core"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -698777,8 +697560,8 @@ self: { }: mkDerivation { pname = "unliftio-pool"; - version = "0.4.3.0"; - sha256 = "1pwlyvlz7qf4vdgijzal9dmwdgx7hzqqan5ws6dg38qb5914j1rq"; + version = "0.4.3.1"; + sha256 = "0xc74l6qfr8gy4ap8xjhjb57grj415bgz82kyxgp255w0qv9k2bz"; libraryHaskellDepends = [ base resource-pool @@ -700272,71 +699055,6 @@ self: { ) { }; uri-bytestring = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-compat, - blaze-builder, - bytestring, - containers, - criterion, - deepseq, - deepseq-generics, - hedgehog, - HUnit, - network-uri, - safe, - tasty, - tasty-hedgehog, - tasty-hunit, - template-haskell, - th-lift-instances, - transformers, - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.3.1"; - sha256 = "0s0k26v5x6601rbpkjkl5vp3dkp9xwj1dlgy4xkl470i4sna1rzk"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - template-haskell - th-lift-instances - ]; - testHaskellDepends = [ - attoparsec - base - base-compat - blaze-builder - bytestring - containers - hedgehog - HUnit - safe - tasty - tasty-hedgehog - tasty-hunit - transformers - ]; - benchmarkHaskellDepends = [ - base - blaze-builder - bytestring - criterion - deepseq - deepseq-generics - network-uri - ]; - description = "Haskell URI parsing as ByteStrings"; - license = lib.licenses.bsd3; - } - ) { }; - - uri-bytestring_0_4_0_1 = callPackage ( { mkDerivation, attoparsec, @@ -700398,7 +699116,6 @@ self: { ]; description = "Haskell URI parsing as ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -702571,6 +701288,7 @@ self: { ]; description = "Attribute Grammar System of Universiteit Utrecht"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "uuagc"; } ) { }; @@ -702652,6 +701370,8 @@ self: { ]; description = "Cabal plugin for UUAGC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -702841,10 +701561,8 @@ self: { }: mkDerivation { pname = "uuid-crypto"; - version = "1.4.0.0"; - sha256 = "191da0bdgzbpibh7v2n2cg13gkq2vchsybad0qy9qixk0rzi1cvn"; - revision = "6"; - editedCabalFile = "146jxyrsnrcwsll6mhq8a67ms1wpbbbxmkbq7sh9wza6c4g2fbwy"; + version = "1.4.0.1"; + sha256 = "1j8d089dlxca6hzlvaz5kzblwh7ywdmf5h36309jlb3cb35hjfrq"; libraryHaskellDepends = [ base binary @@ -703025,7 +701743,9 @@ self: { ]; description = "Tweak .cabal files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.berberman ]; + broken = true; } ) { }; @@ -703753,8 +702473,8 @@ self: { pname = "validation-selective"; version = "0.2.0.0"; sha256 = "11s9qsp5w19lbk6vg6psr3864xdsx2kmx3gcmnn2qkx6wsblx24s"; - revision = "5"; - editedCabalFile = "05lksfm5micvk2s6isscjf6ipkwd79698cczlr0ipgn8wmm87drz"; + revision = "6"; + editedCabalFile = "14m1iwnz026ypqn1xzs5dgsq2jkyxfcam82dbmdidwhviyr7hzbz"; libraryHaskellDepends = [ base deepseq @@ -704742,8 +703462,10 @@ self: { }: mkDerivation { pname = "variety"; - version = "0.1.0.2"; - sha256 = "0bzavj283kraw1ffx1fi5ihxvk168mqs1s6j6vpl7qmxc0zmrn5a"; + version = "0.2.1.0"; + sha256 = "0arz9ggs70xlmzbkk2i8gw90brgxcskxw00sp70nxwi2iggwdqi4"; + revision = "1"; + editedCabalFile = "1igrzy8wgg50xja0p0zh6jyzgrww7y9vxvqyl2dngw68z2bfnyh2"; libraryHaskellDepends = [ base bytestring @@ -704806,6 +703528,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Vary: Friendly and fast polymorphic variants (open unions/coproducts/extensible sums)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -705720,8 +704444,8 @@ self: { pname = "vector"; version = "0.13.2.0"; sha256 = "08y4j6nii17wc3fs3d2za0yifd3gqf73g8zyqdnsry6bhv3h7wi8"; - revision = "1"; - editedCabalFile = "07yq10jyw5y7dlvhx1szyf19gmih02sf5qv5937jl3ajfdxsadmp"; + revision = "2"; + editedCabalFile = "1d3ma9zldfwlz7s41hmaz6jcxwpyh12cld44n1ys7n2jvb43ihws"; libraryHaskellDepends = [ base deepseq @@ -706156,35 +704880,6 @@ self: { ) { }; vector-extras = callPackage ( - { - mkDerivation, - base, - containers, - deferred-folds, - foldl, - hashable, - unordered-containers, - vector, - }: - mkDerivation { - pname = "vector-extras"; - version = "0.2.8.2"; - sha256 = "1h14iv4aw6qk29wvfg63rm16ydx0pkqq3wz5g1jdhbqk6i11r59j"; - libraryHaskellDepends = [ - base - containers - deferred-folds - foldl - hashable - unordered-containers - vector - ]; - description = "Utilities for the \"vector\" library"; - license = lib.licenses.mit; - } - ) { }; - - vector-extras_0_3 = callPackage ( { mkDerivation, base, @@ -706200,7 +704895,6 @@ self: { ]; description = "Utilities for the \"vector\" library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -706651,29 +705345,6 @@ self: { ) { }; vector-space = callPackage ( - { - mkDerivation, - base, - Boolean, - MemoTrie, - NumInstances, - }: - mkDerivation { - pname = "vector-space"; - version = "0.16"; - sha256 = "17676s2f8i45dj5gk370nc8585aylah7m34nbf34al7r1492y2qc"; - libraryHaskellDepends = [ - base - Boolean - MemoTrie - NumInstances - ]; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = lib.licenses.bsd3; - } - ) { }; - - vector-space_0_19 = callPackage ( { mkDerivation, base, @@ -706695,7 +705366,6 @@ self: { ]; description = "Vector & affine spaces, linear maps, and derivatives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -706875,8 +705545,8 @@ self: { pname = "vector-stream"; version = "0.1.0.1"; sha256 = "0z5z88flyassdpgga412qci6brr9gyljbx875wd479fy9crhgxfh"; - revision = "3"; - editedCabalFile = "07k5zgxbfbcf9anzfd9c0lzaa79iypdk303dq5yswi9a46andjas"; + revision = "4"; + editedCabalFile = "17i8x8vsnb853pagq4zsm6zfgv4zdxk8j1b42ylnj8f72ggycfs8"; libraryHaskellDepends = [ base ghc-prim @@ -707109,8 +705779,8 @@ self: { }: mkDerivation { pname = "venzone"; - version = "1.1.1.2"; - sha256 = "1ajaw6r6yi6rmji3m0zbwiyxcimq1rx6h1mspsv305368as1cqnx"; + version = "1.1.2.0"; + sha256 = "104prg5z2iw7hsd43qa0k05qkbyw8wnxr4j17lzhmvl0vins68c8"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -707884,6 +706554,8 @@ self: { doHaddock = false; description = "Array library monomorphized with backpack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -710261,51 +708933,6 @@ self: { ) { inherit (pkgs) vte; }; vty = callPackage ( - { - mkDerivation, - base, - binary, - blaze-builder, - bytestring, - deepseq, - directory, - filepath, - microlens, - microlens-mtl, - mtl, - parsec, - stm, - text, - utf8-string, - vector, - }: - mkDerivation { - pname = "vty"; - version = "6.2"; - sha256 = "0ywqfdngfv5pnsk5pa99yizpbhdq856sy3z70q2hmpmlc2r4h7vg"; - libraryHaskellDepends = [ - base - binary - blaze-builder - bytestring - deepseq - directory - filepath - microlens - microlens-mtl - mtl - parsec - stm - text - utf8-string - vector - ]; - description = "A simple terminal UI library"; - license = lib.licenses.bsd3; - } - ) { }; - - vty_6_4 = callPackage ( { mkDerivation, base, @@ -710347,7 +708974,6 @@ self: { ]; description = "A simple terminal UI library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -710598,6 +709224,58 @@ self: { ) { }; vty-windows = callPackage ( + { + mkDerivation, + base, + blaze-builder, + bytestring, + containers, + deepseq, + directory, + filepath, + microlens, + microlens-mtl, + microlens-th, + mtl, + parsec, + stm, + transformers, + utf8-string, + vector, + vty, + Win32, + }: + mkDerivation { + pname = "vty-windows"; + version = "0.2.0.3"; + sha256 = "12f91izwg4r18zvdbnkwd8jk7agdyy3w3bcljrm92hib43i210id"; + libraryHaskellDepends = [ + base + blaze-builder + bytestring + containers + deepseq + directory + filepath + microlens + microlens-mtl + microlens-th + mtl + parsec + stm + transformers + utf8-string + vector + vty + Win32 + ]; + description = "Windows backend for Vty"; + license = lib.licenses.bsd3; + platforms = lib.platforms.windows; + } + ) { }; + + vty-windows_0_2_0_4 = callPackage ( { mkDerivation, base, @@ -710646,6 +709324,7 @@ self: { description = "Windows backend for Vty"; license = lib.licenses.bsd3; platforms = lib.platforms.windows; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -710765,6 +709444,8 @@ self: { description = "Utils for the vulkan package"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -711216,8 +709897,6 @@ self: { ]; description = "File/CGI/Rev Proxy App of WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -711486,6 +710165,7 @@ self: { filepath, http-types, memory, + random, stm, text, time, @@ -711494,8 +710174,8 @@ self: { }: mkDerivation { pname = "wai-cryptocookie"; - version = "0.1"; - sha256 = "1h1ajlwpgsjx4liril1zcnwnx51b6idm4vg5d2226ibcn5v67478"; + version = "0.2"; + sha256 = "1y97641w1ms0hzzw34v67h60hy4mjwnanvb8511qp033rpyqqh53"; libraryHaskellDepends = [ aeson base @@ -711517,6 +710197,7 @@ self: { directory filepath http-types + random stm wai wai-extra @@ -711734,6 +710415,8 @@ self: { ]; description = "WAI middleware to parameterize requests with environment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -711787,8 +710470,8 @@ self: { }: mkDerivation { pname = "wai-extra"; - version = "3.1.16"; - sha256 = "1g7n7kq4c4zmiffm7dsb4j4wq5khkgw2i9mx5x71yzj4disanahj"; + version = "3.1.18"; + sha256 = "1xshy78bz6jpmvnifbahll5f03mwn41qd5pqjq8v0y6lil5p8qzf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -711847,104 +710530,6 @@ self: { } ) { }; - wai-extra_3_1_17 = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - base64-bytestring, - bytestring, - call-stack, - case-insensitive, - containers, - cookie, - data-default, - directory, - fast-logger, - hspec, - hspec-discover, - http-types, - HUnit, - iproute, - network, - resourcet, - streaming-commons, - temporary, - text, - time, - transformers, - unix, - vault, - wai, - wai-logger, - warp, - word8, - zlib, - }: - mkDerivation { - pname = "wai-extra"; - version = "3.1.17"; - sha256 = "0jq1vr3sc4gbcan0w9mzvrj6p20m825zb1y4bq1yjccka146xmn7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - base64-bytestring - bytestring - call-stack - case-insensitive - containers - cookie - data-default - directory - fast-logger - http-types - HUnit - iproute - network - resourcet - streaming-commons - text - time - transformers - unix - vault - wai - wai-logger - warp - word8 - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - cookie - directory - fast-logger - hspec - http-types - HUnit - iproute - resourcet - temporary - text - time - wai - warp - word8 - zlib - ]; - testToolDepends = [ hspec-discover ]; - description = "Provides some basic WAI handlers and middleware"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - wai-feature-flags = callPackage ( { mkDerivation, @@ -712206,10 +710791,8 @@ self: { }: mkDerivation { pname = "wai-handler-hal"; - version = "0.4.0.1"; - sha256 = "04blpf393mimd2wma6k7wf4plc76w8a74mmazgyi8jam6ck0id40"; - revision = "1"; - editedCabalFile = "1b7nad5313ih8ana6mccyy1hqgrky0zfn79mfli28n3i1lrpvara"; + version = "0.4.0.2"; + sha256 = "1bf67bl7cqavn0mqnmsh6wfn62iqpzrs7mqgzn8f3lrbkxw5rbny"; libraryHaskellDepends = [ base base64-bytestring @@ -715132,6 +713715,98 @@ self: { } ) { }; + wai-saml2_0_7_0 = callPackage ( + { + mkDerivation, + base, + base16-bytestring, + base64-bytestring, + bytestring, + c14n, + containers, + crypton, + crypton-x509, + crypton-x509-store, + data-default-class, + filepath, + http-types, + mtl, + network-uri, + pretty-show, + tasty, + tasty-expected-failure, + tasty-golden, + tasty-hunit, + text, + time, + transformers, + vault, + wai, + wai-extra, + xml-conduit, + zlib, + }: + mkDerivation { + pname = "wai-saml2"; + version = "0.7.0"; + sha256 = "1crfhrzap4rpw2fais2rpgkls3gdnr2xypy9ay1xbb21yc38ymzs"; + libraryHaskellDepends = [ + base + base16-bytestring + base64-bytestring + bytestring + c14n + containers + crypton + crypton-x509 + crypton-x509-store + data-default-class + http-types + mtl + network-uri + text + time + vault + wai + wai-extra + xml-conduit + zlib + ]; + testHaskellDepends = [ + base + base16-bytestring + base64-bytestring + bytestring + c14n + containers + crypton + crypton-x509 + crypton-x509-store + data-default-class + filepath + http-types + mtl + network-uri + pretty-show + tasty + tasty-expected-failure + tasty-golden + tasty-hunit + text + time + transformers + vault + wai + wai-extra + xml-conduit + zlib + ]; + description = "SAML2 assertion validation as WAI middleware"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + wai-secure-cookies = callPackage ( { mkDerivation, @@ -715742,6 +714417,36 @@ self: { } ) { }; + wai-transformers_0_2_0 = callPackage ( + { + mkDerivation, + base, + exceptions, + transformers, + unliftio-core, + wai, + wai-websockets, + websockets, + }: + mkDerivation { + pname = "wai-transformers"; + version = "0.2.0"; + sha256 = "19pvm7h9igja6q3id725km96k91080chz19nq3smsz9r0qld6r1q"; + libraryHaskellDepends = [ + base + exceptions + transformers + unliftio-core + wai + wai-websockets + websockets + ]; + description = "Monad transformers for WAI and WebSockets"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + wai-util = callPackage ( { mkDerivation, @@ -716212,8 +714917,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.4.8"; - sha256 = "0l67bz23l5sbhsmi9pz5vr0cf2mkkzpl0gjkf9309g0lxfq0mpyl"; + version = "3.4.9"; + sha256 = "1c2mbcdsvv1rwsngckf83r80340c1vrim8qdvajda8iy9h6nh69s"; libraryHaskellDepends = [ array async @@ -716493,43 +715198,6 @@ self: { ) { }; warp-tls = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - network, - recv, - streaming-commons, - tls, - tls-session-manager, - unliftio, - wai, - warp, - }: - mkDerivation { - pname = "warp-tls"; - version = "3.4.9"; - sha256 = "01dpnc77sf7fkksvpi1rhfwk1h9lz5jjarzxjvy0y1yl8gn69vgf"; - libraryHaskellDepends = [ - base - bytestring - data-default - network - recv - streaming-commons - tls - tls-session-manager - unliftio - wai - warp - ]; - description = "HTTP over TLS support for Warp via the TLS package"; - license = lib.licenses.mit; - } - ) { }; - - warp-tls_3_4_13 = callPackage ( { mkDerivation, base, @@ -716559,7 +715227,6 @@ self: { ]; description = "HTTP over TLS support for Warp via the TLS package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -716854,8 +715521,8 @@ self: { }: mkDerivation { pname = "waterfall-cad"; - version = "0.5.1.0"; - sha256 = "173pv3a7n3jcf4j2jb7sirdib0x850qsifhlz858bkzamhqlxkr8"; + version = "0.6.0.0"; + sha256 = "05nx65f1wca9swn8jpq60mwwivbbz9wc44rn0bxcaszw4maqzv3h"; libraryHaskellDepends = [ base filepath @@ -716889,8 +715556,8 @@ self: { }: mkDerivation { pname = "waterfall-cad-examples"; - version = "0.5.1.0"; - sha256 = "0vrlhgvbkwgk2nvmw8h6sg3fygi3sxs7qllyvwkzzs91kavnkb4d"; + version = "0.6.0.0"; + sha256 = "0i5yrwnkcp60czv0mmxkcxh1jl7q21q3n0xq4y4dr8bvh4wfbgql"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -716943,8 +715610,8 @@ self: { }: mkDerivation { pname = "waterfall-cad-svg"; - version = "0.5.1.0"; - sha256 = "1gjm36f7w3xf7q8gfm6xk5ssj594z45vfkqkr3x9rgny8rn7w3p5"; + version = "0.6.0.0"; + sha256 = "1mfxcc62m88saf7n56f8chwfy1n2y1r0y68cfg1jkn7n97yrlxzm"; libraryHaskellDepends = [ attoparsec base @@ -717550,8 +716217,8 @@ self: { }: mkDerivation { pname = "web-inv-route"; - version = "0.1.3.2"; - sha256 = "0gmbj6c6c8gqz9xfxv0d4134d7c2wfla3zg3bgqvvzsqjjmrg81v"; + version = "0.1.3.3"; + sha256 = "06jcdp74sylpal882s9ybjwhixf3wkb575ad8hlwrpirxhjxcg5w"; libraryHaskellDepends = [ base bytestring @@ -717577,8 +716244,6 @@ self: { ]; description = "Composable, reversible, efficient web routing using invertible invariants and bijections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -717824,8 +716489,8 @@ self: { }: mkDerivation { pname = "web-rep"; - version = "0.12.3.0"; - sha256 = "10k2fm7g1p54v6gnn045vgc8p58xal17vxin9ah11xqr0dddk7sa"; + version = "0.14.0.0"; + sha256 = "1vjnvsdwjwvlmz1gwrga38wmj4akff3xnh0gjxzbi2hv4vdax7yn"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -717867,78 +716532,6 @@ self: { } ) { }; - web-rep_0_13_0_0 = callPackage ( - { - mkDerivation, - async, - base, - bifunctors, - box, - box-socket, - bytestring, - doctest-parallel, - flatparse, - markup-parse, - mtl, - optics-core, - optics-extra, - optparse-applicative, - profunctors, - scotty, - string-interpolate, - text, - transformers, - unordered-containers, - wai-middleware-static, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "web-rep"; - version = "0.13.0.0"; - sha256 = "04w49x4mknbsc86xq62amyfk3696cv906grhm98yyyg4gkpd7qx2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bifunctors - box - box-socket - bytestring - flatparse - markup-parse - mtl - optics-core - optics-extra - profunctors - scotty - string-interpolate - text - transformers - unordered-containers - wai-middleware-static - wai-websockets - websockets - ]; - executableHaskellDepends = [ - base - box - markup-parse - optics-core - optparse-applicative - ]; - testHaskellDepends = [ - base - doctest-parallel - ]; - description = "representations of a web page"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "web-rep-example"; - } - ) { }; - web-routes = callPackage ( { mkDerivation, @@ -718047,8 +716640,8 @@ self: { }: mkDerivation { pname = "web-routes-happstack"; - version = "0.23.12.3"; - sha256 = "1qkbaq5k9as5s0bdaiza02jfg17vwmsfwg6r3gg95sh4l5rvwyx6"; + version = "0.23.12.4"; + sha256 = "1sfv84h60cwss6ncdyymwszw42mjabfg1nzh6ppbyfkda6l8g02l"; libraryHaskellDepends = [ base bytestring @@ -718058,8 +716651,6 @@ self: { ]; description = "Adds support for using web-routes with Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -718174,8 +716765,8 @@ self: { }: mkDerivation { pname = "web-routes-th"; - version = "0.22.8.2"; - sha256 = "11ps9cn5qz46w0i69znqb03fc6ljrwrn9y1cq0j1dsy7rjkqhgxm"; + version = "0.22.8.3"; + sha256 = "0w9izg5f5nwngvfnggvkd0yynlqi2827na7kycqhjfsdndw0g475"; libraryHaskellDepends = [ base parsec @@ -718290,6 +716881,61 @@ self: { ) { }; web-view = callPackage ( + { + mkDerivation, + base, + bytestring, + casing, + containers, + Diff, + effectful-core, + file-embed, + html-entities, + http-types, + skeletest, + string-interpolate, + text, + }: + mkDerivation { + pname = "web-view"; + version = "0.7.0"; + sha256 = "062n3zff1frm38qzcylrp25krxx2nr5w68w71ijja2j87glj20kz"; + revision = "2"; + editedCabalFile = "1c8dh2r85mjxcsyqkar5zsm5h4b5x3k6c33nccwfga2n0r1sn0m8"; + libraryHaskellDepends = [ + base + bytestring + casing + containers + effectful-core + file-embed + html-entities + http-types + string-interpolate + text + ]; + testHaskellDepends = [ + base + bytestring + casing + containers + Diff + effectful-core + file-embed + html-entities + http-types + skeletest + string-interpolate + text + ]; + description = "Type-safe HTML and CSS"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + + web-view_0_7_1 = callPackage ( { mkDerivation, base, @@ -719418,6 +718064,114 @@ self: { } ) { }; + webdriver_0_13_0_0 = callPackage ( + { + mkDerivation, + aeson, + attoparsec, + attoparsec-aeson, + base, + base64-bytestring, + bytestring, + containers, + directory, + exceptions, + filepath, + http-client, + http-types, + microlens, + microlens-th, + monad-logger, + mtl, + network, + network-uri, + optparse-applicative, + random, + retry, + safe-exceptions, + sandwich, + sandwich-contexts, + scientific, + stm, + string-interpolate, + text, + time, + unliftio, + unliftio-core, + unordered-containers, + wai-app-static, + warp, + websockets, + zip-archive, + }: + mkDerivation { + pname = "webdriver"; + version = "0.13.0.0"; + sha256 = "192dm2bwhdfrmfkimblm43gvh3vnnk6p68kw5cfpar00mli08mbi"; + libraryHaskellDepends = [ + aeson + attoparsec + attoparsec-aeson + base + base64-bytestring + bytestring + containers + directory + exceptions + filepath + http-client + http-types + microlens-th + monad-logger + network + network-uri + random + retry + safe-exceptions + scientific + stm + string-interpolate + text + time + unliftio + unliftio-core + unordered-containers + websockets + zip-archive + ]; + testHaskellDepends = [ + aeson + base + bytestring + containers + exceptions + filepath + http-client + http-types + microlens + monad-logger + mtl + network + network-uri + optparse-applicative + retry + safe-exceptions + sandwich + sandwich-contexts + string-interpolate + text + unliftio + unliftio-core + wai-app-static + warp + ]; + testToolDepends = [ sandwich ]; + description = "a Haskell client for the Selenium WebDriver protocol"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + webdriver-angular = callPackage ( { mkDerivation, @@ -719513,8 +718267,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A typed wrapper for W3C WebDriver protocol. A base for other libraries."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -720037,8 +718789,8 @@ self: { }: mkDerivation { pname = "webgear-core"; - version = "1.3.1"; - sha256 = "1svspzqxqappvmbsvj1cvvvh7dbgsxww43xc93ny19x6qwmksgr5"; + version = "1.4.0"; + sha256 = "0kda3yyg7w2ws2v303nsb9g6wrc743d8rd5lz6xpd71myiq5w5fx"; libraryHaskellDepends = [ arrows base @@ -720063,7 +718815,7 @@ self: { } ) { }; - webgear-core_1_4_0 = callPackage ( + webgear-core_1_5_0 = callPackage ( { mkDerivation, arrows, @@ -720086,8 +718838,8 @@ self: { }: mkDerivation { pname = "webgear-core"; - version = "1.4.0"; - sha256 = "0kda3yyg7w2ws2v303nsb9g6wrc743d8rd5lz6xpd71myiq5w5fx"; + version = "1.5.0"; + sha256 = "1f5dy707rcb25n0w5ld210vczaa3az2y6xvg5jn7gwsxs23a8b3k"; libraryHaskellDepends = [ arrows base @@ -720129,8 +718881,8 @@ self: { }: mkDerivation { pname = "webgear-openapi"; - version = "1.3.1"; - sha256 = "1aky9zdc040njndjch2l7xj8gb13ygnv0zgm2jc307lswnbh98vb"; + version = "1.4.0"; + sha256 = "0pm0v20spryxdl63fgrpzqvjx98awncxmxak4z6ma8fxnxvq14cb"; libraryHaskellDepends = [ arrows base @@ -720148,7 +718900,7 @@ self: { } ) { }; - webgear-openapi_1_4_0 = callPackage ( + webgear-openapi_1_5_0 = callPackage ( { mkDerivation, arrows, @@ -720164,8 +718916,8 @@ self: { }: mkDerivation { pname = "webgear-openapi"; - version = "1.4.0"; - sha256 = "0pm0v20spryxdl63fgrpzqvjx98awncxmxak4z6ma8fxnxvq14cb"; + version = "1.5.0"; + sha256 = "0amwhdbb1va8c7ham34zbjpd5azwvwsl5d4i7xyfkq8gzry9vji6"; libraryHaskellDepends = [ arrows base @@ -720185,78 +718937,6 @@ self: { ) { }; webgear-server = callPackage ( - { - mkDerivation, - aeson, - arrows, - base, - base64-bytestring, - binary, - bytestring, - cookie, - http-api-data, - http-media, - http-types, - jose, - monad-time, - mtl, - QuickCheck, - quickcheck-instances, - resourcet, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-conversions, - wai, - wai-extra, - webgear-core, - }: - mkDerivation { - pname = "webgear-server"; - version = "1.3.1"; - sha256 = "053ddbkjx9vshzrbyys7kjv92s97z0kjh586xgz5ix3zxpy6wyda"; - libraryHaskellDepends = [ - aeson - arrows - base - base64-bytestring - binary - bytestring - cookie - http-api-data - http-media - http-types - jose - monad-time - mtl - resourcet - text - text-conversions - wai - wai-extra - webgear-core - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - http-types - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - text - wai - webgear-core - ]; - description = "Composable, type-safe library to build HTTP API servers"; - license = lib.licenses.mpl20; - } - ) { }; - - webgear-server_1_4_0 = callPackage ( { mkDerivation, aeson, @@ -720325,6 +719005,78 @@ self: { ]; description = "Composable, type-safe library to build HTTP API servers"; license = lib.licenses.mpl20; + } + ) { }; + + webgear-server_1_5_0 = callPackage ( + { + mkDerivation, + aeson, + arrows, + base, + base64-bytestring, + binary, + bytestring, + cookie, + http-api-data, + http-media, + http-types, + jose, + monad-time, + mtl, + QuickCheck, + quickcheck-instances, + resourcet, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + text-conversions, + wai, + wai-extra, + webgear-core, + }: + mkDerivation { + pname = "webgear-server"; + version = "1.5.0"; + sha256 = "1srr5kblk1b59jyrkidh9js4yax8dvjyici283z25yk2lnqijc2y"; + libraryHaskellDepends = [ + aeson + arrows + base + base64-bytestring + binary + bytestring + cookie + http-api-data + http-media + http-types + jose + monad-time + mtl + resourcet + text + text-conversions + wai + wai-extra + webgear-core + ]; + testHaskellDepends = [ + base + base64-bytestring + bytestring + http-types + QuickCheck + quickcheck-instances + tasty + tasty-hunit + tasty-quickcheck + text + wai + webgear-core + ]; + description = "Composable, type-safe library to build HTTP API servers"; + license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; } ) { }; @@ -720344,8 +719096,8 @@ self: { }: mkDerivation { pname = "webgear-swagger"; - version = "1.3.1"; - sha256 = "04z58rsn40zp19rr7b3bfp13n1yp4j2d5fjvm3msv7ik6pqgdkqq"; + version = "1.4.0"; + sha256 = "0ca6smxgxa6ck0f914wj4ivrdpbqxy0v46di3lyl9kwnb0jia5vc"; libraryHaskellDepends = [ arrows base @@ -720362,7 +719114,7 @@ self: { } ) { }; - webgear-swagger_1_4_0 = callPackage ( + webgear-swagger_1_5_0 = callPackage ( { mkDerivation, arrows, @@ -720377,8 +719129,8 @@ self: { }: mkDerivation { pname = "webgear-swagger"; - version = "1.4.0"; - sha256 = "0ca6smxgxa6ck0f914wj4ivrdpbqxy0v46di3lyl9kwnb0jia5vc"; + version = "1.5.0"; + sha256 = "0vgd506yqfj02l6a25wfwi03xxf6nyg9gkh2phq85g88v22brwpf"; libraryHaskellDepends = [ arrows base @@ -720409,8 +719161,8 @@ self: { }: mkDerivation { pname = "webgear-swagger-ui"; - version = "1.3.1"; - sha256 = "07rc7wjjmgirwmbbi66gzbvbb194c2rb5ab2sw9kf3ppsl9xwqg0"; + version = "1.4.0"; + sha256 = "1qrf435pky7imwashh7f48z2agwjnyjw396w98jcg92k9cs6sisk"; libraryHaskellDepends = [ base bytestring @@ -720425,7 +719177,7 @@ self: { } ) { }; - webgear-swagger-ui_1_4_0 = callPackage ( + webgear-swagger-ui_1_5_0 = callPackage ( { mkDerivation, base, @@ -720438,8 +719190,8 @@ self: { }: mkDerivation { pname = "webgear-swagger-ui"; - version = "1.4.0"; - sha256 = "1qrf435pky7imwashh7f48z2agwjnyjw396w98jcg92k9cs6sisk"; + version = "1.5.0"; + sha256 = "02larl8s6b9i1rkbw6gflyz0pn8ba80yd0i6w73mifkma7m39zxi"; libraryHaskellDepends = [ base bytestring @@ -720587,6 +719339,7 @@ self: { description = "Binding to the Webkit library"; license = lib.licenses.lgpl21Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { webkit = null; }; @@ -720638,6 +719391,7 @@ self: { description = "JavaScriptCore FFI from webkitgtk"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) webkitgtk_4_0; }; @@ -720709,6 +719463,7 @@ self: { description = "JavaScriptCore FFI from webkitgtk"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { webkitgtk = null; }; @@ -721532,8 +720287,8 @@ self: { }: mkDerivation { pname = "weeder"; - version = "2.9.0"; - sha256 = "0fgxsyijn5flxzhjy3096qjlv0avlwchwyb46pizwh2s6i1nwil3"; + version = "2.10.0"; + sha256 = "0w6q65wfycxf9980agr3w60008zzwr1br94srmmj9i3qwpxwcysy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -722337,6 +721092,8 @@ self: { pname = "what4"; version = "1.7"; sha256 = "1iba76c7zagxxgqvfxrsk92vayyhv1vjd6dd5wj242vps29jhb3v"; + revision = "1"; + editedCabalFile = "0d2xhwmgk20pqjh9xgdfyzwi9brckz71bdk8lr56q36nzmrkj0dl"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -722825,9 +721582,7 @@ self: { mkDerivation, base, binary, - bytestring, deepseq, - ghc-prim, hashable, hedgehog, primitive, @@ -722837,21 +721592,18 @@ self: { }: mkDerivation { pname = "wide-word"; - version = "0.1.7.1"; - sha256 = "1h42k00inir628qb2r8966bhn354bnkgadpx5fgm6g1kh879y15a"; + version = "0.1.8.1"; + sha256 = "0jisg5y3rxcqwd3kgdvcmz5awwcgzdhdkl768llhh388kp64mjcy"; libraryHaskellDepends = [ base binary deepseq - ghc-prim hashable primitive ]; testHaskellDepends = [ base binary - bytestring - ghc-prim hedgehog primitive QuickCheck @@ -723464,6 +722216,8 @@ self: { ]; description = "Graphical indicator for WildBind"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -723492,6 +722246,7 @@ self: { testHaskellDepends = [ base ]; description = "Task to install and export everything you need to use WildBind in X11"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -723756,8 +722511,6 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -723901,7 +722654,6 @@ self: { ]; description = "I/O library for Windows"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { @@ -724092,48 +722844,6 @@ self: { ) { }; witch = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HUnit, - tagged, - template-haskell, - text, - time, - transformers, - }: - mkDerivation { - pname = "witch"; - version = "1.2.4.0"; - sha256 = "1kpkdqn8h8wrsf5i45j4y43favyb2f3nsk03n8gcf6rn6cgwk2cf"; - libraryHaskellDepends = [ - base - bytestring - containers - tagged - template-haskell - text - time - ]; - testHaskellDepends = [ - base - bytestring - containers - HUnit - tagged - text - time - transformers - ]; - description = "Convert values from one type into another"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.maralorn ]; - } - ) { }; - - witch_1_3_0_6 = callPackage ( { mkDerivation, base, @@ -724171,7 +722881,6 @@ self: { ]; description = "Convert values from one type into another"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.maralorn ]; } ) { }; @@ -724205,6 +722914,8 @@ self: { ]; description = "Use ImplicitParams-based source locations in a backward compatible way"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -724404,29 +723115,6 @@ self: { ) { }; witness = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - countable, - }: - mkDerivation { - pname = "witness"; - version = "0.6.2"; - sha256 = "0g83d6b6w8djsqkqdarw6szzwvz8h7i05x8jwzpvax86fcvwp3cr"; - libraryHaskellDepends = [ - base - constraints - containers - countable - ]; - description = "values that witness types"; - license = lib.licenses.bsd2; - } - ) { }; - - witness_0_7 = callPackage ( { mkDerivation, base, @@ -724446,7 +723134,6 @@ self: { ]; description = "values that witness types"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -724904,51 +723591,6 @@ self: { ) { inherit (pkgs) wlc; }; wled-json = callPackage ( - { - mkDerivation, - aeson, - barbies, - base, - bytestring, - deriving-aeson, - hspec, - hspec-discover, - http-conduit, - QuickCheck, - rhine, - }: - mkDerivation { - pname = "wled-json"; - version = "0.0.1.1"; - sha256 = "1d9i4qn9iyfxdd46drj811dyr9hask3sgbdim7vgkhphg5059g4p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - barbies - base - bytestring - deriving-aeson - http-conduit - ]; - executableHaskellDepends = [ - base - rhine - ]; - testHaskellDepends = [ - aeson - base - hspec - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - description = "Convenient interface for interacting with WLED devices"; - license = lib.licenses.bsd3; - mainProgram = "wled-json-exe"; - } - ) { }; - - wled-json_0_1_0_0 = callPackage ( { mkDerivation, aeson, @@ -724989,7 +723631,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Convenient interface for interacting with WLED devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -725691,8 +724332,6 @@ self: { ]; description = "Word8 set"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -727013,10 +725652,8 @@ self: { }: mkDerivation { pname = "wreq-effectful"; - version = "0.1.0.1"; - sha256 = "1sxqvdc0h4y767blmznb4ld0bq25aanbnrwy2wvk23rm8c7vf0w9"; - revision = "1"; - editedCabalFile = "0dvrypqffj4cmy1qvygy9r6d6iwj3d9fka063bbkgm0ri3bsc40y"; + version = "0.1.1.1"; + sha256 = "1nzgl89m050c0jnrqcl7fsjy8g2g09xaz1l0dxlm7nkkvi96mc82"; libraryHaskellDepends = [ base bytestring @@ -728283,35 +726920,6 @@ self: { ) { }; wuss = callPackage ( - { - mkDerivation, - base, - bytestring, - crypton-connection, - data-default, - exceptions, - network, - websockets, - }: - mkDerivation { - pname = "wuss"; - version = "2.0.2.0"; - sha256 = "01ipsv7hvi016ipiivkp6w9r278nilfh1kcnmyavr5q479dvlz08"; - libraryHaskellDepends = [ - base - bytestring - crypton-connection - data-default - exceptions - network - websockets - ]; - description = "Secure WebSocket (WSS) clients"; - license = lib.licenses.mit; - } - ) { }; - - wuss_2_0_2_5 = callPackage ( { mkDerivation, base, @@ -728337,7 +726945,6 @@ self: { ]; description = "Secure WebSocket (WSS) clients"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -728810,6 +727417,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "(Forked) Library for reducing the boilerplate involved with sum types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -729287,8 +727896,8 @@ self: { }: mkDerivation { pname = "xcffib"; - version = "1.9.0"; - sha256 = "11zy9lj2dka27s72d86lqdabpr4ij0yls6q33g2pqih6rhaqziya"; + version = "1.10.0"; + sha256 = "1pz36rx9shsq16amni0d9xzwvvzhbf2ysm8xzgvgx9irmz4imxv0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -730409,9 +729018,7 @@ self: { ]; description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xls2csv"; - broken = true; } ) { }; @@ -730782,8 +729389,8 @@ self: { }: mkDerivation { pname = "xml-conduit"; - version = "1.9.1.4"; - sha256 = "0kfz8ddn1l20q41623dxjlmqjyn1i5pzj5a33pipml5z201hv6q4"; + version = "1.10.0.1"; + sha256 = "09nwn4yv2z8hv7shfpmv9avpxci21kk0dgbslgaymml0jny0la31"; setupHaskellDepends = [ base Cabal @@ -730825,75 +729432,6 @@ self: { } ) { }; - xml-conduit_1_10_0_0 = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-html, - blaze-markup, - bytestring, - Cabal, - cabal-doctest, - conduit, - conduit-extra, - containers, - data-default, - deepseq, - doctest, - hspec, - HUnit, - resourcet, - text, - transformers, - xml-types, - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.10.0.0"; - sha256 = "14nyw6slc6yzbg0gjwji94zn7sh3ymg9fnx6q8m9zr407v6d16rz"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - attoparsec - base - blaze-html - blaze-markup - bytestring - conduit - conduit-extra - containers - data-default - deepseq - resourcet - text - transformers - xml-types - ]; - testHaskellDepends = [ - base - blaze-markup - bytestring - conduit - conduit-extra - containers - doctest - hspec - HUnit - resourcet - text - transformers - xml-types - ]; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - xml-conduit-decode = callPackage ( { mkDerivation, @@ -731124,6 +729662,8 @@ self: { ]; description = "Warm and fuzzy creation of XML documents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -731506,8 +730046,8 @@ self: { pname = "xml-lens"; version = "0.3.1"; sha256 = "0i6c4xqacinhxnyszzna7s9x79rrcs1c7jq6zimcwh4302l5d6cm"; - revision = "4"; - editedCabalFile = "1zicqdzvca53rg2ai14nkyq1f46w6kz6bd4mjmqzx778xn17d22f"; + revision = "5"; + editedCabalFile = "0w06wfjpd427sxlasacxg8lwbqrp7xnl0vs8v9s86c2c0i70hzrj"; libraryHaskellDepends = [ base case-insensitive @@ -731989,6 +730529,8 @@ self: { ]; description = "Parse XML from bytes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -732201,6 +730743,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Utilities for dealing with Content-values of \"xml-types\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -734451,10 +732995,8 @@ self: { mkDerivation, base, bytestring, - deepseq, digest, hashable, - murmur-hash, QuickCheck, tasty, tasty-bench, @@ -734464,10 +733006,8 @@ self: { }: mkDerivation { pname = "xxhash-ffi"; - version = "0.3"; - sha256 = "0cqayny8g0lbafysbyzw43jnf3mijx6smlpzwsfdv3xc3wk42v4r"; - revision = "1"; - editedCabalFile = "07mc7rllnf3hgnqnywzmjpafmrpr4jdbvj4iwifz72n5c2marr1z"; + version = "0.3.1"; + sha256 = "1vdlx1dn1zx2rwpzhv8wgnc988fwbxzgvzxn2zgd78iibr97slm5"; libraryHaskellDepends = [ base bytestring @@ -734487,16 +733027,12 @@ self: { benchmarkHaskellDepends = [ base bytestring - deepseq digest hashable - murmur-hash tasty-bench ]; description = "Bindings and high-level helpers for xxHash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { inherit (pkgs) xxHash; }; @@ -734534,6 +733070,8 @@ self: { ]; description = "LZMA/XZ compression and decompression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { inherit (pkgs) xz; }; @@ -736210,80 +734748,6 @@ self: { ) { }; yaml-unscrambler = callPackage ( - { - mkDerivation, - acc, - attoparsec, - attoparsec-data, - attoparsec-time, - base, - base64-bytestring, - bytestring, - conduit, - containers, - foldl, - hashable, - libyaml, - mtl, - neat-interpolation, - quickcheck-instances, - rerebase, - scientific, - selective, - tasty, - tasty-hunit, - text, - text-builder-dev, - time, - transformers, - unordered-containers, - uuid, - vector, - yaml, - }: - mkDerivation { - pname = "yaml-unscrambler"; - version = "0.1.0.19"; - sha256 = "092778zd41i5zb5jhj2p2vfiib74zw05p6vqmlp3s2ziawj9s79g"; - libraryHaskellDepends = [ - acc - attoparsec - attoparsec-data - attoparsec-time - base - base64-bytestring - bytestring - conduit - containers - foldl - hashable - libyaml - mtl - scientific - selective - text - text-builder-dev - time - transformers - unordered-containers - uuid - vector - yaml - ]; - testHaskellDepends = [ - foldl - neat-interpolation - quickcheck-instances - rerebase - tasty - tasty-hunit - ]; - description = "Flexible declarative YAML parsing toolkit"; - license = lib.licenses.mit; - } - ) { }; - - yaml-unscrambler_0_1_0_20 = callPackage ( { mkDerivation, acc, @@ -736354,7 +734818,6 @@ self: { ]; description = "Flexible declarative YAML parsing toolkit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -736477,6 +734940,56 @@ self: { } ) { }; + yamlscript = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + base, + bytestring, + hspec, + text, + unix, + vector, + ys, + }: + mkDerivation { + pname = "yamlscript"; + version = "0.2.3.0"; + sha256 = "09ccfdmhpi0ycsmrxnjcr4rgz4b13sgw76ys6979syfqjqmznr5b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + bytestring + text + unix + ]; + librarySystemDepends = [ ys ]; + executableHaskellDepends = [ + aeson + aeson-pretty + base + bytestring + text + ]; + testHaskellDepends = [ + aeson + base + hspec + text + unix + vector + ]; + description = "Haskell bindings for YAMLScript"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "yamlscript-test"; + broken = true; + } + ) { ys = null; }; + yampa-canvas = callPackage ( { mkDerivation, @@ -736501,6 +735014,8 @@ self: { ]; description = "blank-canvas frontend for Yampa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -736776,16 +735291,47 @@ self: { { mkDerivation, base }: mkDerivation { pname = "yap"; - version = "0.2"; - sha256 = "14lq549jhgnf51pgy1jv31ik8qx71yl7d53w8dpq1f9mlsn1g16i"; - revision = "1"; - editedCabalFile = "04q5xgnqy67klf0rzmap454gq4kwy0ly7a9ggfywg1ad15dxwb5v"; + version = "0.3.0"; + sha256 = "1p6a2yrmairvyhxhxx0vsvvdhh4z2f5kdm6svfih4bf79q1bxgv2"; libraryHaskellDepends = [ base ]; description = "yet another prelude - a simplistic refactoring with algebraic classes"; license = lib.licenses.bsd3; } ) { }; + yap-examples = callPackage ( + { + mkDerivation, + base, + Cabal, + containers, + QuickCheck, + test-framework, + test-framework-quickcheck2, + yap, + }: + mkDerivation { + pname = "yap-examples"; + version = "0.1"; + sha256 = "1gcci4pr7qidib8qb7hm0ryb6dl04g42brjhj18865wc8fpamicm"; + libraryHaskellDepends = [ + base + containers + yap + ]; + testHaskellDepends = [ + base + Cabal + QuickCheck + test-framework + test-framework-quickcheck2 + yap + ]; + description = "examples of the algebraic classes in the yap package"; + license = lib.licenses.bsd3; + } + ) { }; + yapb = callPackage ( { mkDerivation, @@ -738671,6 +737217,8 @@ self: { ]; description = "Authentication plugin for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -739768,10 +738316,8 @@ self: { }: mkDerivation { pname = "yesod-core"; - version = "1.6.27.0"; - sha256 = "104phivlhpb2b48cmvsj99x358z82xja9xz8i0mlhna40dcpx6cp"; - revision = "1"; - editedCabalFile = "1g96f40avs9cj2lsfbisa1bc53hdd4bmjicaj20xrvscngn4df62"; + version = "1.6.27.1"; + sha256 = "0v5pq8ks93b4rrxwl088izl8hrfalkbf3ssgxgqgjsl4x1r5n0kz"; libraryHaskellDepends = [ aeson attoparsec-aeson @@ -739950,6 +738496,7 @@ self: { base, case-insensitive, hspec, + mime, mono-traversable, network-uri, semigroups, @@ -739963,12 +738510,13 @@ self: { }: mkDerivation { pname = "yesod-csp"; - version = "0.2.6.0"; - sha256 = "01wnb1lmxkkl2yw696lkhy8361xsdlsiwwr436h9jlcvwhm3dyv0"; + version = "0.2.7.0"; + sha256 = "0862yma4yyxgwyvlh4c142l6fm2gjdh00p21vxzfkmf5d0bddjc1"; libraryHaskellDepends = [ attoparsec base case-insensitive + mime mono-traversable network-uri semigroups @@ -739983,6 +738531,7 @@ self: { attoparsec base hspec + mime network-uri semigroups template-haskell @@ -739991,6 +738540,8 @@ self: { ]; description = "Add CSP headers to Yesod apps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -741126,6 +739677,8 @@ self: { ]; description = "Simple display of media types, served by yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -742955,8 +741508,8 @@ self: { }: mkDerivation { pname = "yesod-test"; - version = "1.6.16"; - sha256 = "12kvr7z81sfla7kc32iw9qsfhxps1mhairmwayi9x0vg6mxf7vs1"; + version = "1.6.19"; + sha256 = "0snq06yps28lkxfc1mhsvbv2kq0h0mi16zjdfrahm4zaz8axkqka"; libraryHaskellDepends = [ aeson attoparsec @@ -745345,6 +743898,7 @@ self: { ]; description = "Auth module for Yu"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -745518,6 +744072,8 @@ self: { ]; description = "Utils for Yu"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -747495,92 +746051,6 @@ self: { ) { }; zip = callPackage ( - { - mkDerivation, - base, - bytestring, - bzlib-conduit, - case-insensitive, - cereal, - conduit, - conduit-extra, - conduit-zstd, - containers, - digest, - directory, - dlist, - exceptions, - filepath, - hspec, - monad-control, - mtl, - QuickCheck, - resourcet, - temporary, - text, - time, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "zip"; - version = "2.1.0"; - sha256 = "1rbrayns2q34b0cp9b6zl3k600lbgck1c214rmvmywkhmms07slm"; - revision = "3"; - editedCabalFile = "0pnj6ganama1b3q7rc50apw8xk73dxs4j66c382hryljnd1wvnf5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bzlib-conduit - case-insensitive - cereal - conduit - conduit-extra - conduit-zstd - containers - digest - directory - dlist - exceptions - filepath - monad-control - mtl - resourcet - text - time - transformers - transformers-base - unix - ]; - executableHaskellDepends = [ - base - filepath - ]; - testHaskellDepends = [ - base - bytestring - conduit - containers - directory - dlist - filepath - hspec - QuickCheck - temporary - text - time - ]; - description = "Operations on zip archives"; - license = lib.licenses.bsd3; - mainProgram = "haskell-zip-app"; - maintainers = [ lib.maintainers.mpscholten ]; - } - ) { }; - - zip_2_2_1 = callPackage ( { mkDerivation, base, @@ -747659,7 +746129,6 @@ self: { ]; description = "Operations on zip archives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-zip-app"; maintainers = [ lib.maintainers.mpscholten ]; } @@ -748164,10 +746633,8 @@ self: { }: mkDerivation { pname = "zlib"; - version = "0.7.1.0"; - sha256 = "1g2md8z0ijcbrqlx9q9i49myi2lnlvzmma1ajmsd5y0xp2v3ipbf"; - revision = "2"; - editedCabalFile = "01m2afpizlscn65v12vmcmmycs66a14xb8nsgrm5145lq1slmrl5"; + version = "0.7.1.1"; + sha256 = "1hf1csbc5gb6yipqydkqydlyr5yalpxrb8fyml0fhjwjxl0sp5dz"; libraryHaskellDepends = [ base bytestring diff --git a/pkgs/development/haskell-modules/patches/cabal-install-3.14.1.1-lift-unix-bound.patch b/pkgs/development/haskell-modules/patches/cabal-install-3.14.1.1-lift-unix-bound.patch deleted file mode 100644 index ff9f1f427fac..000000000000 --- a/pkgs/development/haskell-modules/patches/cabal-install-3.14.1.1-lift-unix-bound.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/cabal-install.cabal -+++ b/cabal-install.cabal -@@ -261,7 +261,7 @@ - -- newer directory for symlinks - build-depends: Win32 >= 2.8 && < 3, directory >=1.3.1.0 - else -- build-depends: unix >= 2.5 && < 2.8 || >= 2.8.6.0 && < 2.9 -+ build-depends: unix >= 2.5 && < 2.9 - - if flag(lukko) - build-depends: lukko >= 0.1 && <0.2 diff --git a/pkgs/development/haskell-modules/patches/cabal-install-3.16-lift-unix-bound.patch b/pkgs/development/haskell-modules/patches/cabal-install-3.16-lift-unix-bound.patch new file mode 100644 index 000000000000..b4d7c553baff --- /dev/null +++ b/pkgs/development/haskell-modules/patches/cabal-install-3.16-lift-unix-bound.patch @@ -0,0 +1,11 @@ +--- a/cabal-install.cabal ++++ b/cabal-install.cabal +@@ -275,7 +275,7 @@ + , directory >=1.3.1.0 + else + build-depends: +- , unix >= 2.5 && < 2.8 || >= 2.8.6.0 && < 2.9 ++ , unix >= 2.5 && < 2.9 + + if flag(lukko) + build-depends: diff --git a/pkgs/development/haskell-modules/patches/darcs-cabal-3.12.patch b/pkgs/development/haskell-modules/patches/darcs-cabal-3.12.patch new file mode 100644 index 000000000000..2ad9dfba1d97 --- /dev/null +++ b/pkgs/development/haskell-modules/patches/darcs-cabal-3.12.patch @@ -0,0 +1,24 @@ +diff -rN -u old-darcs.net/darcs.cabal new-darcs.net/darcs.cabal +--- old-darcs.net/darcs.cabal 2025-09-13 02:45:32.790227974 +0200 ++++ new-darcs.net/darcs.cabal 2025-09-13 02:45:32.791227985 +0200 +@@ -124,7 +124,7 @@ + + custom-setup + setup-depends: base >= 4.10 && < 4.20, +- Cabal >= 2.4 && < 3.11, ++ Cabal >= 2.4 && < 3.13, + process >= 1.2.3.0 && < 1.7, + filepath >= 1.4.1 && < 1.5.0.0, + directory >= 1.2.7 && < 1.4 +diff -rN -u old-darcs.net/Setup.hs new-darcs.net/Setup.hs +--- old-darcs.net/Setup.hs 2025-09-13 02:45:32.789227964 +0200 ++++ new-darcs.net/Setup.hs 2025-09-13 02:45:32.790227974 +0200 +@@ -8,7 +8,7 @@ + import Distribution.Package ( packageVersion ) + import Distribution.Version( Version ) + import Distribution.Simple.LocalBuildInfo +- ( LocalBuildInfo(..), absoluteInstallDirs ) ++ ( LocalBuildInfo(..), absoluteInstallDirs, buildDir ) + import Distribution.Simple.InstallDirs (mandir, CopyDest (NoCopyDest)) + import Distribution.Simple.Setup + (buildVerbosity, copyDest, copyVerbosity, fromFlag, diff --git a/pkgs/development/haskell-modules/patches/darcs-stackage-lts-23.patch b/pkgs/development/haskell-modules/patches/darcs-stackage-lts-23.patch new file mode 100644 index 000000000000..613582cdeb3d --- /dev/null +++ b/pkgs/development/haskell-modules/patches/darcs-stackage-lts-23.patch @@ -0,0 +1,32 @@ +diff -rN -u old-darcs.net/darcs.cabal new-darcs.net/darcs.cabal +--- old-darcs.net/darcs.cabal 2025-09-13 02:46:05.662572580 +0200 ++++ new-darcs.net/darcs.cabal 2025-09-13 02:46:05.748573468 +0200 +@@ -123,7 +123,7 @@ + -- ---------------------------------------------------------------------- + + custom-setup +- setup-depends: base >= 4.10 && < 4.20, ++ setup-depends: base >= 4.10 && < 4.21, + Cabal >= 2.4 && < 3.13, + process >= 1.2.3.0 && < 1.7, + filepath >= 1.4.1 && < 1.5.0.0, +@@ -412,7 +412,7 @@ + else + build-depends: unix >= 2.7.1.0 && < 2.9 + +- build-depends: base >= 4.10 && < 4.20, ++ build-depends: base >= 4.10 && < 4.21, + safe >= 0.3.20 && < 0.4, + stm >= 2.1 && < 2.6, + binary >= 0.5 && < 0.11, +@@ -447,7 +447,7 @@ + temporary >= 1.2.1 && < 1.4, + process >= 1.2.3.0 && < 1.7, + array >= 0.5.1.0 && < 0.6, +- hashable >= 1.2.3.3 && < 1.5, ++ hashable >= 1.2.3.3 && < 1.6, + mmap >= 0.5.9 && < 0.6, + zlib >= 0.6.1.2 && < 0.8, + network-uri >= 2.6 && < 2.8, + + diff --git a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-agent.nix b/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-agent.nix deleted file mode 100644 index 17bd33cc1358..000000000000 --- a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-agent.nix +++ /dev/null @@ -1,255 +0,0 @@ -{ - mkDerivation, - aeson, - async, - attoparsec, - base, - base64-bytestring, - bifunctors, - binary, - binary-conduit, - boost, - bytestring, - Cabal, - cabal-pkg-config-version-hook, - cachix, - cachix-api, - conduit, - conduit-extra, - containers, - directory, - dlist, - exceptions, - file-embed, - filepath, - hercules-ci-api, - hercules-ci-api-agent, - hercules-ci-api-core, - hercules-ci-cnix-expr, - hercules-ci-cnix-store, - hostname, - hspec, - hspec-discover, - http-client, - http-client-tls, - http-conduit, - HUnit, - inline-c, - inline-c-cpp, - katip, - lens, - lens-aeson, - lib, - lifted-async, - lifted-base, - monad-control, - mtl, - network, - network-uri, - nix, - optparse-applicative, - process, - process-extras, - profunctors, - protolude, - QuickCheck, - safe-exceptions, - scientific, - servant, - servant-auth-client, - servant-client, - servant-client-core, - stm, - tagged, - temporary, - text, - time, - tls, - tomland, - transformers, - transformers-base, - unbounded-delays, - unix, - unliftio, - unliftio-core, - unordered-containers, - uuid, - vector, - websockets, - wuss, -}: -mkDerivation { - pname = "hercules-ci-agent"; - version = "0.10.6"; - sha256 = "5551c8eda390b48da6801f8f8580dc770e6e2fa2adf467ea7afd174748816fd6"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-pkg-config-version-hook - ]; - libraryHaskellDepends = [ - aeson - async - base - binary - binary-conduit - bytestring - conduit - containers - directory - dlist - exceptions - file-embed - filepath - hercules-ci-api-agent - hercules-ci-api-core - hercules-ci-cnix-expr - hercules-ci-cnix-store - katip - lens - lens-aeson - lifted-async - lifted-base - monad-control - mtl - network - network-uri - process - process-extras - protolude - safe-exceptions - stm - tagged - temporary - text - time - tls - transformers - transformers-base - unbounded-delays - unix - unliftio - unliftio-core - uuid - vector - websockets - wuss - ]; - executableHaskellDepends = [ - aeson - async - attoparsec - base - base64-bytestring - bifunctors - binary - binary-conduit - bytestring - cachix - cachix-api - conduit - conduit-extra - containers - directory - dlist - exceptions - filepath - hercules-ci-api - hercules-ci-api-agent - hercules-ci-api-core - hercules-ci-cnix-expr - hercules-ci-cnix-store - hostname - http-client - http-client-tls - http-conduit - inline-c - inline-c-cpp - katip - lens - lens-aeson - lifted-async - lifted-base - monad-control - mtl - network - network-uri - optparse-applicative - process - process-extras - profunctors - protolude - safe-exceptions - scientific - servant - servant-auth-client - servant-client - servant-client-core - stm - temporary - text - time - tomland - transformers - transformers-base - unix - unliftio - unliftio-core - unordered-containers - uuid - vector - websockets - wuss - ]; - executableSystemDepends = [ boost ]; - executablePkgconfigDepends = [ nix ]; - testHaskellDepends = [ - aeson - async - attoparsec - base - bifunctors - binary - binary-conduit - bytestring - conduit - containers - exceptions - filepath - hercules-ci-api-agent - hercules-ci-api-core - hercules-ci-cnix-store - hspec - HUnit - katip - lens - lens-aeson - lifted-async - lifted-base - monad-control - mtl - process - profunctors - protolude - QuickCheck - safe-exceptions - scientific - stm - tagged - temporary - text - tomland - transformers - transformers-base - unliftio-core - unordered-containers - uuid - vector - ]; - testToolDepends = [ hspec-discover ]; - homepage = "https://docs.hercules-ci.com"; - description = "Runs Continuous Integration tasks on your machines"; - license = lib.licenses.asl20; -} diff --git a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-expr.nix b/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-expr.nix deleted file mode 100644 index 5a652312b469..000000000000 --- a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-expr.nix +++ /dev/null @@ -1,82 +0,0 @@ -{ - mkDerivation, - aeson, - base, - boost, - bytestring, - Cabal, - cabal-pkg-config-version-hook, - conduit, - containers, - directory, - exceptions, - filepath, - hercules-ci-cnix-store, - hspec, - hspec-discover, - inline-c, - inline-c-cpp, - lib, - nix, - process, - protolude, - QuickCheck, - scientific, - temporary, - text, - unliftio, - unordered-containers, - vector, -}: -mkDerivation { - pname = "hercules-ci-cnix-expr"; - version = "0.4.0.0"; - sha256 = "ba6dadda0a14e456780df018a610209ef288ed6562ad5843cb8d19d38fc026ed"; - setupHaskellDepends = [ - base - Cabal - cabal-pkg-config-version-hook - ]; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - containers - directory - exceptions - filepath - hercules-ci-cnix-store - inline-c - inline-c-cpp - protolude - scientific - text - unliftio - unordered-containers - vector - ]; - librarySystemDepends = [ boost ]; - libraryPkgconfigDepends = [ nix ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - filepath - hercules-ci-cnix-store - hspec - process - protolude - QuickCheck - scientific - temporary - text - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - homepage = "https://docs.hercules-ci.com"; - description = "Bindings for the Nix evaluator"; - license = lib.licenses.asl20; -} diff --git a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-store.nix b/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-store.nix deleted file mode 100644 index fc535cd23911..000000000000 --- a/pkgs/development/haskell-modules/replacements-by-name/hercules-ci-cnix-store.nix +++ /dev/null @@ -1,65 +0,0 @@ -{ - mkDerivation, - base, - boost, - bytestring, - Cabal, - cabal-pkg-config-version-hook, - conduit, - containers, - exceptions, - hspec, - hspec-discover, - inline-c, - inline-c-cpp, - lib, - nix, - protolude, - template-haskell, - temporary, - text, - unix, - unliftio-core, - vector, -}: -mkDerivation { - pname = "hercules-ci-cnix-store"; - version = "0.3.7.0"; - sha256 = "6feba2a6e1a267bc69b67962ed6eaa3510b1ae31c411fdb4e6670763d175d3b1"; - setupHaskellDepends = [ - base - Cabal - cabal-pkg-config-version-hook - ]; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - inline-c - inline-c-cpp - protolude - template-haskell - unix - unliftio-core - vector - ]; - librarySystemDepends = [ boost ]; - libraryPkgconfigDepends = [ nix ]; - testHaskellDepends = [ - base - bytestring - containers - exceptions - hspec - inline-c - inline-c-cpp - protolude - temporary - text - ]; - testToolDepends = [ hspec-discover ]; - homepage = "https://docs.hercules-ci.com"; - description = "Haskell bindings for Nix's libstore"; - license = lib.licenses.asl20; -} diff --git a/pkgs/development/misc/haskell/changelog-d/default.nix b/pkgs/development/misc/haskell/changelog-d/default.nix index fa788feac419..06a5e7960980 100644 --- a/pkgs/development/misc/haskell/changelog-d/default.nix +++ b/pkgs/development/misc/haskell/changelog-d/default.nix @@ -19,13 +19,13 @@ }: mkDerivation rec { pname = "changelog-d"; - version = "1.0.1"; + version = "1.0.2"; src = fetchFromGitea { domain = "codeberg.org"; owner = "fgaz"; repo = "changelog-d"; rev = "v${version}"; - hash = "sha256-4TbZD4pXP/5q+t3rTcdCsY5APWIcxhCMM+WsNO/6ke4="; + hash = "sha256-nPvuAkcFfK/NKXNBv8D2ePnB88WnjvmAIbzQHVvEXtk="; }; isLibrary = false; isExecutable = true; diff --git a/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix b/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix index 83fab0673a24..7d54778603ea 100644 --- a/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix +++ b/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix @@ -1,7 +1,7 @@ { mkDerivation, base, - fetchFromGitHub, + fetchgit, lib, prettyprinter, prettyprinter-ansi-terminal, @@ -9,16 +9,15 @@ QuickCheck, text, transformers, - transformers-compat, }: mkDerivation { pname = "hercules-ci-optparse-applicative"; - version = "0.18.1.0"; - src = fetchFromGitHub { - owner = "hercules-ci"; - repo = "optparse-applicative"; - sha256 = "1cgxc80zfgzk4rrhspnlj7790jb0ddq7ybj7qjan5xmjjir90763"; - rev = "a123939663ba1cd0f1750343f1c6b9864ac21207"; + version = "0.19.0.0"; + src = fetchgit { + url = "https://github.com/hercules-ci/optparse-applicative.git"; + sha256 = "068rsq9j0afrywbcqf6vg4ivfxbb68ab7f0lvg1na81mfn7sfakk"; + rev = "b55bb38a2aea0cf776aec707cdce7c7418146077"; + fetchSubmodules = true; }; libraryHaskellDepends = [ base @@ -27,7 +26,6 @@ mkDerivation { process text transformers - transformers-compat ]; testHaskellDepends = [ base @@ -36,5 +34,5 @@ mkDerivation { homepage = "https://github.com/hercules-ci/optparse-applicative"; description = "Utilities and combinators for parsing command line options (fork)"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ roberth ]; + maintainers = [ lib.maintainers.roberth ]; } diff --git a/pkgs/development/tools/haskell/hadrian/hadrian.nix b/pkgs/development/tools/haskell/hadrian/hadrian.nix index 17c5a3466e15..62b1a91f6c9b 100644 --- a/pkgs/development/tools/haskell/hadrian/hadrian.nix +++ b/pkgs/development/tools/haskell/hadrian/hadrian.nix @@ -1,4 +1,4 @@ -# See also ./make-hadria.nix +# See also ./make-hadrian.nix { mkDerivation, base, @@ -24,6 +24,8 @@ # GHC source tree to build hadrian from ghcSrc, ghcVersion, + # GHC we are using to bootstrap hadrian (stage0) + bootGhcVersion, # Customization userSettings ? null, }: @@ -48,12 +50,19 @@ mkDerivation { "-O0" ]; jailbreak = - # Ignore lower bound on directory. Upstream uses this to avoid a race condition + # Ignore bound directory >= 1.3.9.0, unless the bootstrapping GHC ships it + # which is the case for >= 9.12. Upstream uses this to avoid a race condition # that only seems to affect Windows. We never build GHC natively on Windows. - # https://gitlab.haskell.org/ghc/ghc/-/issues/24382 - # https://gitlab.haskell.org/ghc/ghc/-/commit/a2c033cf82635c83f3107706634bebee43297b99 - (lib.versionAtLeast ghcVersion "9.6.7" && lib.versionOlder ghcVersion "9.7") - || (lib.versionAtLeast ghcVersion "9.12" && lib.versionOlder ghcVersion "9.15"); + # See also https://gitlab.haskell.org/ghc/ghc/-/issues/24382, + # https://gitlab.haskell.org/ghc/ghc/-/commit/a2c033cf826, + # https://gitlab.haskell.org/ghc/ghc/-/commit/7890f2d8526… + ( + lib.versionOlder bootGhcVersion "9.12" + && ( + (lib.versionAtLeast ghcVersion "9.6.7" && lib.versionOlder ghcVersion "9.7") + || lib.versionAtLeast ghcVersion "9.11" + ) + ); isLibrary = false; isExecutable = true; executableHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/hadrian/make-hadrian.nix b/pkgs/development/tools/haskell/hadrian/make-hadrian.nix index d2463865c199..2d86c96c82b9 100644 --- a/pkgs/development/tools/haskell/hadrian/make-hadrian.nix +++ b/pkgs/development/tools/haskell/hadrian/make-hadrian.nix @@ -55,6 +55,8 @@ in callPackage' ./hadrian.nix ( { inherit userSettings; + # Taking `ghc` as an input may be too confusing + bootGhcVersion = bootPkgs.ghc.version; } // lib.optionalAttrs (lib.versionAtLeast ghcVersion "9.9") { # Starting with GHC 9.9 development, additional in tree packages are required diff --git a/pkgs/development/tools/purescript/spago/update.sh b/pkgs/development/tools/purescript/spago/update.sh index b97b0fe94a9c..e25b1b8670b2 100755 --- a/pkgs/development/tools/purescript/spago/update.sh +++ b/pkgs/development/tools/purescript/spago/update.sh @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p cabal2nix curl jq haskellPackages.cabal2nix-unstable -I nixpkgs=. +#!nix-shell -i bash -p curl jq haskellPackages.cabal2nix-unstable.bin nix-prefetch-scripts -I nixpkgs=. # # This script will update the spago derivation to the latest version using # cabal2nix. diff --git a/pkgs/test/haskell/shellFor/default.nix b/pkgs/test/haskell/shellFor/default.nix index e91649233c91..c6dda7e16962 100644 --- a/pkgs/test/haskell/shellFor/default.nix +++ b/pkgs/test/haskell/shellFor/default.nix @@ -1,6 +1,7 @@ { lib, writeText, + srcOnly, haskellPackages, cabal-install, }: @@ -20,9 +21,9 @@ sourceRoot=$(pwd)/scratch mkdir -p "$sourceRoot" cd "$sourceRoot" - tar -xf ${haskellPackages.constraints.src} - tar -xf ${haskellPackages.cereal.src} - cp ${writeText "cabal.project" "packages: constraints* cereal*"} cabal.project + cp -r "${srcOnly haskellPackages.constraints}" constraints + cp -r "${srcOnly haskellPackages.cereal}" cereal + cp ${writeText "cabal.project" "packages: constraints cereal"} cabal.project ''; buildPhase = '' export HOME=$(mktemp -d) diff --git a/pkgs/tools/graphics/diagrams-builder/default.nix b/pkgs/tools/graphics/diagrams-builder/default.nix index 290059b1c114..85a540fc3251 100644 --- a/pkgs/tools/graphics/diagrams-builder/default.nix +++ b/pkgs/tools/graphics/diagrams-builder/default.nix @@ -1,11 +1,11 @@ /* - If user need access to more haskell package for building his - diagrams, he simply has to pass these package through the - extra packages function as follow in `config.nix`: + If a user needs access to more haskell packages for building their + diagrams, they simply have to pass these packages through the + extraPackages function, as follows: ~~~ diagrams-builder.override { - extraPackages = self : [myHaskellPackage]; + extraPackages = self: [ self.myHaskellPackage ]; } ­~~~ */ @@ -25,27 +25,37 @@ let wrappedGhc = ghcWithPackages (self: [ diagrams-builder ] ++ extraPackages self); ghc = lib.getExe' wrappedGhc "ghc"; - exeWrapper = backend: '' - makeWrapper \ - "${diagrams-builder}/bin/diagrams-builder-${backend}" "$out/bin/diagrams-builder-${backend}" \ - --set NIX_GHC ${ghc} \ - --set NIX_GHC_LIBDIR "$(${ghc} --print-libdir)" - ''; + exeWrapper = + backend: + let + exe = "${diagrams-builder}/bin/diagrams-builder-${backend}"; + in + '' + test ! -x "${exe}" || \ + makeWrapper "${exe}" \ + "$out/bin/diagrams-builder-${backend}" \ + --set NIX_GHC ${ghc} \ + --set NIX_GHC_LIBDIR "$(${ghc} --print-libdir)" + ''; - backends = [ + # Needs to match executable, suffix, not flag name + allBackends = [ "svg" - "cairo" "ps" + "cairo" + "rasterific" + "pgf" ]; in stdenv.mkDerivation { - name = "diagrams-builder"; + pname = "diagrams-builder"; + inherit (diagrams-builder) version; nativeBuildInputs = [ makeWrapper ]; - buildCommand = lib.concatStringsSep "\n" (map exeWrapper backends); + buildCommand = lib.concatStringsSep "\n" (map exeWrapper allBackends); # Will be faster to build the wrapper locally then to fetch it from a binary cache. preferLocalBuild = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3488e822626f..b49f38f23c25 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5082,24 +5082,18 @@ with pkgs; haskell = recurseIntoAttrs (callPackage ./haskell-packages.nix { }); - haskellPackages = - recurseIntoAttrs - # Prefer native-bignum to avoid linking issues with gmp - # GHC 9.6 rts can't be built statically with hadrian, so we need to use 9.4 - # until 9.8 is ready - ( - if stdenv.hostPlatform.isStatic then - haskell.packages.native-bignum.ghc94 - # JS backend can't use gmp - else if stdenv.hostPlatform.isGhcjs then - haskell.packages.native-bignum.ghc98 - # ICEs horribly on i686, see https://gitlab.haskell.org/ghc/ghc/-/issues/25904 - # FIXME: remove when fixed - else if stdenv.hostPlatform.isi686 then - haskell.packages.ghc96 - else - haskell.packages.ghc98 - ); + haskellPackages = recurseIntoAttrs ( + # Prefer native-bignum to avoid linking issues with gmp; + # TemplateHaskell doesn't work with hadrian built GHCs yet + # https://github.com/NixOS/nixpkgs/issues/275304 + if stdenv.hostPlatform.isStatic then + haskell.packages.native-bignum.ghc94 + # JS backend can't use gmp + else if stdenv.hostPlatform.isGhcjs then + haskell.packages.native-bignum.ghc910 + else + haskell.packages.ghc910 + ); # haskellPackages.ghc is build->host (it exposes the compiler used to build the # set, similarly to stdenv.cc), but pkgs.ghc should be host->target to be more @@ -5110,21 +5104,17 @@ with pkgs; # however, targetPackages won't be populated, so we need to fall back to the # plain, cross-compiled compiler (which is only theoretical at the moment). ghc = - targetPackages.haskellPackages.ghc or - # Prefer native-bignum to avoid linking issues with gmp - # Use 9.4 for static over broken 9.6 - ( + targetPackages.haskellPackages.ghc or ( + # Prefer native-bignum to avoid linking issues with gmp; + # TemplateHaskell doesn't work with hadrian built GHCs yet + # https://github.com/NixOS/nixpkgs/issues/275304 if stdenv.targetPlatform.isStatic then haskell.compiler.native-bignum.ghc94 # JS backend can't use GMP else if stdenv.targetPlatform.isGhcjs then - haskell.compiler.native-bignum.ghc98 - # ICEs horribly on i686, see https://gitlab.haskell.org/ghc/ghc/-/issues/25904 - # FIXME: remove when fixed - else if stdenv.hostPlatform.isi686 then - haskell.compiler.ghc96 + haskell.compiler.native-bignum.ghc910 else - haskell.compiler.ghc98 + haskell.compiler.ghc910 ); alex = haskell.lib.compose.justStaticExecutables haskellPackages.alex; @@ -14953,7 +14943,7 @@ with pkgs; nix-delegate = haskell.lib.compose.justStaticExecutables haskellPackages.nix-delegate; nix-deploy = haskell.lib.compose.justStaticExecutables haskellPackages.nix-deploy; - nix-derivation = haskell.lib.compose.justStaticExecutables haskellPackages.nix-derivation; + nix-derivation = haskellPackages.nix-derivation.bin; nix-diff = haskell.lib.compose.justStaticExecutables haskellPackages.nix-diff; nix-info = callPackage ../tools/nix/info { }; diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index b3d4a7150010..a905eefbb019 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -316,7 +316,7 @@ in ghcHEAD = callPackage ../development/haskell-modules { buildHaskellPackages = bh.packages.ghcHEAD; ghc = bh.compiler.ghcHEAD; - compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.14.x.nix { }; + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.16.x.nix { }; }; native-bignum = diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index b87f4a210af9..cf213d36cb0e 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -68,6 +68,7 @@ let ghc984 ghc9101 ghc9102 + ghc9103 # exclude ghc9121 due to severe miscompilation bug ghc9122 ]; @@ -349,8 +350,7 @@ let uusi uqm uuagc - # vaultenv: broken by connection on 2024-03-16 - wstunnel + vaultenv xmobar xmonadctl xmonad-with-packages @@ -431,8 +431,8 @@ let ; }; - haskell.packages.native-bignum.ghc984 = { - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc984) + haskell.packages.native-bignum.ghc9103 = { + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc9103) hello random QuickCheck @@ -477,14 +477,6 @@ let ; }; - haskell.packages.ghc98 = { - inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghc98) - ghc - hello - microlens - ; - }; - haskell.packages.ghc912 = { inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghc912) ghc @@ -554,6 +546,7 @@ let ] released; Cabal_3_12_1_0 = released; Cabal_3_14_2_0 = released; + Cabal_3_16_0_0 = released; cabal2nix = released; cabal2nix-unstable = released; funcmp = released; @@ -561,12 +554,14 @@ let # for 9.10, test that using filepath (instead of filepath-bytestring) works. compilerNames.ghc9101 compilerNames.ghc9102 + compilerNames.ghc9103 ]; haskell-language-server = released; hoogle = released; hlint = lib.subtractLists [ compilerNames.ghc9101 compilerNames.ghc9102 + compilerNames.ghc9103 compilerNames.ghc9122 ] released; hpack = released; @@ -594,6 +589,7 @@ let weeder = lib.subtractLists [ compilerNames.ghc9101 compilerNames.ghc9102 + compilerNames.ghc9103 compilerNames.ghc9122 ] released; }) @@ -674,7 +670,7 @@ let constituents = accumulateDerivations [ jobs.pkgsStatic.haskell.packages.native-bignum.ghc948 # non-hadrian jobs.pkgsStatic.haskellPackages - jobs.pkgsStatic.haskell.packages.native-bignum.ghc984 + jobs.pkgsStatic.haskell.packages.native-bignum.ghc9103 ]; }; }