From 899629ba4897bf84872ee8fa737eee37f1e22278 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Sat, 14 Mar 2020 17:41:34 +0900 Subject: [PATCH 01/14] secp256k1-haskell: unbreak via override This library simply needs libsecp256k1 in its pkgconfig-depends. --- .../development/haskell-modules/configuration-hackage2nix.yaml | 1 - pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 3c6845705336..e0350c7a2e40 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -9072,7 +9072,6 @@ broken-packages: - seclib - second-transfer - secp256k1 - - secp256k1-haskell - secp256k1-legacy - secret-santa - secret-sharing diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 5824ce2f5e6d..ff1c01aa8e87 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -498,6 +498,9 @@ self: super: builtins.intersectAttrs super { # requires autotools to build secp256k1 = addBuildTools super.secp256k1 [ pkgs.buildPackages.autoconf pkgs.buildPackages.automake pkgs.buildPackages.libtool ]; + # requires libsecp256k1 in pkgconfig-depends + secp256k1-haskell = addPkgconfigDepend super.secp256k1-haskell pkgs.secp256k1; + # tests require git and zsh hapistrano = addBuildTools super.hapistrano [ pkgs.buildPackages.git pkgs.buildPackages.zsh ]; From 6d071e74596af84e4fba29c83650a34bae467b44 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Sat, 14 Mar 2020 18:03:53 +0900 Subject: [PATCH 02/14] haskoin-core: remove from broken packages list e1408eb661 unbreaks secp256k1-haskell, which was the cause of this package's failure to build. --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index e0350c7a2e40..d03c6ae19f9c 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -5602,7 +5602,6 @@ broken-packages: - haskmon - haskoin - haskoin-bitcoind - - haskoin-core - haskoin-crypto - haskoin-node - haskoin-protocol From 8c4479e3dd766ca74d5ac8756ea1cf6e8712ea65 Mon Sep 17 00:00:00 2001 From: Robert Kreuzer Date: Thu, 6 Feb 2020 09:17:22 +0100 Subject: [PATCH 03/14] maintainers: add rkrzr --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ea498f582595..64c71d96702c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -6219,6 +6219,12 @@ githubId = 2507744; name = "Roland Koebler"; }; + rkrzr = { + email = "ops+nixpkgs@channable.com"; + github = "rkrzr"; + githubId = 82817; + name = "Robert Kreuzer"; + }; rlupton20 = { email = "richard.lupton@gmail.com"; github = "rlupton20"; From 8aee4f4eeb0d9eba68428953bf8a9607e5579e42 Mon Sep 17 00:00:00 2001 From: Robert Kreuzer Date: Sun, 16 Feb 2020 16:24:52 +0100 Subject: [PATCH 04/14] icepeak: init at 0.7.2 --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b78ce32b1090..4b1d39324010 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4175,6 +4175,8 @@ in icecast = callPackage ../servers/icecast { }; + icepeak = haskellPackages.icepeak; + iceshelf = callPackage ../tools/backup/iceshelf { }; darkice = callPackage ../tools/audio/darkice { }; From 9b931dc86a593f8757b1716e1285699ff4853f18 Mon Sep 17 00:00:00 2001 From: Robert Kreuzer Date: Thu, 5 Mar 2020 18:36:02 +0100 Subject: [PATCH 05/14] icepeak: use haskell.lib.justStaticExecutables Also, add myself to the maintainers section for Haskell modules coming from Hackage. --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 ++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index d03c6ae19f9c..14408cfe2c6c 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -2476,6 +2476,8 @@ package-maintainers: - purescript - spago - termonad + rkrzr: + - icepeak unsupported-platforms: alsa-mixer: [ x86_64-darwin ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4b1d39324010..901313d8e632 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4175,7 +4175,7 @@ in icecast = callPackage ../servers/icecast { }; - icepeak = haskellPackages.icepeak; + icepeak = haskell.lib.justStaticExecutables haskellPackages.icepeak; iceshelf = callPackage ../tools/backup/iceshelf { }; From 920fdc012af2922fc91ed853a6cfd653b98dd266 Mon Sep 17 00:00:00 2001 From: Robert Kreuzer Date: Sun, 15 Mar 2020 21:03:14 +0100 Subject: [PATCH 06/14] Mark icepeak and sqlite-simple as non-broken --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 14408cfe2c6c..12c242def968 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -6417,7 +6417,6 @@ broken-packages: - iban - ical - iCalendar - - icepeak - IcoGrid - iconv-typed - ide-backend @@ -9537,7 +9536,6 @@ broken-packages: - sql-simple-sqlite - sqlcipher - sqlite - - sqlite-simple - sqlite-simple-errors - sqlite-simple-typed - sqlvalue-list From bf42ec029750398052b6a8f14d51b72c76531a9e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 18 Mar 2020 13:40:58 +0100 Subject: [PATCH 07/14] LTS Haskell 15.4 --- .../configuration-hackage2nix.yaml | 39 +++++++++---------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 12c242def968..36ab6dd6e110 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -76,7 +76,7 @@ default-package-overrides: # gi-gdkx11-4.x requires gtk-4.x, which is still under development and # not yet available in Nixpkgs - gi-gdkx11 < 4 - # LTS Haskell 15.3 + # LTS Haskell 15.4 - abstract-deque ==0.3 - abstract-par ==0.3.3 - AC-Angle ==1.0 @@ -786,7 +786,6 @@ default-package-overrides: - function-builder ==0.3.0.1 - functor-classes-compat ==1 - fused-effects ==1.0.2.0 - - fusion-plugin ==0.1.1 - fusion-plugin-types ==0.1.0 - fuzzcheck ==0.1.1 - fuzzy ==0.1.0.0 @@ -835,12 +834,12 @@ default-package-overrides: - ghc-compact ==0.1.0.0 - ghc-core ==0.5.6 - ghc-exactprint ==0.6.2 - - ghcid ==0.8.1 + - ghcid ==0.8.3 - ghci-hexcalc ==0.1.1.0 - ghcjs-codemirror ==0.0.0.2 - ghc-lib ==8.8.3.20200224 - ghc-lib-parser ==8.8.3.20200224 - - ghc-lib-parser-ex ==8.8.5.3 + - ghc-lib-parser-ex ==8.8.5.6 - ghc-paths ==0.1.0.12 - ghc-prof ==1.4.1.6 - ghc-source-gen ==0.3.0.0 @@ -848,7 +847,7 @@ default-package-overrides: - ghc-tcplugins-extra ==0.4 - ghc-typelits-extra ==0.3.3 - ghc-typelits-knownnat ==0.7.2 - - ghc-typelits-natnormalise ==0.7.1 + - ghc-typelits-natnormalise ==0.7.2 - ghc-typelits-presburger ==0.3.0.0 - ghost-buster ==0.1.1.0 - gi-atk ==2.0.21 @@ -935,6 +934,7 @@ default-package-overrides: - HaXml ==1.25.5 - haxr ==3000.11.4 - hdaemonize ==0.5.6 + - headroom ==0.1.2.0 - heap ==1.0.4 - heaps ==0.3.6.1 - heart-core ==0.1.1 @@ -1038,14 +1038,14 @@ default-package-overrides: - http2 ==2.0.3 - HTTP ==4000.3.14 - http-api-data ==0.4.1.1 - - http-client ==0.6.4 + - http-client ==0.6.4.1 - http-client-openssl ==0.3.0.0 - http-client-overrides ==0.1.1.0 - http-client-tls ==0.3.5.3 - http-common ==0.8.2.0 - http-conduit ==2.3.7.3 - http-date ==0.0.8 - - http-directory ==0.1.7 + - http-directory ==0.1.8 - http-download ==0.1.0.1 - httpd-shed ==0.4.1.1 - http-link-header ==1.0.3.1 @@ -1060,7 +1060,7 @@ default-package-overrides: - hvect ==0.4.0.0 - hvega ==0.5.0.0 - hw-balancedparens ==0.3.0.5 - - hw-bits ==0.7.1.2 + - hw-bits ==0.7.1.5 - hw-conduit ==0.2.0.6 - hw-conduit-merges ==0.2.0.0 - hw-diagnostics ==0.0.0.7 @@ -1101,7 +1101,6 @@ default-package-overrides: - hybrid-vectors ==0.2.2 - hyperloglog ==0.4.3 - hyphenation ==0.8 - - hyraxAbif ==0.2.3.21 - iconv ==0.4.1.3 - identicon ==0.2.2 - ieee754 ==0.8.0 @@ -1113,7 +1112,7 @@ default-package-overrides: - Imlib ==0.1.2 - immortal ==0.3 - include-file ==0.1.0.4 - - incremental-parser ==0.4 + - incremental-parser ==0.4.0.1 - indents ==0.5.0.1 - indexed ==0.1.3 - indexed-list-literals ==0.2.1.2 @@ -1403,7 +1402,7 @@ default-package-overrides: - mysql-simple ==0.4.5 - n2o ==0.11.1 - nagios-check ==0.3.2 - - names-th ==0.3.0.0 + - names-th ==0.3.0.1 - nano-erl ==0.1.0.1 - nanospec ==0.2.2 - nats ==1.1.2 @@ -1421,7 +1420,7 @@ default-package-overrides: - nettle ==0.3.0 - netwire ==5.0.3 - netwire-input ==0.0.7 - - netwire-input-glfw ==0.0.10 + - netwire-input-glfw ==0.0.11 - network ==3.1.1.1 - network-bsd ==2.8.1.0 - network-byte-order ==0.1.4.0 @@ -1845,7 +1844,7 @@ default-package-overrides: - servant-swagger-ui-redoc ==0.3.3.1.22.3 - servant-websockets ==2.0.0 - servant-yaml ==0.1.0.1 - - serverless-haskell ==0.10.1 + - serverless-haskell ==0.10.2 - serversession ==1.0.1 - serversession-frontend-wai ==1.0 - ses-html ==0.4.0.0 @@ -1914,15 +1913,15 @@ default-package-overrides: - special-values ==0.1.0.0 - speculate ==0.4.1 - speedy-slice ==0.3.0 - - Spintax ==0.3.3 + - Spintax ==0.3.4 - splice ==0.6.1.1 - split ==0.2.3.4 - splitmix ==0.0.4 - spoon ==0.3.1 - spreadsheet ==0.1.3.8 - - sql-words ==0.1.6.3 + - sql-words ==0.1.6.4 - srcloc ==0.5.1.2 - - stache ==2.1.0 + - stache ==2.1.1 - stack-templatizer ==0.1.0.2 - starter ==0.3.0 - stateref ==0.3 @@ -2081,7 +2080,7 @@ default-package-overrides: - thyme ==0.3.5.5 - tidal ==1.4.8 - tile ==0.3.0.0 - - time-compat ==1.9.2.2 + - time-compat ==1.9.3 - timeit ==2.0 - timelens ==0.2.0.2 - time-lens ==0.4.0.2 @@ -2126,7 +2125,7 @@ default-package-overrides: - tuples-homogenous-h98 ==0.1.1.0 - tuple-sop ==0.3.1.0 - tuple-th ==0.2.5 - - turtle ==1.5.16 + - turtle ==1.5.17 - TypeCompose ==0.9.14 - typed-process ==0.2.6.0 - typed-uuid ==0.0.0.2 @@ -2239,7 +2238,7 @@ default-package-overrides: - wai-app-static ==3.1.7.1 - wai-conduit ==3.0.0.4 - wai-cors ==0.2.7 - - wai-enforce-https ==0.0.2 + - wai-enforce-https ==0.0.2.1 - wai-eventsource ==3.0.0 - wai-extra ==3.0.29.1 - wai-handler-launch ==3.0.3.1 @@ -2319,7 +2318,7 @@ default-package-overrides: - xss-sanitize ==0.3.6 - xturtle ==0.2.0.0 - xxhash-ffi ==0.2.0.0 - - yaml ==0.11.2.0 + - yaml ==0.11.3.0 - yesod ==1.6.0.1 - yesod-auth ==1.6.9 - yesod-auth-hashdb ==1.7.1.2 From 11bc4ee7484f3355d8a272ee55ae4452dd7ed42d Mon Sep 17 00:00:00 2001 From: Samuel Evans-Powell Date: Thu, 19 Mar 2020 08:52:41 +0800 Subject: [PATCH 08/14] tasty-tap: fix failing build - tasty-tap's tests were failing. In https://github.com/NixOS/nixpkgs/pull/71017 a patch generated from a PR was applied to fix this. - That PR has now been merged into tasty-tap and was released with version 0.1.0. - tasty-tap is now at version 0.1.0 in nixpkgs and so the patch fails to apply, breaking the build. - Removed the patch and removed tasty-tap from list of broken packages. --- pkgs/development/haskell-modules/configuration-common.nix | 7 ------- .../haskell-modules/configuration-hackage2nix.yaml | 1 - 2 files changed, 8 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 90819d64c339..1dae1dab133d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1254,13 +1254,6 @@ self: super: { # https://github.com/bitnomial/prometheus/issues/34 prometheus = doJailbreak super.prometheus; - # Tasty-tap tests are out-of-date with TAP format - # https://github.com/MichaelXavier/tasty-tap/issues/2 - tasty-tap = appendPatch super.tasty-tap (pkgs.fetchpatch { - url = https://patch-diff.githubusercontent.com/raw/MichaelXavier/tasty-tap/pull/3.diff; - sha256 = "0l8zbc56dy8ilxl3k49aiknmfhgpcg3jhs72lh3dk51d0a09d9sv"; - }); - # The doctests in universum-1.5.0 are broken. The doctests in versions of universum after # 1.5.0 should be fixed, so this should be able to be removed. universum = dontCheck super.universum; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 36ab6dd6e110..f9d52a63741a 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -9834,7 +9834,6 @@ broken-packages: - tasty-laws - tasty-lens - tasty-stats - - tasty-tap - tateti-tateti - Taxonomy - TaxonomyTools From 049816b538b0cb7a4061fe58c3fb815fbc8133cc Mon Sep 17 00:00:00 2001 From: Samuel Evans-Powell Date: Thu, 19 Mar 2020 09:00:50 +0800 Subject: [PATCH 09/14] Remove "ekg-core" and "ekg-prometheus-adapter" from broken pkgs - "ekg-core" and "ekg-prometheus-adapter" are no longer broken. Removed them from broken packages list. --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index f9d52a63741a..68a23cac475c 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -4409,13 +4409,11 @@ broken-packages: - ekg-bosun - ekg-carbon - ekg-cloudwatch - - ekg-core - ekg-elastic - ekg-elasticsearch - ekg-influxdb - ekg-json - ekg-log - - ekg-prometheus-adapter - ekg-push - ekg-rrd - ekg-statsd From effc9fa337788cb467a98547fe274930a16b3c57 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 20 Mar 2020 20:06:57 +0100 Subject: [PATCH 10/14] hackage2nix: update list of broken packages Ping @cdepillabout because purescript is broken. Ping @kiwi because matterhorn is broken. Ping @roberth because arion-compose is broken. Ping @psibi because persistent-postgresql is broken. --- .../configuration-hackage2nix.yaml | 58 +++++++++++++++++-- 1 file changed, 53 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 68a23cac475c..f0717b3514f6 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -2457,22 +2457,17 @@ package-maintainers: - streaming-wai kiwi: # - glirc - - matterhorn - Unique psibi: - path-pieces - persistent - - persistent-postgresql - persistent-sqlite - persistent-template - shakespeare abbradar: - Agda - roberth: - - arion-compose cdepillabout: - pretty-simple - - purescript - spago - termonad rkrzr: @@ -2743,6 +2738,7 @@ broken-packages: - alex-prelude - alfred - alga + - algebra-checkers - algebra-dag - algebra-sql - algebraic @@ -2848,6 +2844,7 @@ broken-packages: - arbor-monad-metric - arbor-monad-metric-datadog - arbtt + - archive-libarchive - archive-tar-bytestring - archiver - archlinux @@ -2863,6 +2860,7 @@ broken-packages: - arguedit - ariadne - arion + - arion-compose - armada - armor - arpa @@ -2922,6 +2920,7 @@ broken-packages: - atomic-primops-vector - atomo - atp-haskell + - ats-pkg - ats-setup - ats-storable - attempt @@ -2970,15 +2969,26 @@ broken-packages: - awesomium-raw - aws-configuration-tools - aws-dynamodb-conduit + - aws-dynamodb-streams + - aws-easy + - aws-ec2 - aws-ec2-knownhosts - aws-elastic-transcoder + - aws-general + - aws-kinesis - aws-kinesis-client - aws-kinesis-reshard + - aws-lambda + - aws-lambda-haskell-runtime - aws-mfa-credentials - aws-performance-tests + - aws-route53 - aws-sdk + - aws-sdk-text-converter + - aws-sdk-xml-unordered - aws-sign4 - aws-simple + - aws-sns - axel - axiom - azubi @@ -3102,6 +3112,7 @@ broken-packages: - binary-tagged - binary-typed - bind-marshal + - BinderAnn - binding-core - binding-gtk - binding-wx @@ -3495,6 +3506,7 @@ broken-packages: - cgrep - chalkboard - chalkboard-viewer + - character-cases - charade - chart-cli - Chart-fltkhs @@ -3728,6 +3740,7 @@ broken-packages: - concurrent-buffer - Concurrent-Cache - concurrent-machines + - concurrent-resource-map - concurrent-state - concurrent-utilities - Concurrential @@ -3750,6 +3763,10 @@ broken-packages: - conduit-vfs-zip - conf - confcrypt + - conferer-hedis + - conferer-provider-dhall + - conferer-provider-yaml + - conferer-snap - confetti - conffmt - confide @@ -3852,6 +3869,7 @@ broken-packages: - cparsing - CPBrainfuck - cpio-conduit + - cpkg - CPL - cplusplus-th - cprng-aes-effect @@ -4151,6 +4169,7 @@ broken-packages: - dhall-nix - dhall-text - dhall-to-cabal + - dhall-yaml - dhcp-lease-parser - dhrun - dia-base @@ -4285,6 +4304,7 @@ broken-packages: - doublify-toolkit - dow - download-media-content + - downloader - dozenal - dozens - DP @@ -4909,6 +4929,7 @@ broken-packages: - funspection - fused-effects-squeal - fusion + - fusion-plugin - futun - future - fuzzy-time-gen @@ -5029,6 +5050,7 @@ broken-packages: - ghc-srcspan-plugin - ghc-syb - ghc-syb-utils + - ghc-tags-plugin - ghc-time-alloc-prof - ghc-usage - ghc-vis @@ -5642,11 +5664,13 @@ broken-packages: - hasql-generic - hasql-implicits - hasql-migration + - hasql-notifications - hasql-optparse-applicative - hasql-pool - hasql-postgres - hasql-postgres-options - hasql-simple + - hasql-th - hastache - hastache-aeson - haste @@ -5729,6 +5753,7 @@ broken-packages: - hdph-closure - hdr-histogram - HDRUtils + - headed-megaparsec - headergen - headroom - heapsort @@ -5923,6 +5948,9 @@ broken-packages: - HLearn-datastructures - HLearn-distributions - hledger-api + - hledger-chart + - hledger-irr + - hledger-vty - hlibBladeRF - hlibev - hlibfam @@ -6976,6 +7004,7 @@ broken-packages: - lhe - lhs2TeX-hl - lhslatex + - libarchive - LibClang - libconfig - libcspm @@ -7201,6 +7230,7 @@ broken-packages: - lzma-streams - maam - mac + - macaroon-shop - macbeth-lib - machinecell - machines-amazonka @@ -7291,6 +7321,9 @@ broken-packages: - matrix-as-xyz - matrix-market - matsuri + - matterhorn + - mattermost-api + - mattermost-api-qc - maude - maxent - maxent-learner-hw @@ -7882,7 +7915,9 @@ broken-packages: - oidc-client - ois-input-manager - olwrapper + - om-actor - om-elm + - om-fail - omaketex - ombra - Omega @@ -7919,7 +7954,9 @@ broken-packages: - opensoundcontrol-ht - openssh-github-keys - openssh-protocol + - opentelemetry-http-client - opentelemetry-lightstep + - opentelemetry-wai - opentheory-char - opentok - opentype @@ -8154,6 +8191,7 @@ broken-packages: - persistent-migration - persistent-mongoDB - persistent-mysql-haskell + - persistent-postgresql - persistent-protobuf - persistent-ratelimit - persistent-redis @@ -8496,6 +8534,7 @@ broken-packages: - pure-priority-queue - pure-priority-queue-tests - purebred-email + - purescript - purescript-iso - purescript-tsd-gen - push-notifications @@ -8842,6 +8881,7 @@ broken-packages: - rethinkdb-client-driver - rethinkdb-model - rethinkdb-wereHamster + - retrie - retryer - reverse-geocoding - reversi @@ -8871,6 +8911,7 @@ broken-packages: - ring-buffer - ring-buffers - riot + - risc-v - risc386 - riscv-isa - Ritt-Wu @@ -8927,6 +8968,7 @@ broken-packages: - rpc-framework - rpf - rpm + - rrule - rsagl - rsagl-frp - rsagl-math @@ -8958,6 +9000,7 @@ broken-packages: - safe-failure-cme - safe-freeze - safe-globals + - safe-json - safe-lazy-io - safe-length - safe-money-xmlbf @@ -9096,6 +9139,7 @@ broken-packages: - sendgrid-v3 - sensei - sensenet + - sensu-run - sentence-jp - sentry - seonbi @@ -9209,6 +9253,7 @@ broken-packages: - sha-streams - shade - shadower + - shake-bindist - shake-cabal-build - shake-extras - shake-minify @@ -9326,6 +9371,7 @@ broken-packages: - skews - skulk - skylark-client + - skylighting-lucid - skype4hs - slack - slack-notify-haskell @@ -10074,6 +10120,7 @@ broken-packages: - traced - tracetree - tracing + - tracked-files - tracker - trackit - traction @@ -10375,6 +10422,7 @@ broken-packages: - validate-input - validated-types - Validation + - validation-selective - validations - validationt - value-supply From 7ac3b76a9d8bdf1cf759c012c4e95d7875647b28 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 16 Mar 2020 02:30:49 +0100 Subject: [PATCH 11/14] hackage-packages.nix: automatic Haskell package set update This update was generated by hackage2nix v2.15.1 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/c8058db7cda6823f797ee1aaec97a656cfec1b9d. --- .../haskell-modules/hackage-packages.nix | 1797 ++++++++++------- 1 file changed, 1112 insertions(+), 685 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 2caf04f479a1..5d7e04c71354 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -794,26 +794,26 @@ self: { "Agda" = callPackage ({ mkDerivation, aeson, alex, array, async, base, binary , blaze-html, boxes, bytestring, Cabal, containers, data-hash - , deepseq, directory, EdisonCore, edit-distance, emacs, equivalence - , exceptions, filepath, geniplate-mirror, gitrev, happy, hashable + , deepseq, directory, edit-distance, emacs, equivalence, exceptions + , filepath, geniplate-mirror, ghc-compact, gitrev, happy, hashable , hashtables, haskeline, ieee754, mtl, murmur-hash, pretty, process , regex-tdfa, split, stm, strict, template-haskell, text, time - , unordered-containers, uri-encode, zlib + , transformers, unordered-containers, uri-encode, zlib }: mkDerivation { pname = "Agda"; - version = "2.6.0.1"; - sha256 = "1s600ry1qwizr3ynyj05rvlx7jdcw9a1viyc0ycjamm5sjf8mf3v"; + version = "2.6.1"; + sha256 = "0af1nyyscdc4gr4l0k3ayq3rn8qxqkx1b7rh4mw023gkz1m433v7"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; setupHaskellDepends = [ base Cabal directory filepath process ]; libraryHaskellDepends = [ aeson array async base binary blaze-html boxes bytestring - containers data-hash deepseq directory EdisonCore edit-distance - equivalence exceptions filepath geniplate-mirror gitrev hashable + containers data-hash deepseq directory edit-distance equivalence + exceptions filepath geniplate-mirror ghc-compact gitrev hashable hashtables haskeline ieee754 mtl murmur-hash pretty process - regex-tdfa split stm strict template-haskell text time + regex-tdfa split stm strict template-haskell text time transformers unordered-containers uri-encode zlib ]; libraryToolDepends = [ alex happy ]; @@ -1484,6 +1484,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "BinderAnn" = callPackage + ({ mkDerivation, base, containers, ghc, ghc-prim, mtl, split, syb + , transformers + }: + mkDerivation { + pname = "BinderAnn"; + version = "0.1.0.0"; + sha256 = "0fv5xrgqh7scbkzjisrh112zpggwl3rxfjzfqhx2rzdjgda3m41g"; + libraryHaskellDepends = [ + base containers ghc ghc-prim mtl split syb transformers + ]; + testHaskellDepends = [ + base containers ghc ghc-prim mtl split syb transformers + ]; + description = "Source-to-source plugin for enhancing EDSLs with static annotations"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "Binpack" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -8007,8 +8027,8 @@ self: { }: mkDerivation { pname = "HExcel"; - version = "0.1.0.0"; - sha256 = "1g761qaqijwsnwinhbk44m967myz7iz8qfz60vhh9fljv89afifg"; + version = "0.1.0.1"; + sha256 = "0pa33yh2sqslhdr94bi17kysmf0j3gqhplcxrcafgip2gab9j626"; libraryHaskellDepends = [ base microlens microlens-th time transformers ]; @@ -10753,8 +10773,8 @@ self: { }: mkDerivation { pname = "HsWebots"; - version = "0.1.1.2"; - sha256 = "02nm89dwm43yg5a99n9x72jf2y61rshqk6ka52s13qsg6d0bvhzv"; + version = "0.1.1.3"; + sha256 = "0ddbg63wfjwmrziaq0472iz7yhlcfsh2hrjqj02r1qavba35hzwa"; libraryHaskellDepends = [ base bytestring inline-c inline-c-cpp JuicyPixels safe-exceptions template-haskell vector @@ -18405,19 +18425,6 @@ self: { }) {}; "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, text }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "04vb07r26p4rxgsym5zhqsnyx4sr2a112sa31mdda5hjpy9j3pr1"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "Spintax_0_3_4" = callPackage ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, text }: mkDerivation { pname = "Spintax"; @@ -18428,7 +18435,6 @@ self: { ]; description = "Random text generation based on spintax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock" = callPackage @@ -23449,6 +23455,39 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson_1_4_7_0" = callPackage + ({ mkDerivation, attoparsec, base, base-compat + , base-compat-batteries, base-orphans, base16-bytestring + , bytestring, containers, deepseq, Diff, directory, dlist, filepath + , generic-deriving, ghc-prim, hashable, hashable-time + , integer-logarithms, primitive, QuickCheck, quickcheck-instances + , scientific, tagged, tasty, tasty-golden, tasty-hunit + , tasty-quickcheck, template-haskell, text, th-abstraction, time + , time-compat, unordered-containers, uuid-types, vector + }: + mkDerivation { + pname = "aeson"; + version = "1.4.7.0"; + sha256 = "15ykkxa636jnx1zcyq4yxgjz78m5fp315gg0llbjf44jk4fbhndh"; + libraryHaskellDepends = [ + attoparsec base base-compat-batteries bytestring containers deepseq + dlist ghc-prim hashable primitive scientific tagged + template-haskell text th-abstraction time time-compat + unordered-containers uuid-types vector + ]; + testHaskellDepends = [ + attoparsec base base-compat base-orphans base16-bytestring + bytestring containers Diff directory dlist filepath + generic-deriving ghc-prim hashable hashable-time integer-logarithms + QuickCheck quickcheck-instances scientific tagged tasty + tasty-golden tasty-hunit tasty-quickcheck template-haskell text + time time-compat unordered-containers uuid-types vector + ]; + description = "Fast JSON parsing and encoding"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-applicative" = callPackage ({ mkDerivation, aeson, base, text, unordered-containers }: mkDerivation { @@ -23874,8 +23913,8 @@ self: { }: mkDerivation { pname = "aeson-match-qq"; - version = "1.1.0"; - sha256 = "0qkj38b05klzwrgy0vyr9qnkllzz9v225b3d60f6mbx3q3nxdk9x"; + version = "1.2.0"; + sha256 = "000dna5xs5ybhr4vyla6ndj7ykk7lphg4dbcp7nn13746fnnggs2"; libraryHaskellDepends = [ aeson attoparsec base bytestring either haskell-src-meta scientific template-haskell text unordered-containers vector @@ -25142,6 +25181,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "algebra-checkers" = callPackage + ({ mkDerivation, ansi-terminal, base, checkers, containers, groups + , mtl, pretty, QuickCheck, syb, template-haskell + , th-instance-reification, transformers + }: + mkDerivation { + pname = "algebra-checkers"; + version = "0.1.0.0"; + sha256 = "0phrm0lncqbjqsyxhk3ifmzfb2q42v6g81qklh49n1y73naykg9v"; + libraryHaskellDepends = [ + ansi-terminal base checkers containers groups mtl pretty QuickCheck + syb template-haskell th-instance-reification transformers + ]; + description = "Model and test API surfaces algebraically"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "algebra-dag" = callPackage ({ mkDerivation, aeson, base, containers, fgl, mtl, parsec , template-haskell, transformers @@ -31071,14 +31129,16 @@ self: { }: mkDerivation { pname = "archive-libarchive"; - version = "0.2.2.1"; - sha256 = "1rwvz196m837h5vxm7aqlyzc07h2y2q0czgpn8kwx2gjngpnmmdn"; + version = "0.2.2.2"; + sha256 = "12a7rvzbywz5kh403q0q612z1f2arb74jgjx9qk1vdhiyasgwnkh"; libraryHaskellDepends = [ base bytestring composition-prelude libarchive ]; libraryToolDepends = [ cpphs ]; description = "Common interface using libarchive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "archive-sig" = callPackage @@ -31431,8 +31491,8 @@ self: { }: mkDerivation { pname = "arion-compose"; - version = "0.1.0.0"; - sha256 = "11jg7y6gcgsm7pidqnpxi4smd5dbm7fnqw79pcqx60z32b0b99iz"; + version = "0.1.1.0"; + sha256 = "0d90m39gir2371wgjkkmb7yrqr92zncjr6naz68r64a9mq38ga90"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -31450,7 +31510,8 @@ self: { ]; description = "Run docker-compose with help from Nix/NixOS"; license = stdenv.lib.licenses.asl20; - maintainers = with stdenv.lib.maintainers; [ roberth ]; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "arith-encode" = callPackage @@ -33415,6 +33476,8 @@ self: { doHaddock = false; description = "A build tool for ATS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "ats-setup" = callPackage @@ -34322,6 +34385,17 @@ self: { broken = true; }) {}; + "autopack" = callPackage + ({ mkDerivation, base, Cabal, dir-traverse, filepath }: + mkDerivation { + pname = "autopack"; + version = "0.0.0.0"; + sha256 = "1z1w6bvsfhnia2dxihcay6a9va2ik1bg805zkfb0vn4vcxn76dcc"; + libraryHaskellDepends = [ base Cabal dir-traverse filepath ]; + description = "Custom Setup to automate package modules discovery"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "autoproc" = callPackage ({ mkDerivation, base, directory, mtl, process, unix }: mkDerivation { @@ -34725,6 +34799,8 @@ self: { pname = "aws-cloudfront-signed-cookies"; version = "0.2.0.1"; sha256 = "1yk40n6gjs72pyi6yjwhqj0dngqc4b74rpg0ji61852nbb0snl28"; + revision = "3"; + editedCabalFile = "1v0bbyskwbawfhaji3s63hjrzwsi2bb7l8g6yxdp02bp6zb92757"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -34738,6 +34814,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "aws-cloudfront-signed-cookies_0_2_0_4" = callPackage + ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types + , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog + , lens, lens-aeson, neat-interpolation, optparse-applicative, pem + , text, time, unordered-containers, vector + }: + mkDerivation { + pname = "aws-cloudfront-signed-cookies"; + version = "0.2.0.4"; + sha256 = "0j40760k1ackwhsy279ir8jybnvis5m56i5hy3rppjybhjiyyd4v"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring + bytestring cookie cryptonite lens lens-aeson optparse-applicative + pem text time unordered-containers vector + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hedgehog neat-interpolation ]; + description = "Generate signed cookies for AWS CloudFront"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aws-cloudfront-signer" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, base, base64-bytestring , bytestring, crypto-pubkey-types, RSA, time @@ -34814,6 +34914,8 @@ self: { ]; description = "Haskell bindings for Amazon DynamoDB Streams"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-easy" = callPackage @@ -34837,6 +34939,8 @@ self: { ]; description = "Helper function and types for working with amazonka"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-ec2" = callPackage @@ -34866,6 +34970,8 @@ self: { ]; description = "AWS EC2/VPC, ELB and CloudWatch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-ec2-knownhosts" = callPackage @@ -34939,6 +35045,8 @@ self: { ]; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-kinesis" = callPackage @@ -34964,6 +35072,8 @@ self: { ]; description = "Bindings for Amazon Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-kinesis-client" = callPackage @@ -35049,6 +35159,8 @@ self: { ]; description = "Haskell bindings for AWS Lambda"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-lambda-haskell-runtime" = callPackage @@ -35067,6 +35179,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Haskell runtime for AWS Lambda"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-lambda-runtime" = callPackage @@ -35156,6 +35270,8 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-sdk" = callPackage @@ -35207,6 +35323,8 @@ self: { ]; description = "The text converter for aws-sdk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-sdk-xml-unordered" = callPackage @@ -35227,6 +35345,8 @@ self: { ]; description = "The xml parser for aws-sdk package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "aws-ses-easy" = callPackage @@ -35313,6 +35433,8 @@ self: { ]; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "axel" = callPackage @@ -36280,8 +36402,8 @@ self: { ({ mkDerivation, base, base-compat }: mkDerivation { pname = "base-compat-migrate"; - version = "0.1.1.0"; - sha256 = "1k7yjqqc9kd2a1dch33hs3xiyh868a83klx9iz69ix72khacggvk"; + version = "0.2.0.0"; + sha256 = "0xc9fjdv4bx5isw39l9aknvwvi46zpc4930wxvsx0v4qa8yhfpaa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base base-compat ]; @@ -43657,8 +43779,8 @@ self: { pname = "brittany"; version = "0.12.1.1"; sha256 = "0nw7ymdb7xam634w42l1xjgyvpla8grcg02aj19fscw2fn9gfh7z"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; + revision = "2"; + editedCabalFile = "0pfrm5vvh7x94f8gy8ka6rmq6yk6xxxgba68rd91bk8lbjxsmkxl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -44783,8 +44905,8 @@ self: { pname = "butcher"; version = "1.3.2.3"; sha256 = "0lpicayq9k59m2ydz989xsypr653xwhp6mmhlp7nmjzk6jwpq5q5"; - revision = "1"; - editedCabalFile = "06vy9018ia6sncgxdmv4ili2krkqn1b6r7xz4raa18kdvgnl100v"; + revision = "2"; + editedCabalFile = "1751sllw8s81x3s1dhilbr5lqnv9cpdqiv17c8by466aa6304dxa"; libraryHaskellDepends = [ base bifunctors containers deque extra free microlens microlens-th mtl multistate pretty transformers unsafe void @@ -44921,10 +45043,8 @@ self: { }: mkDerivation { pname = "byline"; - version = "0.3.2.1"; - sha256 = "196c75i7cz7yww3d5pi5p51wd5bf3a8v8nsb2vkiv25ndwrsb20w"; - revision = "1"; - editedCabalFile = "1bkrhwi851qq6jd3wcajypqi3aha66hsr0jq1h8wgqpgm6mg0abl"; + version = "0.4.0.0"; + sha256 = "1q8xb5b194ywm1sacxx47yhicww3m9hpffidgpj6l79fjqivgv09"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45062,6 +45182,8 @@ self: { pname = "bytes"; version = "0.17"; sha256 = "11gacfxcn9f3v5a1phlgi7mwwrnyh51sfsym573g6i4v2zqfrwi3"; + revision = "1"; + editedCabalFile = "0pa787mwyic7bhbxpcp2dh86vhdccbdiakxss2c084h8hd8c1g97"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base binary binary-orphans bytestring cereal containers hashable @@ -47033,8 +47155,8 @@ self: { }: mkDerivation { pname = "cabal2nix"; - version = "2.15.0"; - sha256 = "1xfskgmwr75f1lk8a6mllp2h62jdl7hkwb01r74gpi0n6h17p3nm"; + version = "2.15.1"; + sha256 = "1gdwri0x7kw96y0c6j9rdqa68arrxkpisq43ld58applxcvr1cs7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -48152,19 +48274,19 @@ self: { }) {}; "capability" = callPackage - ({ mkDerivation, base, containers, dlist, exceptions, generic-lens - , hspec, lens, monad-control, monad-unlift, mtl, mutable-containers - , primitive, safe-exceptions, silently, streaming, temporary, text - , transformers, unliftio, unliftio-core + ({ mkDerivation, base, constraints, containers, dlist, exceptions + , generic-lens, hspec, lens, monad-control, monad-unlift, mtl + , mutable-containers, primitive, safe-exceptions, silently + , streaming, temporary, text, transformers, unliftio, unliftio-core }: mkDerivation { pname = "capability"; - version = "0.2.0.0"; - sha256 = "0jssnbqrhkkfkjzya8qprk89r8vqzzy45sm9bwhw2rwx8mrbn40q"; + version = "0.3.0.0"; + sha256 = "1kha2y1x63af43psl708c0iib0ign4jrs2n4s2jl4a0pb7hlcdcz"; libraryHaskellDepends = [ - base dlist exceptions generic-lens lens monad-control monad-unlift - mtl mutable-containers primitive safe-exceptions streaming - transformers unliftio unliftio-core + base constraints dlist exceptions generic-lens lens monad-control + monad-unlift mtl mutable-containers primitive safe-exceptions + streaming transformers unliftio unliftio-core ]; testHaskellDepends = [ base containers hspec lens mtl silently streaming temporary text @@ -50468,6 +50590,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "character-cases" = callPackage + ({ mkDerivation, base, containers, doctest, Glob, here, megaparsec + , prettyprinter, template-haskell + }: + mkDerivation { + pname = "character-cases"; + version = "0.1.0.0"; + sha256 = "1383g5fwy11h43268609n9dmvp0wqwgycn9ly8c7g8h4qpyckh38"; + libraryHaskellDepends = [ + base containers here megaparsec prettyprinter template-haskell + ]; + testHaskellDepends = [ + base containers doctest Glob here megaparsec prettyprinter + template-haskell + ]; + description = "Exposes subspecies types of Char. And naming cases. e.g. meaning of [a-z], [A-Z], [0-9], PascalCase, camelCase, and sneak_case."; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "charade" = callPackage ({ mkDerivation, base, configurator, containers, filepath, heist , lens, mtl, QuickCheck, random, snap, snap-core, snap-extras @@ -50865,6 +51008,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "checkers_0_5_5" = callPackage + ({ mkDerivation, array, base, QuickCheck, random, semigroupoids }: + mkDerivation { + pname = "checkers"; + version = "0.5.5"; + sha256 = "1g16603803xzz73md1azlcpd6xz7gkwjpy66l638v6lvipdl9hr9"; + libraryHaskellDepends = [ + array base QuickCheck random semigroupoids + ]; + description = "Check properties on standard classes and data structures"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "checkmate" = callPackage ({ mkDerivation, base, bytestring, containers, diff-parse , directory, file-embed, filepath, github, hlint, hspec @@ -54415,8 +54572,8 @@ self: { }: mkDerivation { pname = "cobot-io"; - version = "0.1.2.7"; - sha256 = "0gf0amdlkzrar154vmqx952c5p7hbqm6qay47w7m0xb6p2qgvrv7"; + version = "0.1.2.8"; + sha256 = "1snq2ypf7blknhpv86xq1n7f6a9pifd77yylsirqj358j590c4i6"; libraryHaskellDepends = [ array attoparsec base binary bytestring containers data-msgpack deepseq http-conduit hyraxAbif lens linear mtl split text vector @@ -54671,27 +54828,25 @@ self: { }) {}; "codex" = callPackage - ({ mkDerivation, ascii-progress, base, bytestring, Cabal - , containers, cryptohash, directory, filepath, hackage-db - , http-client, lens, machines, machines-directory, network, process - , tar, text, transformers, wreq, yaml, zlib + ({ mkDerivation, ascii-progress, base, bytestring, Cabal, conduit + , containers, cryptonite, directory, filepath, hackage-db + , http-client, http-client-tls, memory, network, process, tar, text + , transformers, yaml, zlib }: mkDerivation { pname = "codex"; - version = "0.5.2.0"; - sha256 = "1bvz8pzh9qgb7ffnmihcain877igf1hm8rs4z9qx1gckz2c566vv"; - revision = "1"; - editedCabalFile = "0v0jlarip2689jxixymqzy36qywla76j78iqzyyc6s7hrd63mrlx"; + version = "0.6.0.0"; + sha256 = "1xak07a2sn2fafrng53n8yksf6z73wn2r8paqymmc4385shhmndc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ascii-progress base bytestring Cabal containers cryptohash - directory filepath hackage-db http-client lens machines - machines-directory process tar text transformers wreq yaml zlib + ascii-progress base bytestring Cabal conduit containers cryptonite + directory filepath hackage-db http-client memory process tar text + transformers yaml zlib ]; executableHaskellDepends = [ - ascii-progress base Cabal directory filepath hackage-db network - process transformers wreq yaml + ascii-progress base Cabal directory filepath hackage-db + http-client-tls network process transformers yaml ]; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -56654,8 +56809,8 @@ self: { pname = "compositional-data"; version = "0.1.0.1"; sha256 = "1pw7xqzin7v9xxjkm7xixf5d6r5jmgdgyvyhpsmn8bdqp8rrwgzj"; - revision = "1"; - editedCabalFile = "167j8vjxv8lf4h92dqag8wdz7k8sp2678s72afs0wig2sy4hm720"; + revision = "2"; + editedCabalFile = "1frk7dr9kqk5s4ngni3ygvi1g6g7wlnc6cqhrml3xyj1zj5c8chi"; libraryHaskellDepends = [ base bifunctor category transformers util ]; @@ -57310,12 +57465,14 @@ self: { ({ mkDerivation, base, containers, random, stm }: mkDerivation { pname = "concurrent-resource-map"; - version = "0.1.0.0"; - sha256 = "05zgjb2plrk35fiyskk07jfiydi4mlk6awbfjvhnsa3qi11pxdly"; - libraryHaskellDepends = [ base containers ]; - testHaskellDepends = [ base random stm ]; + version = "0.2.0.0"; + sha256 = "1m66x54rvw95gm63nh18w8jcny4r9ri19am870rbnlvb572zxsjz"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base containers random stm ]; description = "Concurrent resource map"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "concurrent-rpc" = callPackage @@ -57590,6 +57747,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit_1_3_2" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, directory + , exceptions, filepath, gauge, hspec, kan-extensions + , mono-traversable, mtl, mwc-random, primitive, QuickCheck + , resourcet, safe, silently, split, text, transformers, unix + , unliftio, unliftio-core, vector + }: + mkDerivation { + pname = "conduit"; + version = "1.3.2"; + sha256 = "0vmcyi3f280b6ll6pcyma4aqrl6m69n6y6x7wplxgsmxz5q7kng3"; + libraryHaskellDepends = [ + base bytestring directory exceptions filepath mono-traversable mtl + primitive resourcet text transformers unix unliftio-core vector + ]; + testHaskellDepends = [ + base bytestring containers directory exceptions filepath hspec + mono-traversable mtl QuickCheck resourcet safe silently split text + transformers unliftio vector + ]; + benchmarkHaskellDepends = [ + base containers deepseq gauge hspec kan-extensions mwc-random + transformers vector + ]; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conduit-algorithms" = callPackage ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit , conduit-combinators, conduit-extra, conduit-zstd, containers @@ -57805,6 +57991,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit-extra_1_3_5" = callPackage + ({ mkDerivation, async, attoparsec, base, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , gauge, hspec, network, primitive, process, QuickCheck, resourcet + , stm, streaming-commons, text, transformers, transformers-base + , typed-process, unliftio-core + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.3.5"; + sha256 = "1n8js1y1rdswvp0bkjmmz19fag19bdxgwsrqz93yc09w43p8sr4a"; + libraryHaskellDepends = [ + async attoparsec base bytestring conduit directory filepath network + primitive process resourcet stm streaming-commons text transformers + typed-process unliftio-core + ]; + testHaskellDepends = [ + async attoparsec base bytestring bytestring-builder conduit + directory exceptions filepath hspec process QuickCheck resourcet + stm streaming-commons text transformers transformers-base + ]; + benchmarkHaskellDepends = [ + base bytestring bytestring-builder conduit gauge transformers + ]; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conduit-find" = callPackage ({ mkDerivation, attoparsec, base, conduit, conduit-combinators , conduit-extra, directory, doctest, either, exceptions, filepath @@ -58167,6 +58382,8 @@ self: { testHaskellDepends = [ base conferer hedis hspec text ]; description = "conferer's FromConfig instances for hedis settings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "conferer-hspec" = callPackage @@ -58212,6 +58429,8 @@ self: { ]; description = "Configuration for reading dhall files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "conferer-provider-json" = callPackage @@ -58271,6 +58490,8 @@ self: { ]; description = "Configuration for reading yaml files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "conferer-snap" = callPackage @@ -58289,6 +58510,8 @@ self: { ]; description = "conferer's FromConfig instances for snap Config"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "conferer-warp" = callPackage @@ -60932,6 +61155,8 @@ self: { testHaskellDepends = [ base hspec hspec-megaparsec megaparsec ]; description = "Build tool for C"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "cplex-hs" = callPackage @@ -62467,6 +62692,17 @@ self: { broken = true; }) {}; + "crypto-token" = callPackage + ({ mkDerivation, array, base, cryptonite, memory }: + mkDerivation { + pname = "crypto-token"; + version = "0.0.0.0"; + sha256 = "1azvzzf4w6q76fbggw4f4inqibkvzy9chpdd01349rm8b0nyfh50"; + libraryHaskellDepends = [ array base cryptonite memory ]; + description = "crypto tokens"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "crypto-totp" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, cryptohash , tagged, unix @@ -69162,8 +69398,8 @@ self: { ({ mkDerivation, aeson, base, bytestring }: mkDerivation { pname = "deriving-aeson"; - version = "0.2"; - sha256 = "0d9f4xjczks79vrlw93q7jg32s3ygwl488v6ql8lr4rfvbxzik23"; + version = "0.2.2"; + sha256 = "0hv7c9fyfm9zynz5kha1ws0qsizkrcjnwy84lhyixxzlqh3rl16d"; libraryHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base bytestring ]; description = "Type driven generic aeson instance customisation"; @@ -69951,6 +70187,8 @@ self: { ]; description = "Convert between Dhall and YAML"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "dhcp-lease-parser" = callPackage @@ -70725,8 +70963,8 @@ self: { ({ mkDerivation, base, parsec, random-fu, transformers }: mkDerivation { pname = "dice"; - version = "0.1"; - sha256 = "1rfx3vh983f3gc6si661zimhjl47ip30l3pvf7dysjirr3gffgz1"; + version = "0.1.0.1"; + sha256 = "1jybckq3wf3vs0d92ji6a6mlgw64afhwdr6b0w2p1d97zp2fsdn3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base parsec random-fu transformers ]; @@ -71587,8 +71825,8 @@ self: { }: mkDerivation { pname = "dir-traverse"; - version = "0.2.2.2"; - sha256 = "0wckqnfmdmfgp7kkvjc2pzg9610xqfnam5myv9xcq04cr3h3dy8g"; + version = "0.2.2.3"; + sha256 = "1nn85mfjsg1w3c9bz4f3igkh1ss0927zaqcz5p9qhwsf8f4wqr3x"; libraryHaskellDepends = [ base directory filepath ]; benchmarkHaskellDepends = [ base criterion directory dirstream pipes pipes-safe system-filepath @@ -73173,6 +73411,28 @@ self: { broken = true; }) {}; + "dl-fedora_0_7_4" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath + , http-directory, http-types, optparse-applicative, regex-posix + , simple-cmd, simple-cmd-args, text, time, unix, xdg-userdirs + }: + mkDerivation { + pname = "dl-fedora"; + version = "0.7.4"; + sha256 = "092fmla7a0xbnfac6izcj08wsyxbd04n23cjy33c132lqhs5k6w5"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring directory filepath http-directory http-types + optparse-applicative regex-posix simple-cmd simple-cmd-args text + time unix xdg-userdirs + ]; + description = "Fedora image download tool"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "dlist" = callPackage ({ mkDerivation, base, Cabal, deepseq, QuickCheck }: mkDerivation { @@ -73475,8 +73735,8 @@ self: { }: mkDerivation { pname = "dobutokO2"; - version = "0.8.2.0"; - sha256 = "1czji489jj0f18shcx4likz8l46zwvq9vabrn1wv1lyh19nnk1k8"; + version = "0.15.1.0"; + sha256 = "1r2zwwcbkm07g1lrypdg3aj4qhyy3g7fds042i4l5abs045aqa2l"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -74497,6 +74757,8 @@ self: { ]; description = "A small, low-dependency library that provides turn-key file download over HTTP and HTTPS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "dozenal" = callPackage @@ -76480,8 +76742,8 @@ self: { }: mkDerivation { pname = "eccrypto"; - version = "0.2.0"; - sha256 = "1ng9lin5cavmcrp60lrnqxfkhb5drhlk9nzrl8d6gr1g7zfj75qm"; + version = "0.2.1"; + sha256 = "181c8avf0k8377n0z8qm3v7dnqg01z1gp5zwhcrk8khb3h4d4rp7"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base bytestring cryptohash-sha512 integer-gmp random @@ -76496,8 +76758,8 @@ self: { ({ mkDerivation, base, bytestring, eccrypto }: mkDerivation { pname = "eccrypto-ed25519-bindings"; - version = "0.1.0.0"; - sha256 = "1yi93a9x5sl3h50cky7l9df3077kwr3grp2iw9s5iykcwi6jdzg7"; + version = "0.1.1.0"; + sha256 = "1yzalib6a5h7k7bhc9kzr2lqhd928yva3j2mxynx3lmw26jc5r17"; libraryHaskellDepends = [ base bytestring eccrypto ]; description = "provides \"ed25519\" API using \"eccrypto\""; license = stdenv.lib.licenses.bsd3; @@ -77390,8 +77652,8 @@ self: { pname = "ekg"; version = "0.4.0.15"; sha256 = "1k3d5kiqm034qs04k0pcisf4zbdmx2fcgl9a6c1lzzjw96zf6aj8"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; + revision = "7"; + editedCabalFile = "1p6mq14si3bqgw4b1frdfj5cbqpz3p399q8wipk6z95yyg129f6i"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring ekg-core ekg-json filepath network snap-core @@ -77465,16 +77727,14 @@ self: { }: mkDerivation { pname = "ekg-core"; - version = "0.1.1.6"; - sha256 = "0hjprlx99k7mgs2zn06yckir71dvz90xs24g2r990r97mmwxva36"; + version = "0.1.1.7"; + sha256 = "04nv6iwzrb63fs97ixb0amj8p6zhabg3ggbrg4nbkq7xjhmkz0a5"; libraryHaskellDepends = [ base containers ghc-prim text unordered-containers ]; benchmarkHaskellDepends = [ base ]; description = "Tracking of system metrics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "ekg-elastic" = callPackage @@ -77539,8 +77799,8 @@ self: { pname = "ekg-json"; version = "0.1.0.6"; sha256 = "0iyx0ix4dcyhh9xg4ia1lm7x2q0iffswnr33khfg9fr81am80shy"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; + revision = "5"; + editedCabalFile = "0qc3fdycamm97lhhvwgvl8kvj169qrwr5ds4vkvyclpv0s90ijva"; libraryHaskellDepends = [ aeson base ekg-core text unordered-containers ]; @@ -77585,8 +77845,6 @@ self: { testHaskellDepends = [ base ]; description = "Easily expose your EKG metrics to Prometheus"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "ekg-push" = callPackage @@ -77638,8 +77896,8 @@ self: { pname = "ekg-statsd"; version = "0.2.4.0"; sha256 = "1nvsiblha1fzykvfaq1s0fyvfmhm32wvxdsfkn9pqd6dl5ivyx2y"; - revision = "3"; - editedCabalFile = "0va7fliya7g546f5qbc42bl7dyh74al38sspd2smjyl7a9d5mmlk"; + revision = "4"; + editedCabalFile = "0mrar804w2m57zg9bd0qkp4vbkzmgi46478v6z7qcz7qpd8vml9d"; libraryHaskellDepends = [ base bytestring ekg-core network text time unordered-containers ]; @@ -78159,19 +78417,19 @@ self: { }) {}; "elm-syntax" = callPackage - ({ mkDerivation, base, bound, deriving-compat, prettyprinter - , protolude, text, unordered-containers + ({ mkDerivation, base, bound, deriving-compat, hashable + , prettyprinter, text, unordered-containers }: mkDerivation { pname = "elm-syntax"; - version = "0.2.0.0"; - sha256 = "1fqfsk3xnvl8j49rarchabvw8lq8mflzyzawq5myi74w1gd6ril8"; + version = "0.3.0.0"; + sha256 = "0pv0ly51wpbfr11rng57pasn5sgq7xz986jy36n8qb03q6irvsn9"; libraryHaskellDepends = [ - base bound deriving-compat prettyprinter protolude text + base bound deriving-compat hashable prettyprinter text unordered-containers ]; testHaskellDepends = [ - base bound deriving-compat prettyprinter protolude text + base bound deriving-compat hashable prettyprinter text unordered-containers ]; description = "Elm syntax and pretty-printing"; @@ -81331,23 +81589,23 @@ self: { "eventstore" = callPackage ({ mkDerivation, aeson, array, async, base, bifunctors, bytestring , cereal, clock, connection, containers, dns, dotnet-timespan - , ekg-core, exceptions, fast-logger, file-embed, hashable - , http-client, interpolate, lifted-async, lifted-base - , monad-control, monad-logger, mono-traversable, mtl, protobuf - , random, safe, safe-exceptions, semigroups, stm, stm-chans - , streaming, tasty, tasty-hspec, tasty-hunit, text, time - , transformers-base, unordered-containers, uuid, vector + , exceptions, fast-logger, file-embed, hashable, http-client + , interpolate, lifted-async, lifted-base, monad-control + , monad-logger, mono-traversable, mtl, protobuf, random, safe + , safe-exceptions, semigroups, stm, stm-chans, streaming, tasty + , tasty-hspec, tasty-hunit, text, time, transformers-base + , unordered-containers, uuid, vector }: mkDerivation { pname = "eventstore"; - version = "1.3.3"; - sha256 = "0xf67ywg2f1wj75s82s2lsi2zgvk1xqhl09c4hnl45qzslkbl2xp"; + version = "1.4.0"; + sha256 = "0p7xfvdm4bjdp23f1ikfyq1gbylxav6b3wmbxhmscmzai396al12"; libraryHaskellDepends = [ aeson array base bifunctors bytestring cereal clock connection - containers dns dotnet-timespan ekg-core exceptions fast-logger - hashable http-client interpolate lifted-async lifted-base - monad-control monad-logger mono-traversable mtl protobuf random - safe safe-exceptions semigroups stm stm-chans streaming text time + containers dns dotnet-timespan exceptions fast-logger hashable + http-client interpolate lifted-async lifted-base monad-control + monad-logger mono-traversable mtl protobuf random safe + safe-exceptions semigroups stm stm-chans streaming text time transformers-base unordered-containers uuid vector ]; testHaskellDepends = [ @@ -82560,8 +82818,8 @@ self: { }: mkDerivation { pname = "extensible"; - version = "0.7.1"; - sha256 = "1vmn2ziv8qnw22pkfy1c80hym7cprv70xz0mqi5076glwdjkx3gr"; + version = "0.8"; + sha256 = "1p5mnzk4x6dk8gyr3n47wlndnqf8w7112whr872355zqyvcxlsq6"; libraryHaskellDepends = [ aeson base bytestring cassava comonad constraints deepseq ghc-prim hashable membership monad-skeleton prettyprinter primitive @@ -83268,8 +83526,8 @@ self: { }: mkDerivation { pname = "faktory"; - version = "1.0.1.0"; - sha256 = "0vkg1siaiq6dj1i0dnfdcdswr7fw4shn92wyfj8lxrj6krmfjrni"; + version = "1.0.1.1"; + sha256 = "1wz7f1ai73xc5n06db8mjbmbdyf5r9p78ysx3q1yiq32h2mvjd3m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -83992,7 +84250,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "fb_2_1_0" = callPackage + "fb_2_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit , conduit-extra, containers, cryptonite, data-default, hspec , http-client, http-conduit, http-types, HUnit, memory @@ -84001,8 +84259,8 @@ self: { }: mkDerivation { pname = "fb"; - version = "2.1.0"; - sha256 = "18h16dkyh35q0wyjvri7z2q2j8rx4bb6ma2bf6h2cdm7jh6zdakq"; + version = "2.1.1"; + sha256 = "0j2rckrv1aksfp2wyiyffqg40jl927vs97fk2lyzkscz673jd9s9"; libraryHaskellDepends = [ aeson attoparsec base bytestring conduit conduit-extra cryptonite data-default http-client http-conduit http-types memory @@ -85077,6 +85335,8 @@ self: { pname = "ffunctor"; version = "1.2.0"; sha256 = "0rq60a7ximvqdxqvijw1isd1d5gwqbjagmws91y0jvxlwmsgzf6w"; + revision = "1"; + editedCabalFile = "0biwzy37ig69s7l4x2cp0p71w3fn1azfd81vsj39fzn4kpcrpgld"; libraryHaskellDepends = [ base transformers ]; testHaskellDepends = [ aeson base exceptions generic-lens http-client mtl servant @@ -89341,6 +89601,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "free-categories_0_2_0_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "free-categories"; + version = "0.2.0.0"; + sha256 = "0932bvy2cgmancjy4invm9m16w27kawlfmd3zy9xi8sl9a62rp38"; + libraryHaskellDepends = [ base ]; + description = "free categories"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "free-category" = callPackage ({ mkDerivation, base, criterion, free-algebras, QuickCheck, tasty , tasty-quickcheck @@ -90132,8 +90404,8 @@ self: { }: mkDerivation { pname = "front"; - version = "0.0.0.3"; - sha256 = "0n2w3rcl20njqrxx9ws2jrw3yjrxhxzl6q916apyh07bricmmkw9"; + version = "0.0.0.5"; + sha256 = "0gn5lrh817r9ky8j4kzrqdlisiy85gr6v7nyd2sj1psa8syrjfzk"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -91399,17 +91671,6 @@ self: { }) {}; "fusion-plugin" = callPackage - ({ mkDerivation, base, ghc, syb }: - mkDerivation { - pname = "fusion-plugin"; - version = "0.1.1"; - sha256 = "15bjjsxck6682nva7mahss87rxlzw8j66hzkhji122swyvgd89a1"; - libraryHaskellDepends = [ base ghc syb ]; - description = "GHC plugin to make stream fusion more predictable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "fusion-plugin_0_2_0" = callPackage ({ mkDerivation, base, fusion-plugin-types, ghc, syb }: mkDerivation { pname = "fusion-plugin"; @@ -91419,6 +91680,7 @@ self: { description = "GHC plugin to make stream fusion more predictable"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "fusion-plugin-types" = callPackage @@ -91447,10 +91709,8 @@ self: { }: mkDerivation { pname = "futhark"; - version = "0.14.1"; - sha256 = "1bg0r9b0jg9j12lcc6wa684yjm58l020m9x5abpc54cghigywswj"; - revision = "1"; - editedCabalFile = "0iqg18jz8lgbh9iq1zgs8j9q5smzzi8w1asryz4dx8y6dl7n97p5"; + version = "0.15.1"; + sha256 = "181kgqbdqxcim16ld68wx09lr4gh0j9440lnn2lyzrzmn8a9567w"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -93625,6 +93885,21 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "genvalidity_0_10_0_2" = callPackage + ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random + , validity + }: + mkDerivation { + pname = "genvalidity"; + version = "0.10.0.2"; + sha256 = "1k6pba9zal7385838b9w9ybhk5742jwfy8bqa921zi08mv7vgqlp"; + libraryHaskellDepends = [ base QuickCheck random validity ]; + testHaskellDepends = [ base hspec hspec-core QuickCheck ]; + description = "Testing utilities for the validity library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "genvalidity-aeson" = callPackage ({ mkDerivation, aeson, base, genvalidity, genvalidity-hspec , genvalidity-scientific, genvalidity-text @@ -94966,8 +95241,8 @@ self: { }: mkDerivation { pname = "ghc-lib-parser-ex"; - version = "8.8.5.3"; - sha256 = "0svjfrsq7r1hvpjp0bk4jqq9z6gm441hsv5zb1yljw9p9b20kbk6"; + version = "8.8.5.6"; + sha256 = "0jwndkf7idpf09zrj4i4x1vsyfpm0vf85vlh00qp0z3avqcxsf2m"; libraryHaskellDepends = [ base bytestring containers extra ghc ghc-boot ghc-boot-th uniplate ]; @@ -94978,15 +95253,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-lib-parser-ex_8_8_5_5" = callPackage + "ghc-lib-parser-ex_8_8_5_8" = callPackage ({ mkDerivation, base, bytestring, containers, directory, extra , filepath, ghc, ghc-boot, ghc-boot-th, tasty, tasty-hunit , uniplate }: mkDerivation { pname = "ghc-lib-parser-ex"; - version = "8.8.5.5"; - sha256 = "15rp1829zzppz3y014cac1ssmklssn5hsfvadqrzkzmnky2yr215"; + version = "8.8.5.8"; + sha256 = "1mw1ym5bn39z7lqmxnhhkfqb0kbxddabkafw025wgs54knsghvmk"; libraryHaskellDepends = [ base bytestring containers extra ghc ghc-boot ghc-boot-th uniplate ]; @@ -95417,16 +95692,16 @@ self: { }) {}; "ghc-tags-plugin" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , directory, filepath, ghc, lattices, QuickCheck - , quickcheck-instances, tasty, tasty-golden, tasty-quickcheck, text + ({ mkDerivation, attoparsec, base, bytestring, directory, filelock + , filepath, ghc, lattices, QuickCheck, quickcheck-instances, tasty + , tasty-golden, tasty-quickcheck, text }: mkDerivation { pname = "ghc-tags-plugin"; - version = "0.1.4.0"; - sha256 = "0ci82krwqiprh23p316n1k09z6ja962xscnx9ycqpsyywbgkcqk4"; + version = "0.1.5.0"; + sha256 = "065i5xdf5i0xxj8q2aah2p9n30n65w0r60rfd49bih1iisfk0ljn"; libraryHaskellDepends = [ - attoparsec base bytestring containers directory filepath ghc text + attoparsec base bytestring directory filelock filepath ghc text ]; testHaskellDepends = [ attoparsec base bytestring lattices QuickCheck quickcheck-instances @@ -95435,6 +95710,8 @@ self: { doHaddock = false; description = "A compiler plugin which generates tags file from GHC syntax tree"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "ghc-tcplugins-extra" = callPackage @@ -95560,24 +95837,6 @@ self: { }) {}; "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra - , integer-gmp, syb, tasty, tasty-hunit, template-haskell - , transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.7.1"; - sha256 = "1sbwzbs3bnvyla44kcsxs6h12sdfqzbm6n0swy2scp5p271fr0i3"; - libraryHaskellDepends = [ - base containers ghc ghc-tcplugins-extra integer-gmp syb - transformers - ]; - testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - - "ghc-typelits-natnormalise_0_7_2" = callPackage ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra , integer-gmp, syb, tasty, tasty-hunit, template-haskell , transformers @@ -95593,7 +95852,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-typelits-presburger" = callPackage @@ -95837,8 +96095,8 @@ self: { }: mkDerivation { pname = "ghcid"; - version = "0.8.1"; - sha256 = "1k5yk9ba6g2x0wsqx1zb9zviqp9p7myd628fxi2rf4wjh0kkjc4c"; + version = "0.8.3"; + sha256 = "1b8a8mx6z2ridw79gijjv90b2jgk0qrncvg0sjbmvyyyajx1h5f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95856,15 +96114,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghcid_0_8_3" = callPackage + "ghcid_0_8_5" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time, unix }: mkDerivation { pname = "ghcid"; - version = "0.8.3"; - sha256 = "1b8a8mx6z2ridw79gijjv90b2jgk0qrncvg0sjbmvyyyajx1h5f7"; + version = "0.8.5"; + sha256 = "15zj78wasix4yz8mxx5hl6x1gj364vsbwn5arp7sbq13rywhs2qy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103061,8 +103319,8 @@ self: { ({ mkDerivation, base, criterion, hedgehog }: mkDerivation { pname = "grab"; - version = "0.0.0.1"; - sha256 = "1jsi8g538w4a441w412siqvrkzmvx8sff74nax93b5paiaqfwcrf"; + version = "0.0.0.4"; + sha256 = "0yanm9ak2sw266wn9lllz086g53sra7xfncpql6403d2lj3j1jj4"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hedgehog ]; benchmarkHaskellDepends = [ base criterion ]; @@ -103076,8 +103334,8 @@ self: { ({ mkDerivation, base, containers, grab, hedgehog, text }: mkDerivation { pname = "grab-form"; - version = "0.0.0.2"; - sha256 = "1mi21d3p7jwmwmn69f7xy6zkks0w11kkwwvzmhxsd84zsafnis8k"; + version = "0.0.0.4"; + sha256 = "0ch8c0kfjky9s1ilrxyr27jhmvynrp61imb188rc3fv7yfr0b5n5"; libraryHaskellDepends = [ base containers grab text ]; testHaskellDepends = [ base containers hedgehog text ]; description = "Applicative parsers for form parameter lists"; @@ -103318,6 +103576,8 @@ self: { pname = "graph"; version = "0.0.0.0"; sha256 = "1v94nii7q6smm37m3yk390mcxpa69qclxqqdzcmay8f096dzk3pd"; + revision = "1"; + editedCabalFile = "0ij8sdnz3k6lfsvl5wvr4dl8njjlmpl3fai8fybvs0b2yhnr6v49"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Class of graphs"; @@ -108837,8 +109097,8 @@ self: { ({ mkDerivation, base, containers, random }: mkDerivation { pname = "hanabi-dealer"; - version = "0.7.0.0"; - sha256 = "0a62h0mblddp77binl73h8yq46r9szrqzdvx16zawb0y222d14mp"; + version = "0.7.1.1"; + sha256 = "1agh5sq0hj9r55w3k529jcar66p4vih54j5w3h28chm34n9k6qa2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers random ]; @@ -110309,8 +110569,8 @@ self: { }: mkDerivation { pname = "hasbolt"; - version = "0.1.4.2"; - sha256 = "0qrfdfyzm61zaxd9m7s93zhrr2qjpgyn24l3gbyll2v8yj38j5rm"; + version = "0.1.4.3"; + sha256 = "1sfnr6qrv95ryf6c4hpj3vj8v6y64qjjd2fnz4x9i37win9wcb1z"; libraryHaskellDepends = [ base binary bytestring connection containers data-binary-ieee754 data-default mtl network text @@ -112471,8 +112731,8 @@ self: { ({ mkDerivation, base, haskell-src-exts }: mkDerivation { pname = "haskell-src-exts-simple"; - version = "1.22.0.0"; - sha256 = "1zfb12r7fpq5nnfgn27m8grql2bx50w7g2jbgy9404rjcr1gk59c"; + version = "1.23.0.0"; + sha256 = "1jfdjaikmjx9sfairp4jjn0vzhw5vhwrg43y082ddpc1bgx2jw7m"; libraryHaskellDepends = [ base haskell-src-exts ]; description = "A simplified view on the haskell-src-exts AST"; license = stdenv.lib.licenses.mit; @@ -112568,21 +112828,21 @@ self: { }) {}; "haskell-to-elm" = callPackage - ({ mkDerivation, aeson, base, bound, elm-syntax, generics-sop - , protolude, text, time, unordered-containers + ({ mkDerivation, aeson, base, bound, elm-syntax, generics-sop, text + , time, unordered-containers }: mkDerivation { pname = "haskell-to-elm"; - version = "0.2.1.0"; - sha256 = "0a6h1hmfkwhi6yfbzb71yifmhvapbnrlwj5yp0kjp88nr1cnh69h"; + version = "0.3.0.0"; + sha256 = "02gspfwiif3a38fsfv0pxia7lcqyqppf9pnrbirnqdcry721mcvy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bound elm-syntax generics-sop protolude text time + aeson base bound elm-syntax generics-sop text time unordered-containers ]; testHaskellDepends = [ - aeson base bound elm-syntax generics-sop protolude text time + aeson base bound elm-syntax generics-sop text time unordered-containers ]; description = "Generate Elm types and JSON encoders and decoders from Haskell types"; @@ -113885,8 +114145,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bitcoin & Bitcoin Cash library for Haskell"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "haskoin-crypto" = callPackage @@ -115067,6 +115325,30 @@ self: { broken = true; }) {}; + "hasql-notifications" = callPackage + ({ mkDerivation, base, bytestring, contravariant, hasql, hasql-pool + , hspec, postgresql-libpq, QuickCheck, text + }: + mkDerivation { + pname = "hasql-notifications"; + version = "0.1.0.0"; + sha256 = "18pix0fmbcf8l45q78w33vjyxxbp5c0gvqxdc9bhvkfhn0cl5q0i"; + revision = "1"; + editedCabalFile = "11crw51y45laxaidj615g7mlmp5igdxd5w35pmddb82xpg915ccs"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring contravariant hasql hasql-pool postgresql-libpq + text + ]; + executableHaskellDepends = [ base hasql ]; + testHaskellDepends = [ base bytestring hasql hspec QuickCheck ]; + description = "LISTEN/NOTIFY support for Hasql"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "hasql-optparse-applicative" = callPackage ({ mkDerivation, base-prelude, hasql, hasql-pool , optparse-applicative @@ -115178,8 +115460,8 @@ self: { }: mkDerivation { pname = "hasql-th"; - version = "0.4.0.4"; - sha256 = "1kd12vw98wml58sp1dqfq58z0vjjqdssb6q7f6ngs7q6ig27kxfb"; + version = "0.4.0.5"; + sha256 = "1gc11n2g07cqipcvm779wwm36mfjjbnwg9n1ch7cldlg1wsr6m6n"; libraryHaskellDepends = [ base bytestring case-insensitive containers contravariant fast-builder foldl hashable hasql headed-megaparsec megaparsec @@ -115195,6 +115477,8 @@ self: { ]; description = "Template Haskell utilities for Hasql"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "hasql-transaction" = callPackage @@ -116912,13 +117196,15 @@ self: { }: mkDerivation { pname = "headed-megaparsec"; - version = "0.1.0.2"; - sha256 = "0npkkphm4gv7cgm08asr5qxjyk6jdbm4h4w0jwsvxzpxh3nfxgbr"; + version = "0.1.0.4"; + sha256 = "1nl66j4fqmjcxkrmhm7jnbqqpw48727wfbb9xn0cz4yy1brivjrb"; libraryHaskellDepends = [ base case-insensitive megaparsec parser-combinators selective ]; description = "More informative parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "headergen" = callPackage @@ -120228,6 +120514,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "higher-leveldb_0_6_0_0" = callPackage + ({ mkDerivation, base, bytestring, cereal, data-default, exceptions + , hspec, leveldb-haskell, mtl, process, resourcet, transformers + , transformers-base, unliftio, unliftio-core + }: + mkDerivation { + pname = "higher-leveldb"; + version = "0.6.0.0"; + sha256 = "0gsqf92vp92a0jl3nchm40mxi5k7hnm7wjczhpkq0akka6b7ciy7"; + revision = "2"; + editedCabalFile = "1g8fnqvxjcq332wrnls272ff8grcbrc875phm77nsmjb8q4wjqz7"; + libraryHaskellDepends = [ + base bytestring cereal data-default exceptions leveldb-haskell mtl + resourcet transformers transformers-base unliftio-core + ]; + testHaskellDepends = [ + base bytestring cereal hspec leveldb-haskell mtl process resourcet + transformers transformers-base unliftio + ]; + description = "A rich monadic API for working with leveldb databases"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "higherorder" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -121651,10 +121961,8 @@ self: { }: mkDerivation { pname = "hledger"; - version = "1.17"; - sha256 = "1rdafl9c1z16ci3b812aaic6sbh1292dh5n3xqpnaqx9g68w71d4"; - revision = "1"; - editedCabalFile = "1lkg0h8hc7m0lj0hzylc3paiip2d6a6k9k37289gdynrm04nj258"; + version = "1.17.1.1"; + sha256 = "17c7g4xnwkbi77drqc6w96bp2lw0b86yg1qmm0gsdnli2m93baz4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -121728,6 +122036,8 @@ self: { ]; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "hledger-diff" = callPackage @@ -121806,10 +122116,8 @@ self: { }: mkDerivation { pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "1ff113z2ir07ihdvfa5fca4x326zwm2jd7sjy6hjpr4qgi1mszvs"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; + version = "1.5.4"; + sha256 = "0n3pjd86j43dprpsy1k9x72v8g46dhy3f9244hvwhigyx72ijm6h"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -121836,22 +122144,24 @@ self: { ]; description = "computes the internal rate of return of an investment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "hledger-lib" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base-compat-batteries, blaze-markup, bytestring, call-stack , cassava, cassava-megaparsec, cmdargs, containers, data-default - , Decimal, deepseq, directory, extra, fgl, file-embed, filepath - , Glob, hashtables, megaparsec, mtl, old-time, parsec + , Decimal, deepseq, directory, doctest, extra, fgl, file-embed + , filepath, Glob, hashtables, megaparsec, mtl, old-time, parsec , parser-combinators, pretty-show, regex-tdfa, safe, split, tabular , tasty, tasty-hunit, template-haskell, text, time, timeit , transformers, uglymemo, utf8-string }: mkDerivation { pname = "hledger-lib"; - version = "1.17.0.1"; - sha256 = "0kmwrkm4arhzzcfh4dhmikad1kfkv9y5dc58mjhi1jacdiy980r9"; + version = "1.17.1"; + sha256 = "19vny2l2l45dk0fkpi2lzpzaj7jks2r0zjv8dkpcxlyk8bvqi92c"; libraryHaskellDepends = [ aeson ansi-terminal array base base-compat-batteries blaze-markup bytestring call-stack cassava cassava-megaparsec cmdargs containers @@ -121864,7 +122174,7 @@ self: { testHaskellDepends = [ aeson ansi-terminal array base base-compat-batteries blaze-markup bytestring call-stack cassava cassava-megaparsec cmdargs containers - data-default Decimal deepseq directory extra fgl file-embed + data-default Decimal deepseq directory doctest extra fgl file-embed filepath Glob hashtables megaparsec mtl old-time parsec parser-combinators pretty-show regex-tdfa safe split tabular tasty tasty-hunit template-haskell text time timeit transformers uglymemo @@ -121895,6 +122205,29 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "hledger-stockquotes" = callPackage + ({ mkDerivation, aeson, base, bytestring, cmdargs, containers + , hedgehog, hledger-lib, req, safe, scientific, split, tasty + , tasty-hedgehog, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "hledger-stockquotes"; + version = "0.1.0.0"; + sha256 = "19xn7rzrg4nw1dfdfm1hn7k0wdwrw8416rn28inkbkbn1f9mqgk5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers hledger-lib req safe scientific + split text time unordered-containers + ]; + executableHaskellDepends = [ base bytestring cmdargs text time ]; + testHaskellDepends = [ + base hedgehog tasty tasty-hedgehog tasty-hunit + ]; + description = "Generate HLedger Price Directives From Daily Stock Quotes"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hledger-ui" = callPackage ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries , brick, cmdargs, containers, data-default, directory, extra @@ -121904,8 +122237,8 @@ self: { }: mkDerivation { pname = "hledger-ui"; - version = "1.17"; - sha256 = "1168h7lc6r61gpaiy07l9dp534hggnlvdcx3a2lmjx4m29ym1frz"; + version = "1.17.1.1"; + sha256 = "0cwjjcy4r6dy1w4svmi7jk1yrp654qr8ic33ipg24dh7bl6lqzps"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -121935,6 +122268,8 @@ self: { ]; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "hledger-web" = callPackage @@ -121949,8 +122284,8 @@ self: { }: mkDerivation { pname = "hledger-web"; - version = "1.17"; - sha256 = "15flyvaamr7r3dlzk9ihc3bv8z15myfrzzhlbpc5s3gy6q85lmay"; + version = "1.17.1"; + sha256 = "0zcb7a8xchsb093sw9aq30n45rns9v0xknwvigds3ka8yb383krl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122169,10 +122504,8 @@ self: { }: mkDerivation { pname = "hlrdb"; - version = "0.3.0.0"; - sha256 = "0pc3hqi6v9b78fijisnarfs59w6mw8jgyww25r1wmblgwyakl5ab"; - revision = "1"; - editedCabalFile = "1ycglx3b5n1l97pq0rd50wd313gwz1is10snf8s0c9bjlrzspbn5"; + version = "0.3.1.0"; + sha256 = "19sxpyv331sjldanf40gw598gcj98n9xwc985cz9k2m38ck3vwhr"; libraryHaskellDepends = [ base base64-bytestring bytestring cryptonite hashable hedis hlrdb-core memory random store time unordered-containers @@ -124265,8 +124598,8 @@ self: { }: mkDerivation { pname = "hopenpgp-tools"; - version = "0.23"; - sha256 = "1sgqx8b1sq89hpjzbdmkjsmrfagh5v0jfxyqphzkh1bq2zydj0jl"; + version = "0.23.1"; + sha256 = "0jq1if7c78758fnsb6wxsky0jn9mhmzwhb5jpyrpigx08diwd2mj"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -126668,8 +127001,8 @@ self: { }: mkDerivation { pname = "hs-server-starter"; - version = "0.1.0.2"; - sha256 = "1fykxrhh6s2w722jknz87in3ni3a9spjhbbrqm1vw5r5mcsv29gh"; + version = "0.1.1.0"; + sha256 = "1cki3c6fl7yjw9vww4h9vd68dnci5q8f5c1i3ip8kyv53s9rgbi3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base directory network ]; @@ -131274,33 +131607,6 @@ self: { }) {}; "http-client" = callPackage - ({ mkDerivation, array, async, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, directory - , exceptions, filepath, ghc-prim, hspec, http-types, memory - , mime-types, monad-control, network, network-uri, random, stm - , streaming-commons, text, time, transformers, zlib - }: - mkDerivation { - pname = "http-client"; - version = "0.6.4"; - sha256 = "1n9rnbp8lwkd4whi2anniywi4y1bn9kx6nzfigfvz28d7pn7i4in"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - testHaskellDepends = [ - async base blaze-builder bytestring case-insensitive containers - deepseq directory hspec http-types monad-control network - network-uri streaming-commons text time transformers zlib - ]; - doCheck = false; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - - "http-client_0_6_4_1" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , case-insensitive, containers, cookie, deepseq, directory , exceptions, filepath, ghc-prim, hspec, http-types, memory @@ -131325,7 +131631,6 @@ self: { doCheck = false; description = "An HTTP client engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-auth" = callPackage @@ -131686,26 +131991,6 @@ self: { }) {}; "http-directory" = callPackage - ({ mkDerivation, base, bytestring, hspec, html-conduit, http-client - , http-client-tls, http-date, http-types, network-uri, text, time - , xml-conduit - }: - mkDerivation { - pname = "http-directory"; - version = "0.1.7"; - sha256 = "11vka7a049mh56fy6bi9snjkl68il9fnw583l8dw02n67wldks99"; - libraryHaskellDepends = [ - base bytestring html-conduit http-client http-client-tls http-date - http-types network-uri text time xml-conduit - ]; - testHaskellDepends = [ base hspec text ]; - description = "http directory listing library"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; - }) {}; - - "http-directory_0_1_8" = callPackage ({ mkDerivation, base, bytestring, hspec, html-conduit, http-client , http-client-tls, http-date, http-types, network-uri, text, time , xml-conduit @@ -133095,8 +133380,8 @@ self: { }: mkDerivation { pname = "hurl"; - version = "1.1.0.0"; - sha256 = "0l405cp4kgmm00j91p0jmkymp83bqpxhqpgkv2g5qy242c6rjfk2"; + version = "1.2.0.0"; + sha256 = "07abw78ds4fb4y8c7x94fpwcab58b2k613b3dk8hh9qqplhgl8ms"; libraryHaskellDepends = [ base base64-bytestring bytestring directory filepath http-client http-client-tls http-types network-uri process text @@ -133270,14 +133555,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hvega_0_6_0_0" = callPackage + "hvega_0_7_0_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers , filepath, tasty, tasty-golden, text, unordered-containers }: mkDerivation { pname = "hvega"; - version = "0.6.0.0"; - sha256 = "0znipifss3cz55xj2nw27c4m284sb71gprksabypib3qdigqpwis"; + version = "0.7.0.0"; + sha256 = "0kj40mm5d809adblk74h0k57qqpk8jxl5bhildasjzjfmmr4spax"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base text unordered-containers ]; @@ -133370,29 +133655,6 @@ self: { }) {}; "hw-bits" = callPackage - ({ mkDerivation, base, bitvec, bytestring, criterion, deepseq - , doctest, doctest-discover, hedgehog, hspec, hspec-discover - , hw-hspec-hedgehog, hw-int, hw-prim, hw-string-parse, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.1.2"; - sha256 = "1jgj5j09ddiv6yf605m1azaknbfawqhfqc2m3xpr800v43myr3m8"; - libraryHaskellDepends = [ - base bitvec bytestring deepseq hw-int hw-prim hw-string-parse - vector - ]; - testHaskellDepends = [ - base bitvec bytestring doctest doctest-discover hedgehog hspec - hw-hspec-hedgehog hw-prim vector - ]; - testToolDepends = [ doctest-discover hspec-discover ]; - benchmarkHaskellDepends = [ base criterion vector ]; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-bits_0_7_1_5" = callPackage ({ mkDerivation, base, bitvec, bytestring, criterion, deepseq , doctest, doctest-discover, hedgehog, hspec, hspec-discover , hw-hspec-hedgehog, hw-int, hw-prim, hw-string-parse, vector @@ -133413,7 +133675,6 @@ self: { benchmarkHaskellDepends = [ base criterion vector ]; description = "Bit manipulation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-ci-assist" = callPackage @@ -135512,6 +135773,8 @@ self: { pname = "hyraxAbif"; version = "0.2.3.21"; sha256 = "0ghhfv8gzs9sg13nj3mhqd24zbrkjj1dgsjz3sql6276kpa1p2kc"; + revision = "1"; + editedCabalFile = "0rg4wldliyaixmgcyina2cnm7l6gwpcdd2bim1q83clnfk32scar"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -135535,8 +135798,8 @@ self: { pname = "hz3"; version = "96.0.0.0"; sha256 = "080bhbnhswic7m35rzbqi9i7lb57szag6khprrjccpa80vq7lj6n"; - revision = "2"; - editedCabalFile = "02q1pcy6z4vl1qm4klw17aqx577v7c4jsl4b5r5iw6293arym8fz"; + revision = "3"; + editedCabalFile = "0dm62xr708ps7dsln41cxsn4m4a5093dpq8xrp6hyss4mrzg8hz0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers transformers ]; @@ -135861,8 +136124,7 @@ self: { ]; description = "A fast JSON document store with push notification support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; + maintainers = with stdenv.lib.maintainers; [ rkrzr ]; }) {}; "icon-fonts" = callPackage @@ -136682,8 +136944,8 @@ self: { ({ mkDerivation, aeson, base, hvega, ihaskell, text }: mkDerivation { pname = "ihaskell-hvega"; - version = "0.2.3.0"; - sha256 = "02j08ci3ss82g2a26qdnykwb1rggb8w53jqm4xnxc8hqm25fb3mk"; + version = "0.2.4.0"; + sha256 = "0yk8wxr1kh3xibb1l5jgjryq7h4id9cz59yjkjjzq41r6p1zr6yj"; libraryHaskellDepends = [ aeson base hvega ihaskell text ]; description = "IHaskell display instance for hvega types"; license = stdenv.lib.licenses.bsd3; @@ -137603,15 +137865,15 @@ self: { }) {}; "incremental" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, extensible + ({ mkDerivation, aeson, base, bytestring, containers, deepseq , semigroups, text }: mkDerivation { pname = "incremental"; - version = "0.1.1"; - sha256 = "17lwakfa7xh0rdxr4hixlqy9hldvz06hcsclw3kln7m4iv4843d7"; + version = "0.2"; + sha256 = "0af3nrjmhxzn6q45nvrw8lw54239pkwdl3fdvhj10fv8rxdihnzh"; libraryHaskellDepends = [ - aeson base containers deepseq extensible semigroups text + aeson base bytestring containers deepseq semigroups text ]; testHaskellDepends = [ base ]; description = "incremental update library"; @@ -137666,28 +137928,6 @@ self: { }) {}; "incremental-parser" = callPackage - ({ mkDerivation, base, bytestring, checkers, criterion, deepseq - , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty - , tasty-quickcheck, text, transformers - }: - mkDerivation { - pname = "incremental-parser"; - version = "0.4"; - sha256 = "0iyprnyk66zdyi21632d0aznvzk7i0hmr3idq49yjilxwck2xac4"; - libraryHaskellDepends = [ - base monoid-subclasses parsers rank2classes transformers - ]; - testHaskellDepends = [ - base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base bytestring criterion deepseq monoid-subclasses text - ]; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - - "incremental-parser_0_4_0_1" = callPackage ({ mkDerivation, base, bytestring, checkers, criterion, deepseq , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty , tasty-quickcheck, text, transformers @@ -137707,7 +137947,6 @@ self: { ]; description = "Generic parser library capable of providing partial results from partial input"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-sat-solver" = callPackage @@ -139560,8 +139799,8 @@ self: { pname = "intro"; version = "0.6.0.1"; sha256 = "1kka6dnlyqppjx9ykk3zixfyslr8cf4ja6sa2hgq6h69mmsicp67"; - revision = "1"; - editedCabalFile = "1jxd4agavzccgszniqzakgpb6b49qx5c20asr068rpvaf03msncx"; + revision = "2"; + editedCabalFile = "12jmy4lp9yrix6hm6cx3kmgprpmlwdyxqckyx53h01iygfpbx3w5"; libraryHaskellDepends = [ base bytestring containers deepseq dlist extra hashable mtl safe text transformers unordered-containers writer-cps-mtl @@ -140205,26 +140444,23 @@ self: { }) {}; "ipfs" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-has, directory - , directory-tree, doctest, envy, flow, Glob, http-client, ip, lens - , lens-aeson, monad-logger, QuickCheck, regex-compat, rio - , servant-client, servant-client-core, servant-multipart - , servant-server, swagger2, text, vector, yaml + ({ mkDerivation, aeson, base, bytestring, directory, directory-tree + , doctest, envy, flow, Glob, ip, lens, lens-aeson, monad-logger + , QuickCheck, regex-compat, rio, servant-client, servant-server + , swagger2, text, vector, yaml }: mkDerivation { pname = "ipfs"; - version = "1.0.1"; - sha256 = "1k4ybm99gbwnv1crx8y8fggf9iv1f1g49x3zvypji7n1zgx84b1r"; + version = "1.0.2"; + sha256 = "0mrr67bz283qqz0d70j9gz191l4pi554j3hmcf7pscg87b84rdv5"; libraryHaskellDepends = [ - aeson base bytestring data-has envy flow Glob http-client ip lens - monad-logger regex-compat rio servant-client servant-client-core - servant-multipart servant-server swagger2 text vector + aeson base bytestring envy flow Glob ip lens monad-logger + regex-compat rio servant-client servant-server swagger2 text vector ]; testHaskellDepends = [ - aeson base bytestring data-has directory directory-tree doctest - envy flow Glob http-client ip lens lens-aeson monad-logger - QuickCheck regex-compat rio servant-client servant-client-core - servant-multipart servant-server swagger2 text vector yaml + aeson base bytestring directory directory-tree doctest envy flow + Glob ip lens lens-aeson monad-logger QuickCheck regex-compat rio + servant-client servant-server swagger2 text vector yaml ]; description = "Access IPFS locally and remotely"; license = stdenv.lib.licenses.agpl3Plus; @@ -140325,6 +140561,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "iproute_1_7_9" = callPackage + ({ mkDerivation, appar, base, byteorder, bytestring, containers + , doctest, hspec, network, QuickCheck, safe + }: + mkDerivation { + pname = "iproute"; + version = "1.7.9"; + sha256 = "1m306fi39ifqq53sklwn81q96wam8nvx7mr5hv4m9f26kiczlism"; + libraryHaskellDepends = [ + appar base byteorder bytestring containers network + ]; + testHaskellDepends = [ + appar base byteorder bytestring containers doctest hspec network + QuickCheck safe + ]; + description = "IP Routing Table"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "iptables-helpers" = callPackage ({ mkDerivation, base, containers, mtl, parsec, QuickCheck, safe , syb, utf8-string @@ -141700,10 +141956,8 @@ self: { }: mkDerivation { pname = "ixset-typed"; - version = "0.4.0.1"; - sha256 = "135cfc8d39qv02sga03gsym1yfajf0l5ci1s6q9n1xpb9ignblx8"; - revision = "1"; - editedCabalFile = "0kfklsbjn4gmx76vl7vm1s149f13h2p537930yaq8s2671lzc79p"; + version = "0.5"; + sha256 = "07n7qfi8slmrlgzvrkddr17b792phhb140q9gb5pm68kk1im4izs"; libraryHaskellDepends = [ base containers deepseq safecopy syb template-haskell ]; @@ -142434,6 +142688,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "jira-wiki-markup_1_1_3" = callPackage + ({ mkDerivation, base, mtl, parsec, tasty, tasty-hunit, text }: + mkDerivation { + pname = "jira-wiki-markup"; + version = "1.1.3"; + sha256 = "1hr67awpl1zpwp53x9b6ix4gdfq8r77r9wnm44qc9q91q8i872wv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl parsec text ]; + executableHaskellDepends = [ base text ]; + testHaskellDepends = [ base parsec tasty tasty-hunit text ]; + description = "Handle Jira wiki markup"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "jmacro" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , haskell-src-exts, haskell-src-meta, mtl, parseargs, parsec @@ -144824,8 +145094,8 @@ self: { pname = "kansas-comet"; version = "0.4"; sha256 = "1q9rffh6589a5am8mvfzxzwws34vg08rdjxggfabhmg9y9jla6hz"; - revision = "18"; - editedCabalFile = "0yxgndvrashc0cp3zv39gjrzw7p53g0k51p13q67nqnpxhh05w2k"; + revision = "19"; + editedCabalFile = "0pnfhv3dlg9cs98nyz5kqdi5mq340909id8rb4lcdj9748w8gz4w"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base containers data-default-class scotty stm text time @@ -149660,8 +149930,8 @@ self: { }: mkDerivation { pname = "launchdarkly-server-sdk"; - version = "1.0.1"; - sha256 = "1425n7b587k9c6w3k95lcdhk5blj9blzjgnb67ylr1fizzayxc7h"; + version = "1.0.2"; + sha256 = "1psm449p7fsh4b5mf7y7dlgh44za1fhf0cbn0qya1j4imy3x673b"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring bytestring bytestring-conversion clock containers cryptohash exceptions extra @@ -151709,6 +151979,8 @@ self: { ]; description = "Haskell interface to libarchive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) libarchive;}; "libarchive-conduit" = callPackage @@ -155403,8 +155675,8 @@ self: { ({ mkDerivation, base, containers, doctest, hedgehog }: mkDerivation { pname = "loc"; - version = "0.1.3.4"; - sha256 = "1xdqnqr4wy3xw9vyfkf6c8xsq74nryhb8z31grcwpn6ppdgzyqy2"; + version = "0.1.3.6"; + sha256 = "0bspclskqk0kzvic8y4bxagjrfzxpq53xgr0jfp6rcqacql6qvdr"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers doctest hedgehog ]; description = "Types representing line and column positions and ranges in text files"; @@ -155417,8 +155689,8 @@ self: { ({ mkDerivation, base, containers, hedgehog, loc }: mkDerivation { pname = "loc-test"; - version = "0.1.3.4"; - sha256 = "1lzmyxm34zvkdz3piwmnhd7m0ijjnlwqbpi5lgbqvbrikbw579qp"; + version = "0.1.3.6"; + sha256 = "0kzr7adk85y9fcibi8rw7ix3vp2z17ig211lw820nirhwb8xj697"; libraryHaskellDepends = [ base containers hedgehog loc ]; description = "Test-related utilities related to the /loc/ package"; license = stdenv.lib.licenses.asl20; @@ -157726,8 +157998,8 @@ self: { }: mkDerivation { pname = "lzlib"; - version = "1.0.4.0"; - sha256 = "1l7mbxh2cn8vgfxwkzrz9mv5ca2bx4ymbswvjz7b3mgjx0wiy9g8"; + version = "1.0.6.0"; + sha256 = "1qirn7kbcnxx6ihhk0r6p2jyfbs8cqsinfnmn774i3vkj1fahpn1"; libraryHaskellDepends = [ base bytestring ]; libraryToolDepends = [ c2hs ]; testHaskellDepends = [ @@ -157903,6 +158175,8 @@ self: { ]; description = "A toolkit for working with macaroons"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "macbeth-lib" = callPackage @@ -159713,10 +159987,10 @@ self: { ({ mkDerivation, base, comonad, HTF, MonadRandom }: mkDerivation { pname = "markov-realization"; - version = "0.3.3"; - sha256 = "1w6rj8l40ajb5nmh3mlf99n526a17w7q9vnyn6x3j9sn0sm4csl3"; + version = "0.4"; + sha256 = "1kkydk71yhzf2q82vzal6npfs022a5x2ynj95l835kn1lh2n3vhm"; libraryHaskellDepends = [ base comonad MonadRandom ]; - testHaskellDepends = [ base HTF ]; + testHaskellDepends = [ base HTF MonadRandom ]; description = "Realizations of Markov chains"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -160000,7 +160274,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "massiv_0_5_0_0" = callPackage + "massiv_0_5_1_0" = callPackage ({ mkDerivation, base, bytestring, Cabal, cabal-doctest , data-default-class, deepseq, doctest, exceptions , mersenne-random-pure64, primitive, QuickCheck, random, scheduler @@ -160008,8 +160282,8 @@ self: { }: mkDerivation { pname = "massiv"; - version = "0.5.0.0"; - sha256 = "09hyrlhcvqrhsmyl7lsm9qmp8yshia1jmjh2bqlsnw8xvwg2z13a"; + version = "0.5.1.0"; + sha256 = "062b9mg1nqsg7lfv4a85s994jg1fipikpvxdb9w6ci3dqiq41dx0"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base bytestring data-default-class deepseq exceptions primitive @@ -160547,6 +160821,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "matrix-sized" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, primitive + , singletons, vector + }: + mkDerivation { + pname = "matrix-sized"; + version = "0.0.2"; + sha256 = "1sp9d3pfkq80klwryvggjf76hm4y9qqair3cppvgnp06kn99k1z1"; + libraryHaskellDepends = [ + base binary bytestring deepseq primitive singletons vector + ]; + description = "Haskell matrix library with interface to C++ linear algebra libraries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "matrix-static" = callPackage ({ mkDerivation, base, deepseq, ghc-typelits-natnormalise, matrix , tasty, tasty-hunit, vector @@ -160647,7 +160936,8 @@ self: { ]; description = "Terminal client for the Mattermost chat system"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ kiwi ]; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "mattermost-api" = callPackage @@ -160675,6 +160965,8 @@ self: { ]; description = "Client API for Mattermost chat system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "mattermost-api-qc" = callPackage @@ -160690,6 +160982,8 @@ self: { ]; description = "QuickCheck instances for the Mattermost client API library"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "maude" = callPackage @@ -165228,8 +165522,8 @@ self: { pname = "monad-choice"; version = "0.1.0.0"; sha256 = "0vhfiqrnkfhqkhnh9h4npl3rfam321iikabr3przywfcfd4gap4z"; - revision = "1"; - editedCabalFile = "19acnk2dy5zan230g268nyvdx1y8piav3x9z6jsjbi2d7zm9sr38"; + revision = "3"; + editedCabalFile = "055zzzz9ag1wb79bjx0wg59plajym156hz0bh0lq4ndvn4k7sxay"; libraryHaskellDepends = [ base invariant MonadRandom mtl transformers ]; @@ -168022,6 +168316,18 @@ self: { broken = true; }) {}; + "mr-env" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "mr-env"; + version = "0.1.0.1"; + sha256 = "102m1gqjcscwf620jpaz1i7hg73ikd19an2wjgnfpfrlzw83xgd6"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + description = "A simple way to read environment variables in Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "mrifk" = callPackage ({ mkDerivation, array, base, containers, mtl }: mkDerivation { @@ -169841,19 +170147,21 @@ self: { }) {}; "musicScroll" = callPackage - ({ mkDerivation, async, base, bytestring, containers, dbus, gi-gtk - , gi-gtk-hs, gtk3, mtl, req, stm, tagsoup, text, transformers + ({ mkDerivation, async, base, bytestring, containers, cryptonite + , dbus, deepseq, directory, gi-gtk, gi-gtk-hs, gtk3, mtl, req + , sqlite-simple, stm, tagsoup, text, transformers, xdg-basedir }: mkDerivation { pname = "musicScroll"; - version = "0.1.2.0"; - sha256 = "0n0s9vkhfwykghniillih5qgdz4cg1rn4vn86hinxaqfgzv6m96w"; + version = "0.2.0.0"; + sha256 = "1iv80yhal5f8klsc095yabq7402w45j8lb0g64avdyp2zy569vmx"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; libraryHaskellDepends = [ - async base bytestring containers dbus gi-gtk gi-gtk-hs mtl req stm - tagsoup text transformers + async base bytestring containers cryptonite dbus deepseq directory + gi-gtk gi-gtk-hs mtl req sqlite-simple stm tagsoup text + transformers xdg-basedir ]; executableHaskellDepends = [ base ]; executablePkgconfigDepends = [ gtk3 ]; @@ -171101,8 +171409,8 @@ self: { ({ mkDerivation, base, containers, template-haskell }: mkDerivation { pname = "names-th"; - version = "0.3.0.0"; - sha256 = "09m5zflpk1h7jwz40mijhnpbsd8qnnay1jm3lpfrvdmg49m8zqqb"; + version = "0.3.0.1"; + sha256 = "12ally0n6ixsxj0zwbvw439dbx29phvh0rd6l5sd0c5a514a32aa"; libraryHaskellDepends = [ base containers template-haskell ]; description = "Manipulate name strings for TH"; license = stdenv.lib.licenses.bsd3; @@ -172694,8 +173002,8 @@ self: { }: mkDerivation { pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1r186xwr5lycs0snr8amvyxvbq2l5jd9p20v8n12zyjm60kmi90y"; + version = "0.0.11"; + sha256 = "1sizk0c8mbm6ad984gaf933h1bg4dgwi9k8hzrm9wp5rwbqjvcz8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -174703,8 +175011,8 @@ self: { }: mkDerivation { pname = "nix-diff"; - version = "1.0.8"; - sha256 = "0073802yrd5f1zfhnbsll9cqcycihw9bac1psfwvcwvihsh3j413"; + version = "1.0.9"; + sha256 = "0gqrx0l6f10gwsz645dby2gascd0sanajvd2rkg65c61g8j7pxv4"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -174816,6 +175124,8 @@ self: { pname = "nixfmt"; version = "0.4.0"; sha256 = "1ispgl8rc2scr6v8bb6sks7px856jf61x74zj2iyddrn5qamkb3n"; + revision = "1"; + editedCabalFile = "1hsj0jh6siph3afd9c2wii09sffl48rzqv653n4clpd8qy0rn48d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -177576,6 +177886,19 @@ self: { broken = true; }) {}; + "om-actor" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "om-actor"; + version = "0.1.0.0"; + sha256 = "1wiasb3f22g47n54jhxv1c74a0ghxsknrakjdgj3fqlw878g3aan"; + libraryHaskellDepends = [ base ]; + description = "Actor pattern utilities"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "om-elm" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , http-types, safe, safe-exceptions, template-haskell, text, unix @@ -177607,6 +177930,8 @@ self: { ]; description = "Monad transformer providing MonadFail"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "omaketex" = callPackage @@ -178733,6 +179058,8 @@ self: { base http-client http-types opentelemetry text ]; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "opentelemetry-lightstep" = callPackage @@ -178763,6 +179090,8 @@ self: { sha256 = "1n27g8xjij05g7xxx8z50k39nmclhm707xs2pfqy830zdq1ldfl4"; libraryHaskellDepends = [ base http-types opentelemetry text wai ]; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "opentheory" = callPackage @@ -179779,29 +180108,33 @@ self: { }) {}; "org-mode" = callPackage - ({ mkDerivation, base, filepath, hashable, megaparsec - , parser-combinators, tasty, tasty-hunit, text, time + ({ mkDerivation, base, containers, filepath, hashable, megaparsec + , parser-combinators, tasty, tasty-hunit, text }: mkDerivation { pname = "org-mode"; - version = "1.0.1"; - sha256 = "0nhpb8x11w0w3jwplk3bx9a2llw77l66wbm31bpgdpr6ak2r0z75"; + version = "1.1.0"; + sha256 = "1k8k24wkvjflrg5bcv6i4ypak5m0k20hrh0gxf5c23y5s4b9dmz5"; libraryHaskellDepends = [ - base filepath hashable megaparsec parser-combinators text time - ]; - testHaskellDepends = [ - base megaparsec tasty tasty-hunit text time + base containers filepath hashable megaparsec parser-combinators + text ]; + testHaskellDepends = [ base megaparsec tasty tasty-hunit text ]; + description = "Parser for Emacs org-mode files"; license = stdenv.lib.licenses.bsd3; }) {}; "org-mode-lucid" = callPackage - ({ mkDerivation, base, hashable, lucid, org-mode, text }: + ({ mkDerivation, base, containers, hashable, lucid, org-mode, text + }: mkDerivation { pname = "org-mode-lucid"; - version = "1.1.0"; - sha256 = "066mdm9a7dkz6yy9g2yhqalvxrxhak1mw0awag3ivswv6djf528q"; - libraryHaskellDepends = [ base hashable lucid org-mode text ]; + version = "1.2.0"; + sha256 = "1y7dxm3g7jzq7y45z1d4k1j4rsfjdg4l8gk1ykn5frigwf01vwkf"; + libraryHaskellDepends = [ + base containers hashable lucid org-mode text + ]; + description = "Lucid integration for org-mode"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -179886,8 +180219,8 @@ self: { }: mkDerivation { pname = "orgstat"; - version = "0.1.7"; - sha256 = "1yvzs6sdkdgi5gfdgznnz1f03sf57icnn7bb5njcam7gxwvswbkp"; + version = "0.1.8"; + sha256 = "072xdy9kg853l7lskm1knkk63pnyqh44s7zakplb37x46rcsj4jc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -181764,8 +182097,8 @@ self: { }: mkDerivation { pname = "pantry"; - version = "0.4.0.0"; - sha256 = "11n0xrk5258inzzikbapsv7752396qsrgaaf5kimpzgb67cs9k5j"; + version = "0.4.0.1"; + sha256 = "182aiwwgrsdj9f4x71q1grj674d91djp4q6bz2l51ly5dsjy5wbf"; libraryHaskellDepends = [ aeson ansi-terminal base bytestring Cabal casa-client casa-types conduit conduit-extra containers cryptonite cryptonite-conduit @@ -183092,6 +183425,8 @@ self: { pname = "parsers-megaparsec"; version = "0.1.0.1"; sha256 = "1fgxnxv5ispf7zg40fa35f1n7x7mk1pc8r96sbqpjbzasga79rx8"; + revision = "1"; + editedCabalFile = "16a7h16lq27930l0hpa8z97b4p6cwrz3wdxs67mfxvz2ndngm87d"; libraryHaskellDepends = [ base fail megaparsec mtl parsers semigroups text transformers ]; @@ -185294,6 +185629,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "persistable-record_0_6_0_5" = callPackage + ({ mkDerivation, array, base, containers, dlist, names-th + , product-isomorphic, quickcheck-simple, template-haskell + , th-bang-compat, th-constraint-compat, th-data-compat + , transformers + }: + mkDerivation { + pname = "persistable-record"; + version = "0.6.0.5"; + sha256 = "1jm8270c7805alxa8q8pa5ql9f1ah3ns3p910j86h4bjnvgbvyqa"; + libraryHaskellDepends = [ + array base containers dlist names-th product-isomorphic + template-haskell th-bang-compat th-constraint-compat th-data-compat + transformers + ]; + testHaskellDepends = [ base quickcheck-simple ]; + description = "Binding between SQL database values and haskell records"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "persistable-types-HDBC-pg" = callPackage ({ mkDerivation, base, bytestring, convertible, dlist, HDBC , persistable-record, relational-query, relational-query-HDBC @@ -185738,7 +186094,8 @@ self: { ]; description = "Backend for the persistent library using postgresql"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ psibi ]; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "persistent-protobuf" = callPackage @@ -188736,17 +189093,18 @@ self: { "pkgtreediff" = callPackage ({ mkDerivation, async, base, directory, filepath, Glob - , http-directory, simple-cmd, simple-cmd-args, text + , http-client, http-client-tls, http-directory, simple-cmd + , simple-cmd-args, text }: mkDerivation { pname = "pkgtreediff"; - version = "0.3"; - sha256 = "0n39cn75cdxzk39hn6fiimb7rm1qrvksmqidy5fgnx997y78z8s9"; + version = "0.4"; + sha256 = "00cah2sbfx824zvg4ywm3qw8rkibflj9lmw1z0ywsalgdmmlp460"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - async base directory filepath Glob http-directory simple-cmd - simple-cmd-args text + async base directory filepath Glob http-client http-client-tls + http-directory simple-cmd simple-cmd-args text ]; description = "Package tree diff tool"; license = stdenv.lib.licenses.gpl3; @@ -188780,15 +189138,14 @@ self: { "plaid" = callPackage ({ mkDerivation, aeson, base, bytestring, casing, conduit , conduit-extra, containers, either, errors, hspec, hspec-wai - , hspec-wai-json, http-client, http-client-tls, http-conduit - , http-types, microlens, microlens-th, mtl, network, pretty-simple - , QuickCheck, raw-strings-qq, safe-exceptions, text, time - , transformers, wai + , http-client, http-client-tls, http-conduit, http-types, microlens + , microlens-th, mtl, network, pretty-simple, QuickCheck + , raw-strings-qq, safe-exceptions, text, time, transformers, wai }: mkDerivation { pname = "plaid"; - version = "0.1.0.0"; - sha256 = "125427rhy5xlaw3qinrazyyj39z4g0rbnhm2k4jrgp1jgba91lc3"; + version = "0.1.0.4"; + sha256 = "1mwwd3mnj45l1487hfhb8lhgcvik88qch7vzgk17zv77ginnifni"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188802,9 +189159,8 @@ self: { safe-exceptions text time transformers ]; testHaskellDepends = [ - aeson base bytestring containers errors hspec hspec-wai - hspec-wai-json http-types microlens microlens-th pretty-simple - QuickCheck text time wai + aeson base bytestring containers errors hspec hspec-wai http-types + microlens microlens-th pretty-simple QuickCheck text time wai ]; description = "Plaid.com api integration library"; license = stdenv.lib.licenses.bsd3; @@ -190080,6 +190436,8 @@ self: { pname = "polynom"; version = "0.1.0.0"; sha256 = "1cggjbmyas3bzcs81falp50wq649nhvgxwhhnyk434s0k2h2chwh"; + revision = "1"; + editedCabalFile = "0nfrlp48rgw96bpms30d9s2qmhjmbgxszprh2xi73pmjddk26qg3"; libraryHaskellDepends = [ algebra base base-unicode-symbols containers ]; @@ -191245,33 +191603,33 @@ self: { "postgres-websockets" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , containers, contravariant, either, envparse, hasql, hasql-pool - , hspec, hspec-wai, hspec-wai-json, http-types, jose, jwt, lens - , lens-aeson, postgresql-libpq, protolude, retry, stm + , containers, contravariant, either, envparse, hasql + , hasql-notifications, hasql-pool, hspec, hspec-wai, hspec-wai-json + , http-types, jose, lens, postgresql-libpq, protolude, retry, stm , stm-containers, stringsearch, text, time, transformers , unordered-containers, wai, wai-app-static, wai-extra , wai-websockets, warp, websockets }: mkDerivation { pname = "postgres-websockets"; - version = "0.5.0.1"; - sha256 = "0afhrzhixy0f31050jb04w8np6935wcl3j7ckbk0dm23mqz2z3zy"; + version = "0.6.0.0"; + sha256 = "0m9fypc216qcsx596sizgxjv30w08fpfpjglmcias88ri4n3ggy5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring contravariant either hasql hasql-pool - http-types jose jwt lens lens-aeson postgresql-libpq protolude - retry stm stm-containers stringsearch text time - unordered-containers wai wai-websockets websockets + aeson base bytestring contravariant either hasql + hasql-notifications hasql-pool http-types jose lens + postgresql-libpq protolude retry stm stm-containers stringsearch + text time unordered-containers wai wai-websockets websockets ]; executableHaskellDepends = [ base base64-bytestring bytestring envparse hasql hasql-pool protolude text time transformers wai wai-app-static wai-extra warp ]; testHaskellDepends = [ - aeson base containers hasql hasql-pool hspec hspec-wai - hspec-wai-json http-types protolude stm unordered-containers - wai-extra + aeson base containers hasql hasql-notifications hasql-pool hspec + hspec-wai hspec-wai-json http-types protolude stm + unordered-containers wai-extra ]; description = "Middleware to map LISTEN/NOTIFY messages to Websockets"; license = stdenv.lib.licenses.bsd3; @@ -194181,14 +194539,14 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "process_1_6_8_0" = callPackage + "process_1_6_8_2" = callPackage ({ mkDerivation, base, bytestring, deepseq, directory, filepath , unix }: mkDerivation { pname = "process"; - version = "1.6.8.0"; - sha256 = "07vl1j66xya4wqm3h42lpkhshpmz90b68r93i2766zhsnx0ryr5r"; + version = "1.6.8.2"; + sha256 = "1gdz227gmpax92xmwrvj9nrylybh4kk7m4yqr8qwa9i34dg1jzqx"; libraryHaskellDepends = [ base deepseq directory filepath unix ]; testHaskellDepends = [ base bytestring directory ]; description = "Process libraries"; @@ -195338,8 +195696,8 @@ self: { }: mkDerivation { pname = "prosidy"; - version = "1.6.0.0"; - sha256 = "19c8kz6kdd2flzi1gyddi4yp4fn62wfjahcp66saydb4ipxdxfs4"; + version = "1.6.0.1"; + sha256 = "1yd36sjs342may33fbrpzgaghql03wjgprbllkms8pr6d16z8m49"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base binary bytestring containers contravariant deepseq @@ -196900,7 +197258,8 @@ self: { doCheck = false; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ cdepillabout ]; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "purescript-bridge" = callPackage @@ -197359,6 +197718,22 @@ self: { broken = true; }) {}; + "pvar" = callPackage + ({ mkDerivation, async, base, deepseq, genvalidity, hspec + , primitive, QuickCheck + }: + mkDerivation { + pname = "pvar"; + version = "0.1.1.0"; + sha256 = "1fzcv2bzm9hf879a6vcgcsmyjn4fhpl9smz8phi6bq1acfzkg026"; + libraryHaskellDepends = [ base deepseq primitive ]; + testHaskellDepends = [ + async base deepseq genvalidity hspec primitive QuickCheck + ]; + description = "Mutable variable with primitive values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pvd" = callPackage ({ mkDerivation, array, base, Codec-Image-DevIL, containers , haskell98, libdevil, mtl, network, stm, X11 @@ -198663,31 +199038,37 @@ self: { }) {}; "quickcheck-state-machine" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , directory, doctest, exceptions, filelock, filepath, http-client - , matrix, monad-logger, mtl, network, persistent - , persistent-postgresql, persistent-template, pretty-show, process - , QuickCheck, quickcheck-instances, random, resourcet, servant - , servant-client, servant-server, strict, string-conversions, tasty - , tasty-hunit, tasty-quickcheck, text, tree-diff, unliftio, vector - , wai, warp + ({ mkDerivation, aeson, ansi-wl-pprint, array, base, bifunctors + , bytestring, containers, directory, doctest, exceptions, filelock + , filepath, generic-data, graphviz, hashable, hashtables, hs-rqlite + , HTTP, http-client, markov-chain-usage-model, matrix, monad-logger + , mtl, network, persistent, persistent-postgresql + , persistent-sqlite, persistent-template, postgresql-simple + , pretty-show, process, QuickCheck, quickcheck-instances, random + , resource-pool, resourcet, servant, servant-client, servant-server + , sop-core, split, stm, strict, string-conversions, tasty + , tasty-hunit, tasty-quickcheck, text, time, tree-diff, unliftio + , unliftio-core, vector, wai, warp }: mkDerivation { pname = "quickcheck-state-machine"; - version = "0.6.0"; - sha256 = "0zbjap2jjd534w6cigi4xz34x3f6w8icvxyvxs35j61c52cp2pry"; + version = "0.7.0"; + sha256 = "053fc1hxkpfpmwn5dq5x5vd094g978hwc145qpzknwbk6hrc28ka"; libraryHaskellDepends = [ - ansi-wl-pprint base containers exceptions matrix mtl pretty-show - QuickCheck tree-diff unliftio vector + ansi-wl-pprint base containers directory exceptions filepath + generic-data graphviz markov-chain-usage-model matrix mtl + pretty-show process QuickCheck random sop-core split text time + tree-diff unliftio ]; testHaskellDepends = [ - base bytestring containers directory doctest filelock filepath - http-client matrix monad-logger mtl network persistent - persistent-postgresql persistent-template pretty-show process - QuickCheck quickcheck-instances random resourcet servant - servant-client servant-server strict string-conversions tasty - tasty-hunit tasty-quickcheck text tree-diff unliftio vector wai - warp + aeson array base bifunctors bytestring containers directory doctest + filelock filepath hashable hashtables hs-rqlite HTTP http-client + monad-logger mtl network persistent persistent-postgresql + persistent-sqlite persistent-template postgresql-simple pretty-show + process QuickCheck quickcheck-instances random resource-pool + resourcet servant servant-client servant-server split stm strict + string-conversions tasty tasty-hunit tasty-quickcheck text time + tree-diff unliftio unliftio-core vector wai warp ]; description = "Test monadic programs using state machine based models"; license = stdenv.lib.licenses.bsd3; @@ -199923,6 +200304,19 @@ self: { broken = true; }) {}; + "rampart" = callPackage + ({ mkDerivation, base, criterion, hspec }: + mkDerivation { + pname = "rampart"; + version = "1.0.0.2"; + sha256 = "17apaldhpqwz8xdnjvz9lwsdlhpvad5107xw5d4v6ql8zvjgz0yw"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + benchmarkHaskellDepends = [ base criterion ]; + description = "🏰 Determine how intervals relate to each other"; + license = stdenv.lib.licenses.isc; + }) {}; + "ramus" = callPackage ({ mkDerivation, base, criterion, hspec, QuickCheck, quickcheck-io }: @@ -200127,8 +200521,8 @@ self: { }: mkDerivation { pname = "random-fu"; - version = "0.2.7.3"; - sha256 = "071b3gi88kmrfiy6kyz1x67mqljwqb4l45vzg1rc2zig3iwy66ih"; + version = "0.2.7.4"; + sha256 = "13dgx069lvdfxm7l2q2l6d7q0gd3wp41b8l4l6wmhlfbl5xici3m"; libraryHaskellDepends = [ base erf math-functions monad-loops mtl random-shuffle random-source rvar syb template-haskell transformers vector @@ -200196,16 +200590,16 @@ self: { "random-source" = callPackage ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64 - , mtl, mwc-random, random, stateref, syb, template-haskell - , th-extras + , mtl, mwc-random, primitive, random, stateref, syb + , template-haskell, th-extras }: mkDerivation { pname = "random-source"; - version = "0.3.0.6"; - sha256 = "0wsv41kpswqml04ym5bq2nan4i637f7h3fmvda2zy506xwxfrpzk"; + version = "0.3.0.8"; + sha256 = "0kjvpmxhff6id99hhgjp3vvb4vlhs3shkrh1n5cbfm7450lpmmn2"; libraryHaskellDepends = [ - base flexible-defaults mersenne-random-pure64 mtl mwc-random random - stateref syb template-haskell th-extras + base flexible-defaults mersenne-random-pure64 mtl mwc-random + primitive random stateref syb template-haskell th-extras ]; description = "Generic basis for random number generators"; license = stdenv.lib.licenses.publicDomain; @@ -200940,8 +201334,8 @@ self: { }: mkDerivation { pname = "rattletrap"; - version = "9.0.8"; - sha256 = "1a98zy1n6dlxxyfdganqfcx8hw04i4hjwdj8ggdd4g0jky62jaz2"; + version = "9.0.9"; + sha256 = "1i638s8q0vnwkn1s2gwdz98p28vg9rmlz0hc24maks80vbyjraba"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -202117,7 +202511,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "rebase_1_6" = callPackage + "rebase_1_6_0_1" = callPackage ({ mkDerivation, base, bifunctors, bytestring, comonad, containers , contravariant, contravariant-extras, deepseq, dlist, either , hashable, mtl, profunctors, scientific, selective, semigroupoids @@ -202126,8 +202520,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "1.6"; - sha256 = "1hsfff3rsaigjcg8s7mvipi68xqx4ala1zdrghgyb76z1c23m6iw"; + version = "1.6.0.1"; + sha256 = "0w0vy4y2v09a9v8qjqcxq5nqrdk8c1mw7lak9mwv16j59bcijn0x"; libraryHaskellDepends = [ base bifunctors bytestring comonad containers contravariant contravariant-extras deepseq dlist either hashable mtl profunctors @@ -202905,6 +203299,8 @@ self: { pname = "refined"; version = "0.4.4"; sha256 = "1xld5fc3nzsr43agvdlv0hbdbnrrsgy0n2a7mfrcc0n3s6rjbdcw"; + revision = "1"; + editedCabalFile = "184w9aj60hxm2bq9n29zakqzhi0kf4dqj7cwib31vilpwd0vgfvx"; libraryHaskellDepends = [ aeson base deepseq exceptions mtl prettyprinter QuickCheck template-haskell transformers @@ -203003,8 +203399,8 @@ self: { }: mkDerivation { pname = "reflex"; - version = "0.6.4"; - sha256 = "162gjk11z6yjdwnb7y9xhg6h851wxssz9zb548h52hdld9vdfkcf"; + version = "0.6.4.1"; + sha256 = "0zm5jgjn4r59h8r0180mkmfnggqv4mgg52vqfwpnz20dv942wzcb"; libraryHaskellDepends = [ base bifunctors comonad constraints-extras containers data-default dependent-map dependent-sum exception-transformers haskell-src-exts @@ -204805,6 +205201,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "relational-query_0_12_2_3" = callPackage + ({ mkDerivation, array, base, bytestring, containers, dlist + , names-th, persistable-record, product-isomorphic + , quickcheck-simple, sql-words, template-haskell, text + , th-constraint-compat, th-reify-compat, time, time-locale-compat + , transformers + }: + mkDerivation { + pname = "relational-query"; + version = "0.12.2.3"; + sha256 = "0zjqk0gkzdhg1l8rw0bz7iwvp55p585xaqp8dc3sbbr0abhmsgi5"; + libraryHaskellDepends = [ + array base bytestring containers dlist names-th persistable-record + product-isomorphic sql-words template-haskell text + th-constraint-compat th-reify-compat time time-locale-compat + transformers + ]; + testHaskellDepends = [ + base containers product-isomorphic quickcheck-simple transformers + ]; + description = "Typeful, Modular, Relational, algebraic query engine"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "relational-query-HDBC" = callPackage ({ mkDerivation, base, containers, convertible, dlist, HDBC , HDBC-session, names-th, persistable-record, product-isomorphic @@ -204884,6 +205305,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "relational-schemas_0_1_8_0" = callPackage + ({ mkDerivation, base, bytestring, containers, relational-query + , sql-words, template-haskell, time + }: + mkDerivation { + pname = "relational-schemas"; + version = "0.1.8.0"; + sha256 = "012b3jqxpyv41vwxvrk6nxall7hvbczkxwmld3w3jzg20z0535l4"; + libraryHaskellDepends = [ + base bytestring containers relational-query sql-words + template-haskell time + ]; + description = "RDBMSs' schema templates for relational-query"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "relative-date" = callPackage ({ mkDerivation, base, concatenative, datetime, mtl, parsec, time }: @@ -205963,8 +206401,8 @@ self: { }: mkDerivation { pname = "reqcatcher"; - version = "0.2.1.0"; - sha256 = "1fh9p7437czn7rw5jmpxlmg0zhrkkj5hwd0kzlr2jainxzvlw2b3"; + version = "0.2.2.0"; + sha256 = "0wiazimb8vpsdxrh012hczcxfapxyggq3p54f6lvcljmggh2ncdw"; libraryHaskellDepends = [ base http-types network text wai warp ]; testHaskellDepends = [ base http-client http-types HUnit lens tasty tasty-hunit wai wreq @@ -206055,12 +206493,12 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "rerebase_1_6" = callPackage + "rerebase_1_6_0_1" = callPackage ({ mkDerivation, rebase }: mkDerivation { pname = "rerebase"; - version = "1.6"; - sha256 = "0g2bgh30ra006w4ypsrnyvfwys4ajg2b0k6c55snci12acs2igzd"; + version = "1.6.0.1"; + sha256 = "07ddcmm2yx71nvgcbj87skrx5pfzsqhi87dxn7vv41ssibv714fk"; libraryHaskellDepends = [ rebase ]; description = "Reexports from \"base\" with a bunch of other standard libraries"; license = stdenv.lib.licenses.mit; @@ -206801,6 +207239,39 @@ self: { broken = true; }) {}; + "retrie" = callPackage + ({ mkDerivation, ansi-terminal, async, base, bytestring, containers + , data-default, deepseq, directory, filepath, ghc, ghc-exactprint + , ghc-paths, haskell-src-exts, HUnit, mtl, optparse-applicative + , process, random-shuffle, syb, tasty, tasty-hunit, temporary, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "retrie"; + version = "0.1.0.0"; + sha256 = "0x8mc4w6w1pr8k9cmhnb4wad2brqj37qfhkg1vm47zmv3r5sza3s"; + revision = "1"; + editedCabalFile = "1gxd78fpn7pw30k0p70vgrr82qcbq4397fk41c4i7rb7m0y4kk3j"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal async base bytestring containers data-default + directory filepath ghc ghc-exactprint haskell-src-exts mtl + optparse-applicative process random-shuffle syb text transformers + unordered-containers + ]; + executableHaskellDepends = [ base data-default ]; + testHaskellDepends = [ + base containers data-default deepseq directory filepath ghc + ghc-paths HUnit mtl optparse-applicative process syb tasty + tasty-hunit temporary text unordered-containers + ]; + description = "A powerful, easy-to-use codemodding tool for Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "retry" = callPackage ({ mkDerivation, base, exceptions, ghc-prim, hedgehog, HUnit, mtl , random, stm, tasty, tasty-hedgehog, tasty-hunit, time @@ -207807,6 +208278,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "RISC-V"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "risc386" = callPackage @@ -209174,6 +209647,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Recurrence rule parser and formatter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "rsagl" = callPackage @@ -209716,10 +210191,8 @@ self: { }: mkDerivation { pname = "rvar"; - version = "0.2.0.3"; - sha256 = "1h3bii1pamkv7656280i6zx7fpdwgbn2ysfijpd2s65szlpsz2np"; - revision = "1"; - editedCabalFile = "1ifwwjlhc3l8ycjmmarw6v1nm7jxpgqw2ly0q35idlj0jc0nbxn6"; + version = "0.2.0.4"; + sha256 = "0p67lbzcbbm5bkhv0x380bdald6kaqlf968ay2q8qj69izpvk181"; libraryHaskellDepends = [ base MonadPrompt mtl random-source transformers ]; @@ -210019,6 +210492,8 @@ self: { ]; description = "Automatic JSON format versioning"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "safe-lazy-io" = callPackage @@ -210480,6 +210955,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "salak_0_3_6" = callPackage + ({ mkDerivation, base, bytestring, containers, criterion + , data-default, directory, dlist, exceptions, filepath, hashable + , heaps, hspec, hspec-discover, megaparsec, mtl, QuickCheck, random + , scientific, text, time, unliftio-core, unordered-containers + }: + mkDerivation { + pname = "salak"; + version = "0.3.6"; + sha256 = "00qyd09az0ldfidfgcki8z3r9gcpxmss3iyr99as5bky29rlz9n3"; + libraryHaskellDepends = [ + base bytestring containers data-default directory dlist exceptions + filepath hashable heaps megaparsec mtl scientific text time + unliftio-core unordered-containers + ]; + testHaskellDepends = [ + base hspec mtl QuickCheck random scientific text + unordered-containers + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ + base criterion data-default mtl text time + ]; + description = "Configuration (re)Loader and Parser"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "salak-toml" = callPackage ({ mkDerivation, base, criterion, exceptions, hspec, mtl , QuickCheck, salak, text, time, tomland, unordered-containers @@ -213262,8 +213765,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {libsecp256k1 = null;}; "secp256k1-legacy" = callPackage @@ -213275,6 +213776,8 @@ self: { pname = "secp256k1-legacy"; version = "0.5.6"; sha256 = "0p7kp7011hfc95rdchkniw3gj5i0pkwgsa5kkhwn6fjzs2clslbz"; + revision = "1"; + editedCabalFile = "0fz2nypf6p1qsvcvvfa7ya0pggvkr2jsm306ryy8grncbzy4ydgm"; setupHaskellDepends = [ base Cabal ]; libraryHaskellDepends = [ base base16-bytestring bytestring cereal entropy mtl QuickCheck @@ -214099,6 +214602,8 @@ self: { ]; description = "A tool to send command execution results to Sensu"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "sentence-jp" = callPackage @@ -217194,21 +217699,21 @@ self: { "servant-to-elm" = callPackage ({ mkDerivation, aeson, base, bound, elm-syntax, haskell-to-elm - , http-types, protolude, servant, servant-multipart, text + , http-types, servant, servant-multipart, text }: mkDerivation { pname = "servant-to-elm"; - version = "0.4.0.0"; - sha256 = "04i4mcj41c6wzxj9kgy7x8w9f3aaa77rr91c40qbhf1lkf7jmsny"; + version = "0.4.1.0"; + sha256 = "0kxkyijkxvpb5jv815i9s6pg7rnq437jj7hrwr0xprxd709mc648"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bound elm-syntax haskell-to-elm http-types protolude - servant servant-multipart text + aeson base bound elm-syntax haskell-to-elm http-types servant + servant-multipart text ]; testHaskellDepends = [ - aeson base bound elm-syntax haskell-to-elm http-types protolude - servant servant-multipart text + aeson base bound elm-syntax haskell-to-elm http-types servant + servant-multipart text ]; description = "Automatically generate Elm clients for Servant APIs"; license = stdenv.lib.licenses.bsd3; @@ -217436,33 +217941,6 @@ self: { }) {}; "serverless-haskell" = callPackage - ({ mkDerivation, aeson, aeson-casing, amazonka-core - , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive - , hspec, hspec-discover, http-types, iproute, lens, network - , network-simple, raw-strings-qq, text, time, unix - , unordered-containers - }: - mkDerivation { - pname = "serverless-haskell"; - version = "0.10.1"; - sha256 = "18iqj3c60sx6v1d8lnlv0gcd1xrpvjwqwnshsi2n823dp1j975gp"; - libraryHaskellDepends = [ - aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base - bytestring case-insensitive http-types iproute lens network - network-simple text time unix unordered-containers - ]; - testHaskellDepends = [ - aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base - bytestring case-insensitive hspec hspec-discover http-types iproute - lens network network-simple raw-strings-qq text time unix - unordered-containers - ]; - testToolDepends = [ hspec-discover ]; - description = "Deploying Haskell code onto AWS Lambda using Serverless"; - license = stdenv.lib.licenses.mit; - }) {}; - - "serverless-haskell_0_10_2" = callPackage ({ mkDerivation, aeson, aeson-casing, amazonka-core , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive , hspec, hspec-discover, http-types, iproute, lens, network @@ -217487,7 +217965,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Deploying Haskell code onto AWS Lambda using Serverless"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serversession" = callPackage @@ -218512,20 +218989,20 @@ self: { }) {}; "shake-bindist" = callPackage - ({ mkDerivation, archive-sig, archive-tar, base, bytestring, bz2 - , lzlib, shake, zlib, zstd + ({ mkDerivation, archive-sig, base, bytestring, bz2, lzlib, shake + , zlib, zstd }: mkDerivation { pname = "shake-bindist"; - version = "0.1.0.0"; - sha256 = "0f2w7bbnnigfjpfywljl6k2gcz1rq99lfz7cig0076rbjg7aifii"; - revision = "2"; - editedCabalFile = "0bk1r9qn41xhhjisvahs0fdsfiv79rb1yk545ry0vw83d0af6kl8"; + version = "1.0.0.0"; + sha256 = "0fzq62a8rjh9jc9dc7rfi6ypp0fax7fhlf632a30mrbpk1hqyfz8"; libraryHaskellDepends = [ - archive-sig archive-tar base bytestring bz2 lzlib shake zlib zstd + archive-sig base bytestring bz2 lzlib shake zlib zstd ]; description = "Rules for binary distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "shake-c" = callPackage @@ -222040,6 +222517,8 @@ self: { ]; description = "Lucid support for Skylighting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "skylighting-modding" = callPackage @@ -227050,8 +227529,8 @@ self: { ({ mkDerivation, base, QuickCheck, quickcheck-simple }: mkDerivation { pname = "sql-words"; - version = "0.1.6.3"; - sha256 = "11z6g85dzrvkhnz0g6rhv5s2ssqcyyzbi2pp5rwzp30xp0ivsx95"; + version = "0.1.6.4"; + sha256 = "1rd2rkhq56zwv3s1jzxq0vjshjnf5818f70w6ayxbmmg87kiwwy0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base QuickCheck quickcheck-simple ]; description = "SQL keywords data constructors into OverloadedString"; @@ -227139,8 +227618,6 @@ self: { ]; description = "Mid-Level SQLite client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "sqlite-simple-errors" = callPackage @@ -227672,35 +228149,6 @@ self: { }) {}; "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, criterion - , deepseq, directory, file-embed, filepath, hspec, hspec-discover - , hspec-megaparsec, megaparsec, mtl, template-haskell, text - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "stache"; - version = "2.1.0"; - sha256 = "1q34h46px7miy2kx1yzaj785ai70mkchmijpdq2iih1fffir8kvk"; - revision = "2"; - editedCabalFile = "0vzby2q8qp6z74ighqalw05b94821cl9w6dbwy4hkgd67pc38nph"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - testHaskellDepends = [ - aeson base bytestring containers file-embed hspec hspec-megaparsec - megaparsec template-haskell text yaml - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - aeson base criterion deepseq megaparsec text - ]; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "stache_2_1_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, criterion , deepseq, directory, file-embed, filepath, hspec, hspec-discover , hspec-megaparsec, megaparsec, mtl, template-haskell, text @@ -227725,7 +228173,6 @@ self: { ]; description = "Mustache templates for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack" = callPackage @@ -228115,8 +228562,8 @@ self: { pname = "stack2cabal"; version = "1.0.5"; sha256 = "15swq7rv997fh1qka7ga5hc90gc889xzkx61910jz3an6sy5zx0p"; - revision = "1"; - editedCabalFile = "15qc686alcfbxjpr7iyi2bxv801cmbkqvncpb6jd0879ll9lznrh"; + revision = "2"; + editedCabalFile = "12dkq7shcsyp8yrr2vvzf968w3x11kgxqlam1h0m33zvjksbw6dq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -235550,6 +235997,8 @@ self: { pname = "taffybar"; version = "3.2.2"; sha256 = "02b6rmsb89c1h7fr81ljbij30pnl8z4dz6xz367g7a2b9hwq42gz"; + revision = "1"; + editedCabalFile = "0284vnzvgpjjh95p67k2b5476npa52hs8g55fvlvlcx487zpc1sc"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -235999,8 +236448,8 @@ self: { pname = "tai"; version = "0"; sha256 = "1kp7m9mhawi2fbdsir4kg9z6hbmlw4kmp3kjvlk4qkhvckgl3pxw"; - revision = "1"; - editedCabalFile = "0m95bx120pjigxncbdb28y3cv4d6x05vgpjgny86vk0lkslk130y"; + revision = "3"; + editedCabalFile = "09wmlfswhs0839iq08br4i4zgjavvwxavcp0i0mldgrj82x9cxfy"; libraryHaskellDepends = [ base clock lens mtl parsers time trifecta wreq ]; @@ -237133,8 +237582,6 @@ self: { ]; description = "TAP (Test Anything Protocol) Version 13 formatter for tasty"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "tasty-test-reporter" = callPackage @@ -238212,7 +238659,7 @@ self: { license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) libtensorflow;}; + }) {libtensorflow = null;}; "tensorflow-core-ops" = callPackage ({ mkDerivation, base, bytestring, Cabal, directory, filepath @@ -240137,8 +240584,8 @@ self: { }: mkDerivation { pname = "text-replace"; - version = "0.0.0.4"; - sha256 = "18hiy0d18wxh8v4zd6vg69fwd8vp9b2yd3ngf04yh9y1bl8wwwhb"; + version = "0.0.0.6"; + sha256 = "05hr2185q4rcn1hvrrkqy2sbl8xzk7ij00x61vhvmyk29dbbk2cf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; @@ -240215,8 +240662,8 @@ self: { pname = "text-show-instances"; version = "3.8.3"; sha256 = "11v335p3wzf9ijqlkls5mk4m16dfak8fckn4gj7mahs8c7l9lm5d"; - revision = "1"; - editedCabalFile = "104r5k4h4sdf69frpc0pr8jijk4v9dalw9c18yib653bwjw0ypl4"; + revision = "2"; + editedCabalFile = "001xn2aq5k8hhn5iwhmxv1s3mnxyg630klmmdhbp3lxdb2yq8rha"; libraryHaskellDepends = [ base base-compat-batteries bifunctors binary containers directory ghc-boot-th haskeline hpc old-locale old-time pretty random @@ -240818,20 +241265,20 @@ self: { }) {}; "th-instance-reification" = callPackage - ({ mkDerivation, base, containers, HTF, list-extras, loch-th - , placeholders, template-haskell, th-expand-syns + ({ mkDerivation, base, containers, list-extras, QuickCheck + , quickcheck-instances, rerebase, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, th-expand-syns }: mkDerivation { pname = "th-instance-reification"; - version = "0.1.4"; - sha256 = "0cnq7qxqpc58a59iv8sfqrkhx9wkzpgn9l7r84kh0xa21w16inki"; + version = "0.1.5"; + sha256 = "0ssnd45bvz4k0fajc3xlqy7iq92rm0pjn3wwl4brnvaf7l1180q4"; libraryHaskellDepends = [ - base containers list-extras loch-th placeholders template-haskell - th-expand-syns + base containers list-extras template-haskell th-expand-syns ]; testHaskellDepends = [ - base containers HTF list-extras loch-th placeholders - template-haskell th-expand-syns + QuickCheck quickcheck-instances rerebase tasty tasty-hunit + tasty-quickcheck template-haskell ]; description = "Fixed versions of instances reification functions"; license = stdenv.lib.licenses.mit; @@ -242272,14 +242719,14 @@ self: { broken = true; }) {}; - "time_1_9_3" = callPackage + "time_1_10" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, random, tasty , tasty-hunit, tasty-quickcheck, unix }: mkDerivation { pname = "time"; - version = "1.9.3"; - sha256 = "03n7lsapydivwj7lv2azb5i31ph8365kzh7zbl3kcgzzmiz9cnsp"; + version = "1.10"; + sha256 = "1000fhgcvqagvyhm587zf6y9g2ffj517w0hsvvpbzj1sggyjc93s"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq QuickCheck random tasty tasty-hunit tasty-quickcheck @@ -242311,10 +242758,8 @@ self: { }: mkDerivation { pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "05va0rqs759vbridbcl6hksp967j9anjvys8vx72fnfkhlrn2s52"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; + version = "1.9.3"; + sha256 = "126vlfzv3z91vnjlkqarkyhs91hrx4g08gnrvsldqpclczk48smv"; libraryHaskellDepends = [ base base-orphans deepseq time ]; testHaskellDepends = [ base base-compat deepseq HUnit QuickCheck tagged tasty tasty-hunit @@ -244947,6 +245392,8 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Package to list all tracked and untracked existing files via Git"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "tracker" = callPackage @@ -247245,33 +247692,6 @@ self: { }) {}; "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, criterion, directory, doctest, exceptions, fail - , foldl, hostname, managed, optional-args, optparse-applicative - , process, semigroups, stm, streaming-commons, system-fileio - , system-filepath, temporary, text, time, transformers, unix - , unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.16"; - sha256 = "164cs5gsl6pmfj4yd9p4vj02n1sj5krgd6azd5zfgyw4q7bfc5jn"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm streaming-commons - system-fileio system-filepath temporary text time transformers unix - unix-compat - ]; - testHaskellDepends = [ - base doctest fail system-filepath temporary - ]; - benchmarkHaskellDepends = [ base criterion text ]; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "turtle_1_5_17" = callPackage ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock , containers, criterion, directory, doctest, exceptions, fail , foldl, hostname, managed, optional-args, optparse-applicative @@ -247296,7 +247716,6 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "turtle-options" = callPackage @@ -251355,6 +251774,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "unliftio-pool_0_2_1_1" = callPackage + ({ mkDerivation, base, resource-pool, time, transformers + , unliftio-core + }: + mkDerivation { + pname = "unliftio-pool"; + version = "0.2.1.1"; + sha256 = "0hxxngldp4zr55qv67gf62a87yxr1f0xfyh4gfzr45q62mscs8xv"; + libraryHaskellDepends = [ + base resource-pool time transformers unliftio-core + ]; + description = "Data.Pool generalized to MonadUnliftIO."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unliftio-streams" = callPackage ({ mkDerivation, base, bytestring, io-streams, text, unliftio-core }: @@ -253519,6 +253954,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "validation-selective" = callPackage + ({ mkDerivation, base, deepseq, doctest, hedgehog, hspec + , hspec-hedgehog, selective, text + }: + mkDerivation { + pname = "validation-selective"; + version = "0.0.0.0"; + sha256 = "01awbhfday2j0jcfgqq074yqxxasqddwxhlwigsbjgv94b4c55bd"; + libraryHaskellDepends = [ base deepseq selective ]; + testHaskellDepends = [ + base doctest hedgehog hspec hspec-hedgehog selective text + ]; + description = "Lighweight pure data validation based on Applicative and Selective functors"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "validations" = callPackage ({ mkDerivation, base, containers, digestive-functors, HUnit, mtl , QuickCheck, test-framework, test-framework-hunit @@ -256463,27 +256916,6 @@ self: { }) {}; "wai-enforce-https" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, hspec - , http-types, network, text, wai, wai-extra - }: - mkDerivation { - pname = "wai-enforce-https"; - version = "0.0.2"; - sha256 = "0p3j438knirr32j6dhqscws93h3ygk6lvw97r489h8i1dip9rqll"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network text wai - ]; - testHaskellDepends = [ - base bytestring case-insensitive hspec http-types wai wai-extra - ]; - description = "Enforce HTTPS in Wai server app safely"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "wai-enforce-https_0_0_2_1" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, hspec , http-types, network, text, wai, wai-extra }: @@ -256502,7 +256934,6 @@ self: { ]; description = "Enforce HTTPS in Wai server app safely"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-eventsource" = callPackage @@ -257087,6 +257518,25 @@ self: { broken = true; }) {}; + "wai-middleware-clacks" = callPackage + ({ mkDerivation, base, base-compat-batteries, bytestring + , case-insensitive, http-types, tasty, tasty-wai, text, wai + }: + mkDerivation { + pname = "wai-middleware-clacks"; + version = "0.1.0.1"; + sha256 = "1mx3qmyiywib8wcrccxd7wjlx4jv9wlc5w8lykivgh8q66pbcihf"; + libraryHaskellDepends = [ + base base-compat-batteries bytestring case-insensitive http-types + text wai + ]; + testHaskellDepends = [ + base base-compat-batteries http-types tasty tasty-wai wai + ]; + description = "GNU Terry Pratchett - Add the X-Clacks-Overhead Header to Wai Responses"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-middleware-consul" = callPackage ({ mkDerivation, async, base, base-prelude, bytestring, conduit , conduit-extra, consul-haskell, enclosed-exceptions, http-client @@ -257446,6 +257896,8 @@ self: { pname = "wai-middleware-static"; version = "0.8.3"; sha256 = "0l6az106r970v3jwx3z7fg7x8ja8x5hla0m5lwg7sjfs9vdh0bnl"; + revision = "1"; + editedCabalFile = "0jinswa97ll70xxj6hm4mxw7i1cfnm8jn87aczzccn9xscdpll4c"; libraryHaskellDepends = [ base bytestring containers cryptonite directory expiring-cache-map filepath http-types memory mime-types mtl old-locale semigroups @@ -258184,15 +258636,16 @@ self: { "warp-grpc" = callPackage ({ mkDerivation, async, base, binary, bytestring, case-insensitive - , http-types, http2, http2-grpc-types, wai, warp, warp-tls + , http-types, http2, http2-grpc-types, unliftio-core, wai, warp + , warp-tls }: mkDerivation { pname = "warp-grpc"; - version = "0.3.0.0"; - sha256 = "15zpb9liai56i9765sf05kww7zykd68kd38vc0s0rhx9jgqk2clj"; + version = "0.4.0.0"; + sha256 = "1isi0xd6vvavvr4m3gfiqj2cmmpa3jn9py61m0ksrarxwmsw8s1g"; libraryHaskellDepends = [ async base binary bytestring case-insensitive http-types http2 - http2-grpc-types wai warp warp-tls + http2-grpc-types unliftio-core wai warp warp-tls ]; description = "A minimal gRPC server on top of Warp"; license = stdenv.lib.licenses.bsd3; @@ -259693,21 +260146,25 @@ self: { }) {}; "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, text - , unordered-containers, vector, yaml + ({ mkDerivation, algebraic-graphs, base, bytestring, containers + , dhall, directory, filepath, generic-lens, ghc, lens, mtl + , optparse-applicative, regex-tdfa, transformers }: mkDerivation { pname = "weeder"; - version = "1.0.8"; - sha256 = "1ylwq1087x6ppn5y5krvl6q6fxcln58y8fwbah3ygp0cpgm4w816"; + version = "2.0.1"; + sha256 = "1x5hgyp3zcwz63wcwh8bqalckcb7baakj39zwymifirxvhkws1xz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml + algebraic-graphs base bytestring containers dhall directory + filepath generic-lens ghc lens mtl optparse-applicative regex-tdfa + transformers + ]; + executableHaskellDepends = [ + base bytestring containers directory filepath ghc + optparse-applicative transformers ]; - executableHaskellDepends = [ base ]; description = "Detect dead code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -261052,8 +261509,8 @@ self: { }: mkDerivation { pname = "wordlist"; - version = "0.1.0.2"; - sha256 = "1p3pzacg4s0hx4gq2slm1bgkvr8fh3q1iqlpidbc3pc9whclr173"; + version = "0.1.0.4"; + sha256 = "0v2xnm4iqk8wh3l05vkmfblwk49q54awp2qr1cwszgxfzaz4n9zb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base optparse-applicative text ]; @@ -265006,35 +265463,6 @@ self: { }) {}; "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , conduit, containers, directory, filepath, hspec, HUnit, libyaml - , mockery, mtl, raw-strings-qq, resourcet, scientific - , template-haskell, temporary, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "035sqc2bnya3ghv5i0qk9jdg9q6jvqzgnc5gkg9mgf4drjrd5wni"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - testHaskellDepends = [ - aeson attoparsec base base-compat bytestring conduit containers - directory filepath hspec HUnit libyaml mockery mtl raw-strings-qq - resourcet scientific template-haskell temporary text transformers - unordered-containers vector - ]; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "yaml_0_11_3_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring , conduit, containers, directory, filepath, hspec, HUnit, libyaml , mockery, mtl, raw-strings-qq, resourcet, scientific @@ -265061,7 +265489,6 @@ self: { ]; description = "Support for parsing and rendering YAML documents"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-combinators" = callPackage @@ -265269,8 +265696,8 @@ self: { pname = "yampa-canvas"; version = "0.2.3"; sha256 = "0a1pq1psmc4490isr19z4prnqq1w3374vkfmzpw9s20s2p6k5y7r"; - revision = "3"; - editedCabalFile = "02zzv9xlmvja8jpgnk1r7wfrh33593qbmhbwrcnw0bmjvbk28ps1"; + revision = "4"; + editedCabalFile = "0yx1g19shmrhapmyqzksh861zyyrlwvv158ls5n9imlxr21zssf3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blank-canvas stm time Yampa ]; @@ -265637,8 +266064,8 @@ self: { }: mkDerivation { pname = "yeamer"; - version = "0.1.0.3"; - sha256 = "02v33ya0nc0qvsnc5dz33kargyprzxjhbrcdfi439psxh43rw9fp"; + version = "0.1.0.5"; + sha256 = "0c8yrh43h9qhhdiz0dnrh00frfz0cymzzz9k723jnp03b8994srq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -266091,8 +266518,8 @@ self: { }: mkDerivation { pname = "yesod-auth-fb"; - version = "1.9.1"; - sha256 = "1368hxic51vnilwp6dygc98yfclqi0vn1vwkxpvdd9vzy73kdj0i"; + version = "1.10.1"; + sha256 = "01ckr3zs9bqwwskah2fd7rkpirifyl16v1xk062qx87zcwkf408r"; libraryHaskellDepends = [ aeson base bytestring conduit fb http-conduit resourcet shakespeare text time transformers unliftio wai yesod-auth yesod-core yesod-fb @@ -266774,8 +267201,8 @@ self: { }: mkDerivation { pname = "yesod-fb"; - version = "0.6.0"; - sha256 = "0anhnbwc9j11lm2sh8wi15p160vb9g0ng8lqc6g8am61jsxxw40x"; + version = "0.6.1"; + sha256 = "1nyi5jp85ysabljkds6h4w8ndrb12ac76awsih52amf60k4n7afl"; libraryHaskellDepends = [ aeson base bytestring conduit fb http-client-tls http-conduit memory text wai yesod-core @@ -269648,7 +270075,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "zip_1_4_0" = callPackage + "zip_1_4_1" = callPackage ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive , cereal, conduit, conduit-extra, containers, digest, directory , dlist, exceptions, filepath, hspec, monad-control, mtl @@ -269657,8 +270084,8 @@ self: { }: mkDerivation { pname = "zip"; - version = "1.4.0"; - sha256 = "07g17n6fr86c6c5yhs8ml53mk0g032060vja620bp32irfm00m2r"; + version = "1.4.1"; + sha256 = "0jnvqss17zjfs91flsammlx4flw527iddlav37jzqihi6j65aqp2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ From 57874b620e4f76509936fab269e23261a3508e26 Mon Sep 17 00:00:00 2001 From: Samuel Evans-Powell Date: Thu, 19 Mar 2020 09:20:50 +0800 Subject: [PATCH 12/14] prometheus: no need to jailbreak - prometheus no longer needs to be jailbroken, removing 'doJailbreak'. Jailbreaking was added in https://github.com/NixOS/nixpkgs/pull/70956 to overcome issue https://github.com/bitnomial/prometheus/issues/34. - This issue has since been fixed and so jailbreaking is no longer necessary. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1dae1dab133d..13566f3afd43 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1250,10 +1250,6 @@ self: super: { ''; }); - # Version bounds for http-client are too strict: - # https://github.com/bitnomial/prometheus/issues/34 - prometheus = doJailbreak super.prometheus; - # The doctests in universum-1.5.0 are broken. The doctests in versions of universum after # 1.5.0 should be fixed, so this should be able to be removed. universum = dontCheck super.universum; From 3f0bc2e7c2817f64442d2a321c405d5e27958e6e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 20 Mar 2020 20:25:42 +0100 Subject: [PATCH 13/14] haskell-weeder: build with latest generic-lens --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 13566f3afd43..afa3c5338949 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1485,4 +1485,7 @@ self: super: { sha256 = "097wqn8hxsr50b9mhndg5pjim5jma2ym4ylpibakmmb5m98n17zp"; }); + # Needs a version that's newer than LTS-15.x provides. + weeder = super.weeder.override { generic-lens = self.generic-lens_2_0_0_0; }; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super From 1b2b88671ee7642208f878e6029b50f725ee3e95 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 20 Mar 2020 20:46:21 +0100 Subject: [PATCH 14/14] haskell-fast-logger: fix the build with ghc-8.4.x --- pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix index 513c55ea9e9c..c4c5ed9422f7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix @@ -83,4 +83,7 @@ self: super: { # Newer versions don't compile. resolv = self.resolv_0_1_1_2; + # The old Haddock cannot process the newer documentation syntax. + fast-logger = dontHaddock super.fast-logger; + }