nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #171099 from NixOS/haskell-updates

haskellPackages: update stackage and hackage

authored by

Ellie Hermaszewska and committed by
GitHub
a2fc0d6f d59dd43e

+1776 -811
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "762464dcc5ce93f1c6a9a746feb6bd1bd0c47006", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/762464dcc5ce93f1c6a9a746feb6bd1bd0c47006.tar.gz", 4 - "sha256": "0k1qp34lsc08a99p669v8n0fxs6mdzwc2bz87v0hdah4qagi4z4g", 5 - "msg": "Update from Hackage at 2022-04-20T23:34:08Z" 2 + "commit": "08ae12813ead00810e00ffe9dae284fcafe6a08a", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/08ae12813ead00810e00ffe9dae284fcafe6a08a.tar.gz", 4 + "sha256": "00jc08pifnp791s1scscdhgwlf75v9682a7vjis1djnhj3y5s3ny", 5 + "msg": "Update from Hackage at 2022-05-01T06:09:30Z" 6 6 }
+10 -7
pkgs/development/haskell-modules/configuration-arm.nix
··· 99 99 hls-class-plugin = dontCheck super.hls-class-plugin; 100 100 hls-selection-range-plugin = dontCheck super.hls-selection-range-plugin; 101 101 102 - # Similar RTS issue in test suite: 103 - # rts/linker/elf_reloc_aarch64.c:98: encodeAddendAarch64: Assertion `isInt64(21+12, addend)' failed. 104 - hls-hlint-plugin = dontCheck super.hls-hlint-plugin; 105 - hls-ormolu-plugin = dontCheck super.hls-ormolu-plugin; 106 - hls-haddock-comments-plugin = dontCheck super.hls-haddock-comments-plugin; 107 - 108 - 109 102 # https://github.com/ekmett/half/issues/35 110 103 half = dontCheck super.half; 111 104 112 105 # We disable profiling on aarch64, so tests naturally fail 113 106 ghc-prof = dontCheck super.ghc-prof; 114 107 108 + } // lib.optionalAttrs (pkgs.stdenv.hostPlatform.isAarch64 && builtins.compareVersions super.ghc.version "9.2" < 0) { 109 + # Some aarch64 issues have been fixed since 9.2 110 + 111 + # Similar RTS issue in test suite: 112 + # rts/linker/elf_reloc_aarch64.c:98: encodeAddendAarch64: Assertion `isInt64(21+12, addend)' failed. 113 + # Fixed since 9.2 114 + hls-ormolu-plugin = dontCheck super.hls-ormolu-plugin; 115 + hls-haddock-comments-plugin = dontCheck super.hls-haddock-comments-plugin; 116 + hls-rename-plugin = dontCheck super.hls-rename-plugin; 117 + hls-fourmolu-plugin = dontCheck super.hls-fourmolu-plugin; 115 118 } // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch32 { 116 119 # AARCH32-SPECIFIC OVERRIDES 117 120
+9 -13
pkgs/development/haskell-modules/configuration-common.nix
··· 1667 1667 1668 1668 lsp = assert super.lsp.version == "1.4.0.0"; dontCheck super.lsp; 1669 1669 1670 - hls-test-utils = assert super.hls-test-utils.version == "1.2.0.0"; appendPatches [ 1671 - (fetchpatch { 1672 - url = "https://github.com/haskell/haskell-language-server/commit/074593987e9086e308b89ecde336de2c64861dc0.patch"; 1673 - sha256 = "sha256-uTlIbGQKulP3963UPL2V9cqMoIvPscK+s2W/HtBmMWc="; 1674 - relative = "hls-test-utils"; 1675 - }) 1676 - (fetchpatch { 1677 - url = "https://github.com/haskell/haskell-language-server/commit/78305f21783807b04baebca4860c255bfe84d4ab.patch"; 1678 - sha256 = "sha256-oe8Q8kBJBkel+pR5imFj43NVpm4afcyLgAUCWhrIoPk="; 1679 - relative = "hls-test-utils"; 1680 - }) 1681 - ] super.hls-test-utils; 1682 - 1683 1670 # 2021-05-08: Tests fail: https://github.com/haskell/haskell-language-server/issues/1809 1684 1671 hls-eval-plugin = dontCheck super.hls-eval-plugin; 1685 1672 ··· 2308 2321 # 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2205 2309 2322 hls-stylish-haskell-plugin = doJailbreak super.hls-stylish-haskell-plugin; 2310 2323 2324 + # Necesssary .txt files are not included in sdist. 2325 + # https://github.com/haskell/haskell-language-server/pull/2887 2326 + hls-change-type-signature-plugin = dontCheck super.hls-change-type-signature-plugin; 2327 + 2311 2328 # Too strict bounds on hspec 2312 2329 # https://github.com/haskell-works/hw-hspec-hedgehog/issues/62 2313 2330 # https://github.com/haskell-works/hw-prim/issues/132 ··· 2647 2656 url = "https://github.com/erebe/wstunnel/pull/107/commits/47c1f62bdec1dbe77088d9e3ceb6d872f922ce34.patch"; 2648 2657 sha256 = "sha256-fW5bVbAGQxU/gd9zqgVNclwKraBtUjkKDek7L0c4+O0="; 2649 2658 }) super.wstunnel; 2659 + 2660 + # Adjustment of bounds on servant is unreleased 2661 + # https://github.com/haskell-servant/servant-cassava/commit/66617547851d38d48f5f1d1b786db1286bdafa9d 2662 + servant-cassava = assert super.servant-cassava.version == "0.10.1"; 2663 + doJailbreak super.servant-cassava; 2650 2664 2651 2665 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+5
pkgs/development/haskell-modules/configuration-darwin.nix
··· 200 200 hls-haddock-comments-plugin = dontCheck super.hls-haddock-comments-plugin; 201 201 hls-floskell-plugin = dontCheck super.hls-floskell-plugin; 202 202 hls-call-hierarchy-plugin = dontCheck super.hls-call-hierarchy-plugin; 203 + # 2022-05-05: Tests fail and I have no way to debug them. 204 + hls-rename-plugin = dontCheck super.hls-rename-plugin; 203 205 204 206 # We are lacking pure pgrep at the moment for tests to work 205 207 tmp-postgres = dontCheck super.tmp-postgres; ··· 291 289 # tests appear to be failing to link or something: 292 290 # https://hydra.nixos.org/build/174540882/nixlog/9 293 291 regex-rure = dontCheck super.regex-rure; 292 + # same 293 + # https://hydra.nixos.org/build/174540882/nixlog/9 294 + jacinda = dontCheck super.jacinda; 294 295 })
+3 -1
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 43 43 time = null; 44 44 transformers = null; 45 45 unix = null; 46 - xhtml = null; 46 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 47 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 48 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 47 49 48 50 # cabal-install needs more recent versions of Cabal and base16-bytestring. 49 51 cabal-install = super.cabal-install.overrideScope (self: super: {
+3 -1
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
··· 42 42 time = null; 43 43 transformers = null; 44 44 unix = null; 45 - xhtml = null; 45 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 46 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 47 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 46 48 47 49 # Needs Cabal 3.0.x. 48 50 cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
+3 -1
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 42 42 time = null; 43 43 transformers = null; 44 44 unix = null; 45 - xhtml = null; 45 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 46 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 47 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 46 48 47 49 # GHC 8.8.x can build haddock version 2.23.* 48 50 haddock = self.haddock_2_23_1;
+3 -1
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 44 44 time = null; 45 45 transformers = null; 46 46 unix = null; 47 - xhtml = null; 47 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 48 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 49 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 48 50 49 51 # cabal-install needs more recent versions of Cabal and base16-bytestring. 50 52 cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: {
+6 -21
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 44 44 time = null; 45 45 transformers = null; 46 46 unix = null; 47 - xhtml = null; 47 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 48 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 49 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 48 50 49 51 # Tests fail because of typechecking changes 50 52 conduit = dontCheck super.conduit; ··· 92 90 # causing the build-depends to be skipped. Since the dependency 93 91 # list hasn't changed much since 0.6.4, we can just reuse the 94 92 # normal expression. 95 - inherit (self.ghc-exactprint_1_4_1) src version; 93 + inherit (self.ghc-exactprint_1_5_0) src version; 96 94 revision = null; editedCabalFile = null; 97 95 libraryHaskellDepends = [ 98 96 self.fail ··· 197 195 } super.memory); 198 196 199 197 # Use hlint from git for GHC 9.2.1 support 200 - hlint = doDistribute ( 201 - overrideSrc { 202 - version = "unstable-2021-12-12"; 203 - src = pkgs.fetchFromGitHub { 204 - owner = "ndmitchell"; 205 - repo = "hlint"; 206 - rev = "77a9702e10b772a7695c08682cd4f450fd0e9e46"; 207 - sha256 = "0hpp3iw7m7w2abr8vb86gdz3x6c8lj119zxln933k90ia7bmk8jc"; 208 - }; 209 - } super.hlint 210 - ); 198 + hlint = self.hlint_3_4; 211 199 212 200 # https://github.com/sjakobi/bsb-http-chunked/issues/38 213 201 bsb-http-chunked = dontCheck super.bsb-http-chunked; ··· 208 216 some = doJailbreak super.some; 209 217 fourmolu = super.fourmolu_0_6_0_0; 210 218 # hls-fourmolu-plugin in this version has a to strict upper bound of fourmolu <= 0.5.0.0 211 - hls-fourmolu-plugin = assert super.hls-fourmolu-plugin.version == "1.0.2.0"; doJailbreak super.hls-fourmolu-plugin; 219 + hls-fourmolu-plugin = assert super.hls-fourmolu-plugin.version == "1.0.3.0"; doJailbreak super.hls-fourmolu-plugin; 212 220 implicit-hie-cradle = doJailbreak super.implicit-hie-cradle; 213 221 # 1.3 introduced support for GHC 9.2.x, so when this assert fails, the jailbreak can be removed 214 222 hashtables = assert super.hashtables.version == "1.2.4.2"; doJailbreak super.hashtables; ··· 218 226 # Compare: https://haskell-language-server.readthedocs.io/en/latest/supported-versions.html 219 227 haskell-language-server = overrideCabal (old: {libraryHaskellDepends = builtins.filter (x: x != super.hls-tactics-plugin) old.libraryHaskellDepends;}) 220 228 (appendConfigureFlags [ 221 - "-f-alternateNumberFormat" 222 - "-f-class" 223 - "-f-eval" 224 229 "-f-haddockComments" 225 - "-f-hlint" 226 230 "-f-retrie" 227 231 "-f-splice" 228 232 "-f-tactics" 229 233 ] (super.haskell-language-server.override { 230 - hls-alternate-number-format-plugin = null; 231 - hls-class-plugin = null; 232 - hls-eval-plugin = null; 233 234 hls-haddock-comments-plugin = null; 234 235 hls-hlint-plugin = null; 235 236 hls-retrie-plugin = null;
+3 -1
pkgs/development/haskell-modules/configuration-ghc-head.nix
··· 52 52 time = null; 53 53 transformers = null; 54 54 unix = null; 55 - xhtml = null; 55 + # GHC only bundles the xhtml library if haddock is enabled, check if this is 56 + # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463 57 + xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1; 56 58 57 59 # https://github.com/tibbe/unordered-containers/issues/214 58 60 unordered-containers = dontCheck super.unordered-containers;
+11 -1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 455 455 - bower-json 456 456 - bowntz 457 457 - bpath 458 + - BPS 458 459 - braid 459 460 - brain-bleep 460 461 - Bravo ··· 512 511 - bytestring-substring 513 512 - bytestring-time 514 513 - bytestring-typenats 514 + - bzlib-conduit-jappie 515 515 - c10k 516 516 - c2ats 517 517 - cab ··· 525 523 - cabal-constraints 526 524 - cabal-db 527 525 - cabal-dependency-licenses 526 + - cabal-detailed-quickcheck 528 527 - cabal-dev 529 528 - cabal-dir 530 529 - cabal-edit ··· 857 854 - CoreDump 858 855 - CoreErlang 859 856 - core-haskell 857 + - core-webserver-warp 860 858 - Coroutine 861 859 - coroutine-object 862 860 - CouchDB ··· 1240 1236 - ede 1241 1237 - edenmodules 1242 1238 - edis 1239 + - EdisonAPI 1243 1240 - EdisonCore 1244 1241 - edit 1245 1242 - edit-lenses ··· 2105 2100 - hdo 2106 2101 - hdph-closure 2107 2102 - hdr-histogram 2103 + - HDRUtils 2108 2104 - headergen 2109 2105 - heap-console 2110 2106 - heapsort ··· 3938 3932 - polysemy-mocks 3939 3933 - polysemy-readline 3940 3934 - polysemy-req 3935 + - polysemy-scoped-fs 3941 3936 - polysemy-zoo 3942 3937 - polytypeable 3943 3938 - polyvariadic ··· 4228 4221 - Referees 4229 4222 - references 4230 4223 - refined-http-api-data 4224 + - refined-with 4231 4225 - reflection-extras 4232 4226 - reflex-basic-host 4233 4227 - reflex-dom-ace ··· 4494 4486 - servant-auth-hmac 4495 4487 - servant-avro 4496 4488 - servant-benchmark 4497 - - servant-cassava 4498 4489 - servant-client-js 4499 4490 - servant-db 4500 4491 - servant-dhall ··· 5276 5269 - typalyze 5277 5270 - typeable-mock 5278 5271 - typeable-th 5272 + - typecheck-plugin-nat-simple 5279 5273 - type-combinators 5280 5274 - typed-digits 5281 5275 - typed-encoding ··· 5396 5388 - utf8-prelude 5397 5389 - utf8-validator 5398 5390 - UTFTConverter 5391 + - util 5399 5392 - util-logict 5400 5393 - util-plus 5401 5394 - util-primitive ··· 5813 5804 - Zwaluw 5814 5805 - zxcvbn-hs 5815 5806 - zydiskell 5807 + - zyre2
-1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 121 121 - brick == 0.64.* # 2021-12-03: matterhorn depends on brick < 0.65 122 122 - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2 123 123 - ormolu == 0.2.* # 2022-02-21: For ghc 8.8 and 8.10 124 - - ghc-exactprint == 1.4.* # 2022-02-07: preserve for now, 1.5.0 has a breaking change without type changes 125 124 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this 126 125 - weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7 127 126 - attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now
+27 -25
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.4 1 + # Stackage LTS 19.5 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 78 78 - array-memoize ==0.6.0 79 79 - arrow-extras ==0.1.0.1 80 80 - arrows ==0.4.4.2 81 - - ascii ==1.1.2.0 81 + - ascii ==1.1.3.0 82 82 - ascii-case ==1.0.0.10 83 83 - ascii-char ==1.0.0.14 84 84 - asciidiagram ==1.3.3.3 ··· 86 86 - ascii-numbers ==1.0.0.0 87 87 - ascii-predicates ==1.0.0.10 88 88 - ascii-progress ==0.3.3.0 89 - - ascii-superset ==1.0.1.12 89 + - ascii-superset ==1.0.1.13 90 90 - ascii-th ==1.0.0.10 91 91 - asn1-encoding ==0.9.6 92 92 - asn1-parse ==0.9.5 ··· 297 297 - cast ==0.1.0.2 298 298 - caster ==0.0.3.0 299 299 - cayley-client ==0.4.17 300 - - cborg ==0.2.6.0 301 - - cborg-json ==0.2.3.0 300 + - cborg ==0.2.7.0 301 + - cborg-json ==0.2.4.0 302 302 - cdar-mBound ==0.1.0.4 303 303 - c-enum ==0.1.1.3 304 304 - cereal ==0.5.8.2 ··· 630 630 - dual ==0.1.1.1 631 631 - dual-tree ==0.2.3.0 632 632 - dublincore-xml-conduit ==0.1.0.2 633 - - dunai ==0.8.1 633 + - dunai ==0.8.2 634 634 - duration ==0.2.0.0 635 635 - dvorak ==0.1.0.0 636 636 - dynamic-state ==0.3.1 ··· 874 874 - ghc-check ==0.5.0.6 875 875 - ghc-compact ==0.1.0.0 876 876 - ghc-core ==0.5.6 877 - - ghc-events ==0.17.0.2 877 + - ghc-events ==0.17.0.3 878 878 - ghc-exactprint ==0.6.4 879 879 - ghcid ==0.8.7 880 880 - ghci-hexcalc ==0.1.1.0 ··· 980 980 - HandsomeSoup ==0.4.2 981 981 - handwriting ==0.1.0.3 982 982 - happstack-server ==7.7.2 983 - - happstack-server-tls ==7.2.1.1 983 + - happstack-server-tls ==7.2.1.2 984 984 - happy ==1.20.0 985 985 - happy-meta ==0.2.0.11 986 986 - HasBigDecimal ==0.1.1 ··· 1012 1012 - hasql-optparse-applicative ==0.3.0.8 1013 1013 - hasql-pool ==0.5.2.2 1014 1014 - hasql-queue ==1.2.0.2 1015 - - hasql-th ==0.4.0.11 1015 + - hasql-th ==0.4.0.12 1016 1016 - hasql-transaction ==1.0.1.1 1017 1017 - has-transformers ==0.1.0.4 1018 1018 - hasty-hamiltonian ==1.3.4 ··· 1216 1216 - hw-json-simd ==0.1.1.1 1217 1217 - hw-json-simple-cursor ==0.1.1.1 1218 1218 - hw-json-standard-cursor ==0.2.3.2 1219 + - hwk ==0.6 1219 1220 - hw-kafka-client ==4.0.3 1220 1221 - hw-mquery ==0.2.1.1 1221 1222 - hworker ==0.1.0.1 ··· 1241 1240 - hxt-unicode ==9.0.2.4 1242 1241 - hybrid-vectors ==0.2.2 1243 1242 - hyper ==0.2.1.1 1244 - - hyperloglog ==0.4.5 1243 + - hyperloglog ==0.4.6 1245 1244 - hyphenation ==0.8.2 1246 1245 - iconv ==0.4.1.3 1247 1246 - identicon ==0.2.2 ··· 1788 1787 - pattern-arrows ==0.0.2 1789 1788 - pava ==0.1.1.3 1790 1789 - pcg-random ==0.1.3.7 1791 - - pcre2 ==2.1.0.1 1790 + - pcre2 ==2.1.1 1792 1791 - pcre-heavy ==1.0.0.2 1793 1792 - pcre-light ==0.4.1.0 1794 1793 - pcre-utils ==0.1.8.2 ··· 2031 2030 - ref-fd ==0.5 2032 2031 - refined ==0.6.3 2033 2032 - reflection ==2.1.6 2034 - - reform ==0.2.7.4 2035 - - reform-blaze ==0.2.4.3 2033 + - reform ==0.2.7.5 2034 + - reform-blaze ==0.2.4.4 2036 2035 - reform-hamlet ==0.0.5.3 2037 - - reform-happstack ==0.2.5.4 2036 + - reform-happstack ==0.2.5.5 2038 2037 - RefSerialize ==0.4.0 2039 2038 - ref-tf ==0.5.0.1 2040 2039 - regex ==1.1.0.1 ··· 2137 2136 - sdl2 ==2.5.3.0 2138 2137 - sdl2-ttf ==2.1.2 2139 2138 - search-algorithms ==0.3.2 2140 - - secp256k1-haskell ==0.6.0 2139 + - secp256k1-haskell ==0.6.1 2141 2140 - securemem ==0.1.10 2142 2141 - selda ==0.5.1.0 2143 2142 - selda-sqlite ==0.1.7.1 ··· 2159 2158 - sequence-formats ==1.6.6.1 2160 2159 - sequenceTools ==1.5.2 2161 2160 - serf ==0.1.1.0 2162 - - serialise ==0.2.4.0 2161 + - serialise ==0.2.5.0 2163 2162 - servant ==0.19 2164 2163 - servant-auth ==0.4.1.0 2165 2164 - servant-auth-client ==0.4.1.0 ··· 2246 2245 - singletons-presburger ==0.6.1.0 2247 2246 - singletons-th ==3.0 2248 2247 - siphash ==1.0.3 2248 + - Sit ==0.2022.3.18 2249 2249 - sitemap-gen ==0.1.0.0 2250 2250 - sized ==1.0.0.0 2251 2251 - skein ==1.0.9.4 ··· 2384 2382 - SVGFonts ==1.8.0.1 2385 2383 - svg-tree ==0.6.2.4 2386 2384 - swagger2 ==2.8.2 2387 - - swish ==0.10.1.0 2385 + - swish ==0.10.2.0 2388 2386 - syb ==0.7.2.1 2389 2387 - sydtest-discover ==0.0.0.1 2390 2388 - symbol ==0.2.4 ··· 2718 2716 - wai-cors ==0.2.7 2719 2717 - wai-enforce-https ==1.0.0.0 2720 2718 - wai-eventsource ==3.0.0 2721 - - wai-extra ==3.1.8 2719 + - wai-extra ==3.1.10 2722 2720 - wai-feature-flags ==0.1.0.3 2723 2721 - wai-handler-launch ==3.0.3.1 2724 2722 - wai-logger ==2.4.0 ··· 2751 2749 - webgear-server ==1.0.1 2752 2750 - webpage ==0.0.5.1 2753 2751 - web-plugins ==0.4.1 2754 - - web-routes ==0.27.14.3 2755 - - web-routes-boomerang ==0.28.4.2 2756 - - web-routes-happstack ==0.23.12.1 2757 - - web-routes-hsp ==0.24.6.1 2758 - - web-routes-wai ==0.24.3.1 2752 + - web-routes ==0.27.14.4 2753 + - web-routes-boomerang ==0.28.4.3 2754 + - web-routes-happstack ==0.23.12.2 2755 + - web-routes-hsp ==0.24.6.2 2756 + - web-routes-wai ==0.24.3.2 2759 2757 - webrtc-vad ==0.1.0.3 2760 2758 - websockets ==0.12.7.3 2761 2759 - websockets-simple ==0.2.0 ··· 2841 2839 - yesod-auth-hashdb ==1.7.1.7 2842 2840 - yesod-auth-oauth2 ==0.7.0.1 2843 2841 - yesod-bin ==1.6.2.1 2844 - - yesod-core ==1.6.22.0 2842 + - yesod-core ==1.6.23 2845 2843 - yesod-eventsource ==1.6.0.1 2846 2844 - yesod-form ==1.7.0 2847 2845 - yesod-form-bootstrap4 ==3.0.1 ··· 2856 2854 - yesod-routes-flow ==3.0.0.2 2857 2855 - yesod-sitemap ==1.6.0 2858 2856 - yesod-static ==1.6.1.0 2859 - - yesod-test ==1.6.12 2857 + - yesod-test ==1.6.13 2860 2858 - yesod-websockets ==0.3.0.3 2861 2859 - yes-precure5-command ==5.5.3 2862 2860 - yi-rope ==0.11
+27 -2
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 436 436 - adp-multi-monadiccp 437 437 - aeson-native 438 438 - aeson-result 439 + - affine 439 440 - afv 440 441 - agda-server 441 442 - agda-snippets-hakyll 442 443 - agentx 443 444 - aip 444 445 - aivika-distributed 446 + - alg 445 447 - algebra-checkers 446 448 - algebra-driven-design 447 449 - algebra-sql ··· 649 647 - apiary-websockets 650 648 - apis 651 649 - apotiki 650 + - appendful-persistent 652 651 - approx-rand-test 653 652 - arbor-monad-metric-datadog 654 653 - archive-tar-bytestring ··· 666 663 - ascii 667 664 - ascii-cows 668 665 - ascii-table 669 - - ascii_1_2_0_0 666 + - ascii_1_2_2_0 670 667 - asic 671 668 - asif 672 669 - assert4hs-hspec ··· 773 770 - berp 774 771 - bff 775 772 - bglib 773 + - bifunctor 776 774 - billboard-parser 777 775 - billeksah-forms 778 776 - billeksah-main ··· 788 784 - bindings-ppdev 789 785 - bindynamic 790 786 - binembed-example 787 + - binrep 791 788 - bioace 792 789 - bioalign 793 790 - biofasta ··· 869 864 - bytelog 870 865 - bytestring-builder-varword 871 866 - bytestring-read 867 + - ca 872 868 - cabal-bounds 873 869 - cabal-cache 874 870 - cabal-cargs ··· 919 913 - cassy 920 914 - casui 921 915 - categorical-algebra 916 + - category 922 917 - category-extras 923 918 - cautious-gen 924 919 - cctools-workqueue ··· 1075 1068 - configifier 1076 1069 - configurator-ng 1077 1070 - conic-graphs 1071 + - constraint 1078 1072 - constraint-manip 1073 + - constraint-reflection 1079 1074 - constructible 1080 1075 - consumers 1081 1076 - container ··· 1104 1095 - copilot-libraries 1105 1096 - copilot-sbv 1106 1097 - copilot-theorem 1098 + - core-webserver-servant 1107 1099 - coroutine-enumerator 1108 1100 - coroutine-iteratee 1109 1101 - couch-simple ··· 1399 1389 - exinst-deepseq 1400 1390 - exinst-hashable 1401 1391 - exinst-serialise 1392 + - exist 1393 + - exist-instances 1402 1394 - expand 1403 1395 - expat-enumerator 1404 1396 - expiring-containers ··· 1416 1404 - extract-dependencies 1417 1405 - factual-api 1418 1406 - fadno 1407 + - fair 1419 1408 - fallingblocks 1420 1409 - family-tree 1421 1410 - fast-arithmetic ··· 1497 1484 - fluent-logger 1498 1485 - fluent-logger-conduit 1499 1486 - fmt-for-rio 1487 + - foldable1 1500 1488 - follower 1501 1489 - foo 1502 1490 - formal ··· 1579 1565 - geniconvert 1580 1566 - geniserver 1581 1567 - genvalidity-aeson 1568 + - genvalidity-appendful 1582 1569 - genvalidity-hspec-aeson 1583 1570 - genvalidity-mergeful 1584 1571 - genvalidity-mergeless ··· 2394 2379 - iteratee-parsec 2395 2380 - iteratee-stm 2396 2381 - iterio-server 2382 + - ival 2397 2383 - ivor 2398 2384 - ivory-avr-atmega328p-registers 2399 2385 - ivory-backend-c ··· 2407 2391 - ivory-serialize 2408 2392 - ivory-stdlib 2409 2393 - ivy-web 2394 + - ix 2410 2395 - ixset 2411 2396 - ixset-typed-binary-instance 2412 2397 - ixset-typed-cassava ··· 2491 2474 - keid-sound-openal 2492 2475 - keid-ui-dearimgui 2493 2476 - kevin 2477 + - key-vault 2494 2478 - keyring 2495 2479 - keysafe 2496 2480 - keystore ··· 3076 3058 - phonetic-languages-simplified-base 3077 3059 - phonetic-languages-simplified-common 3078 3060 - phonetic-languages-simplified-examples-array 3079 - - phonetic-languages-simplified-examples-common 3080 3061 - phonetic-languages-simplified-generalized-examples-array 3081 3062 - phonetic-languages-simplified-generalized-examples-common 3082 3063 - phonetic-languages-simplified-generalized-properties-array ··· 3171 3154 - process-streaming 3172 3155 - procrastinating-structure 3173 3156 - producer 3157 + - product 3174 3158 - product-isomorphic 3175 3159 - prof2dot 3176 3160 - profiterole ··· 3267 3249 - raketka 3268 3250 - rallod 3269 3251 - random-access-file 3252 + - random-class 3270 3253 - random-effin 3271 3254 - random-hypergeometric 3272 3255 - range-space 3256 + - ranged-list 3273 3257 - rasa 3274 3258 - rasa-example-config 3275 3259 - rasa-ext-bufs ··· 3434 3414 - roundtrip-xml 3435 3415 - route-generator 3436 3416 - route-planning 3417 + - row 3437 3418 - rpc 3438 3419 - rpf 3439 3420 - rsagl ··· 3623 3602 - smcdel 3624 3603 - smith-cli 3625 3604 - smith-client 3605 + - smt 3626 3606 - smtlib2-debug 3627 3607 - smtlib2-pipe 3628 3608 - smtlib2-quickcheck ··· 3958 3936 - twitter-conduit 3959 3937 - twitter-enumerator 3960 3938 - twitter-types-lens 3939 + - txt 3961 3940 - type-assertions 3962 3941 - type-cache 3963 3942 - type-cereal ··· 4004 3981 - uniqueness-periods-vector-filters 4005 3982 - uniqueness-periods-vector-general 4006 3983 - uniqueness-periods-vector-properties 3984 + - universal 4007 3985 - universe 4008 3986 - universe-dependent-sum 4009 3987 - universe-th ··· 4045 4021 - vacuum-graphviz 4046 4022 - vacuum-opengl 4047 4023 - vacuum-ubigraph 4024 + - valid 4048 4025 - variable-precision 4049 4026 - vault-tool-server 4050 4027 - vault-trans
+1653 -728
pkgs/development/haskell-modules/hackage-packages.nix
··· 1331 1331 license = lib.licenses.gpl2Only; 1332 1332 }) {}; 1333 1333 1334 + "BPS" = callPackage 1335 + ({ mkDerivation, base, extra, free, mtl, resourcet, STMonadTrans 1336 + , symbol, template-haskell, TLT, transformers 1337 + }: 1338 + mkDerivation { 1339 + pname = "BPS"; 1340 + version = "0.1.0.0"; 1341 + sha256 = "0rkrjj42p9ybcifmsmz8717yyf2q3vzwm4y42khxz824vdxa9q2j"; 1342 + isLibrary = true; 1343 + isExecutable = true; 1344 + libraryHaskellDepends = [ 1345 + base extra free mtl resourcet STMonadTrans symbol template-haskell 1346 + transformers 1347 + ]; 1348 + executableHaskellDepends = [ 1349 + base extra free mtl resourcet STMonadTrans symbol template-haskell 1350 + transformers 1351 + ]; 1352 + testHaskellDepends = [ 1353 + base extra free mtl resourcet STMonadTrans symbol template-haskell 1354 + TLT transformers 1355 + ]; 1356 + description = "Translations of classic Truth Maintenance Systems"; 1357 + license = lib.licenses.gpl3Only; 1358 + hydraPlatforms = lib.platforms.none; 1359 + broken = true; 1360 + }) {}; 1361 + 1334 1362 "Baggins" = callPackage 1335 1363 ({ mkDerivation, base, cairo, containers, mtl }: 1336 1364 mkDerivation { ··· 5214 5186 pname = "EdisonAPI"; 5215 5187 version = "1.3.1"; 5216 5188 sha256 = "0vmmlsj8ggbpwx6fkf5fvb6jp0zpx6iba6b28m80lllr2p8bi8wm"; 5189 + revision = "1"; 5190 + editedCabalFile = "1nlw49ifjvav102pigksi46xg0zwnpfj29j3db0rr76hykikpipy"; 5217 5191 libraryHaskellDepends = [ base mtl ]; 5218 5192 description = "A library of efficient, purely-functional data structures (API)"; 5219 5193 license = lib.licenses.mit; 5194 + hydraPlatforms = lib.platforms.none; 5195 + broken = true; 5220 5196 }) {}; 5221 5197 5222 5198 "EdisonCore" = callPackage ··· 8174 8142 platforms = [ 8175 8143 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 8176 8144 ]; 8145 + hydraPlatforms = lib.platforms.none; 8146 + broken = true; 8177 8147 }) {inherit (pkgs) pfstools;}; 8178 8148 8179 8149 "HERA" = callPackage ··· 19807 19773 }: 19808 19774 mkDerivation { 19809 19775 pname = "TLT"; 19810 - version = "0.1.0.0"; 19811 - sha256 = "125hfd8ig706zsizyn959qsjcadsgbiqq3dnygjxambvd2d135pr"; 19776 + version = "0.1.0.1"; 19777 + sha256 = "1b91ax19dfgi50rlkfvjjywzz6w998d5jsq5c0yz620rcdl7jrki"; 19812 19778 isLibrary = true; 19813 19779 isExecutable = true; 19814 19780 libraryHaskellDepends = [ ··· 25066 25032 }) {}; 25067 25033 25068 25034 "aeson-helper" = callPackage 25069 - ({ mkDerivation, aeson, base, text, unordered-containers, vector }: 25035 + ({ mkDerivation, aeson, base, text, vector }: 25070 25036 mkDerivation { 25071 25037 pname = "aeson-helper"; 25072 - version = "0.1.0.0"; 25073 - sha256 = "0s4gq827i2wyflcaxbhlr8f8svlw8szzmwax9d7vnxk9wy9fw8w0"; 25074 - libraryHaskellDepends = [ 25075 - aeson base text unordered-containers vector 25076 - ]; 25038 + version = "0.2.0.0"; 25039 + sha256 = "1im4grk23vkxgpa1fhhdg0ghg5j1z2qcwqvnpjk1s168993j2522"; 25040 + libraryHaskellDepends = [ aeson base text vector ]; 25077 25041 description = "Aeson helper func"; 25078 25042 license = lib.licenses.bsd3; 25079 25043 hydraPlatforms = lib.platforms.none; ··· 25382 25350 ({ mkDerivation, aeson, aeson-helper, base, text }: 25383 25351 mkDerivation { 25384 25352 pname = "aeson-result"; 25385 - version = "0.1.0.0"; 25386 - sha256 = "10bnzh7vlh42sip0z7mvx5jxrsi7p2s3vqy55pfg2pb17czzly2y"; 25353 + version = "0.2.0.0"; 25354 + sha256 = "1sssh9k4fkmsn96m796f5j3p5a5sc8khqgjfj4pzi1r935368n1f"; 25387 25355 libraryHaskellDepends = [ aeson aeson-helper base text ]; 25388 25356 description = "API Result for aeson"; 25389 25357 license = lib.licenses.bsd3; ··· 25742 25710 libraryHaskellDepends = [ alg base ]; 25743 25711 description = "Affine spaces (generalized)"; 25744 25712 license = lib.licenses.bsd3; 25713 + hydraPlatforms = lib.platforms.none; 25745 25714 }) {}; 25746 25715 25747 25716 "affine-invariant-ensemble-mcmc" = callPackage ··· 26540 26507 }) {}; 26541 26508 26542 26509 "alfred-margaret" = callPackage 26543 - ({ mkDerivation, aeson, base, containers, deepseq, hashable, hspec 26544 - , hspec-expectations, primitive, QuickCheck, quickcheck-instances 26545 - , text, unordered-containers, vector 26510 + ({ mkDerivation, aeson, base, bytestring, containers, criterion 26511 + , deepseq, hashable, hspec, hspec-expectations, primitive 26512 + , QuickCheck, quickcheck-instances, text, unordered-containers 26513 + , vector 26546 26514 }: 26547 26515 mkDerivation { 26548 26516 pname = "alfred-margaret"; 26549 - version = "1.1.1.0"; 26550 - sha256 = "1z3plc2a6qnlx1cpb3icw44h3lbspaq2n7djl4pljhb4dm5bflbq"; 26517 + version = "1.1.2.0"; 26518 + sha256 = "02p9djplw187v4k7mi6mh6mjjs7gir0crghyxfkjqjrxk5s7f3j7"; 26519 + isLibrary = true; 26520 + isExecutable = true; 26551 26521 libraryHaskellDepends = [ 26552 - aeson base containers deepseq hashable primitive text 26522 + aeson base bytestring containers deepseq hashable primitive text 26553 26523 unordered-containers vector 26554 26524 ]; 26525 + executableHaskellDepends = [ base ]; 26555 26526 testHaskellDepends = [ 26556 - base deepseq hspec hspec-expectations QuickCheck 26527 + base deepseq hspec hspec-expectations primitive QuickCheck 26557 26528 quickcheck-instances text 26558 26529 ]; 26530 + benchmarkHaskellDepends = [ base criterion deepseq vector ]; 26559 26531 description = "Fast Aho-Corasick string searching"; 26560 26532 license = lib.licenses.bsd3; 26561 26533 }) {}; ··· 26571 26533 pname = "alg"; 26572 26534 version = "0.2.13.1"; 26573 26535 sha256 = "0764j2njb86qdskck3nvbrh61v99hqdhf8aj9irblm6smdlrv4l3"; 26574 - revision = "1"; 26575 - editedCabalFile = "0rm66k502d8la140ffawd38yaf0hr92h8x7xrq6krn6ypljwql0v"; 26536 + revision = "2"; 26537 + editedCabalFile = "1ffcn0ahv2jl6191baik5sqsh5mb61n1g4rgkiybd1mspgsmnnwy"; 26576 26538 libraryHaskellDepends = [ base dual util ]; 26577 26539 description = "Algebraic structures"; 26578 26540 license = lib.licenses.bsd3; 26541 + hydraPlatforms = lib.platforms.none; 26579 26542 }) {}; 26580 26543 26581 26544 "alga" = callPackage ··· 30827 30788 }: 30828 30789 mkDerivation { 30829 30790 pname = "annotated-exception"; 30830 - version = "0.2.0.1"; 30831 - sha256 = "0lqr283ql82kfpd6rvznwj4p0h4176mg9xnb1wnzdxxbl9rn3xgl"; 30791 + version = "0.2.0.2"; 30792 + sha256 = "07njn6r1c3n1nblnlz5q2jrk5887vxxr2yzw4khqwayy0nmgbc7l"; 30832 30793 libraryHaskellDepends = [ 30833 30794 base containers safe-exceptions text unliftio-core 30834 30795 ]; ··· 30935 30896 libraryHaskellDepends = [ base colour ]; 30936 30897 description = "Simple ANSI terminal support, with Windows compatibility"; 30937 30898 license = lib.licenses.bsd3; 30899 + }) {}; 30900 + 30901 + "ansi-terminal_0_11_3" = callPackage 30902 + ({ mkDerivation, base, colour }: 30903 + mkDerivation { 30904 + pname = "ansi-terminal"; 30905 + version = "0.11.3"; 30906 + sha256 = "0swy5alj4xvfsnjrfiwxdlgzdnggjy6lgbfwph2d7c8zyzn67mgl"; 30907 + isLibrary = true; 30908 + isExecutable = true; 30909 + libraryHaskellDepends = [ base colour ]; 30910 + description = "Simple ANSI terminal support, with Windows compatibility"; 30911 + license = lib.licenses.bsd3; 30912 + hydraPlatforms = lib.platforms.none; 30938 30913 }) {}; 30939 30914 30940 30915 "ansi-terminal-game" = callPackage ··· 32393 32340 license = lib.licenses.mit; 32394 32341 hydraPlatforms = lib.platforms.none; 32395 32342 broken = true; 32343 + }) {}; 32344 + 32345 + "appendful" = callPackage 32346 + ({ mkDerivation, aeson, base, containers, deepseq, mtl, validity 32347 + , validity-containers 32348 + }: 32349 + mkDerivation { 32350 + pname = "appendful"; 32351 + version = "0.0.0.0"; 32352 + sha256 = "1wb2abnr2k7d7bgvh3zjyg55s1236cgnz1idldpxcrib30nr01l8"; 32353 + libraryHaskellDepends = [ 32354 + aeson base containers deepseq mtl validity validity-containers 32355 + ]; 32356 + license = lib.licenses.mit; 32357 + }) {}; 32358 + 32359 + "appendful-persistent" = callPackage 32360 + ({ mkDerivation, appendful, base, containers, genvalidity 32361 + , genvalidity-appendful, genvalidity-hspec, genvalidity-persistent 32362 + , hspec, microlens, monad-logger, mtl, path, path-io, persistent 32363 + , persistent-sqlite, persistent-template, QuickCheck, text 32364 + , validity 32365 + }: 32366 + mkDerivation { 32367 + pname = "appendful-persistent"; 32368 + version = "0.0.0.0"; 32369 + sha256 = "0h0hdjkkrz8ckhs8r8n0vm983513lahi9bd89i1hyqlycrckbphl"; 32370 + libraryHaskellDepends = [ 32371 + appendful base containers microlens persistent 32372 + ]; 32373 + testHaskellDepends = [ 32374 + appendful base containers genvalidity genvalidity-appendful 32375 + genvalidity-hspec genvalidity-persistent hspec monad-logger mtl 32376 + path path-io persistent persistent-sqlite persistent-template 32377 + QuickCheck text validity 32378 + ]; 32379 + license = lib.licenses.mit; 32380 + hydraPlatforms = lib.platforms.none; 32396 32381 }) {}; 32397 32382 32398 32383 "appendmap" = callPackage ··· 34150 34059 }: 34151 34060 mkDerivation { 34152 34061 pname = "ascii"; 34153 - version = "1.1.2.0"; 34154 - sha256 = "17yh71i28m1m4hnlbd6sp234kwqpgsdpn4bmv2g283vq37mkn09n"; 34062 + version = "1.1.3.0"; 34063 + sha256 = "0pzyamd64mj8sx5a43gi7yjdy5dx6k9648ihbgsri8k8srlhm0c8"; 34064 + revision = "1"; 34065 + editedCabalFile = "0lxjb940qm86i1b2i9dgyj8874y49spwmkm5ninxd5hs7g9manll"; 34155 34066 libraryHaskellDepends = [ 34156 34067 ascii-case ascii-char ascii-group ascii-numbers ascii-predicates 34157 34068 ascii-superset ascii-th base bytestring text ··· 34164 34071 hydraPlatforms = lib.platforms.none; 34165 34072 }) {}; 34166 34073 34167 - "ascii_1_2_0_0" = callPackage 34074 + "ascii_1_2_2_0" = callPackage 34168 34075 ({ mkDerivation, ascii-case, ascii-char, ascii-group, ascii-numbers 34169 34076 , ascii-predicates, ascii-superset, ascii-th, base, bytestring 34170 34077 , hedgehog, text 34171 34078 }: 34172 34079 mkDerivation { 34173 34080 pname = "ascii"; 34174 - version = "1.2.0.0"; 34175 - sha256 = "1m043s6030mwz4gam83nb1dyxsbkaar6i7cdvzjfgawv9gdpwkbb"; 34081 + version = "1.2.2.0"; 34082 + sha256 = "1s6xm2b0g1jcbg8xfkhysmk4rhsx2342dd980md827rnfc5l4w80"; 34176 34083 libraryHaskellDepends = [ 34177 34084 ascii-case ascii-char ascii-group ascii-numbers ascii-predicates 34178 34085 ascii-superset ascii-th base bytestring text ··· 34382 34289 }: 34383 34290 mkDerivation { 34384 34291 pname = "ascii-superset"; 34385 - version = "1.0.1.12"; 34386 - sha256 = "04kp4v0m1z1sh78862qryhkq1a5jzv1hdkyyrsv2m7caqkh8rn2c"; 34387 - libraryHaskellDepends = [ 34388 - ascii-char base bytestring hashable text 34389 - ]; 34390 - testHaskellDepends = [ ascii-char base hedgehog text ]; 34391 - description = "Representing ASCII with refined supersets"; 34392 - license = lib.licenses.asl20; 34393 - }) {}; 34394 - 34395 - "ascii-superset_1_0_1_13" = callPackage 34396 - ({ mkDerivation, ascii-char, base, bytestring, hashable, hedgehog 34397 - , text 34398 - }: 34399 - mkDerivation { 34400 - pname = "ascii-superset"; 34401 34292 version = "1.0.1.13"; 34402 34293 sha256 = "0pf1awrx0bfpgyc96r1ycybgpy801iqxr8qf3vp9pvbnfava1v8s"; 34403 34294 libraryHaskellDepends = [ ··· 34390 34313 testHaskellDepends = [ ascii-char base hedgehog text ]; 34391 34314 description = "Representing ASCII with refined supersets"; 34392 34315 license = lib.licenses.asl20; 34393 - hydraPlatforms = lib.platforms.none; 34394 34316 }) {}; 34395 34317 34396 34318 "ascii-table" = callPackage ··· 36418 36342 , http-types, language-bash, megaparsec, network-uri 36419 36343 , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 36420 36344 , rio, scheduler, stm, tasty, tasty-hunit, text, time, transformers 36421 - , typed-process, versions 36345 + , typed-process, unix, versions 36422 36346 }: 36423 36347 mkDerivation { 36424 36348 pname = "aura"; 36425 - version = "3.2.7"; 36426 - sha256 = "07ya2vd94grh6fs7k5kq25yh95xfk5mdqcgqq84anjz0phprq5z3"; 36427 - revision = "1"; 36428 - editedCabalFile = "16z28nkj5ladbbrg2h5sc1qcl3335g3i37x02h0by8bpqbkld6xr"; 36349 + version = "3.2.8"; 36350 + sha256 = "1frvim9asp0849g7f5c1hcjkr82c9w27im479vmk6n4zzssvzach"; 36429 36351 isLibrary = true; 36430 36352 isExecutable = true; 36431 36353 libraryHaskellDepends = [ 36432 36354 aeson algebraic-graphs aur base bytestring containers filepath 36433 36355 hashable http-client http-types language-bash megaparsec 36434 36356 network-uri prettyprinter prettyprinter-ansi-terminal rio scheduler 36435 - stm text time transformers typed-process versions 36357 + stm text time transformers typed-process unix versions 36436 36358 ]; 36437 36359 executableHaskellDepends = [ 36438 36360 aeson aur base bytestring containers http-client http-client-tls 36439 36361 megaparsec optparse-applicative prettyprinter 36440 36362 prettyprinter-ansi-terminal rio scheduler text transformers 36441 - typed-process versions 36363 + typed-process unix versions 36442 36364 ]; 36443 36365 testHaskellDepends = [ 36444 36366 base bytestring containers megaparsec rio tasty tasty-hunit text ··· 36597 36523 }: 36598 36524 mkDerivation { 36599 36525 pname = "autodocodec"; 36600 - version = "0.0.1.0"; 36601 - sha256 = "0g0k1c76nfkw8l5x6isz6fkci9bjn67qdpmjksf4qdfla28v35ha"; 36526 + version = "0.0.1.1"; 36527 + sha256 = "12wvqn2hqfi4fh4w53qs137x5cdbqwvlksbncnbcnzdlad7ncfqa"; 36602 36528 libraryHaskellDepends = [ 36603 36529 aeson base bytestring containers hashable mtl scientific text time 36604 36530 unordered-containers validity validity-scientific vector ··· 36635 36561 }: 36636 36562 mkDerivation { 36637 36563 pname = "autodocodec-schema"; 36638 - version = "0.1.0.0"; 36639 - sha256 = "0qk1fjb47whpbnj2w776sk5mnb1m4z1dq6fmxhvjih3xsrpjq7s3"; 36564 + version = "0.1.0.1"; 36565 + sha256 = "1nzwbj3r5gps2lnriig38h1y51m4pd997z65kpsmxzcbyakdxjnd"; 36640 36566 libraryHaskellDepends = [ 36641 36567 aeson autodocodec base containers mtl text unordered-containers 36642 36568 validity validity-aeson validity-containers validity-text ··· 36670 36596 }: 36671 36597 mkDerivation { 36672 36598 pname = "autodocodec-yaml"; 36673 - version = "0.1.0.0"; 36674 - sha256 = "1wa51mas9jxzhig651i9r21fxahk8rdwg7waxx4ilayzdfhaic4b"; 36599 + version = "0.1.0.1"; 36600 + sha256 = "1js3w0r7nrvl70vkkwblx8zqax22idblpdzs1ljr4x0jiwwji8bs"; 36675 36601 libraryHaskellDepends = [ 36676 36602 autodocodec autodocodec-schema base bytestring containers path 36677 36603 path-io safe-coloured-text scientific text unordered-containers ··· 38913 38839 ({ mkDerivation, barbies, base, split, template-haskell }: 38914 38840 mkDerivation { 38915 38841 pname = "barbies-th"; 38916 - version = "0.1.9"; 38917 - sha256 = "1brikm7qr2yi3426vgwjjxjrvw060sb0v7jbxrhazjps28f6aa3n"; 38918 - revision = "1"; 38919 - editedCabalFile = "0iij1y72q28wvj8hfx000cpckl1wlcgj050380lx526cmwavy151"; 38842 + version = "0.1.10"; 38843 + sha256 = "0h16ywwf6dgazwnsqxl82l28vjx51gmh2xn8idlvc7kkl8ylgq54"; 38920 38844 libraryHaskellDepends = [ barbies base split template-haskell ]; 38921 38845 testHaskellDepends = [ barbies base ]; 38922 38846 description = "Create strippable HKD via TH"; ··· 40618 40546 }: 40619 40547 mkDerivation { 40620 40548 pname = "bearriver"; 40621 - version = "0.13.3"; 40622 - sha256 = "0qakz6fidvhg121j442lsvcz9va0xa0rks41qj293mnrs8savv0p"; 40549 + version = "0.13.4"; 40550 + sha256 = "1c2w0ll84mrzkwg3314pnmasgaql0yjhrb5wy7zlm18s3bgpcysb"; 40623 40551 libraryHaskellDepends = [ 40624 40552 base dunai MonadRandom mtl simple-affine-space transformers 40625 40553 ]; ··· 41369 41297 libraryHaskellDepends = [ base category ]; 41370 41298 description = "Bifunctors"; 41371 41299 license = lib.licenses.bsd3; 41300 + hydraPlatforms = lib.platforms.none; 41372 41301 }) {}; 41373 41302 41374 41303 "bifunctors" = callPackage ··· 43125 43052 ]; 43126 43053 description = "A collection of various methods for reading and writing bini files"; 43127 43054 license = lib.licenses.bsd3; 43055 + }) {}; 43056 + 43057 + "binrep" = callPackage 43058 + ({ mkDerivation, aeson, base, bytestring, cereal, refined 43059 + , refined-with, text 43060 + }: 43061 + mkDerivation { 43062 + pname = "binrep"; 43063 + version = "0.1.0"; 43064 + sha256 = "10b65qdk4h96q44bl6ic8c4v2lfkr3vsm15zpia0dlikxnibvb8i"; 43065 + libraryHaskellDepends = [ 43066 + aeson base bytestring cereal refined refined-with text 43067 + ]; 43068 + description = "Encode binary representations via types"; 43069 + license = lib.licenses.mit; 43070 + hydraPlatforms = lib.platforms.none; 43128 43071 }) {}; 43129 43072 43130 43073 "bins" = callPackage ··· 49686 49597 license = lib.licenses.bsd3; 49687 49598 }) {inherit (pkgs) bzip2;}; 49688 49599 49600 + "bzlib-conduit-jappie" = callPackage 49601 + ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit 49602 + , data-default-class, hspec, mtl, random, resourcet 49603 + }: 49604 + mkDerivation { 49605 + pname = "bzlib-conduit-jappie"; 49606 + version = "0.3.0.3"; 49607 + sha256 = "10fvvcv205r45yk02fi4cyqq1r7f98hl5p4psfr3xixlzsyh6n8k"; 49608 + enableSeparateDataOutput = true; 49609 + libraryHaskellDepends = [ 49610 + base bindings-DSL bytestring conduit data-default-class mtl 49611 + resourcet 49612 + ]; 49613 + librarySystemDepends = [ bzip2 ]; 49614 + libraryPkgconfigDepends = [ bzip2 ]; 49615 + testHaskellDepends = [ 49616 + base bindings-DSL bytestring conduit data-default-class hspec mtl 49617 + random resourcet 49618 + ]; 49619 + benchmarkHaskellDepends = [ 49620 + base bindings-DSL bytestring conduit data-default-class mtl 49621 + resourcet 49622 + ]; 49623 + description = "Streaming compression/decompression via conduits"; 49624 + license = lib.licenses.bsd3; 49625 + hydraPlatforms = lib.platforms.none; 49626 + broken = true; 49627 + }) {inherit (pkgs) bzip2;}; 49628 + 49689 49629 "c-dsl" = callPackage 49690 49630 ({ mkDerivation, base, language-c }: 49691 49631 mkDerivation { ··· 49958 49840 libraryHaskellDepends = [ alg base ]; 49959 49841 description = "Cellular Automata"; 49960 49842 license = lib.licenses.bsd3; 49843 + hydraPlatforms = lib.platforms.none; 49961 49844 }) {}; 49962 49845 49963 49846 "ca-patterns" = callPackage ··· 50285 50166 ]; 50286 50167 description = "Compose a list of a project's transitive dependencies with their licenses"; 50287 50168 license = lib.licenses.bsd3; 50169 + hydraPlatforms = lib.platforms.none; 50170 + broken = true; 50171 + }) {}; 50172 + 50173 + "cabal-detailed-quickcheck" = callPackage 50174 + ({ mkDerivation, base, Cabal, QuickCheck }: 50175 + mkDerivation { 50176 + pname = "cabal-detailed-quickcheck"; 50177 + version = "0.1.1.3"; 50178 + sha256 = "1zy2b86ns5jhrl6z6qw6g1zq5nv3lpf4askpr40l9gid61h6mr01"; 50179 + libraryHaskellDepends = [ base Cabal QuickCheck ]; 50180 + description = "QuickCheck for Cabal tests"; 50181 + license = lib.licenses.mit; 50288 50182 hydraPlatforms = lib.platforms.none; 50289 50183 broken = true; 50290 50184 }) {}; ··· 52130 51998 license = lib.licenses.mit; 52131 51999 }) {}; 52132 52000 52001 + "calligraphy" = callPackage 52002 + ({ mkDerivation, array, base, containers, directory, enummapset 52003 + , filepath, ghc, hspec, HUnit, mtl, optparse-applicative, process 52004 + , QuickCheck, text 52005 + }: 52006 + mkDerivation { 52007 + pname = "calligraphy"; 52008 + version = "0.1.2"; 52009 + sha256 = "08kiqp1z60hbfxm5s2d0hdr516gbq8fqyz0ddlr3vk0g9npm3nj2"; 52010 + isLibrary = true; 52011 + isExecutable = true; 52012 + libraryHaskellDepends = [ 52013 + array base containers directory enummapset filepath ghc mtl 52014 + optparse-applicative process text 52015 + ]; 52016 + executableHaskellDepends = [ base ]; 52017 + testHaskellDepends = [ base containers hspec HUnit QuickCheck ]; 52018 + description = "HIE-based Haskell call graph and source code visualizer"; 52019 + license = lib.licenses.bsd3; 52020 + }) {}; 52021 + 52133 52022 "camfort" = callPackage 52134 52023 ({ mkDerivation, alex, array, base, binary, bytestring, containers 52135 52024 , deepseq, directory, fgl, filepath, flint, fortran-src ··· 53861 53708 pname = "category"; 53862 53709 version = "0.2.5.0"; 53863 53710 sha256 = "0iya7q3b1z1bxv4amsibmc1lrmf7dng76nzcnanwy300jm1n42w7"; 53711 + revision = "1"; 53712 + editedCabalFile = "13yj1v414llr5cxdd5f3wdy75si2hj7f3k1f6w7kwj84gbrii5rr"; 53864 53713 libraryHaskellDepends = [ alg base dual transformers ]; 53865 53714 description = "Categorical types and classes"; 53866 53715 license = lib.licenses.bsd3; 53716 + hydraPlatforms = lib.platforms.none; 53867 53717 }) {}; 53868 53718 53869 53719 "category-extras" = callPackage ··· 54136 53980 }: 54137 53981 mkDerivation { 54138 53982 pname = "cborg"; 54139 - version = "0.2.6.0"; 54140 - sha256 = "1mvsavi8ngsvmcvlmaygsnygf7hn8kdqdhfff91n1zajgpz577h6"; 54141 - revision = "1"; 54142 - editedCabalFile = "0ry5p8cnmm772m3z074azh1ldxvq851dmffsp2b7vljjhzd9j4sc"; 53983 + version = "0.2.7.0"; 53984 + sha256 = "076656vq2qabhdnwzifc5gsj20vwh69vhy19dh0qa1f2lqxrzfvq"; 54143 53985 libraryHaskellDepends = [ 54144 53986 array base bytestring containers deepseq ghc-bignum ghc-prim half 54145 53987 primitive text ··· 54158 54004 }: 54159 54005 mkDerivation { 54160 54006 pname = "cborg-json"; 54161 - version = "0.2.3.0"; 54162 - sha256 = "1nsind3yiix6mb3xgwcnb267d8w9k0dvfnj78jc58gybx5hl9n53"; 54007 + version = "0.2.4.0"; 54008 + sha256 = "1h5i8sf1q1xr4c2y945vanj6n1wkkag1vflfjys7ygbgddbcq7rv"; 54163 54009 libraryHaskellDepends = [ 54164 54010 aeson aeson-pretty base cborg scientific text unordered-containers 54165 54011 vector ··· 54193 54039 pname = "cci"; 54194 54040 version = "0.3.1"; 54195 54041 sha256 = "0pvap67fn9kmjvn2qqq3x99k3mzrrsnb6q6fhawvyxv8drihsfc7"; 54196 - revision = "1"; 54197 - editedCabalFile = "11s00cbbimpglashmp1vmw1xhd4y2g1spn01ajvx3sw6wdyh614n"; 54042 + revision = "2"; 54043 + editedCabalFile = "123jmn7lgz1hmkygjzqckffm77783pfzddnjyvvv7rsnpgl4ckqn"; 54198 54044 isLibrary = true; 54199 54045 isExecutable = true; 54200 54046 libraryHaskellDepends = [ base bytestring ]; ··· 57519 57365 }: 57520 57366 mkDerivation { 57521 57367 pname = "clash-shake"; 57522 - version = "0.2.2"; 57523 - sha256 = "10gj6764qhdy6ki0dyy75ycpj5il26jgxxjcr0xy9kkixi3wgsrb"; 57368 + version = "0.3.0"; 57369 + sha256 = "1iprssnpxykh9fjgckjnh5qlmnf1drgzjjfcq9fxyqs755y38vbi"; 57524 57370 libraryHaskellDepends = [ 57525 57371 aeson base bytestring clash-ghc clash-lib clash-prelude directory 57526 57372 shake split stache text unordered-containers ··· 57827 57673 }: 57828 57674 mkDerivation { 57829 57675 pname = "clckwrks"; 57830 - version = "0.28.0"; 57831 - sha256 = "11cr4mql6jhskhk1hg2c7kkvv005bha7y9b3ccpgy1147grnp00m"; 57676 + version = "0.28.0.1"; 57677 + sha256 = "1h18gh6042qq7qphiqdj9ww9k2pghj3dzz33rdh6w4jlx967w6bw"; 57832 57678 enableSeparateDataOutput = true; 57833 57679 libraryHaskellDepends = [ 57834 57680 acid-state aeson aeson-qq attoparsec base blaze-html bytestring ··· 58001 57847 }: 58002 57848 mkDerivation { 58003 57849 pname = "clckwrks-plugin-page"; 58004 - version = "0.4.3.25"; 58005 - sha256 = "0ii9984y7792i7kiwnqmgn9mfyky2k9dkx3fnzkirypqbxyri92s"; 57850 + version = "0.4.3.26"; 57851 + sha256 = "1h348cgxrvj6p4kd4vzfkdjvx592p7yb16mmxp27k61jvncg1vjw"; 58006 57852 libraryHaskellDepends = [ 58007 57853 acid-state aeson attoparsec base clckwrks containers directory 58008 57854 filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl ··· 58026 57872 }: 58027 57873 mkDerivation { 58028 57874 pname = "clckwrks-plugin-redirect"; 58029 - version = "0.0.1.2"; 58030 - sha256 = "1vb0knjy0qkbpzni10bgvznnjxc7bv7pbp1l9frdffdsrssgyx8w"; 57875 + version = "0.0.1.3"; 57876 + sha256 = "15qcqrrznx7wz0anfwvs0rr3jl51ifcb0gxlr236c4c4xx8wfhna"; 58031 57877 isLibrary = true; 58032 57878 isExecutable = true; 58033 57879 libraryHaskellDepends = [ ··· 58048 57894 }: 58049 57895 mkDerivation { 58050 57896 pname = "clckwrks-theme-bootstrap"; 58051 - version = "0.4.3.2"; 58052 - sha256 = "0ag94kc0csjnh88vw6ljifv6cqqwc8wizyizqk0mj4qpp73z6qd2"; 57897 + version = "0.4.3.5"; 57898 + sha256 = "07gms8mcp4lbi6fqxanzg2z7ybjhisxaal7yix3039glh54d2gv3"; 58053 57899 enableSeparateDataOutput = true; 58054 57900 libraryHaskellDepends = [ 58055 57901 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro ··· 65031 64877 libraryHaskellDepends = [ base category unconstrained ]; 65032 64878 description = "Reified constraints"; 65033 64879 license = lib.licenses.bsd3; 64880 + hydraPlatforms = lib.platforms.none; 65034 64881 }) {}; 65035 64882 65036 64883 "constraint-classes" = callPackage ··· 65066 64911 libraryHaskellDepends = [ base category constraint reflection ]; 65067 64912 description = "Constraint reflection"; 65068 64913 license = lib.licenses.bsd3; 64914 + hydraPlatforms = lib.platforms.none; 65069 64915 }) {}; 65070 64916 65071 64917 "constraint-tuples" = callPackage ··· 65428 65272 }) {}; 65429 65273 65430 65274 "context" = callPackage 65431 - ({ mkDerivation, async, base, containers, ghc-prim, hspec 65432 - , hspec-discover 65275 + ({ mkDerivation, async, base, containers, exceptions, ghc-prim 65276 + , hspec, hspec-discover 65433 65277 }: 65434 65278 mkDerivation { 65435 65279 pname = "context"; 65436 - version = "0.1.1.1"; 65437 - sha256 = "0zn8hnyf04q7brchll3xnk0ifxadl050wric191irmnl29m6p5k8"; 65438 - libraryHaskellDepends = [ base containers ]; 65280 + version = "0.2.0.0"; 65281 + sha256 = "1s915v2wbmhwp3qwk5p7n1iz510wfdmi4nq2zg1m04q7dpzhl0xz"; 65282 + libraryHaskellDepends = [ base containers exceptions ]; 65439 65283 testHaskellDepends = [ async base ghc-prim hspec ]; 65440 65284 testToolDepends = [ hspec-discover ]; 65441 65285 description = "Thread-indexed, nested contexts"; ··· 65495 65339 }: 65496 65340 mkDerivation { 65497 65341 pname = "context-http-client"; 65498 - version = "0.1.0.0"; 65499 - sha256 = "0ad917jnzqd2idzh6a5j9nvjf2pg7l968vmn38cxgh9hfq3yhwm7"; 65342 + version = "0.2.0.0"; 65343 + sha256 = "0d7hdqcvfay8m1inbl19z4hj8qqi2a00qsxh7n7s03075rd8wzs0"; 65500 65344 libraryHaskellDepends = [ base context http-client ]; 65501 65345 testHaskellDepends = [ 65502 65346 async base bytestring case-insensitive context hspec http-client ··· 65508 65352 }) {}; 65509 65353 65510 65354 "context-resource" = callPackage 65511 - ({ mkDerivation, async, base, context, hspec, hspec-discover }: 65355 + ({ mkDerivation, async, base, context, exceptions, hspec 65356 + , hspec-discover 65357 + }: 65512 65358 mkDerivation { 65513 65359 pname = "context-resource"; 65514 - version = "0.1.0.0"; 65515 - sha256 = "0695m9hnx8grfmyy7mzd6n3426qc18sh14hy6glhr5nwj9c4k4c2"; 65516 - libraryHaskellDepends = [ base context ]; 65360 + version = "0.2.0.0"; 65361 + sha256 = "0jjy6i6vcg3b9chrkw7l2yza8kdxl8d4bdlrqp0anpaxwm1q34da"; 65362 + libraryHaskellDepends = [ base context exceptions ]; 65517 65363 testHaskellDepends = [ async base context hspec ]; 65518 65364 testToolDepends = [ hspec-discover ]; 65519 65365 description = "Thread-safe, pool-compatible resource provider"; ··· 65543 65385 }: 65544 65386 mkDerivation { 65545 65387 pname = "context-wai-middleware"; 65546 - version = "0.1.0.0"; 65547 - sha256 = "0bisqsngccddkamf60qyk4h9w4w80ppks51i4p9bl39kmf7hd65l"; 65388 + version = "0.2.0.0"; 65389 + sha256 = "017zwjq4kl3jjmrdp0x6zxbsd9k5xnvcgf4r1cjk7cnlch36cwmn"; 65548 65390 libraryHaskellDepends = [ base context wai ]; 65549 65391 testHaskellDepends = [ 65550 65392 async base bytestring case-insensitive context hspec http-client ··· 66542 66384 license = lib.licenses.mit; 66543 66385 }) {}; 66544 66386 66387 + "core-data_0_3_2_2" = callPackage 66388 + ({ mkDerivation, aeson, base, bytestring, containers, core-text 66389 + , hashable, prettyprinter, scientific, text, unordered-containers 66390 + , vector 66391 + }: 66392 + mkDerivation { 66393 + pname = "core-data"; 66394 + version = "0.3.2.2"; 66395 + sha256 = "000ffh2lrv5yl9gybx3i8gp66f1vd1w6mhih8bipxf7fzgsn6pik"; 66396 + libraryHaskellDepends = [ 66397 + aeson base bytestring containers core-text hashable prettyprinter 66398 + scientific text unordered-containers vector 66399 + ]; 66400 + description = "Convenience wrappers around common data structures and encodings"; 66401 + license = lib.licenses.mit; 66402 + hydraPlatforms = lib.platforms.none; 66403 + }) {}; 66404 + 66545 66405 "core-haskell" = callPackage 66546 66406 ({ mkDerivation, base, haskeline, haskell-src-exts, hint }: 66547 66407 mkDerivation { ··· 66598 66422 license = lib.licenses.mit; 66599 66423 }) {}; 66600 66424 66425 + "core-program_0_4_6_1" = callPackage 66426 + ({ mkDerivation, async, base, bytestring, chronologique, core-data 66427 + , core-text, directory, exceptions, filepath, fsnotify, hashable 66428 + , hourglass, mtl, prettyprinter, safe-exceptions, stm 66429 + , template-haskell, terminal-size, text, text-short, transformers 66430 + , typed-process, unix 66431 + }: 66432 + mkDerivation { 66433 + pname = "core-program"; 66434 + version = "0.4.6.1"; 66435 + sha256 = "0vjrffccnh7vl86mfm7i4rfwk9pzsg47g0gd4pg6fsdcs6118amq"; 66436 + libraryHaskellDepends = [ 66437 + async base bytestring chronologique core-data core-text directory 66438 + exceptions filepath fsnotify hashable hourglass mtl prettyprinter 66439 + safe-exceptions stm template-haskell terminal-size text text-short 66440 + transformers typed-process unix 66441 + ]; 66442 + description = "Opinionated Haskell Interoperability"; 66443 + license = lib.licenses.mit; 66444 + hydraPlatforms = lib.platforms.none; 66445 + }) {}; 66446 + 66601 66447 "core-telemetry" = callPackage 66602 66448 ({ mkDerivation, async, base, bytestring, chronologique, core-data 66603 66449 , core-program, core-text, exceptions, http-streams, io-streams ··· 66639 66441 license = lib.licenses.mit; 66640 66442 }) {}; 66641 66443 66444 + "core-telemetry_0_2_0_1" = callPackage 66445 + ({ mkDerivation, async, base, bytestring, chronologique, core-data 66446 + , core-program, core-text, exceptions, http-streams, io-streams 66447 + , mtl, network-info, random, safe-exceptions, scientific, stm 66448 + , template-haskell, text, unix 66449 + }: 66450 + mkDerivation { 66451 + pname = "core-telemetry"; 66452 + version = "0.2.0.1"; 66453 + sha256 = "1l302ncnv1w3p84v16acxvkyr6kvrr6385i7qdrmqi0a8yfwizb0"; 66454 + libraryHaskellDepends = [ 66455 + async base bytestring chronologique core-data core-program 66456 + core-text exceptions http-streams io-streams mtl network-info 66457 + random safe-exceptions scientific stm template-haskell text unix 66458 + ]; 66459 + description = "Advanced telemetry"; 66460 + license = lib.licenses.mit; 66461 + hydraPlatforms = lib.platforms.none; 66462 + }) {}; 66463 + 66642 66464 "core-text" = callPackage 66643 66465 ({ mkDerivation, ansi-terminal, base, bytestring, colour, deepseq 66644 66466 , fingertree, hashable, prettyprinter, template-haskell, text ··· 66674 66456 ]; 66675 66457 description = "A rope type based on a finger tree over UTF-8 fragments"; 66676 66458 license = lib.licenses.mit; 66459 + }) {}; 66460 + 66461 + "core-text_0_3_7_1" = callPackage 66462 + ({ mkDerivation, ansi-terminal, base, bytestring, colour, deepseq 66463 + , fingertree, hashable, prettyprinter, template-haskell, text 66464 + , text-short 66465 + }: 66466 + mkDerivation { 66467 + pname = "core-text"; 66468 + version = "0.3.7.1"; 66469 + sha256 = "11l89p9fn05l8h7dx6mpw4mhwhcxhdl2879lj628bxjal3f2fys3"; 66470 + libraryHaskellDepends = [ 66471 + ansi-terminal base bytestring colour deepseq fingertree hashable 66472 + prettyprinter template-haskell text text-short 66473 + ]; 66474 + description = "A rope type based on a finger tree over UTF-8 fragments"; 66475 + license = lib.licenses.mit; 66476 + hydraPlatforms = lib.platforms.none; 66677 66477 }) {}; 66678 66478 66679 66479 "core-warn" = callPackage ··· 66724 66488 ]; 66725 66489 description = "Interoperability with Servant"; 66726 66490 license = lib.licenses.mit; 66491 + hydraPlatforms = lib.platforms.none; 66727 66492 }) {}; 66728 66493 66729 66494 "core-webserver-warp" = callPackage ··· 66734 66497 }: 66735 66498 mkDerivation { 66736 66499 pname = "core-webserver-warp"; 66737 - version = "0.1.1.0"; 66738 - sha256 = "0yfd2037bq6vljixkhrk2v2mlywj2br16pf5dpz2vahjpk0079yj"; 66500 + version = "0.1.1.3"; 66501 + sha256 = "1yjy5y0lvwkjyribhqavcda57s30jc7xjacng2g3p256kfp7mc2r"; 66739 66502 libraryHaskellDepends = [ 66740 66503 async base bytestring core-data core-program core-telemetry 66741 66504 core-text http-types http2 mtl safe-exceptions vault wai warp 66742 66505 ]; 66743 66506 description = "Interoperability with Wai/Warp"; 66744 66507 license = lib.licenses.mit; 66508 + hydraPlatforms = lib.platforms.none; 66509 + broken = true; 66745 66510 }) {}; 66746 66511 66747 66512 "corebot-bliki" = callPackage ··· 67000 66761 ]; 67001 66762 description = "Countable, Searchable, Finite, Empty classes"; 67002 66763 license = lib.licenses.bsd3; 66764 + }) {}; 66765 + 66766 + "countable_1_2" = callPackage 66767 + ({ mkDerivation, base, bytestring, silently, tasty, tasty-golden 66768 + , tasty-hunit 66769 + }: 66770 + mkDerivation { 66771 + pname = "countable"; 66772 + version = "1.2"; 66773 + sha256 = "119v5ms4nyxikfwlmz71qk9gqp53zkpyxc6wm3qp5bm9b6n1ff47"; 66774 + libraryHaskellDepends = [ base ]; 66775 + testHaskellDepends = [ 66776 + base bytestring silently tasty tasty-golden tasty-hunit 66777 + ]; 66778 + description = "Countable, Searchable, Finite, Empty classes"; 66779 + license = lib.licenses.bsd3; 66780 + hydraPlatforms = lib.platforms.none; 67003 66781 }) {}; 67004 66782 67005 66783 "countable-inflections" = callPackage ··· 67477 67221 }: 67478 67222 mkDerivation { 67479 67223 pname = "cql"; 67480 - version = "4.0.3"; 67481 - sha256 = "1b6bqhg3rf2kk7i81l4vsgyp7zxiycifdrsj8qa4sqx78m72dmxh"; 67224 + version = "4.0.4"; 67225 + sha256 = "04s947r9wsqamqx3sq0h41l0mwxcw7pqc11jlrj8r94wgiikpkh2"; 67482 67226 libraryHaskellDepends = [ 67483 67227 base bytestring cereal containers Decimal iproute network 67484 67228 template-haskell text time transformers uuid vector ··· 69773 69517 license = "GPL"; 69774 69518 hydraPlatforms = lib.platforms.none; 69775 69519 broken = true; 69520 + }) {}; 69521 + 69522 + "csv-sip" = callPackage 69523 + ({ mkDerivation, base, bytestring, conduit, containers, hspec, text 69524 + , transformers 69525 + }: 69526 + mkDerivation { 69527 + pname = "csv-sip"; 69528 + version = "0.1.0"; 69529 + sha256 = "1m33kw4rgzq7ivhr44giagp0b2xx0h9q0ipidll8xrrklvxzkcsc"; 69530 + libraryHaskellDepends = [ 69531 + base bytestring conduit containers text transformers 69532 + ]; 69533 + testHaskellDepends = [ 69534 + base bytestring conduit containers hspec text transformers 69535 + ]; 69536 + description = "extracts data from a CSV file"; 69537 + license = lib.licenses.gpl3Plus; 69776 69538 }) {}; 69777 69539 69778 69540 "csv-table" = callPackage ··· 76302 76028 license = lib.licenses.bsd3; 76303 76029 }) {}; 76304 76030 76031 + "derivingvia-extras" = callPackage 76032 + ({ mkDerivation, base, hashable }: 76033 + mkDerivation { 76034 + pname = "derivingvia-extras"; 76035 + version = "0.1.0.0"; 76036 + sha256 = "11fsx8pbxqp968pgvms6qzw5x871r3c94m812nz81fpqkm6mv5cz"; 76037 + libraryHaskellDepends = [ base hashable ]; 76038 + description = "DerivingVia extras - Miscellaneous /via/ types"; 76039 + license = lib.licenses.bsd3; 76040 + }) {}; 76041 + 76305 76042 "derp" = callPackage 76306 76043 ({ mkDerivation, base, containers }: 76307 76044 mkDerivation { ··· 77417 77132 broken = true; 77418 77133 }) {}; 77419 77134 77135 + "dhall-text-shell" = callPackage 77136 + ({ mkDerivation, base, containers, dhall, filepath 77137 + , optparse-applicative, process, text 77138 + }: 77139 + mkDerivation { 77140 + pname = "dhall-text-shell"; 77141 + version = "0.2.0.0"; 77142 + sha256 = "10i1i7fk9y5hsxjjb87jbfnprg7nkrvpax6kd4blfphpzs2mpz5b"; 77143 + isLibrary = true; 77144 + isExecutable = true; 77145 + libraryHaskellDepends = [ 77146 + base containers dhall filepath optparse-applicative process text 77147 + ]; 77148 + executableHaskellDepends = [ 77149 + base containers dhall filepath optparse-applicative process text 77150 + ]; 77151 + description = "Render dhall text with shell commands as function arguments"; 77152 + license = lib.licenses.mit; 77153 + }) {}; 77154 + 77420 77155 "dhall-to-cabal" = callPackage 77421 77156 ({ mkDerivation, base, bytestring, Cabal, containers, contravariant 77422 77157 , dhall, Diff, directory, filepath, microlens, optparse-applicative ··· 77699 77394 description = "An EDSL for teaching Haskell with diagrams - functions"; 77700 77395 license = lib.licenses.bsd3; 77701 77396 hydraPlatforms = lib.platforms.none; 77397 + }) {}; 77398 + 77399 + "diagnose" = callPackage 77400 + ({ mkDerivation, base, data-default, hashable, prettyprinter 77401 + , prettyprinter-ansi-terminal, unordered-containers, wcwidth 77402 + }: 77403 + mkDerivation { 77404 + pname = "diagnose"; 77405 + version = "1.8.2"; 77406 + sha256 = "11hyd08aixx795mf79ybzkz59s68v59rdl6lkyjvzn06sh1fvvdc"; 77407 + libraryHaskellDepends = [ 77408 + base data-default hashable prettyprinter 77409 + prettyprinter-ansi-terminal unordered-containers wcwidth 77410 + ]; 77411 + testHaskellDepends = [ 77412 + base data-default hashable prettyprinter 77413 + prettyprinter-ansi-terminal unordered-containers wcwidth 77414 + ]; 77415 + description = "Beautiful error reporting done easily"; 77416 + license = lib.licenses.bsd3; 77702 77417 }) {}; 77703 77418 77704 77419 "diagrams" = callPackage ··· 83927 83602 }: 83928 83603 mkDerivation { 83929 83604 pname = "dunai"; 83930 - version = "0.8.1"; 83931 - sha256 = "1zijhrk50cyyrb6jqlf8q0hh87lbfy5k9iy6w2az66nm89ckxrv9"; 83605 + version = "0.8.2"; 83606 + sha256 = "1hcjzd6zki10lkh6f11naxqrnkdmiqm4hwyj5acj4naqkakc6mmp"; 83932 83607 libraryHaskellDepends = [ 83933 83608 base MonadRandom simple-affine-space transformers transformers-base 83934 83609 ]; ··· 83958 83633 ({ mkDerivation, base, dunai, normaldistribution, QuickCheck }: 83959 83634 mkDerivation { 83960 83635 pname = "dunai-test"; 83961 - version = "0.8.1"; 83962 - sha256 = "1iy989wz4jnn9g892p7n0f1hj2hd61a01vxnqz5fr0yppbsckp3h"; 83636 + version = "0.8.2"; 83637 + sha256 = "0cicvzp604945mmlnrxwkkcyl01id933jrnnrv3y0c5xqlly2y9r"; 83963 83638 libraryHaskellDepends = [ 83964 83639 base dunai normaldistribution QuickCheck 83965 83640 ]; ··· 90682 90357 license = lib.licenses.mit; 90683 90358 }) {}; 90684 90359 90360 + "exact-pi_0_5_0_2" = callPackage 90361 + ({ mkDerivation, base, numtype-dk, QuickCheck, tasty, tasty-hunit 90362 + , tasty-quickcheck 90363 + }: 90364 + mkDerivation { 90365 + pname = "exact-pi"; 90366 + version = "0.5.0.2"; 90367 + sha256 = "1xmc3vlzfccrn5szglnxx13akxw2xacgl40kqh0kiw82d58x47a4"; 90368 + libraryHaskellDepends = [ base numtype-dk ]; 90369 + testHaskellDepends = [ 90370 + base numtype-dk QuickCheck tasty tasty-hunit tasty-quickcheck 90371 + ]; 90372 + description = "Exact rational multiples of pi (and integer powers of pi)"; 90373 + license = lib.licenses.mit; 90374 + hydraPlatforms = lib.platforms.none; 90375 + }) {}; 90376 + 90685 90377 "exact-real" = callPackage 90686 90378 ({ mkDerivation, base, Cabal, cabal-doctest, checkers, criterion 90687 90379 , doctest, groups, integer-gmp, QuickCheck, random, tasty ··· 90771 90429 libraryHaskellDepends = [ base template-haskell ]; 90772 90430 description = "Exception type hierarchy with TemplateHaskell"; 90773 90431 license = lib.licenses.bsd3; 90432 + }) {}; 90433 + 90434 + "exception-hierarchy_0_1_0_7" = callPackage 90435 + ({ mkDerivation, base, template-haskell }: 90436 + mkDerivation { 90437 + pname = "exception-hierarchy"; 90438 + version = "0.1.0.7"; 90439 + sha256 = "14kk0rync05rq2adx5lk59y56h97s0yv7mqfn2grhhwqb10maqj0"; 90440 + libraryHaskellDepends = [ base template-haskell ]; 90441 + description = "Exception type hierarchy with TemplateHaskell"; 90442 + license = lib.licenses.bsd3; 90443 + hydraPlatforms = lib.platforms.none; 90774 90444 }) {}; 90775 90445 90776 90446 "exception-mailer" = callPackage ··· 91314 90960 libraryHaskellDepends = [ base base-unicode-symbols util ]; 91315 90961 description = "Dependent sum type"; 91316 90962 license = lib.licenses.bsd3; 90963 + hydraPlatforms = lib.platforms.none; 91317 90964 }) {}; 91318 90965 91319 90966 "exist-instances" = callPackage ··· 91330 90975 ]; 91331 90976 description = "Instances for \"exist\" package (requires more language extensions and dependencies)"; 91332 90977 license = lib.licenses.bsd3; 90978 + hydraPlatforms = lib.platforms.none; 91333 90979 }) {}; 91334 90980 91335 90981 "existential" = callPackage ··· 92159 91803 license = lib.licenses.mit; 92160 91804 }) {}; 92161 91805 91806 + "extensioneer" = callPackage 91807 + ({ mkDerivation, base, Cabal, containers, directory, hpack, mtl 91808 + , optparse-applicative, yaml 91809 + }: 91810 + mkDerivation { 91811 + pname = "extensioneer"; 91812 + version = "0.1.0.0"; 91813 + sha256 = "02n7ajra4vx63wjjj4dj54md87hk0cjz61bh6m3ql37h97iqsiqx"; 91814 + isLibrary = false; 91815 + isExecutable = true; 91816 + executableHaskellDepends = [ 91817 + base Cabal containers directory hpack mtl optparse-applicative yaml 91818 + ]; 91819 + description = "Inspect extensions in cabal and hpack files"; 91820 + license = lib.licenses.mit; 91821 + }) {}; 91822 + 92162 91823 "extensions" = callPackage 92163 91824 ({ mkDerivation, base, bytestring, Cabal, colourista, containers 92164 91825 , directory, filepath, ghc-boot-th, hedgehog, hspec, hspec-hedgehog ··· 92631 92258 benchmarkHaskellDepends = [ base criterion ]; 92632 92259 description = "Lists with fair choice"; 92633 92260 license = lib.licenses.bsd3; 92261 + hydraPlatforms = lib.platforms.none; 92634 92262 }) {}; 92635 92263 92636 92264 "fair-predicates" = callPackage ··· 93519 93145 }: 93520 93146 mkDerivation { 93521 93147 pname = "fb"; 93522 - version = "2.1.1"; 93523 - sha256 = "0j2rckrv1aksfp2wyiyffqg40jl927vs97fk2lyzkscz673jd9s9"; 93148 + version = "2.1.1.1"; 93149 + sha256 = "18hqmhfzniydmxwi8b21iz04pc6x8hdy8pj6960ihrk20ddkih3d"; 93524 93150 libraryHaskellDepends = [ 93525 93151 aeson attoparsec base bytestring conduit conduit-extra cryptonite 93526 93152 data-default http-client http-conduit http-types memory ··· 93591 93217 }: 93592 93218 mkDerivation { 93593 93219 pname = "fbrnch"; 93594 - version = "1.0.0"; 93595 - sha256 = "1j5whbx72q7jvjkv952y8qmgqkm19dprn6p1glvgsck8nhmffkkd"; 93220 + version = "1.1"; 93221 + sha256 = "11vhm176dm2i4zy7ipg20rsmp7rdabq8gh29byflqxm5s5wp86y6"; 93596 93222 isLibrary = false; 93597 93223 isExecutable = true; 93598 93224 executableHaskellDepends = [ ··· 93687 93313 }) {}; 93688 93314 93689 93315 "fcf-containers" = callPackage 93690 - ({ mkDerivation, base, doctest, first-class-families, Glob }: 93316 + ({ mkDerivation, base, doctest, first-class-families, ghc-prim 93317 + , Glob, mtl 93318 + }: 93691 93319 mkDerivation { 93692 93320 pname = "fcf-containers"; 93693 - version = "0.6.0"; 93694 - sha256 = "09sr1xqdjzfk5gysd7hi66xadwcfrjq4q3vakmdilc14lw833wgp"; 93321 + version = "0.7.0"; 93322 + sha256 = "0ai2hmcva84z29jxr3inngnicx0wn05vnh9lw460fcfckdfxf5xf"; 93695 93323 isLibrary = true; 93696 93324 isExecutable = true; 93697 - libraryHaskellDepends = [ base first-class-families ]; 93325 + libraryHaskellDepends = [ base first-class-families ghc-prim mtl ]; 93698 93326 executableHaskellDepends = [ base first-class-families ]; 93699 - testHaskellDepends = [ base doctest first-class-families Glob ]; 93327 + testHaskellDepends = [ 93328 + base doctest first-class-families ghc-prim Glob 93329 + ]; 93700 93330 description = "Data structures and algorithms for first-class-families"; 93701 93331 license = lib.licenses.bsd3; 93702 93332 hydraPlatforms = lib.platforms.none; ··· 97983 97605 libraryHaskellDepends = [ base transformers util ]; 97984 97606 description = "Foldable types with at least 1 element"; 97985 97607 license = lib.licenses.bsd3; 97608 + hydraPlatforms = lib.platforms.none; 97986 97609 }) {}; 97987 97610 97988 97611 "foldl" = callPackage ··· 104215 103836 }: 104216 103837 mkDerivation { 104217 103838 pname = "genvalidity-aeson"; 104218 - version = "1.0.0.0"; 104219 - sha256 = "1k28vl7i2idv44962wspvhpqpfznj52ckd3g7h580894vghhwi89"; 103839 + version = "1.0.0.1"; 103840 + sha256 = "0j5sms6f3ivxn981gzqsyhks2q2fws8xdbnnffb209dr0afg00b1"; 104220 103841 libraryHaskellDepends = [ 104221 103842 aeson base genvalidity genvalidity-scientific genvalidity-text 104222 103843 genvalidity-unordered-containers genvalidity-vector QuickCheck ··· 104229 103850 aeson base criterion genvalidity-criterion 104230 103851 ]; 104231 103852 description = "GenValidity support for aeson"; 103853 + license = lib.licenses.mit; 103854 + hydraPlatforms = lib.platforms.none; 103855 + }) {}; 103856 + 103857 + "genvalidity-appendful" = callPackage 103858 + ({ mkDerivation, appendful, base, containers, criterion 103859 + , genvalidity, genvalidity-containers, genvalidity-criterion 103860 + , genvalidity-hspec, genvalidity-hspec-aeson, genvalidity-time 103861 + , genvalidity-uuid, hspec, mtl, pretty-show, QuickCheck, random 103862 + , time, uuid 103863 + }: 103864 + mkDerivation { 103865 + pname = "genvalidity-appendful"; 103866 + version = "0.0.0.0"; 103867 + sha256 = "0sri0xdaqxpaapjspq4gipmvh7az3dilbzd4v5ihgcsjfk7kxmaj"; 103868 + libraryHaskellDepends = [ 103869 + appendful base containers genvalidity genvalidity-containers 103870 + genvalidity-time QuickCheck 103871 + ]; 103872 + testHaskellDepends = [ 103873 + appendful base containers genvalidity-hspec genvalidity-hspec-aeson 103874 + genvalidity-uuid hspec mtl pretty-show QuickCheck random time uuid 103875 + ]; 103876 + benchmarkHaskellDepends = [ 103877 + appendful base criterion genvalidity-criterion 103878 + ]; 104232 103879 license = lib.licenses.mit; 104233 103880 hydraPlatforms = lib.platforms.none; 104234 103881 }) {}; ··· 104281 103876 QuickCheck 104282 103877 ]; 104283 103878 description = "GenValidity support for ByteString"; 103879 + license = lib.licenses.mit; 103880 + }) {}; 103881 + 103882 + "genvalidity-case-insensitive" = callPackage 103883 + ({ mkDerivation, base, case-insensitive, criterion, genvalidity 103884 + , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck 103885 + , validity-case-insensitive 103886 + }: 103887 + mkDerivation { 103888 + pname = "genvalidity-case-insensitive"; 103889 + version = "0.0.0.0"; 103890 + sha256 = "1lmg44ihas98h02121bv1wy59k0za65nsgb64nh0al5bs6m7vsrl"; 103891 + libraryHaskellDepends = [ 103892 + base case-insensitive genvalidity validity-case-insensitive 103893 + ]; 103894 + testHaskellDepends = [ 103895 + base case-insensitive genvalidity-hspec hspec 103896 + ]; 103897 + benchmarkHaskellDepends = [ 103898 + base case-insensitive criterion genvalidity genvalidity-criterion 103899 + QuickCheck 103900 + ]; 103901 + description = "GenValidity support for case-insensitive"; 104284 103902 license = lib.licenses.mit; 104285 103903 }) {}; 104286 103904 ··· 105732 105304 }: 105733 105305 mkDerivation { 105734 105306 pname = "ghc-events"; 105735 - version = "0.17.0.2"; 105736 - sha256 = "0dkzxpfiqpd1i1lhrssp1b242111228ap113iavarr9hb7y8rl72"; 105737 - isLibrary = true; 105738 - isExecutable = true; 105739 - libraryHaskellDepends = [ 105740 - array base binary bytestring containers text vector 105741 - ]; 105742 - executableHaskellDepends = [ base containers ]; 105743 - testHaskellDepends = [ base ]; 105744 - description = "Library and tool for parsing .eventlog files from GHC"; 105745 - license = lib.licenses.bsd3; 105746 - }) {}; 105747 - 105748 - "ghc-events_0_17_0_3" = callPackage 105749 - ({ mkDerivation, array, base, binary, bytestring, containers, text 105750 - , vector 105751 - }: 105752 - mkDerivation { 105753 - pname = "ghc-events"; 105754 105307 version = "0.17.0.3"; 105755 105308 sha256 = "0m50x2ycv43d7yzwksbs1zc11wlyiszjz662fj47v9r7hacx335v"; 105756 105309 isLibrary = true; ··· 105743 105334 testHaskellDepends = [ base ]; 105744 105335 description = "Library and tool for parsing .eventlog files from GHC"; 105745 105336 license = lib.licenses.bsd3; 105746 - hydraPlatforms = lib.platforms.none; 105747 105337 }) {}; 105748 105338 105749 105339 "ghc-events-analyze" = callPackage ··· 105820 105412 license = lib.licenses.bsd3; 105821 105413 }) {}; 105822 105414 105823 - "ghc-exactprint_1_4_1" = callPackage 105824 - ({ mkDerivation }: 105825 - mkDerivation { 105826 - pname = "ghc-exactprint"; 105827 - version = "1.4.1"; 105828 - sha256 = "0q9z43753arxbcs6mz26kz4dsz0c2i5hkxa125gl36vsipxfrq92"; 105829 - revision = "1"; 105830 - editedCabalFile = "00wvn8j7439r5pp9wjqasv710amrsf34qpa3czxja2khg9jdnngj"; 105831 - isLibrary = true; 105832 - isExecutable = true; 105833 - description = "ExactPrint for GHC"; 105834 - license = lib.licenses.bsd3; 105835 - hydraPlatforms = lib.platforms.none; 105836 - }) {}; 105837 - 105838 105415 "ghc-exactprint_1_5_0" = callPackage 105839 105416 ({ mkDerivation }: 105840 105417 mkDerivation { ··· 105833 105440 description = "ExactPrint for GHC"; 105834 105441 license = lib.licenses.bsd3; 105835 105442 hydraPlatforms = lib.platforms.none; 105443 + }) {}; 105444 + 105445 + "ghc-gc-hook" = callPackage 105446 + ({ mkDerivation, base, clock }: 105447 + mkDerivation { 105448 + pname = "ghc-gc-hook"; 105449 + version = "0.2.0.0"; 105450 + sha256 = "0k7w7imrlg2gdcibkm6b02phk163xv4lnsab316jcfdid53zi7j2"; 105451 + libraryHaskellDepends = [ base clock ]; 105452 + testHaskellDepends = [ base clock ]; 105453 + description = "GHC garbage collection hook"; 105454 + license = lib.licenses.bsd3; 105836 105455 }) {}; 105837 105456 105838 105457 "ghc-gc-tune" = callPackage ··· 105879 105474 pname = "ghc-heap"; 105880 105475 version = "9.2.1"; 105881 105476 sha256 = "10d7p12p9v5z426rxx1cyhk90hx6ab6l98bk1v4a9gk551fcqsv9"; 105477 + revision = "1"; 105478 + editedCabalFile = "11kwkc96vk0jd7lpm0bz5x2ji4qc222wm2lc3y4lfx0knir2kyi6"; 105882 105479 libraryHaskellDepends = [ base containers ghc-prim rts ]; 105883 105480 description = "Functions for walking GHC's heap"; 105884 105481 license = lib.licenses.bsd3; ··· 107123 106716 ({ mkDerivation, aeson, aeson-pretty, array, async, base 107124 106717 , base16-bytestring, binary, bytestring, case-insensitive 107125 106718 , containers, cryptohash-sha1, data-default, deepseq, dependent-map 107126 - , dependent-sum, Diff, directory, dlist, exceptions, extra 107127 - , filepath, fingertree, focus, fuzzy, ghc, ghc-boot, ghc-boot-th 107128 - , ghc-check, ghc-exactprint, ghc-paths, ghc-trace-events 107129 - , ghc-typelits-knownnat, gitrev, Glob, haddock-library, hashable 107130 - , heapsize, hie-bios, hie-compat, hiedb, hls-graph, hls-plugin-api 107131 - , hp2pretty, hslogger, implicit-hie, implicit-hie-cradle, lens 107132 - , list-t, lsp, lsp-test, lsp-types, monoid-subclasses, mtl 107133 - , network-uri, opentelemetry, optparse-applicative, parallel 107134 - , prettyprinter, prettyprinter-ansi-terminal, process, QuickCheck 106719 + , dependent-sum, Diff, directory, dlist, enummapset, exceptions 106720 + , extra, filepath, fingertree, focus, fuzzy, ghc, ghc-boot 106721 + , ghc-boot-th, ghc-check, ghc-exactprint, ghc-paths 106722 + , ghc-trace-events, ghc-typelits-knownnat, gitrev, Glob 106723 + , haddock-library, hashable, heapsize, hie-bios, hie-compat, hiedb 106724 + , hls-graph, hls-plugin-api, hp2pretty, hslogger, implicit-hie 106725 + , implicit-hie-cradle, lens, list-t, lsp, lsp-test, lsp-types 106726 + , monoid-subclasses, mtl, network-uri, opentelemetry 106727 + , optparse-applicative, parallel, prettyprinter 106728 + , prettyprinter-ansi-terminal, process, QuickCheck 107135 106729 , quickcheck-instances, random, record-dot-preprocessor 107136 106730 , record-hasfield, regex-tdfa, retrie, rope-utf16-splay, safe 107137 106731 , safe-exceptions, shake, shake-bench, sorted-list, sqlite-simple ··· 107143 106735 }: 107144 106736 mkDerivation { 107145 106737 pname = "ghcide"; 107146 - version = "1.6.0.1"; 107147 - sha256 = "14k1x54kk27yaaw8n0iq1kq1hl4j417bgbvdiy0a6zg6h7rdnwzw"; 106738 + version = "1.7.0.0"; 106739 + sha256 = "097vpp1gds36ijldz29bsk71pxc82l966ka578cxsrcdc3g3ll1b"; 106740 + revision = "1"; 106741 + editedCabalFile = "0xvszq1jad6126vg73qys8z9jys7b1gs75fsaa4kq5dnrfg8hpx3"; 107148 106742 isLibrary = true; 107149 106743 isExecutable = true; 107150 106744 libraryHaskellDepends = [ 107151 106745 aeson aeson-pretty array async base base16-bytestring binary 107152 106746 bytestring case-insensitive containers cryptohash-sha1 data-default 107153 - deepseq dependent-map dependent-sum Diff directory dlist exceptions 107154 - extra filepath fingertree focus fuzzy ghc ghc-boot ghc-boot-th 106747 + deepseq dependent-map dependent-sum Diff directory dlist enummapset 106748 + exceptions extra filepath fingertree focus ghc ghc-boot ghc-boot-th 107155 106749 ghc-check ghc-exactprint ghc-paths ghc-trace-events Glob 107156 106750 haddock-library hashable heapsize hie-bios hie-compat hiedb 107157 106751 hls-graph hls-plugin-api hslogger implicit-hie-cradle lens list-t ··· 107173 106763 ]; 107174 106764 testHaskellDepends = [ 107175 106765 aeson async base binary bytestring containers data-default 107176 - directory extra filepath ghc ghc-typelits-knownnat haddock-library 107177 - hls-graph hls-plugin-api lens list-t lsp lsp-test lsp-types 107178 - network-uri optparse-applicative process QuickCheck 107179 - quickcheck-instances random record-dot-preprocessor record-hasfield 107180 - regex-tdfa rope-utf16-splay safe safe-exceptions shake 107181 - sqlite-simple stm stm-containers tasty tasty-expected-failure 107182 - tasty-hunit tasty-quickcheck tasty-rerun text unordered-containers 106766 + directory extra filepath fuzzy ghc ghc-typelits-knownnat 106767 + haddock-library hls-graph hls-plugin-api lens list-t lsp lsp-test 106768 + lsp-types monoid-subclasses network-uri optparse-applicative 106769 + parallel process QuickCheck quickcheck-instances random 106770 + record-dot-preprocessor record-hasfield regex-tdfa rope-utf16-splay 106771 + safe safe-exceptions shake sqlite-simple stm stm-containers tasty 106772 + tasty-expected-failure tasty-hunit tasty-quickcheck tasty-rerun 106773 + text unordered-containers vector 107183 106774 ]; 107184 106775 testToolDepends = [ implicit-hie ]; 107185 106776 benchmarkHaskellDepends = [ ··· 109746 109335 testToolDepends = [ hspec-discover ]; 109747 109336 description = "Access to the GitHub API, v3"; 109748 109337 license = lib.licenses.bsd3; 109338 + }) {}; 109339 + 109340 + "github_0_28" = callPackage 109341 + ({ mkDerivation, aeson, base, base-compat, base16-bytestring 109342 + , binary, binary-instances, bytestring, containers, cryptohash-sha1 109343 + , deepseq, deepseq-generics, exceptions, file-embed, hashable 109344 + , hspec, hspec-discover, http-client, http-client-tls 109345 + , http-link-header, http-types, iso8601-time, mtl, network-uri 109346 + , tagged, text, time-compat, tls, transformers, transformers-compat 109347 + , unordered-containers, vector, vector-instances 109348 + }: 109349 + mkDerivation { 109350 + pname = "github"; 109351 + version = "0.28"; 109352 + sha256 = "142l0zff852606hkpvkhvagp6h3ziq2z2x7x2pa77q5ymyq48089"; 109353 + libraryHaskellDepends = [ 109354 + aeson base base-compat base16-bytestring binary binary-instances 109355 + bytestring containers cryptohash-sha1 deepseq deepseq-generics 109356 + exceptions hashable http-client http-client-tls http-link-header 109357 + http-types iso8601-time mtl network-uri tagged text time-compat tls 109358 + transformers transformers-compat unordered-containers vector 109359 + vector-instances 109360 + ]; 109361 + testHaskellDepends = [ 109362 + aeson base base-compat bytestring file-embed hspec tagged text 109363 + unordered-containers vector 109364 + ]; 109365 + testToolDepends = [ hspec-discover ]; 109366 + description = "Access to the GitHub API, v3"; 109367 + license = lib.licenses.bsd3; 109368 + hydraPlatforms = lib.platforms.none; 109749 109369 }) {}; 109750 109370 109751 109371 "github-backup" = callPackage ··· 114524 114082 }: 114525 114083 mkDerivation { 114526 114084 pname = "gopro-plus"; 114527 - version = "0.6.5.0"; 114528 - sha256 = "09hj57r77r9mx2dy830n9qv3ap2nsg8a94gmpzf69zddqvk1fhm8"; 114085 + version = "0.6.5.1"; 114086 + sha256 = "06sasqagh4xa6gkhgjxf7jpvwfp9q27r0qnpr7rq0dxwsbrpqgnp"; 114529 114087 libraryHaskellDepends = [ 114530 114088 aeson base bytestring containers exceptions filepath 114531 114089 generic-deriving generic-random lens lens-aeson monad-logger mtl ··· 115096 114654 ({ mkDerivation, attoparsec, base, Cabal, cabal-doctest, checkers 115097 114655 , containers, criterion, deepseq, doctest, input-parsers 115098 114656 , markdown-unlit, monoid-subclasses, parsers, QuickCheck 115099 - , rank2classes, size-based, tasty, tasty-quickcheck, testing-feat 115100 - , text, transformers, witherable 114657 + , rank2classes, tasty, tasty-quickcheck, text, transformers 114658 + , witherable 115101 114659 }: 115102 114660 mkDerivation { 115103 114661 pname = "grammatical-parsers"; 115104 - version = "0.5.2"; 115105 - sha256 = "1xnm5j0lznabscpswzvxjccwxb6c8js7jg3z1ddd60gffq69wpip"; 114662 + version = "0.6"; 114663 + sha256 = "1ck7zv110yrwz04q10j38wx6ipap88np9px6l94rxbha1m1k7nhi"; 115106 114664 isLibrary = true; 115107 114665 isExecutable = true; 115108 114666 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 115115 114673 ]; 115116 114674 testHaskellDepends = [ 115117 114675 base checkers containers doctest monoid-subclasses parsers 115118 - QuickCheck rank2classes size-based tasty tasty-quickcheck 115119 - testing-feat witherable 114676 + QuickCheck rank2classes tasty tasty-quickcheck witherable 115120 114677 ]; 115121 114678 testToolDepends = [ markdown-unlit ]; 115122 114679 benchmarkHaskellDepends = [ ··· 118933 118492 broken = true; 118934 118493 }) {}; 118935 118494 118495 + "hackage-cli" = callPackage 118496 + ({ mkDerivation, aeson, base, bytestring, Cabal, containers 118497 + , deepseq, directory, filepath, http-io-streams, io-streams 118498 + , microlens, microlens-mtl, microlens-th, mtl, netrc 118499 + , optparse-applicative, pretty, process-extras, semigroups 118500 + , stringsearch, tagsoup, tar, tasty, tasty-golden, text, time 118501 + , unordered-containers, zlib 118502 + }: 118503 + mkDerivation { 118504 + pname = "hackage-cli"; 118505 + version = "0.0.3.6"; 118506 + sha256 = "1wnh3571mgwyl9c5bfkwvr4rvsnw41qb9mlz1nda1ya53qfdjl4p"; 118507 + isLibrary = false; 118508 + isExecutable = true; 118509 + libraryHaskellDepends = [ 118510 + base bytestring Cabal containers mtl pretty 118511 + ]; 118512 + executableHaskellDepends = [ 118513 + aeson base bytestring Cabal containers deepseq directory filepath 118514 + http-io-streams io-streams microlens microlens-mtl microlens-th mtl 118515 + netrc optparse-applicative process-extras semigroups stringsearch 118516 + tagsoup tar text time unordered-containers zlib 118517 + ]; 118518 + testHaskellDepends = [ 118519 + base bytestring Cabal filepath tasty tasty-golden 118520 + ]; 118521 + doHaddock = false; 118522 + description = "CLI tool for Hackage"; 118523 + license = lib.licenses.gpl3Plus; 118524 + }) {}; 118525 + 118936 118526 "hackage-db" = callPackage 118937 118527 ({ mkDerivation, aeson, base, bytestring, Cabal, containers 118938 118528 , directory, exceptions, filepath, tar, time, utf8-string ··· 121609 121137 }: 121610 121138 mkDerivation { 121611 121139 pname = "happstack-authenticate"; 121612 - version = "2.6.0"; 121613 - sha256 = "0sqldnhfp631vb3v69zm856zax89mgykvj4f9siisqn41qz097zx"; 121140 + version = "2.6.1"; 121141 + sha256 = "1kyh4l3c4xf6ykjmjvza44d0mf69wpwgi7v88g7lh3ag26m455w3"; 121614 121142 enableSeparateDataOutput = true; 121615 121143 libraryHaskellDepends = [ 121616 121144 acid-state aeson authenticate base base64-bytestring boomerang ··· 121783 121311 }: 121784 121312 mkDerivation { 121785 121313 pname = "happstack-foundation"; 121786 - version = "0.5.9.1"; 121787 - sha256 = "05fcvwa25x993ba8h034877di4y1m3yp5f5fvx4jxdybpf868jnn"; 121314 + version = "0.5.9.3"; 121315 + sha256 = "1qm6kk5p5j7gvr6ckjibls5pid3qqihv9csd50q5yb1vzdqv1pii"; 121788 121316 enableSeparateDataOutput = true; 121789 121317 libraryHaskellDepends = [ 121790 121318 acid-state base happstack-hsp happstack-server hsp lifted-base ··· 121857 121385 }: 121858 121386 mkDerivation { 121859 121387 pname = "happstack-hsp"; 121860 - version = "7.3.7.5"; 121861 - sha256 = "1krjas0id8an3ry83xrgxl9cb18n17r394ivz05c45mwan6sbpqf"; 121388 + version = "7.3.7.6"; 121389 + sha256 = "1y23yzppvxjhmvaq9yl02v8mp6ww91jpsvqfhpzxkw1jccz54bcq"; 121862 121390 libraryHaskellDepends = [ 121863 121391 base bytestring happstack-server harp hsp hsx2hs mtl syb text 121864 121392 utf8-string ··· 121911 121439 }: 121912 121440 mkDerivation { 121913 121441 pname = "happstack-jmacro"; 121914 - version = "7.0.12.3"; 121915 - sha256 = "1phhy9sq7hiz3c50k5wyclrsjqacw8mcdyg80h3xi43zgjmff23w"; 121442 + version = "7.0.12.4"; 121443 + sha256 = "1zqfivzwq6wfwfgds5icy5rs5vrxiw9w1wzxn5jlqn7zkz3svbl9"; 121916 121444 libraryHaskellDepends = [ 121917 121445 base base64-bytestring bytestring cereal digest happstack-server 121918 121446 jmacro text utf8-string wl-pprint-text ··· 121926 121454 ({ mkDerivation, base, bytestring, happstack-server, mtl, text }: 121927 121455 mkDerivation { 121928 121456 pname = "happstack-lite"; 121929 - version = "7.3.7"; 121930 - sha256 = "12vyyjl0n9dqp8mh5279930rnbwaxxlzw34651sa7h9gir9hv1zv"; 121457 + version = "7.3.8"; 121458 + sha256 = "0bvcgacsngpj92ldb2fd7yj67im0bn4jnd5a1ldpbk43w85f91pk"; 121931 121459 libraryHaskellDepends = [ 121932 121460 base bytestring happstack-server mtl text 121933 121461 ]; ··· 122005 121533 }: 122006 121534 mkDerivation { 122007 121535 pname = "happstack-server-tls"; 122008 - version = "7.2.1.1"; 122009 - sha256 = "0bply7dxz2046h0v0ydkicjvl491k0llapf2shxjqnskjjr5rqnk"; 121536 + version = "7.2.1.2"; 121537 + sha256 = "1qij3hx3y54s3vvcs7z656144cbp94aigy84ywfyp8238f4p5yq5"; 122010 121538 libraryHaskellDepends = [ 122011 121539 base bytestring extensible-exceptions happstack-server hslogger 122012 121540 HsOpenSSL network sendfile time unix ··· 124214 123742 , cryptohash-sha1, data-default, deepseq, directory, extra 124215 123743 , filepath, ghc, ghc-boot-th, ghc-paths, ghcide, githash, gitrev 124216 123744 , hashable, hie-bios, hiedb, hls-alternate-number-format-plugin 124217 - , hls-call-hierarchy-plugin, hls-class-plugin, hls-eval-plugin 124218 - , hls-explicit-imports-plugin, hls-floskell-plugin 124219 - , hls-fourmolu-plugin, hls-graph, hls-haddock-comments-plugin 124220 - , hls-hlint-plugin, hls-module-name-plugin, hls-ormolu-plugin 124221 - , hls-plugin-api, hls-pragmas-plugin 124222 - , hls-qualify-imported-names-plugin, hls-refine-imports-plugin 124223 - , hls-retrie-plugin, hls-selection-range-plugin, hls-splice-plugin 124224 - , hls-test-utils, hslogger, hspec-expectations, lens, lens-aeson 124225 - , lsp, lsp-test, lsp-types, mtl, optparse-applicative 124226 - , optparse-simple, process, regex-tdfa, safe-exceptions 124227 - , sqlite-simple, stm, temporary, text, transformers 124228 - , unordered-containers 123745 + , hls-call-hierarchy-plugin, hls-change-type-signature-plugin 123746 + , hls-class-plugin, hls-eval-plugin, hls-explicit-imports-plugin 123747 + , hls-floskell-plugin, hls-fourmolu-plugin, hls-graph 123748 + , hls-haddock-comments-plugin, hls-hlint-plugin 123749 + , hls-module-name-plugin, hls-ormolu-plugin, hls-plugin-api 123750 + , hls-pragmas-plugin, hls-qualify-imported-names-plugin 123751 + , hls-refine-imports-plugin, hls-rename-plugin, hls-retrie-plugin 123752 + , hls-selection-range-plugin, hls-splice-plugin, hls-test-utils 123753 + , hspec-expectations, lens, lens-aeson, lsp, lsp-test, lsp-types 123754 + , mtl, optparse-applicative, optparse-simple, prettyprinter 123755 + , process, regex-tdfa, safe-exceptions, sqlite-simple, stm 123756 + , temporary, text, transformers, unix, unordered-containers 124229 123757 }: 124230 123758 mkDerivation { 124231 123759 pname = "haskell-language-server"; 124232 - version = "1.6.1.1"; 124233 - sha256 = "03z650zk7ma0gsmb7mirzarwg0535kwmwyf0h8a89s8bqfcd5mxf"; 123760 + version = "1.7.0.0"; 123761 + sha256 = "1p5dr5j7vl86a4ig6y6cxf7rk8lswxsdxq9029sydghnyl3kaf3f"; 124234 123762 isLibrary = true; 124235 123763 isExecutable = true; 124236 123764 libraryHaskellDepends = [ 124237 123765 aeson-pretty async base base16-bytestring bytestring containers 124238 123766 cryptohash-sha1 data-default directory extra filepath ghc ghcide 124239 - githash hie-bios hiedb hls-graph hls-plugin-api hslogger lsp 124240 - optparse-applicative optparse-simple process safe-exceptions 124241 - sqlite-simple text unordered-containers 123767 + githash hie-bios hiedb hls-graph hls-plugin-api lsp 123768 + optparse-applicative optparse-simple prettyprinter process 123769 + safe-exceptions sqlite-simple text unordered-containers 124242 123770 ]; 124243 123771 executableHaskellDepends = [ 124244 123772 aeson async base base16-bytestring binary bytestring containers 124245 123773 cryptohash-sha1 data-default deepseq directory extra filepath ghc 124246 123774 ghc-boot-th ghc-paths ghcide gitrev hashable hie-bios hiedb 124247 123775 hls-alternate-number-format-plugin hls-call-hierarchy-plugin 124248 - hls-class-plugin hls-eval-plugin hls-explicit-imports-plugin 124249 - hls-floskell-plugin hls-fourmolu-plugin hls-graph 124250 - hls-haddock-comments-plugin hls-hlint-plugin hls-module-name-plugin 124251 - hls-ormolu-plugin hls-plugin-api hls-pragmas-plugin 124252 - hls-qualify-imported-names-plugin hls-refine-imports-plugin 124253 - hls-retrie-plugin hls-selection-range-plugin hls-splice-plugin 124254 - hslogger lens lsp mtl optparse-applicative optparse-simple process 123776 + hls-change-type-signature-plugin hls-class-plugin hls-eval-plugin 123777 + hls-explicit-imports-plugin hls-floskell-plugin hls-fourmolu-plugin 123778 + hls-graph hls-haddock-comments-plugin hls-hlint-plugin 123779 + hls-module-name-plugin hls-ormolu-plugin hls-plugin-api 123780 + hls-pragmas-plugin hls-qualify-imported-names-plugin 123781 + hls-refine-imports-plugin hls-rename-plugin hls-retrie-plugin 123782 + hls-selection-range-plugin hls-splice-plugin lens lsp mtl 123783 + optparse-applicative optparse-simple prettyprinter process 124255 123784 regex-tdfa safe-exceptions sqlite-simple stm temporary text 124256 - transformers unordered-containers 123785 + transformers unix unordered-containers 124257 123786 ]; 124258 123787 testHaskellDepends = [ 124259 123788 aeson base bytestring containers data-default directory extra 124260 123789 filepath ghcide hls-plugin-api hls-test-utils hspec-expectations 124261 - lens lens-aeson lsp-test lsp-types process text 123790 + lens lens-aeson lsp-test lsp-types prettyprinter process text 124262 123791 unordered-containers 124263 123792 ]; 124264 123793 testToolDepends = [ ghcide ]; ··· 127887 127414 }: 127888 127415 mkDerivation { 127889 127416 pname = "hasql-th"; 127890 - version = "0.4.0.11"; 127891 - sha256 = "1dkx0r874qzn2kb8wimr1n75vmx70jx5ddi8088dlw5cxhj2v950"; 127417 + version = "0.4.0.12"; 127418 + sha256 = "0fcfm2d66f7hzzc9s73dd9dxcjsrr33c1q0v04j3zqm159kk69jd"; 127892 127419 libraryHaskellDepends = [ 127893 127420 base bytestring containers contravariant foldl hasql 127894 127421 postgresql-syntax template-haskell template-haskell-compat-v0208 ··· 127898 127425 license = lib.licenses.mit; 127899 127426 }) {}; 127900 127427 127901 - "hasql-th_0_4_0_12" = callPackage 127428 + "hasql-th_0_4_0_14" = callPackage 127902 127429 ({ mkDerivation, base, bytestring, containers, contravariant, foldl 127903 127430 , hasql, postgresql-syntax, template-haskell 127904 127431 , template-haskell-compat-v0208, text, uuid, vector 127905 127432 }: 127906 127433 mkDerivation { 127907 127434 pname = "hasql-th"; 127908 - version = "0.4.0.12"; 127909 - sha256 = "0fcfm2d66f7hzzc9s73dd9dxcjsrr33c1q0v04j3zqm159kk69jd"; 127435 + version = "0.4.0.14"; 127436 + sha256 = "0zskfsvxzilz6j3cd09hl6ixn3j9daksqjcb73pfm1f9hhrasa2a"; 127910 127437 libraryHaskellDepends = [ 127911 127438 base bytestring containers contravariant foldl hasql 127912 127439 postgresql-syntax template-haskell template-haskell-compat-v0208 ··· 127957 127484 }: 127958 127485 mkDerivation { 127959 127486 pname = "hasql-url"; 127960 - version = "0.1.0.0"; 127961 - sha256 = "12zsw4jag27g0bgxm9sp45bs2i7p5h42zs5avj01zlddpyhla0wx"; 127487 + version = "0.2.0.0"; 127488 + sha256 = "1f8vc7s031f33rkbzlmqac3h1g6aynj9z03x4lx19526q2d2r7ns"; 127962 127489 libraryHaskellDepends = [ 127963 127490 base bytestring hasql network-uri split 127964 127491 ]; ··· 130835 130362 }) {}; 130836 130363 130837 130364 "helic" = callPackage 130838 - ({ mkDerivation, aeson, base, chronos, containers, exon, gi-gdk 130839 - , gi-glib, gi-gtk, hostname, http-client, http-client-tls, incipit 130840 - , optparse-applicative, path, path-io, polysemy, polysemy-chronos 130841 - , polysemy-conc, polysemy-http, polysemy-log, polysemy-plugin 130842 - , polysemy-process, polysemy-test, polysemy-time, servant 130843 - , servant-client, servant-client-core, servant-server, table-layout 130844 - , tasty, template-haskell, terminal-size, torsor, transformers 130845 - , typed-process, unix, wai-extra, warp, yaml 130365 + ({ mkDerivation, aeson, base, chronos, containers, exon 130366 + , fast-logger, gi-gdk, gi-glib, gi-gtk, hostname, http-client 130367 + , http-client-tls, incipit, optparse-applicative, path, path-io 130368 + , polysemy, polysemy-chronos, polysemy-conc, polysemy-http 130369 + , polysemy-log, polysemy-plugin, polysemy-process, polysemy-test 130370 + , polysemy-time, servant, servant-client, servant-client-core 130371 + , servant-server, table-layout, tasty, template-haskell 130372 + , terminal-size, torsor, transformers, typed-process, unix 130373 + , wai-extra, warp, yaml 130846 130374 }: 130847 130375 mkDerivation { 130848 130376 pname = "helic"; 130849 - version = "0.5.1.0"; 130850 - sha256 = "1gglcac10abszarmrgggrirf51jj0qcbp7gdqh93kghx1pqv4ldg"; 130377 + version = "0.5.2.0"; 130378 + sha256 = "0yklds711iya00fmp9l1kdyipdm8mrfssabqf8g7f55p1nnmn91g"; 130851 130379 isLibrary = true; 130852 130380 isExecutable = true; 130853 130381 libraryHaskellDepends = [ 130854 - aeson base chronos exon gi-gdk gi-glib gi-gtk hostname http-client 130855 - http-client-tls incipit optparse-applicative path path-io polysemy 130856 - polysemy-chronos polysemy-conc polysemy-http polysemy-log 130857 - polysemy-plugin polysemy-process polysemy-time servant 130382 + aeson base chronos exon fast-logger gi-gdk gi-glib gi-gtk hostname 130383 + http-client http-client-tls incipit optparse-applicative path 130384 + path-io polysemy polysemy-chronos polysemy-conc polysemy-http 130385 + polysemy-log polysemy-plugin polysemy-process polysemy-time servant 130858 130386 servant-client servant-client-core servant-server table-layout 130859 130387 template-haskell terminal-size transformers typed-process unix 130860 130388 wai-extra warp yaml ··· 133446 132972 pname = "hiedb"; 133447 132973 version = "0.4.1.0"; 133448 132974 sha256 = "1389qmlga5rq8has02rn35pzag5wnfpx3w77r60mzl3b4pkpzi7i"; 132975 + revision = "1"; 132976 + editedCabalFile = "1ayy7xjbwfbdln1bqk9lpv2afc8kbzxyz9858gfafdd08kx0xmw1"; 133449 132977 isLibrary = true; 133450 132978 isExecutable = true; 133451 132979 libraryHaskellDepends = [ ··· 135763 135287 maintainers = with lib.maintainers; [ maralorn ]; 135764 135288 }) {}; 135765 135289 135290 + "hlint_3_4" = callPackage 135291 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs 135292 + , containers, cpphs, data-default, directory, extra, file-embed 135293 + , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex 135294 + , hscolour, process, refact, text, transformers, uniplate 135295 + , unordered-containers, utf8-string, vector, yaml 135296 + }: 135297 + mkDerivation { 135298 + pname = "hlint"; 135299 + version = "3.4"; 135300 + sha256 = "15cfvch0yrzkl7qr87966amdsy05a7axvjc6wmw99ys9d5fn3z3n"; 135301 + isLibrary = true; 135302 + isExecutable = true; 135303 + enableSeparateDataOutput = true; 135304 + libraryHaskellDepends = [ 135305 + aeson ansi-terminal base bytestring cmdargs containers cpphs 135306 + data-default directory extra file-embed filepath filepattern 135307 + ghc-lib-parser ghc-lib-parser-ex hscolour process refact text 135308 + transformers uniplate unordered-containers utf8-string vector yaml 135309 + ]; 135310 + executableHaskellDepends = [ base ]; 135311 + description = "Source code suggestions"; 135312 + license = lib.licenses.bsd3; 135313 + hydraPlatforms = lib.platforms.none; 135314 + maintainers = with lib.maintainers; [ maralorn ]; 135315 + }) {}; 135316 + 135766 135317 "hlint-test" = callPackage 135767 135318 ({ mkDerivation, base, hlint }: 135768 135319 mkDerivation { ··· 135928 135425 }: 135929 135426 mkDerivation { 135930 135427 pname = "hls-alternate-number-format-plugin"; 135931 - version = "1.0.1.0"; 135932 - sha256 = "1xr4rizv1k6dx32mnny55s33cngmvy0a52sswpk17fl4zx3bd0pp"; 135428 + version = "1.1.0.0"; 135429 + sha256 = "1s81p2jnln8v8ny13cf26d9925lfcyhs5di5xbh3p9645ngdiy9h"; 135933 135430 libraryHaskellDepends = [ 135934 135431 aeson base containers ghc-boot-th ghcide hie-compat hls-graph 135935 135432 hls-plugin-api lens lsp mtl regex-tdfa syb text ··· 135950 135447 }: 135951 135448 mkDerivation { 135952 135449 pname = "hls-brittany-plugin"; 135953 - version = "1.0.2.0"; 135954 - sha256 = "0vxlhggmbrfmf81qgpxmrpsflmi32hafhy21dxain1as5hrnxw8g"; 135450 + version = "1.0.2.1"; 135451 + sha256 = "0f86iymcinbad9cpghi7965xhv4ky6kq4jqsn7nndq2jklwgrw7i"; 135955 135452 libraryHaskellDepends = [ 135956 135453 base brittany czipwith extra filepath ghc-boot-th ghc-exactprint 135957 135454 ghcide hls-plugin-api lens lsp-types text transformers ··· 135968 135465 }: 135969 135466 mkDerivation { 135970 135467 pname = "hls-call-hierarchy-plugin"; 135971 - version = "1.0.2.0"; 135972 - sha256 = "0772kxdp6ww91a1b0c8lfxjlpvwr8smcf8ayvaxazw76hisxrrj5"; 135468 + version = "1.0.3.0"; 135469 + sha256 = "0yfl75d2ddkzrz3p1pn8spra0qssqazsqklan46zmagrv69yg5iv"; 135973 135470 libraryHaskellDepends = [ 135974 135471 aeson base bytestring containers extra ghc ghcide hiedb 135975 135472 hls-plugin-api lens lsp sqlite-simple text unordered-containers ··· 135982 135479 license = lib.licenses.asl20; 135983 135480 }) {}; 135984 135481 135482 + "hls-change-type-signature-plugin" = callPackage 135483 + ({ mkDerivation, base, filepath, ghcide, hls-plugin-api 135484 + , hls-test-utils, lsp, lsp-types, QuickCheck, regex-tdfa, syb, text 135485 + , transformers, unordered-containers 135486 + }: 135487 + mkDerivation { 135488 + pname = "hls-change-type-signature-plugin"; 135489 + version = "1.0.1.0"; 135490 + sha256 = "0wl4vgml491gkvzmsfj3nlwx18ywvrdwgwdkqjp0rwid0pidd6z8"; 135491 + libraryHaskellDepends = [ 135492 + base ghcide hls-plugin-api lsp-types regex-tdfa syb text 135493 + transformers unordered-containers 135494 + ]; 135495 + testHaskellDepends = [ 135496 + base filepath hls-test-utils lsp QuickCheck regex-tdfa text 135497 + ]; 135498 + description = "Change a declarations type signature with a Code Action"; 135499 + license = lib.licenses.asl20; 135500 + }) {}; 135501 + 135985 135502 "hls-class-plugin" = callPackage 135986 135503 ({ mkDerivation, aeson, base, containers, filepath, ghc 135987 135504 , ghc-exactprint, ghcide, hls-plugin-api, hls-test-utils, lens, lsp ··· 136009 135486 }: 136010 135487 mkDerivation { 136011 135488 pname = "hls-class-plugin"; 136012 - version = "1.0.2.0"; 136013 - sha256 = "0drpxrazhwd228skgky7xdzcf22gi1pi2lby0dj0nzpzhrdl0pw0"; 136014 - revision = "1"; 136015 - editedCabalFile = "18x8k0gwpxv0vs4d8rbl5p0pjf75apb142i0p8vssbpvjwiwx33i"; 135489 + version = "1.0.3.0"; 135490 + sha256 = "0ad7ypw7d8waz3nq9p6m8l91rcibd2fzxxmdrpncwshiyrhazq3l"; 136016 135491 libraryHaskellDepends = [ 136017 135492 aeson base containers ghc ghc-exactprint ghcide hls-plugin-api lens 136018 135493 lsp text transformers ··· 136028 135507 , ghc-paths, ghcide, hashable, hls-graph, hls-plugin-api 136029 135508 , hls-test-utils, lens, lsp, lsp-types, megaparsec, mtl 136030 135509 , parser-combinators, pretty-simple, QuickCheck, safe-exceptions 136031 - , temporary, text, time, transformers, unliftio 136032 - , unordered-containers 135510 + , text, time, transformers, unliftio, unordered-containers 136033 135511 }: 136034 135512 mkDerivation { 136035 135513 pname = "hls-eval-plugin"; 136036 - version = "1.2.1.0"; 136037 - sha256 = "18xjq664b8aj199gd1sswa7gndwikch77v3p1c36yshfa0rviwi8"; 135514 + version = "1.2.2.0"; 135515 + sha256 = "17si94yzxz19hcddn57wf0npxc9m9vzb08b2gph7pkbxprsksb6g"; 136038 135516 libraryHaskellDepends = [ 136039 135517 aeson base containers data-default deepseq Diff directory dlist 136040 135518 extra filepath ghc ghc-boot-th ghc-paths ghcide hashable hls-graph 136041 135519 hls-plugin-api lens lsp lsp-types megaparsec mtl parser-combinators 136042 - pretty-simple QuickCheck safe-exceptions temporary text time 136043 - transformers unliftio unordered-containers 135520 + pretty-simple QuickCheck safe-exceptions text time transformers 135521 + unliftio unordered-containers 136044 135522 ]; 136045 135523 testHaskellDepends = [ 136046 - aeson base directory extra filepath hls-test-utils lens lsp-types 136047 - text 135524 + aeson base containers directory extra filepath hls-plugin-api 135525 + hls-test-utils lens lsp-types text 136048 135526 ]; 136049 135527 description = "Eval plugin for Haskell Language Server"; 136050 135528 license = lib.licenses.asl20; ··· 136075 135555 }: 136076 135556 mkDerivation { 136077 135557 pname = "hls-explicit-imports-plugin"; 136078 - version = "1.0.2.0"; 136079 - sha256 = "04v6sgzsjqk4qj586qzvfvq405z0zpc08xljxb12glmqghvi5xjg"; 135558 + version = "1.1.0.0"; 135559 + sha256 = "1r5cy59xk35d6smnrka42hxfa012h45nvsmlr1a1kbyac8ywzf6m"; 136080 135560 libraryHaskellDepends = [ 136081 135561 aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api 136082 135562 lsp text unordered-containers ··· 136092 135572 }: 136093 135573 mkDerivation { 136094 135574 pname = "hls-floskell-plugin"; 136095 - version = "1.0.1.0"; 136096 - sha256 = "1slzv2c5lzxprh8yhfk8iabmmlhh3sx97m393nrnwrjcbpzq0vai"; 135575 + version = "1.0.1.1"; 135576 + sha256 = "01c8xwfdgx5g5ipb366q0smjisyq1dfjz7scjfg5p3lyn0v555wb"; 136097 135577 libraryHaskellDepends = [ 136098 135578 base floskell ghcide hls-plugin-api lsp-types text transformers 136099 135579 ]; ··· 136103 135583 }) {}; 136104 135584 136105 135585 "hls-fourmolu-plugin" = callPackage 136106 - ({ mkDerivation, base, filepath, fourmolu, ghc, ghc-boot-th, ghcide 136107 - , hls-plugin-api, hls-test-utils, lens, lsp, lsp-test, text 135586 + ({ mkDerivation, aeson, base, containers, filepath, fourmolu, ghc 135587 + , ghc-boot-th, ghcide, hls-plugin-api, hls-test-utils, lens, lsp 135588 + , lsp-test, process-extras, text 136108 135589 }: 136109 135590 mkDerivation { 136110 135591 pname = "hls-fourmolu-plugin"; 136111 - version = "1.0.2.0"; 136112 - sha256 = "0n9yk539wc046i6sx68gsbrc4jfmp1nsm2nir00q4sdcf7flcvff"; 135592 + version = "1.0.3.0"; 135593 + sha256 = "103rndxbmv72ghbh685766498j9rqnmgdwsrswk5nrf7afwd9x8w"; 136113 135594 libraryHaskellDepends = [ 136114 135595 base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens 136115 - lsp text 135596 + lsp process-extras text 136116 135597 ]; 136117 - testHaskellDepends = [ base filepath hls-test-utils lsp-test ]; 135598 + testHaskellDepends = [ 135599 + aeson base containers filepath hls-plugin-api hls-test-utils 135600 + lsp-test 135601 + ]; 135602 + testToolDepends = [ fourmolu ]; 136118 135603 description = "Integration with the Fourmolu code formatter"; 136119 135604 license = lib.licenses.asl20; 136120 135605 }) {}; ··· 136127 135602 "hls-graph" = callPackage 136128 135603 ({ mkDerivation, aeson, async, base, bytestring, containers 136129 135604 , deepseq, directory, exceptions, extra, filepath, focus, hashable 136130 - , js-dgtable, js-flot, js-jquery, list-t, primitive, stm 136131 - , stm-containers, time, transformers, unordered-containers 135605 + , hspec, hspec-discover, js-dgtable, js-flot, js-jquery, list-t 135606 + , primitive, stm, stm-containers, tasty, tasty-hspec, tasty-hunit 135607 + , tasty-rerun, text, time, transformers, unordered-containers 136132 135608 }: 136133 135609 mkDerivation { 136134 135610 pname = "hls-graph"; 136135 - version = "1.6.0.0"; 136136 - sha256 = "0raz4gkfhxzbmg5rf65yp5p0i3mpd0rlraz90gwbvf5l1z9jlqml"; 135611 + version = "1.7.0.0"; 135612 + sha256 = "1mq1pvn5z8fnlsj9iqck05shm8fak9zf05mbcbrxb5jvq0a31ypd"; 136137 135613 enableSeparateDataOutput = true; 136138 135614 libraryHaskellDepends = [ 136139 135615 aeson async base bytestring containers deepseq directory exceptions 136140 135616 extra filepath focus hashable js-dgtable js-flot js-jquery list-t 136141 135617 primitive stm stm-containers time transformers unordered-containers 136142 135618 ]; 135619 + testHaskellDepends = [ 135620 + base containers directory extra filepath hspec stm stm-containers 135621 + tasty tasty-hspec tasty-hunit tasty-rerun text 135622 + ]; 135623 + testToolDepends = [ hspec-discover ]; 136143 135624 description = "Haskell Language Server internal graph API"; 136144 135625 license = lib.licenses.asl20; 136145 135626 }) {}; ··· 136159 135628 pname = "hls-haddock-comments-plugin"; 136160 135629 version = "1.0.1.0"; 136161 135630 sha256 = "1jlz6vg5ff2j2vba4yg8nymxfs7vmg5h3kzjhsj6bs2jn8kh722r"; 135631 + revision = "1"; 135632 + editedCabalFile = "004pi0hl1mf5njvadc45bkgahi97xdpf6pfafq1np5059ccyfd8d"; 136162 135633 libraryHaskellDepends = [ 136163 135634 base containers ghc ghc-exactprint ghcide hls-plugin-api lsp-types 136164 135635 text unordered-containers ··· 136175 135642 , containers, data-default, deepseq, Diff, directory, extra 136176 135643 , filepath, ghc, ghc-exactprint, ghc-lib-parser-ex, ghcide 136177 135644 , hashable, hlint, hls-plugin-api, hls-test-utils, hslogger, lens 136178 - , lsp, lsp-types, regex-tdfa, stm, temporary, text, transformers 136179 - , unordered-containers 135645 + , lsp, lsp-types, refact, regex-tdfa, stm, temporary, text 135646 + , transformers, unordered-containers 136180 135647 }: 136181 135648 mkDerivation { 136182 135649 pname = "hls-hlint-plugin"; 136183 - version = "1.0.3.0"; 136184 - sha256 = "0vzgsh6x8bjgi3l6nc9kfgbczxnd7fws5bmglac5khr0z042babb"; 135650 + version = "1.0.4.0"; 135651 + sha256 = "089pa1fg4ygc39a70g6x1ma1fci6jrkypg7hsmq4gf3h2rwiyvwy"; 136185 135652 libraryHaskellDepends = [ 136186 135653 aeson apply-refact base binary bytestring containers data-default 136187 135654 deepseq Diff directory extra filepath ghc ghc-exactprint 136188 135655 ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api hslogger 136189 - lens lsp regex-tdfa stm temporary text transformers 135656 + lens lsp refact regex-tdfa stm temporary text transformers 136190 135657 unordered-containers 136191 135658 ]; 136192 135659 testHaskellDepends = [ ··· 136204 135671 }: 136205 135672 mkDerivation { 136206 135673 pname = "hls-module-name-plugin"; 136207 - version = "1.0.1.0"; 136208 - sha256 = "108p9j01d2s14akbwgwmpwb2a5r5d14vqzy6lw8n5cymgfdlza4a"; 135674 + version = "1.0.2.0"; 135675 + sha256 = "09548l8vmfq2y83agsr12w0x82drhmwa4bxpwby0mf466f4hj8da"; 136209 135676 libraryHaskellDepends = [ 136210 135677 aeson base directory filepath ghcide hls-plugin-api lsp text 136211 135678 transformers unordered-containers ··· 136222 135689 }: 136223 135690 mkDerivation { 136224 135691 pname = "hls-ormolu-plugin"; 136225 - version = "1.0.2.0"; 136226 - sha256 = "1jbh16z4yzl3lx9q7pcrkfrmip6rifif3rirfn7dvyj1q7cf1fk4"; 135692 + version = "1.0.2.1"; 135693 + sha256 = "1if4gahvdayx1ar4wxi4mk074zxpx6wzkwdd64fnri4k5xb15sa7"; 136227 135694 libraryHaskellDepends = [ 136228 135695 base filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp ormolu 136229 135696 text ··· 136236 135703 "hls-plugin-api" = callPackage 136237 135704 ({ mkDerivation, aeson, base, containers, data-default 136238 135705 , dependent-map, dependent-sum, Diff, dlist, extra, ghc, hashable 136239 - , hls-graph, hslogger, lens, lens-aeson, lsp, lsp-types 136240 - , opentelemetry, optparse-applicative, process, regex-tdfa, tasty 136241 - , tasty-hunit, tasty-rerun, text, transformers, unix 136242 - , unordered-containers 135706 + , hls-graph, lens, lens-aeson, lsp, lsp-types, opentelemetry 135707 + , optparse-applicative, process, regex-tdfa, tasty, tasty-hunit 135708 + , tasty-rerun, text, transformers, unix, unordered-containers 136243 135709 }: 136244 135710 mkDerivation { 136245 135711 pname = "hls-plugin-api"; 136246 - version = "1.3.0.0"; 136247 - sha256 = "0dkpamqgw2icx6zns79cpzsnsr33qg0i3ix66hvcl5fhhp363g9m"; 135712 + version = "1.4.0.0"; 135713 + sha256 = "0yk2y6qw88vhww8z10d2kgn57wsarfnp6z1gmjl1ik2w96a8g3mv"; 136248 135714 libraryHaskellDepends = [ 136249 135715 aeson base containers data-default dependent-map dependent-sum Diff 136250 - dlist extra ghc hashable hls-graph hslogger lens lens-aeson lsp 135716 + dlist extra ghc hashable hls-graph lens lens-aeson lsp 136251 135717 opentelemetry optparse-applicative process regex-tdfa text 136252 135718 transformers unix unordered-containers 136253 135719 ]; ··· 136264 135732 }: 136265 135733 mkDerivation { 136266 135734 pname = "hls-pragmas-plugin"; 136267 - version = "1.0.2.0"; 136268 - sha256 = "0bmifvjhcvwhivnx6s971nidjdb2ichphp70pahx72ai24ffqqx9"; 135735 + version = "1.0.2.1"; 135736 + sha256 = "11l79214wz21v7plqf2wb6ac8bgw74fhql1p5cvkv8gr80hpb4jk"; 136269 135737 libraryHaskellDepends = [ 136270 135738 base containers extra fuzzy ghc ghcide hls-plugin-api lens lsp text 136271 135739 transformers unordered-containers ··· 136286 135754 pname = "hls-qualify-imported-names-plugin"; 136287 135755 version = "1.0.1.0"; 136288 135756 sha256 = "0h456cq3qvksrkzfzpq2qsabsl3vpg4gh2mwyxc39xh4qm7ifban"; 135757 + revision = "1"; 135758 + editedCabalFile = "0pb9fgpbv24726n250rkb33gx3f3xcaxmv1qqh12q4sz181qn4mb"; 136289 135759 libraryHaskellDepends = [ 136290 135760 aeson base containers deepseq dlist ghc ghcide hls-graph 136291 135761 hls-plugin-api lsp text transformers unordered-containers ··· 136304 135770 }: 136305 135771 mkDerivation { 136306 135772 pname = "hls-refine-imports-plugin"; 136307 - version = "1.0.1.0"; 136308 - sha256 = "10q5yjpny5aah245ivazqn2h05ak428qc9arpzlg5ks2n4n293lf"; 135773 + version = "1.0.2.0"; 135774 + sha256 = "01hgz66dm6rpk7fp6b2byzvnaan3snvimkicl67c6qxla9dpxcjn"; 136309 135775 libraryHaskellDepends = [ 136310 135776 aeson base containers deepseq ghc ghcide 136311 135777 hls-explicit-imports-plugin hls-graph hls-plugin-api lsp text ··· 136317 135783 }) {}; 136318 135784 136319 135785 "hls-rename-plugin" = callPackage 136320 - ({ mkDerivation, base, containers, extra, filepath, ghc 136321 - , ghc-exactprint, ghcide, hiedb, hls-plugin-api, hls-test-utils 136322 - , lsp, lsp-types, syb, text, transformers 135786 + ({ mkDerivation, aeson, base, containers, extra, filepath, ghc 135787 + , ghc-exactprint, ghcide, hashable, hiedb, hls-plugin-api 135788 + , hls-test-utils, lsp, lsp-types, mod, syb, text, transformers 135789 + , unordered-containers 136323 135790 }: 136324 135791 mkDerivation { 136325 135792 pname = "hls-rename-plugin"; 136326 - version = "1.0.0.1"; 136327 - sha256 = "04l2w3x60ayxa9a6cdmscrfvyx9fsnbl4q05m8f0s1s18zlgjf86"; 135793 + version = "1.0.0.2"; 135794 + sha256 = "1cqcyyh4ywxwl2wppdacp2y6hpbl5534vq8xw2ih489qczcg6s78"; 136328 135795 libraryHaskellDepends = [ 136329 - base containers extra ghc ghc-exactprint ghcide hiedb 136330 - hls-plugin-api lsp lsp-types syb text transformers 135796 + base containers extra ghc ghc-exactprint ghcide hashable hiedb 135797 + hls-plugin-api lsp lsp-types mod syb text transformers 135798 + unordered-containers 136331 135799 ]; 136332 - testHaskellDepends = [ base filepath hls-test-utils ]; 135800 + testHaskellDepends = [ 135801 + aeson base containers filepath hls-plugin-api hls-test-utils 135802 + ]; 136333 135803 description = "Rename plugin for Haskell Language Server"; 136334 135804 license = lib.licenses.asl20; 136335 135805 }) {}; ··· 136346 135808 }: 136347 135809 mkDerivation { 136348 135810 pname = "hls-retrie-plugin"; 136349 - version = "1.0.2.0"; 136350 - sha256 = "0w41di7rqy8xrcaavzlfhai73yw0whmnyqxhyfjwx93y1sy1l6zg"; 135811 + version = "1.0.2.1"; 135812 + sha256 = "1vl7kdw8sm9r5q35lnihq0r98wd2s3mm76c7wp0cwd55qdkaf7qv"; 136351 135813 libraryHaskellDepends = [ 136352 135814 aeson base bytestring containers deepseq directory extra ghc ghcide 136353 135815 hashable hls-plugin-api lsp lsp-types retrie safe-exceptions stm ··· 136366 135828 pname = "hls-selection-range-plugin"; 136367 135829 version = "1.0.0.0"; 136368 135830 sha256 = "1pfgxz7nyqr8gaxxv7nc0d4rpfc4rbgdkafy1fpgcsbkqx9llkn0"; 135831 + revision = "1"; 135832 + editedCabalFile = "1njq2p1z9z5gy0fxgbp81q4syqw3hx1b5151g93qhhla9d0cr7nv"; 136369 135833 libraryHaskellDepends = [ 136370 135834 aeson base containers extra ghcide hls-plugin-api lsp mtl 136371 135835 semigroupoids text transformers ··· 136390 135850 pname = "hls-splice-plugin"; 136391 135851 version = "1.0.1.0"; 136392 135852 sha256 = "07v4rgss140vfc4xqibccimm48ys4awz7yficr0wf440p6i83qdc"; 135853 + revision = "1"; 135854 + editedCabalFile = "15hr2vc1r4zxf4z26byax95cdqhl1733fna16lifrdj15xkwxs3r"; 136393 135855 libraryHaskellDepends = [ 136394 135856 aeson base containers dlist extra foldl ghc ghc-exactprint ghcide 136395 135857 hls-plugin-api lens lsp retrie syb text transformers unliftio-core ··· 136409 135867 }: 136410 135868 mkDerivation { 136411 135869 pname = "hls-stylish-haskell-plugin"; 136412 - version = "1.0.1.0"; 136413 - sha256 = "1f9g113xrb167cpdjifd2zp8ps1w2apvkghdiagc9rzw1fl0l7l4"; 135870 + version = "1.0.1.1"; 135871 + sha256 = "1k9bv31226zgy5aqxzzj7npph2ff0r5bx692q5n26lpil2ivq6sn"; 136414 135872 libraryHaskellDepends = [ 136415 135873 base directory filepath ghc ghc-boot-th ghcide hls-plugin-api 136416 135874 lsp-types stylish-haskell text ··· 136432 135890 }: 136433 135891 mkDerivation { 136434 135892 pname = "hls-tactics-plugin"; 136435 - version = "1.6.1.0"; 136436 - sha256 = "15ynxlafrs0hss5qcn4aj8iip8iy631hfgqql0irqskvf3x5yxlx"; 135893 + version = "1.6.2.0"; 135894 + sha256 = "07qh9sz3rbqflfryxaj7y8vjmv388jdsmaxvz5z0xfq895yk968p"; 136437 135895 libraryHaskellDepends = [ 136438 135896 aeson base containers deepseq directory extra filepath fingertree 136439 135897 generic-lens ghc ghc-boot-th ghc-exactprint ghc-source-gen ghcide ··· 136454 135912 "hls-test-utils" = callPackage 136455 135913 ({ mkDerivation, aeson, async, base, blaze-markup, bytestring 136456 135914 , containers, data-default, directory, extra, filepath, ghcide 136457 - , hls-graph, hls-plugin-api, hspec, hspec-core, lens, lsp, lsp-test 136458 - , lsp-types, tasty, tasty-expected-failure, tasty-golden 136459 - , tasty-hunit, tasty-rerun, temporary, text, unordered-containers 135915 + , hls-graph, hls-plugin-api, lens, lsp, lsp-test, lsp-types, tasty 135916 + , tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun 135917 + , temporary, text, unordered-containers 136460 135918 }: 136461 135919 mkDerivation { 136462 135920 pname = "hls-test-utils"; 136463 - version = "1.2.0.0"; 136464 - sha256 = "1y3g101n7z78f5shfqfklg5zgl8gpkic0dwvpr5072dq1vvpfdvf"; 135921 + version = "1.3.0.0"; 135922 + sha256 = "1qm3lna4jy658bmbr6gpjq2gmcz03rdz535gilxycbjkxl2z3hkq"; 136465 135923 libraryHaskellDepends = [ 136466 135924 aeson async base blaze-markup bytestring containers data-default 136467 - directory extra filepath ghcide hls-graph hls-plugin-api hspec 136468 - hspec-core lens lsp lsp-test lsp-types tasty tasty-expected-failure 136469 - tasty-golden tasty-hunit tasty-rerun temporary text 136470 - unordered-containers 135925 + directory extra filepath ghcide hls-graph hls-plugin-api lens lsp 135926 + lsp-test lsp-types tasty tasty-expected-failure tasty-golden 135927 + tasty-hunit tasty-rerun temporary text unordered-containers 136471 135928 ]; 136472 135929 description = "Utilities used in the tests of Haskell Language Server"; 136473 135930 license = lib.licenses.asl20; ··· 139284 138743 license = lib.licenses.mit; 139285 138744 }) {}; 139286 138745 138746 + "hpack_0_35_0" = callPackage 138747 + ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal 138748 + , containers, cryptonite, deepseq, directory, filepath, Glob, hspec 138749 + , hspec-discover, http-client, http-client-tls, http-types, HUnit 138750 + , infer-license, interpolate, mockery, pretty, QuickCheck 138751 + , scientific, template-haskell, temporary, text, transformers 138752 + , unordered-containers, vector, yaml 138753 + }: 138754 + mkDerivation { 138755 + pname = "hpack"; 138756 + version = "0.35.0"; 138757 + sha256 = "1cii4bdn4rm2l3yw9vsv4ygn61zmalaa282iqg9rihys90nvrgf6"; 138758 + isLibrary = true; 138759 + isExecutable = true; 138760 + libraryHaskellDepends = [ 138761 + aeson base bifunctors bytestring Cabal containers cryptonite 138762 + deepseq directory filepath Glob http-client http-client-tls 138763 + http-types infer-license pretty scientific text transformers 138764 + unordered-containers vector yaml 138765 + ]; 138766 + executableHaskellDepends = [ 138767 + aeson base bifunctors bytestring Cabal containers cryptonite 138768 + deepseq directory filepath Glob http-client http-client-tls 138769 + http-types infer-license pretty scientific text transformers 138770 + unordered-containers vector yaml 138771 + ]; 138772 + testHaskellDepends = [ 138773 + aeson base bifunctors bytestring Cabal containers cryptonite 138774 + deepseq directory filepath Glob hspec http-client http-client-tls 138775 + http-types HUnit infer-license interpolate mockery pretty 138776 + QuickCheck scientific template-haskell temporary text transformers 138777 + unordered-containers vector yaml 138778 + ]; 138779 + testToolDepends = [ hspec-discover ]; 138780 + description = "A modern format for Haskell packages"; 138781 + license = lib.licenses.mit; 138782 + hydraPlatforms = lib.platforms.none; 138783 + }) {}; 138784 + 139287 138785 "hpack-convert" = callPackage 139288 138786 ({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring 139289 138787 , Cabal, containers, deepseq, directory, filepath, Glob, hspec ··· 139386 138806 license = lib.licenses.bsd3; 139387 138807 }) {}; 139388 138808 139389 - "hpack-dhall_0_5_5" = callPackage 138809 + "hpack-dhall_0_5_7" = callPackage 139390 138810 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal 139391 138811 , dhall, dhall-json, Diff, directory, filepath, hpack, megaparsec 139392 138812 , microlens, optparse-applicative, prettyprinter, tasty ··· 139394 138814 }: 139395 138815 mkDerivation { 139396 138816 pname = "hpack-dhall"; 139397 - version = "0.5.5"; 139398 - sha256 = "1256vqqncgir0ir7i0vnvr7v5jkyx5ggng8gyi4qsqs8lmqn11r3"; 138817 + version = "0.5.7"; 138818 + sha256 = "1hwq3painl4ix7pldkzi5a8zakh9f67kcyabfbdky8b49dc5703r"; 139399 138819 isLibrary = true; 139400 138820 isExecutable = true; 139401 138821 libraryHaskellDepends = [ ··· 140997 140417 }: 140998 140418 mkDerivation { 140999 140419 pname = "hs-opentelemetry-api"; 141000 - version = "0.0.3.3"; 141001 - sha256 = "0hrlz77p5w57ax4jml5c415qb1bfh8zi357xvnb0bin7g5a00fn8"; 140420 + version = "0.0.3.4"; 140421 + sha256 = "0qg5kaybxax632nbj6qjrn02j1c954kpw5xv3yqsysdqqcqxw6bg"; 141002 140422 libraryHaskellDepends = [ 141003 140423 async attoparsec base binary bytestring charset clock containers 141004 140424 ghc-prim hashable http-types memory mtl template-haskell text ··· 141140 140560 }: 141141 140561 mkDerivation { 141142 140562 pname = "hs-opentelemetry-instrumentation-wai"; 141143 - version = "0.0.1.2"; 141144 - sha256 = "1yxy49cacldbic67ic35ym48zd0c1cwx1cjh6l0fxn26yvjp1i68"; 140563 + version = "0.0.1.3"; 140564 + sha256 = "1dczyw9w9pahrrj0q2qcnkx7kc46k7gqrrpbspdc0rc09idk33jx"; 141145 140565 libraryHaskellDepends = [ 141146 140566 base bytestring hs-opentelemetry-api http-types iproute network 141147 140567 text vault wai ··· 146087 145507 ({ mkDerivation, base, hsp, jmacro, mtl, text, wl-pprint-text }: 146088 145508 mkDerivation { 146089 145509 pname = "hsx-jmacro"; 146090 - version = "7.3.8.1"; 146091 - sha256 = "0ndgy5vf5rwgwqya75ny5vbr7hfqwjrdgfgpwf5410bk0603v47i"; 145510 + version = "7.3.8.2"; 145511 + sha256 = "0zb6mjky88qn918vaqbwjszjb6zczb4kqpnw3p222z44if3xpzsq"; 146092 145512 libraryHaskellDepends = [ 146093 145513 base hsp jmacro mtl text wl-pprint-text 146094 145514 ]; ··· 151264 150684 }) {}; 151265 150685 151266 150686 "hyperloglog" = callPackage 151267 - ({ mkDerivation, approximate, base, binary, bits, bytes, cereal 151268 - , cereal-vector, comonad, deepseq, distributive, hashable, lens 151269 - , reflection, semigroupoids, semigroups, siphash, tagged, vector 151270 - }: 151271 - mkDerivation { 151272 - pname = "hyperloglog"; 151273 - version = "0.4.5"; 151274 - sha256 = "0v2zw0p104gbydj6hp2cxa2s4b85pq4srcspr582aqj38bs7spfz"; 151275 - libraryHaskellDepends = [ 151276 - approximate base binary bits bytes cereal cereal-vector comonad 151277 - deepseq distributive hashable lens reflection semigroupoids 151278 - semigroups siphash tagged vector 151279 - ]; 151280 - description = "An approximate streaming (constant space) unique object counter"; 151281 - license = lib.licenses.bsd3; 151282 - }) {}; 151283 - 151284 - "hyperloglog_0_4_6" = callPackage 151285 150687 ({ mkDerivation, approximate, base, binary, bits, bytes, bytestring 151286 150688 , cereal, cereal-vector, comonad, cpu, deepseq, distributive 151287 150689 , hashable, lens, reflection, semigroupoids, semigroups, tagged ··· 151280 150718 ]; 151281 150719 description = "An approximate streaming (constant space) unique object counter"; 151282 150720 license = lib.licenses.bsd3; 151283 - hydraPlatforms = lib.platforms.none; 151284 150721 }) {}; 151285 150722 151286 150723 "hyperloglogplus" = callPackage ··· 153374 152813 }: 153375 152814 mkDerivation { 153376 152815 pname = "implicit-hie"; 153377 - version = "0.1.2.6"; 153378 - sha256 = "1j2q1mqxfgcb8r6388xanmp5i1sdh6w52s08nd94g5lpg93mjz2q"; 152816 + version = "0.1.2.7"; 152817 + sha256 = "0yb457n26455kbq6kv8g48q66pmmaxcpikmpg9gm00sd6adgq6gl"; 153379 152818 isLibrary = true; 153380 152819 isExecutable = true; 153381 152820 libraryHaskellDepends = [ ··· 156306 155745 pname = "io-streams-haproxy"; 156307 155746 version = "1.0.1.0"; 156308 155747 sha256 = "1dcn5hd4fiwyq7m01r6fi93vfvygca5s6mz87c78m0zyj29clkmp"; 156309 - revision = "3"; 156310 - editedCabalFile = "02k9halblgnynlm781ahc81yxla8z7cck1gikm8555v78rf5hv7x"; 155748 + revision = "5"; 155749 + editedCabalFile = "073aciql0czvpaiwh9mpljcd1j2a8p5ka5awsw1j3dh7bdyg2mp7"; 156311 155750 libraryHaskellDepends = [ 156312 155751 attoparsec base bytestring io-streams network transformers 156313 155752 ]; ··· 156459 155898 pname = "ip"; 156460 155899 version = "1.7.4"; 156461 155900 sha256 = "1hvqgah86z2saizhjpq2352x2ncxjsshvzj66bmij3yk6y107yfs"; 155901 + revision = "1"; 155902 + editedCabalFile = "09yrwzklzbfvh5x4j7k4vx7a49kndfz9d8kjkfvwi3frqzhr209m"; 156462 155903 libraryHaskellDepends = [ 156463 155904 aeson attoparsec base bytebuild byteslice bytesmith bytestring 156464 155905 deepseq hashable natural-arithmetic primitive text text-short ··· 157817 157254 ]; 157818 157255 description = "Intervals"; 157819 157256 license = lib.licenses.bsd3; 157257 + hydraPlatforms = lib.platforms.none; 157820 157258 }) {}; 157821 157259 157822 157260 "ivar-simple" = callPackage ··· 158111 157547 benchmarkHaskellDepends = [ base criterion ]; 158112 157548 description = "Indexed monads"; 158113 157549 license = lib.licenses.bsd3; 157550 + hydraPlatforms = lib.platforms.none; 158114 157551 }) {}; 158115 157552 158116 157553 "ix-shapable" = callPackage ··· 158161 157596 }: 158162 157597 mkDerivation { 158163 157598 pname = "ixset"; 158164 - version = "1.1.1.1"; 158165 - sha256 = "1d3h53sq8i8azzr71yi4h5zma2bb2f623gpfw25x2kd4slhpkrgf"; 157599 + version = "1.1.1.2"; 157600 + sha256 = "15dgh9lgjqgn0483p98q21ym1mrwi5h7ygdjxf48aap1d20x6swp"; 158166 157601 libraryHaskellDepends = [ 158167 157602 base containers safecopy syb syb-with-class template-haskell 158168 157603 ]; ··· 159080 158515 }: 159081 158516 mkDerivation { 159082 158517 pname = "jmacro"; 159083 - version = "0.6.17"; 159084 - sha256 = "14vmnaqr3lhcj7y5rj4jgm2w89kkznfksy53pinmc1xq1bd8b7px"; 158518 + version = "0.6.17.1"; 158519 + sha256 = "17z39w888nrq0jfzi74z1wnswzmcyi2x6h2p2nnmhyjsgvpjkcxa"; 159085 158520 isLibrary = true; 159086 158521 isExecutable = true; 159087 158522 libraryHaskellDepends = [ ··· 163127 162562 }: 163128 162563 mkDerivation { 163129 162564 pname = "keter"; 163130 - version = "1.8.4"; 163131 - sha256 = "10p8hc1jfzkg3s8shazkip95i6r5a8gyiz6m1khl7myvb05i21gc"; 162565 + version = "1.9"; 162566 + sha256 = "00mgh6447p0gsvm7agy1i9a874afirirx2a7qdqnbw1m14j3mzfl"; 163132 162567 isLibrary = true; 163133 162568 isExecutable = true; 163134 162569 libraryHaskellDepends = [ ··· 163223 162658 ]; 163224 162659 description = "Store of values of arbitrary types"; 163225 162660 license = lib.licenses.bsd3; 162661 + hydraPlatforms = lib.platforms.none; 163226 162662 }) {}; 163227 162663 163228 162664 "keycloak-hs" = callPackage ··· 163939 163373 }: 163940 163374 mkDerivation { 163941 163375 pname = "koji-tool"; 163942 - version = "0.8.2"; 163943 - sha256 = "0hhpw8v09alicymbndl6lpflasmzchrf8zg1l4gqd8j9sj2rrzqg"; 163376 + version = "0.8.3"; 163377 + sha256 = "17xd1755yr2acf6brwbxn3yzbndv982s7jgxbj9dmd7my6v1d9i2"; 163944 163378 isLibrary = false; 163945 163379 isExecutable = true; 163946 163380 executableHaskellDepends = [ ··· 175706 175140 }: 175707 175141 mkDerivation { 175708 175142 pname = "lsfrom"; 175709 - version = "0.1"; 175710 - sha256 = "04cv4x88r10b9zkfiy1kclq3dm79akg1p16djfad8h5x988c7bq1"; 175143 + version = "0.1.1.1"; 175144 + sha256 = "1vm80k8gsh4k7937i02wv4dk2s173c9wvgiilc1am3ddp7x7ms1h"; 175711 175145 isLibrary = false; 175712 175146 isExecutable = true; 175713 175147 executableHaskellDepends = [ 175714 175148 base filepath simple-cmd simple-cmd-args 175715 175149 ]; 175716 175150 testHaskellDepends = [ base directory filepath simple-cmd ]; 175717 - description = "List dir files starting from a specific name"; 175151 + description = "List directory files starting from a specific name"; 175718 175152 license = lib.licenses.bsd3; 175719 175153 hydraPlatforms = lib.platforms.none; 175720 175154 broken = true; ··· 178465 177899 pname = "map-syntax"; 178466 177900 version = "0.3"; 178467 177901 sha256 = "0b3ddi998saw5gi5r4bjbpid03rxlifn08zv15wf0b90ambhcc4k"; 178468 - revision = "3"; 178469 - editedCabalFile = "19p79gjwlpgx210zlc9625vwp6mjmnb9mvxaz1h5zmgir8dwb4lv"; 177902 + revision = "4"; 177903 + editedCabalFile = "09sr3lzgkqs59vnwsimqgv098h3hj4srr2avza3z05gfkvxqj8yw"; 178470 177904 libraryHaskellDepends = [ base containers mtl ]; 178471 177905 testHaskellDepends = [ 178472 177906 base containers deepseq hspec HUnit mtl QuickCheck transformers ··· 178540 177974 ({ mkDerivation, base, tidal }: 178541 177975 mkDerivation { 178542 177976 pname = "maquinitas-tidal"; 178543 - version = "0.2.4"; 178544 - sha256 = "0apr5qkir3b6mnczi50lf3p349p1q3bl1sn4yg9dls2n3m147mf7"; 177977 + version = "0.2.5"; 177978 + sha256 = "1jqa471r7r3my32lrjcrfc35259kj7afp1jgj8jr3r62dd8ckq63"; 178545 177979 libraryHaskellDepends = [ base tidal ]; 178546 177980 description = "library for MIDI control of hardware"; 178547 177981 license = lib.licenses.mit; ··· 187137 186571 ]; 187138 186572 description = "A GUI library for writing native Haskell applications"; 187139 186573 license = lib.licenses.bsd3; 186574 + }) {inherit (pkgs) glew;}; 186575 + 186576 + "monomer_1_4_0_0" = callPackage 186577 + ({ mkDerivation, aeson, async, attoparsec, base, bytestring 186578 + , bytestring-to-vector, c2hs, containers, data-default, exceptions 186579 + , extra, formatting, glew, hspec, http-client, JuicyPixels, lens 186580 + , mtl, nanovg, OpenGLRaw, process, random, sdl2, stm, text 186581 + , text-show, time, transformers, vector, websockets, wreq, wuss 186582 + }: 186583 + mkDerivation { 186584 + pname = "monomer"; 186585 + version = "1.4.0.0"; 186586 + sha256 = "104j89l1c39yl9sqfv1nsq7c3p00v0h28kvrmym46b5w1hd86xxr"; 186587 + isLibrary = true; 186588 + isExecutable = true; 186589 + libraryHaskellDepends = [ 186590 + async attoparsec base bytestring bytestring-to-vector containers 186591 + data-default exceptions extra formatting http-client JuicyPixels 186592 + lens mtl nanovg OpenGLRaw process sdl2 stm text text-show time 186593 + transformers vector wreq 186594 + ]; 186595 + librarySystemDepends = [ glew ]; 186596 + libraryToolDepends = [ c2hs ]; 186597 + executableHaskellDepends = [ 186598 + aeson async attoparsec base bytestring bytestring-to-vector 186599 + containers data-default exceptions extra formatting http-client 186600 + JuicyPixels lens mtl nanovg OpenGLRaw process random sdl2 stm text 186601 + text-show time transformers vector websockets wreq wuss 186602 + ]; 186603 + testHaskellDepends = [ 186604 + async attoparsec base bytestring bytestring-to-vector containers 186605 + data-default exceptions extra formatting hspec http-client 186606 + JuicyPixels lens mtl nanovg OpenGLRaw process sdl2 stm text 186607 + text-show time transformers vector wreq 186608 + ]; 186609 + description = "A GUI library for writing native Haskell applications"; 186610 + license = lib.licenses.bsd3; 186611 + hydraPlatforms = lib.platforms.none; 187140 186612 }) {inherit (pkgs) glew;}; 187141 186613 187142 186614 "monomorphic" = callPackage ··· 202322 201718 }: 202323 201719 mkDerivation { 202324 201720 pname = "org-mode"; 202325 - version = "2.0.0"; 202326 - sha256 = "17yn9si0mxyydjgv40q6rc5nw579kswlx69ycyinhdx0q34ds7rl"; 201721 + version = "2.0.1"; 201722 + sha256 = "0g22gjy7l6c28j60vbhazgcl0da58mml307qsp4zac4j4nshv7y2"; 202327 201723 libraryHaskellDepends = [ 202328 201724 base containers filepath hashable megaparsec parser-combinators 202329 201725 text time ··· 202342 201738 }: 202343 201739 mkDerivation { 202344 201740 pname = "org-mode-lucid"; 202345 - version = "1.6.1"; 202346 - sha256 = "0fkwwwrmfq22g1yak9srmlbq5yixf4kdwfapq0dyr8f3pqaglf1v"; 201741 + version = "1.6.2"; 201742 + sha256 = "0qz8s63m2l0aff23fgdn97xxswbn3ah3m4rx9snfi5cscsrzsb8h"; 202347 201743 libraryHaskellDepends = [ 202348 201744 base containers hashable lucid org-mode text 202349 201745 ]; ··· 207520 206916 }: 207521 206917 mkDerivation { 207522 206918 pname = "pcf-font"; 207523 - version = "0.2.2.0"; 207524 - sha256 = "1vwqy2zkj0yb0b7hx3hrcfdcg46j67sv9l8ljik8wrm7811d0rwa"; 206919 + version = "0.2.2.1"; 206920 + sha256 = "1gzlbdyhcrf7ap6zjd0fvkfwyakvb805198hpb9a86hrs5bih9mj"; 207525 206921 libraryHaskellDepends = [ 207526 206922 base binary bytestring containers vector zlib 207527 206923 ]; ··· 207660 207056 }: 207661 207057 mkDerivation { 207662 207058 pname = "pcre2"; 207663 - version = "2.1.0.1"; 207664 - sha256 = "06fj8p49whxixphncmzm0c85wzqrsmg59zbb423qnqqmcwjwy2qf"; 207059 + version = "2.1.1"; 207060 + sha256 = "07ls9vxj5l8wvrj75wvyrq6qsz7fz0pamx92ik50cpl71p76lc92"; 207665 207061 libraryHaskellDepends = [ 207666 207062 base containers microlens mtl template-haskell text 207667 207063 ]; ··· 209703 209099 }: 209704 209100 mkDerivation { 209705 209101 pname = "persistent-typed-db"; 209706 - version = "0.1.0.5"; 209707 - sha256 = "0xqvaypl987br15pymky9qa1z62sfa32kmcgpvnl8zpgdjsa17nc"; 209102 + version = "0.1.0.6"; 209103 + sha256 = "1hvja9yh40nqifvy0fsamdfj3f9ps85g187c7m3hg2yqz4w8pm05"; 209708 209104 libraryHaskellDepends = [ 209709 209105 aeson base bytestring conduit http-api-data monad-logger 209710 209106 path-pieces persistent resource-pool resourcet template-haskell ··· 210430 209826 ({ mkDerivation, base, subG }: 210431 209827 mkDerivation { 210432 209828 pname = "phonetic-languages-constraints-array"; 210433 - version = "0.1.1.0"; 210434 - sha256 = "1c5n04zkfhws6ciilbkya4fyr3qc2yszmqrbb7pk3jcjnv2xp32b"; 209829 + version = "0.1.2.0"; 209830 + sha256 = "1s28pipyijz13sn6wni9v850w8c6n6rkiqmavhddfnichwp3gq55"; 210435 209831 libraryHaskellDepends = [ base subG ]; 210436 209832 description = "Constraints to filter the needed permutations"; 210437 209833 license = lib.licenses.mit; ··· 210476 209872 ({ mkDerivation, base, filters-basic, mmsyn2-array }: 210477 209873 mkDerivation { 210478 209874 pname = "phonetic-languages-filters-array"; 210479 - version = "0.3.0.0"; 210480 - sha256 = "0g1nyab2cagppwj75vr2fj0yd9g3hs1qdkb2grj14j13bvaqbi7p"; 209875 + version = "0.4.0.0"; 209876 + sha256 = "0rkgwf9v98vdflhkcfn7s0in8dw69rh2dcv8n9lvpjd0ccmlvil8"; 210481 209877 libraryHaskellDepends = [ base filters-basic mmsyn2-array ]; 210482 209878 description = "Allows to change the structure of the function output"; 210483 209879 license = lib.licenses.mit; ··· 210645 210041 }: 210646 210042 mkDerivation { 210647 210043 pname = "phonetic-languages-simplified-examples-array"; 210648 - version = "0.17.1.0"; 210649 - sha256 = "00lb3h4b0yd3ra0i6g64r8vfn2cyazrqai51arfprihyj31zm9kq"; 210044 + version = "0.18.0.2"; 210045 + sha256 = "0m79iv739cakgpfbixg613fhwjnvy4nidqvfrvqgq53wn4x9pdm3"; 210650 210046 isLibrary = true; 210651 210047 isExecutable = true; 210652 210048 libraryHaskellDepends = [ ··· 210679 210075 }) {}; 210680 210076 210681 210077 "phonetic-languages-simplified-examples-common" = callPackage 210682 - ({ mkDerivation, base, heaps, phonetic-languages-constraints-array 210683 - , phonetic-languages-ukrainian-array 210684 - }: 210078 + ({ mkDerivation, base, heaps, phonetic-languages-ukrainian-array }: 210685 210079 mkDerivation { 210686 210080 pname = "phonetic-languages-simplified-examples-common"; 210687 - version = "0.4.4.0"; 210688 - sha256 = "1y5nrr23blxm08s62q58aq0yiifxgds9lf2wf45zz11w1z16ff1n"; 210081 + version = "0.4.6.0"; 210082 + sha256 = "13i8pq52bfmxvidvykn1hcy9yv2i8yni76mcnbmfwdbd1sy615pn"; 210689 210083 libraryHaskellDepends = [ 210690 - base heaps phonetic-languages-constraints-array 210691 - phonetic-languages-ukrainian-array 210084 + base heaps phonetic-languages-ukrainian-array 210692 210085 ]; 210693 210086 description = "Some commonly used by phonetic-languages-simplified* series functions"; 210694 210087 license = lib.licenses.mit; 210695 - hydraPlatforms = lib.platforms.none; 210696 210088 }) {}; 210697 210089 210698 210090 "phonetic-languages-simplified-generalized-examples-array" = callPackage 210699 - ({ mkDerivation, base, cli-arguments, heaps, mmsyn2-array, mmsyn3 210700 - , parallel, phonetic-languages-constraints-array 210091 + ({ mkDerivation, base, cli-arguments, foldable-ix, heaps 210092 + , mmsyn2-array, mmsyn3, parallel 210093 + , phonetic-languages-constraints-array 210701 210094 , phonetic-languages-filters-array 210702 210095 , phonetic-languages-permutations-array 210703 210096 , phonetic-languages-phonetics-basics, phonetic-languages-plus ··· 210705 210104 }: 210706 210105 mkDerivation { 210707 210106 pname = "phonetic-languages-simplified-generalized-examples-array"; 210708 - version = "0.15.0.0"; 210709 - sha256 = "1rayhhyvqskxw374jrl5h92lhx0n3k3wda7vw4wkgw3kbargwm7q"; 210107 + version = "0.16.0.0"; 210108 + sha256 = "16ia1kd217hy0wpdjd60l1qdz2ivcm1n0sncp106x4dksy4xc1pv"; 210710 210109 libraryHaskellDepends = [ 210711 - base cli-arguments heaps mmsyn2-array mmsyn3 parallel 210110 + base cli-arguments foldable-ix heaps mmsyn2-array mmsyn3 parallel 210712 210111 phonetic-languages-constraints-array 210713 210112 phonetic-languages-filters-array 210714 210113 phonetic-languages-permutations-array ··· 214766 214165 }) {}; 214767 214166 214768 214167 "polysemy-RandomFu" = callPackage 214769 - ({ mkDerivation, base, hspec, hspec-discover, polysemy 214770 - , polysemy-plugin, polysemy-zoo, random-fu, random-source, text 214771 - , vector 214168 + ({ mkDerivation, base, hspec, hspec-discover, mtl, polysemy 214169 + , polysemy-plugin, polysemy-zoo, random, random-fu, random-source 214170 + , rvar, text, vector 214772 214171 }: 214773 214172 mkDerivation { 214774 214173 pname = "polysemy-RandomFu"; 214775 - version = "0.4.4.1"; 214776 - sha256 = "1zw8n16dm2l8rwrf014kb9jhp3q4a719bp8p08s4fnlksqkf88vl"; 214174 + version = "0.5.0.0"; 214175 + sha256 = "0zjywc9m7y56kzxvzayq4psjz6zip1x40cpjkvw39i5p2jkycc4c"; 214777 214176 libraryHaskellDepends = [ 214778 - base polysemy polysemy-plugin polysemy-zoo random-fu random-source 214177 + base mtl polysemy polysemy-plugin polysemy-zoo random random-fu 214178 + random-source rvar 214779 214179 ]; 214780 214180 testHaskellDepends = [ 214781 - base hspec polysemy polysemy-plugin polysemy-zoo random-fu 214782 - random-source text vector 214181 + base hspec mtl polysemy polysemy-plugin polysemy-zoo random 214182 + random-fu random-source text vector 214783 214183 ]; 214784 214184 testToolDepends = [ hspec-discover ]; 214785 214185 description = "Experimental, RandomFu effect and interpreters for polysemy"; ··· 214836 214234 }: 214837 214235 mkDerivation { 214838 214236 pname = "polysemy-conc"; 214839 - version = "0.7.0.0"; 214840 - sha256 = "0jr5wh0sxbymz4p9x2p86cm9djr8bybss747xx9c778va0vgcncg"; 214237 + version = "0.8.0.1"; 214238 + sha256 = "0l1hgv9xlax5ycp66j5asfhfi9jyfcwvd9z132pbx8dyj4ikzp8y"; 214841 214239 libraryHaskellDepends = [ 214842 214240 async base containers incipit-core polysemy polysemy-resume 214843 214241 polysemy-time stm stm-chans torsor unagi-chan unix ··· 215182 214580 ({ mkDerivation, base, incipit-core, path, path-io, polysemy 215183 214581 , polysemy-conc, polysemy-plugin, polysemy-resume, polysemy-test 215184 214582 , polysemy-time, posix-pty, process, stm-chans, tasty 215185 - , typed-process, unix 214583 + , tasty-expected-failure, typed-process, unix 215186 214584 }: 215187 214585 mkDerivation { 215188 214586 pname = "polysemy-process"; 215189 - version = "0.7.0.0"; 215190 - sha256 = "0g1rmii4jnffl2f4ziibw62nkgzl92wf4pvq0fvzwkm01rpm9frz"; 214587 + version = "0.8.0.1"; 214588 + sha256 = "0ayn6l2c6009wrxc4rya6dc8185wp6krdck8mbbasrlvah3in3cs"; 215191 214589 libraryHaskellDepends = [ 215192 214590 base incipit-core path path-io polysemy polysemy-conc 215193 - polysemy-resume posix-pty process stm-chans typed-process unix 214591 + polysemy-resume polysemy-time posix-pty process stm-chans 214592 + typed-process unix 215194 214593 ]; 215195 214594 testHaskellDepends = [ 215196 214595 base incipit-core polysemy polysemy-conc polysemy-plugin 215197 - polysemy-resume polysemy-test polysemy-time tasty typed-process 214596 + polysemy-resume polysemy-test polysemy-time tasty 214597 + tasty-expected-failure typed-process 215198 214598 ]; 215199 214599 description = "Polysemy Effects for System Processes"; 215200 214600 license = "BSD-2-Clause-Patent"; ··· 215258 214654 ]; 215259 214655 description = "Polysemy error tracking"; 215260 214656 license = "BSD-2-Clause-Patent"; 214657 + }) {}; 214658 + 214659 + "polysemy-scoped-fs" = callPackage 214660 + ({ mkDerivation, base, bytestring, directory, doctest, extra, path 214661 + , polysemy, polysemy-fs, polysemy-path, polysemy-plugin, text 214662 + }: 214663 + mkDerivation { 214664 + pname = "polysemy-scoped-fs"; 214665 + version = "0.1.0.0"; 214666 + sha256 = "08mj5q8rfbhyd7ns4vf696cqvm0792f5dv3x1w0ci3spl2m7nhdi"; 214667 + libraryHaskellDepends = [ 214668 + base bytestring directory doctest extra path polysemy polysemy-fs 214669 + polysemy-path polysemy-plugin text 214670 + ]; 214671 + testHaskellDepends = [ 214672 + base bytestring directory doctest extra path polysemy polysemy-fs 214673 + polysemy-path polysemy-plugin text 214674 + ]; 214675 + description = "Well-typed filesystem operation effects"; 214676 + license = lib.licenses.agpl3Plus; 214677 + hydraPlatforms = lib.platforms.none; 214678 + broken = true; 215261 214679 }) {}; 215262 214680 215263 214681 "polysemy-several" = callPackage ··· 217252 216626 license = lib.licenses.mit; 217253 216627 }) {}; 217254 216628 216629 + "postgresql-syntax_0_4_1" = callPackage 216630 + ({ mkDerivation, base, bytestring, case-insensitive, hashable 216631 + , headed-megaparsec, hedgehog, megaparsec, parser-combinators 216632 + , QuickCheck, quickcheck-instances, rerebase, tasty, tasty-hunit 216633 + , tasty-quickcheck, text, text-builder, unordered-containers 216634 + }: 216635 + mkDerivation { 216636 + pname = "postgresql-syntax"; 216637 + version = "0.4.1"; 216638 + sha256 = "1ls3jjgbvdy0x3110lgjd3icas187qyd31cwvi858l6ayhwf9kck"; 216639 + libraryHaskellDepends = [ 216640 + base bytestring case-insensitive hashable headed-megaparsec 216641 + megaparsec parser-combinators text text-builder 216642 + unordered-containers 216643 + ]; 216644 + testHaskellDepends = [ 216645 + hedgehog QuickCheck quickcheck-instances rerebase tasty tasty-hunit 216646 + tasty-quickcheck 216647 + ]; 216648 + description = "PostgreSQL AST parsing and rendering"; 216649 + license = lib.licenses.mit; 216650 + hydraPlatforms = lib.platforms.none; 216651 + }) {}; 216652 + 217255 216653 "postgresql-transactional" = callPackage 217256 216654 ({ mkDerivation, base, monad-control, mtl, postgresql-simple }: 217257 216655 mkDerivation { ··· 217759 217109 }: 217760 217110 mkDerivation { 217761 217111 pname = "powerdns"; 217762 - version = "0.4.0"; 217763 - sha256 = "0gcf04naa9ai4f6v7ycakwmdz379dqrr3nl0ry1pnqck835p629a"; 217112 + version = "0.4.1"; 217113 + sha256 = "1ss88q1lndjvmy7bp2jxh7qbh6z57kl1q5zcv4kzjampajf1fjbi"; 217764 217114 revision = "1"; 217765 - editedCabalFile = "1pf6f09kdawn17nrjn221xr40g66wa282r65521y4mdmlm6yrfd0"; 217115 + editedCabalFile = "08n8l7629ci2xksjihqwrag0gcj0cdhaj94awmybd454j4idy5c1"; 217766 217116 libraryHaskellDepends = [ 217767 217117 aeson base base64-bytestring bytestring case-insensitive containers 217768 217118 deepseq hashable servant servant-client servant-client-core text 217769 217119 time 217770 217120 ]; 217771 217121 testHaskellDepends = [ 217772 - base http-client servant-client servant-client-core tasty 217122 + base http-client servant servant-client servant-client-core tasty 217773 217123 tasty-hunit 217774 217124 ]; 217775 217125 description = "PowerDNS API bindings for api/v1"; ··· 220277 219627 }: 220278 219628 mkDerivation { 220279 219629 pname = "procex"; 220280 - version = "0.3.1"; 220281 - sha256 = "16f91ic12wldf59dabdca76bdcvq5r1alf05bai060dby5qqj2qj"; 219630 + version = "0.3.2"; 219631 + sha256 = "0962i86fdlgrzrzq6sp1v5hpkp1vsrsacpnalxvsz1nc81pi14qj"; 220282 219632 libraryHaskellDepends = [ 220283 219633 async base bytestring containers deepseq unix utf8-string 220284 219634 ]; ··· 220374 219724 libraryHaskellDepends = [ base category ]; 220375 219725 description = "Product category"; 220376 219726 license = lib.licenses.bsd3; 219727 + hydraPlatforms = lib.platforms.none; 220377 219728 }) {}; 220378 219729 220379 219730 "product-isomorphic" = callPackage ··· 222312 221661 }: 222313 221662 mkDerivation { 222314 221663 pname = "ptera-th"; 222315 - version = "0.3.0.0"; 222316 - sha256 = "0w5kr7cp0kcxh1cmqb38waxci81i9ccqn42kvhkrkzf35pnkn0m4"; 221664 + version = "0.4.0.0"; 221665 + sha256 = "00rvc6y3wnxsr3ybxd3wmywgcwsajjh0g40magnlfzkgdnih9qg2"; 222317 221666 setupHaskellDepends = [ base Cabal cabal-doctest ]; 222318 221667 libraryHaskellDepends = [ 222319 221668 array base containers enummapset-th ghc-prim membership ptera ··· 222376 221725 benchmarkHaskellDepends = [ gauge rerebase ]; 222377 221726 description = "Pointer poking action construction and composition toolkit"; 222378 221727 license = lib.licenses.mit; 221728 + }) {}; 221729 + 221730 + "ptr-poker_0_1_2_8" = callPackage 221731 + ({ mkDerivation, base, bytestring, gauge, hedgehog, numeric-limits 221732 + , rerebase, scientific, text 221733 + }: 221734 + mkDerivation { 221735 + pname = "ptr-poker"; 221736 + version = "0.1.2.8"; 221737 + sha256 = "10bbfw0jdzvds4j6qcgppn4l7xflqa2578w6sqmz807mwr563f8c"; 221738 + libraryHaskellDepends = [ base bytestring scientific text ]; 221739 + testHaskellDepends = [ hedgehog numeric-limits rerebase ]; 221740 + benchmarkHaskellDepends = [ gauge rerebase ]; 221741 + description = "Pointer poking action construction and composition toolkit"; 221742 + license = lib.licenses.mit; 221743 + hydraPlatforms = lib.platforms.none; 222379 221744 }) {}; 222380 221745 222381 221746 "ptrdiff" = callPackage ··· 222997 222330 , fsnotify, gitrev, Glob, happy, haskeline, hspec, hspec-discover 222998 222331 , http-types, HUnit, language-javascript, lifted-async, lifted-base 222999 222332 , memory, microlens, microlens-platform, monad-control 223000 - , monad-logger, mtl, network, optparse-applicative, parallel 223001 - , parsec, pattern-arrows, process, protolude, purescript-cst 223002 - , QuickCheck, regex-base, regex-tdfa, safe, scientific, semialign 223003 - , semigroups, serialise, sourcemap, split, stm, stringsearch, syb 223004 - , text, these, time, transformers, transformers-base 223005 - , transformers-compat, unordered-containers, utf8-string, vector 223006 - , wai, wai-websockets, warp, websockets 222333 + , monad-logger, monoidal-containers, mtl, network 222334 + , optparse-applicative, parallel, parsec, pattern-arrows, process 222335 + , protolude, QuickCheck, regex-base, regex-tdfa, safe, scientific 222336 + , semialign, semigroups, serialise, sourcemap, split, stm 222337 + , stringsearch, syb, text, these, time, transformers 222338 + , transformers-base, transformers-compat, unordered-containers 222339 + , utf8-string, vector 223007 222340 }: 223008 222341 mkDerivation { 223009 222342 pname = "purescript"; 223010 - version = "0.14.9"; 223011 - sha256 = "13canh915v668ii58y880b6zgzga3qmxxiblljs9qsdpwx1q7yzd"; 222343 + version = "0.15.0"; 222344 + sha256 = "0md1rkm7w6yn45i4igwqpvb82p491ai1w1z2yiym1qyi8p08798g"; 223012 222345 isLibrary = true; 223013 222346 isExecutable = true; 223014 222347 libraryHaskellDepends = [ ··· 223017 222350 cheapskate clock containers cryptonite data-ordlist deepseq 223018 222351 directory dlist edit-distance file-embed filepath fsnotify Glob 223019 222352 haskeline language-javascript lifted-async lifted-base memory 223020 - microlens microlens-platform monad-control monad-logger mtl 223021 - parallel parsec pattern-arrows process protolude purescript-cst 223022 - regex-tdfa safe scientific semialign semigroups serialise sourcemap 223023 - split stm stringsearch syb text these time transformers 222353 + microlens microlens-platform monad-control monad-logger 222354 + monoidal-containers mtl parallel parsec pattern-arrows process 222355 + protolude regex-tdfa safe scientific semialign semigroups serialise 222356 + sourcemap split stm stringsearch syb text these time transformers 223024 222357 transformers-base transformers-compat unordered-containers 223025 222358 utf8-string vector 223026 222359 ]; ··· 223032 222365 directory dlist edit-distance exceptions file-embed filepath 223033 222366 fsnotify gitrev Glob haskeline http-types language-javascript 223034 222367 lifted-async lifted-base memory microlens microlens-platform 223035 - monad-control monad-logger mtl network optparse-applicative 223036 - parallel parsec pattern-arrows process protolude purescript-cst 223037 - regex-tdfa safe scientific semialign semigroups serialise sourcemap 223038 - split stm stringsearch syb text these time transformers 222368 + monad-control monad-logger monoidal-containers mtl network 222369 + optparse-applicative parallel parsec pattern-arrows process 222370 + protolude regex-tdfa safe scientific semialign semigroups serialise 222371 + sourcemap split stm stringsearch syb text these time transformers 223039 222372 transformers-base transformers-compat unordered-containers 223040 - utf8-string vector wai wai-websockets warp websockets 222373 + utf8-string vector 223041 222374 ]; 223042 222375 executableToolDepends = [ happy ]; 223043 222376 testHaskellDepends = [ ··· 223046 222379 cheapskate clock containers cryptonite data-ordlist deepseq 223047 222380 directory dlist edit-distance file-embed filepath fsnotify Glob 223048 222381 haskeline hspec HUnit language-javascript lifted-async lifted-base 223049 - memory microlens microlens-platform monad-control monad-logger mtl 223050 - parallel parsec pattern-arrows process protolude purescript-cst 223051 - QuickCheck regex-base regex-tdfa safe scientific semialign 223052 - semigroups serialise sourcemap split stm stringsearch syb text 223053 - these time transformers transformers-base transformers-compat 222382 + memory microlens microlens-platform monad-control monad-logger 222383 + monoidal-containers mtl parallel parsec pattern-arrows process 222384 + protolude QuickCheck regex-base regex-tdfa safe scientific 222385 + semialign semigroups serialise sourcemap split stm stringsearch syb 222386 + text these time transformers transformers-base transformers-compat 223054 222387 unordered-containers utf8-string vector 223055 222388 ]; 223056 222389 testToolDepends = [ happy hspec-discover ]; ··· 226512 225845 libraryHaskellDepends = [ base primitive transformers util ]; 226513 225846 description = "Class of random value generation"; 226514 225847 license = lib.licenses.bsd3; 225848 + hydraPlatforms = lib.platforms.none; 226515 225849 }) {}; 226516 225850 226517 225851 "random-derive" = callPackage ··· 226846 226178 testHaskellDepends = [ base doctest typecheck-plugin-nat-simple ]; 226847 226179 description = "The list like structure whose length or range of length can be specified"; 226848 226180 license = lib.licenses.bsd3; 226181 + hydraPlatforms = lib.platforms.none; 226849 226182 }) {}; 226850 226183 226851 226184 "rangemin" = callPackage ··· 229628 228959 broken = true; 229629 228960 }) {}; 229630 228961 228962 + "refined-with" = callPackage 228963 + ({ mkDerivation, aeson, base, deepseq, hashable, refined }: 228964 + mkDerivation { 228965 + pname = "refined-with"; 228966 + version = "0.3.0"; 228967 + sha256 = "1d74ax7z822xsdnajsja1h49j966s7ym2ah35bpxlikl1l2wsmnh"; 228968 + libraryHaskellDepends = [ aeson base deepseq hashable refined ]; 228969 + description = "Refinement types with an \"refinement applied\" switch"; 228970 + license = lib.licenses.mit; 228971 + hydraPlatforms = lib.platforms.none; 228972 + broken = true; 228973 + }) {}; 228974 + 229631 228975 "refinery" = callPackage 229632 228976 ({ mkDerivation, base, checkers, exceptions, hspec, mmorph, mtl 229633 228977 , QuickCheck ··· 230497 229815 ({ mkDerivation, base, containers, mtl, semigroups, text }: 230498 229816 mkDerivation { 230499 229817 pname = "reform"; 230500 - version = "0.2.7.4"; 230501 - sha256 = "0dl0jz5ibcj4vafpf0a0v52rac4nmmif69817g7qgxavc093nq82"; 230502 - libraryHaskellDepends = [ base containers mtl semigroups text ]; 230503 - description = "reform is a type-safe HTML form generation and validation library"; 230504 - license = lib.licenses.bsd3; 230505 - }) {}; 230506 - 230507 - "reform_0_2_7_5" = callPackage 230508 - ({ mkDerivation, base, containers, mtl, semigroups, text }: 230509 - mkDerivation { 230510 - pname = "reform"; 230511 229818 version = "0.2.7.5"; 230512 229819 sha256 = "14p98i2682dm1n4drdrvilz67wfp2lr7m8f0wlmk40q3qmhc05xb"; 230513 229820 libraryHaskellDepends = [ base containers mtl semigroups text ]; 230514 229821 description = "reform is a type-safe HTML form generation and validation library"; 230515 229822 license = lib.licenses.bsd3; 230516 - hydraPlatforms = lib.platforms.none; 230517 229823 }) {}; 230518 229824 230519 229825 "reform-blaze" = callPackage 230520 229826 ({ mkDerivation, base, blaze-html, blaze-markup, reform, text }: 230521 229827 mkDerivation { 230522 229828 pname = "reform-blaze"; 230523 - version = "0.2.4.3"; 230524 - sha256 = "1r5j827diiqybjm75j0gmfb81q7irdc11sj714589xbb6lkz3g0i"; 229829 + version = "0.2.4.4"; 229830 + sha256 = "0cf1nimvkpag4fqs9jk17cl0h9wkpv2lcq5m1l704pznms22s7c7"; 230525 229831 libraryHaskellDepends = [ 230526 229832 base blaze-html blaze-markup reform text 230527 229833 ]; ··· 230536 229866 }: 230537 229867 mkDerivation { 230538 229868 pname = "reform-happstack"; 230539 - version = "0.2.5.4"; 230540 - sha256 = "1xknj906vr0q6vrxrvna1777v7hsdg1l3r0wwnga7k1yn5hcfc76"; 229869 + version = "0.2.5.5"; 229870 + sha256 = "0knsx790vf5xvnxhfdz48gz3352z98ghy1ld7yh3rmp1apciqd35"; 230541 229871 libraryHaskellDepends = [ 230542 229872 base bytestring happstack-server mtl random reform text utf8-string 230543 229873 ]; ··· 231572 230902 }: 231573 230903 mkDerivation { 231574 230904 pname = "registry-messagepack"; 231575 - version = "0.1.0.2"; 231576 - sha256 = "0pwljb8zdq5m47zjfbmy8827g99y2fai6ib9z2p82kkknag1mg5q"; 230905 + version = "0.1.0.3"; 230906 + sha256 = "0i49cic87jdkfalwbyry7c6f1828vd1n33nkdjmxa73w3vhjklf5"; 231577 230907 libraryHaskellDepends = [ 231578 230908 base containers msgpack protolude registry template-haskell text 231579 230909 transformers vector ··· 233880 233210 }: 233881 233211 mkDerivation { 233882 233212 pname = "restful-snap"; 233883 - version = "0.4.1"; 233884 - sha256 = "1447hbwky8lslblq3vpm7d1zyri4apmf459fbaq3m15kkd1qsyxq"; 233213 + version = "0.4.2"; 233214 + sha256 = "0639j9dv51jra3mx9pqsb9hwrp73cw4xlc27p4hklk3xqr0fvf0p"; 233885 233215 libraryHaskellDepends = [ 233886 233216 base blaze-builder bytestring containers data-default 233887 233217 digestive-functors errors heist lens map-syntax mtl old-locale ··· 234104 233434 pname = "retrie"; 234105 233435 version = "1.2.0.1"; 234106 233436 sha256 = "1n3g9wr45xz1q2mhlj1r2709rqakczrvd7x6vxh7iapz43f69c6x"; 234107 - revision = "1"; 234108 - editedCabalFile = "0dx1gxf2c88rzd1z83lmvgpbv8xny9yz8px4cjjpnmlrah1fmmqh"; 233437 + revision = "2"; 233438 + editedCabalFile = "0h6r4jg9mnqwvlsl3s6yl2zvhkwr8pdypbzvky4kwz4zvc03j5ql"; 234109 233439 isLibrary = true; 234110 233440 isExecutable = true; 234111 233441 libraryHaskellDepends = [ ··· 234134 233464 }: 234135 233465 mkDerivation { 234136 233466 pname = "retroclash-lib"; 234137 - version = "0.1.1"; 234138 - sha256 = "1v8xw37cbnz16gqmf65hgk0kvh0vgmq8sj6nh4ngz48l6i5wylv6"; 233467 + version = "0.1.2"; 233468 + sha256 = "11f15nhxp8aaim6yrzlh33dilp2zywdfikgdii44q0mszmm9q0vr"; 234139 233469 libraryHaskellDepends = [ 234140 233470 barbies base clash-ghc clash-lib clash-prelude containers 234141 233471 ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise ··· 235129 234459 testToolDepends = [ hspec-discover ]; 235130 234460 description = "A standard library for Haskell"; 235131 234461 license = lib.licenses.mit; 234462 + }) {}; 234463 + 234464 + "rio_0_1_22_0" = callPackage 234465 + ({ mkDerivation, base, bytestring, containers, deepseq, directory 234466 + , exceptions, filepath, hashable, hspec, hspec-discover, microlens 234467 + , microlens-mtl, mtl, primitive, process, QuickCheck, text, time 234468 + , typed-process, unix, unliftio, unliftio-core 234469 + , unordered-containers, vector 234470 + }: 234471 + mkDerivation { 234472 + pname = "rio"; 234473 + version = "0.1.22.0"; 234474 + sha256 = "0rpc4f2yvw0y6mqz9ykm3778j6srya7ssww691kpf9nb8vddgjb6"; 234475 + libraryHaskellDepends = [ 234476 + base bytestring containers deepseq directory exceptions filepath 234477 + hashable microlens microlens-mtl mtl primitive process text time 234478 + typed-process unix unliftio unliftio-core unordered-containers 234479 + vector 234480 + ]; 234481 + testHaskellDepends = [ 234482 + base bytestring containers deepseq directory exceptions filepath 234483 + hashable hspec microlens microlens-mtl mtl primitive process 234484 + QuickCheck text time typed-process unix unliftio unliftio-core 234485 + unordered-containers vector 234486 + ]; 234487 + testToolDepends = [ hspec-discover ]; 234488 + description = "A standard library for Haskell"; 234489 + license = lib.licenses.mit; 234490 + hydraPlatforms = lib.platforms.none; 235132 234491 }) {}; 235133 234492 235134 234493 "rio-app" = callPackage ··· 236741 236042 doHaddock = false; 236742 236043 description = "Row types"; 236743 236044 license = lib.licenses.bsd3; 236045 + hydraPlatforms = lib.platforms.none; 236744 236046 }) {}; 236745 236047 236746 236048 "row-types" = callPackage ··· 238586 237886 license = lib.licenses.mit; 238587 237887 }) {inherit (pkgs) libsodium;}; 238588 237888 238589 - "saltine_0_2_0_0" = callPackage 237889 + "saltine_0_2_0_1" = callPackage 238590 237890 ({ mkDerivation, base, bytestring, criterion, deepseq, hashable 238591 237891 , libsodium, profunctors, QuickCheck, semigroups, test-framework 238592 237892 , test-framework-quickcheck2, text 238593 237893 }: 238594 237894 mkDerivation { 238595 237895 pname = "saltine"; 238596 - version = "0.2.0.0"; 238597 - sha256 = "1xgrnm6qmm0mymq3dh4mdvzi8sfssnpz06xsrw8zdpa1vl0a0gm6"; 237896 + version = "0.2.0.1"; 237897 + sha256 = "181fxlp8p0zhz58h23fxavhcbxkwhd3a3idlbhawb2rhiah6fs6f"; 238598 237898 libraryHaskellDepends = [ 238599 237899 base bytestring deepseq hashable profunctors text 238600 237900 ]; ··· 239450 238750 license = lib.licenses.bsd3; 239451 238751 }) {inherit (pkgs) z3;}; 239452 238752 238753 + "sbv_9_0" = callPackage 238754 + ({ mkDerivation, array, async, base, bytestring, containers 238755 + , deepseq, directory, filepath, hlint, libBF, mtl, pretty, process 238756 + , QuickCheck, random, syb, tasty, tasty-bench, tasty-golden 238757 + , tasty-hunit, tasty-quickcheck, template-haskell, text, time 238758 + , transformers, uniplate, z3 238759 + }: 238760 + mkDerivation { 238761 + pname = "sbv"; 238762 + version = "9.0"; 238763 + sha256 = "0r84ak8n8vqs1xbvxjzai828yr5msjyf5igf6qmn6f47m0mhf6cz"; 238764 + enableSeparateDataOutput = true; 238765 + libraryHaskellDepends = [ 238766 + array async base containers deepseq directory filepath libBF mtl 238767 + pretty process QuickCheck random syb template-haskell text time 238768 + transformers uniplate 238769 + ]; 238770 + testHaskellDepends = [ 238771 + base bytestring containers directory filepath hlint mtl process 238772 + QuickCheck random tasty tasty-golden tasty-hunit tasty-quickcheck 238773 + ]; 238774 + testSystemDepends = [ z3 ]; 238775 + benchmarkHaskellDepends = [ 238776 + base deepseq filepath process random tasty tasty-bench time 238777 + ]; 238778 + description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; 238779 + license = lib.licenses.bsd3; 238780 + hydraPlatforms = lib.platforms.none; 238781 + }) {inherit (pkgs) z3;}; 238782 + 239453 238783 "sbvPlugin" = callPackage 239454 238784 ({ mkDerivation, base, containers, directory, filepath, ghc 239455 238785 , ghc-prim, mtl, process, sbv, tasty, tasty-golden ··· 239487 238757 }: 239488 238758 mkDerivation { 239489 238759 pname = "sbvPlugin"; 239490 - version = "9.0.1"; 239491 - sha256 = "1hg1sxnspyxjpj98c2h7hzf93m9acw8cjiva4wsnxl1gspln4gwb"; 238760 + version = "9.2.2"; 238761 + sha256 = "0cv2f6n32m8xaii5dpk3kz6wclxgmri1zfh09dq23s91l5asrp1v"; 239492 238762 libraryHaskellDepends = [ 239493 238763 base containers ghc ghc-prim mtl sbv template-haskell 239494 238764 ]; ··· 240807 240077 }: 240808 240078 mkDerivation { 240809 240079 pname = "scotty-utils"; 240810 - version = "0.1.0.0"; 240811 - sha256 = "0f77b5xmr5gwswz15i5833karfr1qvyaaiy58khd75n9awfx5jqv"; 240080 + version = "0.2.0.0"; 240081 + sha256 = "0b2r43dcgcq7azcn0l9lxml84h6w5bk09h65y1mlvccwzhwbfini"; 240812 240082 libraryHaskellDepends = [ 240813 240083 aeson aeson-result base http-types scotty text 240814 240084 ]; ··· 241839 241109 }: 241840 241110 mkDerivation { 241841 241111 pname = "secp256k1-haskell"; 241842 - version = "0.6.0"; 241843 - sha256 = "0qq37xy61kk5h9h6zaiycjlrr1k9kjddy319qgqi0ja9vkm8msj1"; 241844 - libraryHaskellDepends = [ 241845 - base base16 bytestring cereal deepseq entropy hashable QuickCheck 241846 - string-conversions unliftio-core 241847 - ]; 241848 - libraryPkgconfigDepends = [ secp256k1 ]; 241849 - testHaskellDepends = [ 241850 - base base16 bytestring cereal deepseq entropy hashable hspec HUnit 241851 - monad-par mtl QuickCheck string-conversions unliftio-core 241852 - ]; 241853 - testToolDepends = [ hspec-discover ]; 241854 - description = "Bindings for secp256k1"; 241855 - license = lib.licenses.mit; 241856 - }) {inherit (pkgs) secp256k1;}; 241857 - 241858 - "secp256k1-haskell_0_6_1" = callPackage 241859 - ({ mkDerivation, base, base16, bytestring, cereal, deepseq, entropy 241860 - , hashable, hspec, hspec-discover, HUnit, monad-par, mtl 241861 - , QuickCheck, secp256k1, string-conversions, unliftio-core 241862 - }: 241863 - mkDerivation { 241864 - pname = "secp256k1-haskell"; 241865 241112 version = "0.6.1"; 241866 241113 sha256 = "0abxwmls4rvsnck7p5gpajmha2vc9fbcrr2q1alkpw8acmgfhr76"; 241867 241114 libraryHaskellDepends = [ ··· 241853 241146 testToolDepends = [ hspec-discover ]; 241854 241147 description = "Bindings for secp256k1"; 241855 241148 license = lib.licenses.mit; 241856 - hydraPlatforms = lib.platforms.none; 241857 241149 }) {inherit (pkgs) secp256k1;}; 241858 241150 241859 241151 "secp256k1-legacy" = callPackage ··· 243161 242455 }: 243162 242456 mkDerivation { 243163 242457 pname = "serialise"; 243164 - version = "0.2.4.0"; 243165 - sha256 = "07i50rza58x8j7kw9w2mhbks41gjv6xgnlgfdb0hw2cwdmkrmjqd"; 243166 - revision = "1"; 243167 - editedCabalFile = "0rgc0sr4csmiq38sf6x1xz6cqmp30nn8837xsfwpvcfb7kh4bqy0"; 242458 + version = "0.2.5.0"; 242459 + sha256 = "08ny0bdxd591w4bx6sd16ndik0j8g3578ck6zj667rm1z3ssqqj2"; 243168 242460 libraryHaskellDepends = [ 243169 242461 array base bytestring cborg containers ghc-prim half hashable 243170 242462 primitive strict text these time unordered-containers vector ··· 243805 243101 ]; 243806 243102 description = "Servant CSV content-type for cassava"; 243807 243103 license = lib.licenses.bsd3; 243808 - hydraPlatforms = lib.platforms.none; 243809 - broken = true; 243810 243104 }) {}; 243811 243105 243812 243106 "servant-checked-exceptions" = callPackage ··· 244216 243514 }: 244217 243515 mkDerivation { 244218 243516 pname = "servant-errors"; 244219 - version = "0.1.6.0"; 244220 - sha256 = "0qap8wbchpl48aigwqgxrgb6v3d6h80fpxq319c399pwrrkzyh9v"; 243517 + version = "0.1.7.0"; 243518 + sha256 = "0g7mclwxvjw9jwxmd8nkz9a0v4jwm9nxpwlranfdm2f55pa288i1"; 244221 243519 libraryHaskellDepends = [ 244222 243520 aeson base base-compat bytestring http-api-data http-media 244223 243521 http-types scientific servant string-conversions text ··· 244503 243801 ({ mkDerivation, base, servant-server, text }: 244504 243802 mkDerivation { 244505 243803 pname = "servant-htmx"; 244506 - version = "0.1.0.1"; 244507 - sha256 = "1plqqaa3vhmwg37bai6xpi415fd772fx6rf0dr919mc79ms0zcfx"; 243804 + version = "0.1.0.2"; 243805 + sha256 = "06lcs2qv6dxlx6sj16qr426vm7rklv80d720hrw4zfdba5rsl7d9"; 244508 243806 isLibrary = true; 244509 243807 isExecutable = true; 244510 243808 libraryHaskellDepends = [ base servant-server text ]; 244511 243809 executableHaskellDepends = [ base servant-server text ]; 244512 243810 testHaskellDepends = [ base servant-server text ]; 244513 - description = "A library for using htmx with servant"; 243811 + description = "A library for using servant with htmx"; 244514 243812 license = lib.licenses.bsd3; 244515 243813 hydraPlatforms = lib.platforms.none; 244516 243814 broken = true; ··· 247304 246602 "shake-bench" = callPackage 247305 246603 ({ mkDerivation, aeson, base, Chart, Chart-diagrams 247306 246604 , diagrams-contrib, diagrams-core, diagrams-lib, diagrams-svg 247307 - , directory, extra, filepath, lens, lens-aeson, shake, text 246605 + , directory, extra, filepath, lens, lens-aeson, mtl, shake, text 247308 246606 }: 247309 246607 mkDerivation { 247310 246608 pname = "shake-bench"; 247311 - version = "0.1.0.3"; 247312 - sha256 = "04pngr9a1g7dr7kb0xp9k2yrbg6vqk3lfpksz6bbyydbmypix3ay"; 246609 + version = "0.1.1.0"; 246610 + sha256 = "1p2xa2kxfvzy2c188i9czr5w4jck4sxw2jb7s9dc1b5xf1a4bi01"; 247313 246611 libraryHaskellDepends = [ 247314 246612 aeson base Chart Chart-diagrams diagrams-contrib diagrams-core 247315 246613 diagrams-lib diagrams-svg directory extra filepath lens lens-aeson 247316 - shake text 246614 + mtl shake text 247317 246615 ]; 247318 246616 description = "Build rules for historical benchmarking"; 247319 246617 license = lib.licenses.asl20; ··· 247723 247021 ]; 247724 247022 description = "A toolkit for making compile-time interpolated templates"; 247725 247023 license = lib.licenses.mit; 247024 + maintainers = with lib.maintainers; [ psibi ]; 247025 + }) {}; 247026 + 247027 + "shakespeare_2_0_27" = callPackage 247028 + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 247029 + , containers, directory, exceptions, file-embed, ghc-prim, hspec 247030 + , HUnit, parsec, process, scientific, template-haskell, text 247031 + , th-lift, time, transformers, unordered-containers, vector 247032 + }: 247033 + mkDerivation { 247034 + pname = "shakespeare"; 247035 + version = "2.0.27"; 247036 + sha256 = "1bnl7m96x8qr2rvkfzjy01d720xb3c55l3vg0zm2lfbz3gpml1jz"; 247037 + libraryHaskellDepends = [ 247038 + aeson base blaze-html blaze-markup bytestring containers directory 247039 + exceptions file-embed ghc-prim parsec process scientific 247040 + template-haskell text th-lift time transformers 247041 + unordered-containers vector 247042 + ]; 247043 + testHaskellDepends = [ 247044 + aeson base blaze-html blaze-markup bytestring containers directory 247045 + exceptions ghc-prim hspec HUnit parsec process template-haskell 247046 + text time transformers 247047 + ]; 247048 + description = "A toolkit for making compile-time interpolated templates"; 247049 + license = lib.licenses.mit; 247050 + hydraPlatforms = lib.platforms.none; 247726 247051 maintainers = with lib.maintainers; [ psibi ]; 247727 247052 }) {}; 247728 247053 ··· 249448 248719 pname = "simple-cmd"; 249449 248720 version = "0.2.4"; 249450 248721 sha256 = "19kd863gm33sj01biqz94jk9cy8vb07xlqmw2m9vlh16h3phgqv1"; 248722 + revision = "1"; 248723 + editedCabalFile = "01sqxzvkkj4lvsp3kd8qjb5p2k6ylkiv4a2dc821ihapr0cf2fzj"; 249451 248724 libraryHaskellDepends = [ 249452 248725 base directory extra filepath process unix 249453 248726 ]; 249454 248727 testHaskellDepends = [ base hspec ]; 249455 248728 description = "Simple String-based process commands"; 249456 248729 license = lib.licenses.bsd3; 248730 + }) {}; 248731 + 248732 + "simple-cmd_0_2_5" = callPackage 248733 + ({ mkDerivation, base, directory, extra, filepath, hspec, process 248734 + , time, unix 248735 + }: 248736 + mkDerivation { 248737 + pname = "simple-cmd"; 248738 + version = "0.2.5"; 248739 + sha256 = "151js143l6b5rg6llvmcy1hcg80cmbp50ydrjhyfjqj32a1ygrsz"; 248740 + libraryHaskellDepends = [ 248741 + base directory extra filepath process time unix 248742 + ]; 248743 + testHaskellDepends = [ base hspec ]; 248744 + description = "Simple String-based process commands"; 248745 + license = lib.licenses.bsd3; 248746 + hydraPlatforms = lib.platforms.none; 249457 248747 }) {}; 249458 248748 249459 248749 "simple-cmd-args" = callPackage ··· 250478 249730 }: 250479 249731 mkDerivation { 250480 249732 pname = "simplexmq"; 250481 - version = "1.0.2"; 250482 - sha256 = "142jpsy8myjffx4c1iw21iv210wgnyikmr66bih4gm3xgbqniz9q"; 249733 + version = "1.1.0"; 249734 + sha256 = "1qzrc32bs4s2qn8hz6z0ni5nv89a6vakl5wzk8sa7p2b3fkrc3gw"; 250483 249735 isLibrary = true; 250484 249736 isExecutable = true; 250485 249737 libraryHaskellDepends = [ ··· 252374 251626 license = lib.licenses.bsd3; 252375 251627 }) {}; 252376 251628 251629 + "smash_0_1_3" = callPackage 251630 + ({ mkDerivation, base, bifunctors, binary, deepseq, hashable, mtl 251631 + , template-haskell 251632 + }: 251633 + mkDerivation { 251634 + pname = "smash"; 251635 + version = "0.1.3"; 251636 + sha256 = "1i8a8i81xs68zrsv173q0xv0f9cmxmhkgd5k90x60kv7v5pwpqw4"; 251637 + libraryHaskellDepends = [ 251638 + base bifunctors binary deepseq hashable mtl template-haskell 251639 + ]; 251640 + description = "Combinators for Maybe types"; 251641 + license = lib.licenses.bsd3; 251642 + hydraPlatforms = lib.platforms.none; 251643 + }) {}; 251644 + 252377 251645 "smash-aeson" = callPackage 252378 251646 ({ mkDerivation, aeson, base, smash, unordered-containers }: 252379 251647 mkDerivation { 252380 251648 pname = "smash-aeson"; 252381 - version = "0.1.0.0"; 252382 - sha256 = "0vmazs3ypqxaw4zdywimxfzrsvidnyk5damx6fpy549ny9319rqs"; 252383 - revision = "1"; 252384 - editedCabalFile = "1y0k6gz9qlr98f543607zkx6a97fnzh3zrbi2b59rlljp0rjvdw8"; 251649 + version = "0.2.0.1"; 251650 + sha256 = "0gbqvm34afkv1v0xajz8cjw0xaih3ls4dh1ygcbybgic08y0xl85"; 252385 251651 libraryHaskellDepends = [ aeson base smash unordered-containers ]; 252386 251652 description = "Aeson support for the smash library"; 252387 251653 license = lib.licenses.bsd3; ··· 252407 251645 ({ mkDerivation, base, lens, smash }: 252408 251646 mkDerivation { 252409 251647 pname = "smash-lens"; 252410 - version = "0.1.0.1"; 252411 - sha256 = "1j7v3713aahp3vh7dswrkdfrnksi1zlw9iv9zanhb714s6anyq66"; 251648 + version = "0.1.0.3"; 251649 + sha256 = "0lzvw7349wv1fjsm4q4jwggmjx9cxsrrjydvpq3q12kj6s9p9m5k"; 252412 251650 libraryHaskellDepends = [ base lens smash ]; 252413 251651 testHaskellDepends = [ base ]; 252414 251652 description = "Optics for the `smash` library"; ··· 252431 251669 license = lib.licenses.bsd3; 252432 251670 }) {}; 252433 251671 251672 + "smash-microlens_0_1_0_2" = callPackage 251673 + ({ mkDerivation, base, microlens, smash }: 251674 + mkDerivation { 251675 + pname = "smash-microlens"; 251676 + version = "0.1.0.2"; 251677 + sha256 = "0rfpdaw1zs8fpw6kp5zkrhj8nmx839fp2ca0cgk14g431yl651ir"; 251678 + libraryHaskellDepends = [ base microlens smash ]; 251679 + testHaskellDepends = [ base ]; 251680 + description = "Optics for the `smash` library"; 251681 + license = lib.licenses.bsd3; 251682 + hydraPlatforms = lib.platforms.none; 251683 + }) {}; 251684 + 252434 251685 "smash-optics" = callPackage 252435 251686 ({ mkDerivation, base, optics-core, smash }: 252436 251687 mkDerivation { 252437 251688 pname = "smash-optics"; 252438 - version = "0.1.0.1"; 252439 - sha256 = "1jf60vx8hlmyjgap91fvwn0p0hnazpcimshhkz5lsys0ynd4pcwh"; 251689 + version = "0.1.0.2"; 251690 + sha256 = "0acxkswkvbcwd8mawy9w029h01g3l30rkvvy6yzkb693l8xwiiry"; 252440 251691 libraryHaskellDepends = [ base optics-core smash ]; 252441 251692 description = "Optics for the `smash` library using `optics-core`"; 252442 251693 license = lib.licenses.bsd3; ··· 252659 251884 benchmarkHaskellDepends = [ base criterion ]; 252660 251885 description = "Interface to Satisfiability Modulo Theories solvers"; 252661 251886 license = lib.licenses.bsd3; 251887 + hydraPlatforms = lib.platforms.none; 252662 251888 }) {}; 252663 251889 252664 251890 "smt-lib" = callPackage ··· 252914 252138 }: 252915 252139 mkDerivation { 252916 252140 pname = "snack"; 252917 - version = "0.1.0.0"; 252918 - sha256 = "01h49r64mg55ii32gnd7bab4rmgp73r3gks9g35z2qgdacwijwac"; 252141 + version = "0.2.0.0"; 252142 + sha256 = "13crnza7fav388s3n8gywbjam97xqhdqh0r10dcgpm5jffi8vns2"; 252919 252143 libraryHaskellDepends = [ base bytestring bytestring-lexing text ]; 252920 252144 benchmarkHaskellDepends = [ 252921 252145 attoparsec base bytestring criterion string-conversions text 252922 252146 ]; 252923 252147 description = "Strict ByteString Parser Combinator"; 252924 - license = lib.licenses.mit; 252148 + license = lib.licenses.cc0; 252925 252149 hydraPlatforms = lib.platforms.none; 252926 252150 broken = true; 252927 252151 }) {}; ··· 253297 252521 pname = "snap-server"; 253298 252522 version = "1.1.2.0"; 253299 252523 sha256 = "0w4yv9a5ilpma0335ariwap2iscmdbaaif88lq3cm7px910nyc4j"; 252524 + revision = "1"; 252525 + editedCabalFile = "0ijwp0s976cpb4nny8l7vpf5xny6k8dy2xb1rya1l2x5yzj7hlrj"; 253300 252526 configureFlags = [ "-fopenssl" ]; 253301 252527 isLibrary = true; 253302 252528 isExecutable = true; ··· 253444 252666 ({ mkDerivation, base, blaze-builder, bytestring 253445 252667 , digestive-functors, digestive-functors-heist 253446 252668 , digestive-functors-snap, errors, heist, lens, map-syntax 253447 - , persistent, persistent-postgresql, persistent-template, readable 253448 - , restful-snap, snap, snap-extras, snaplet-persistent, text, time 253449 - , transformers, unordered-containers, xmlhtml 252669 + , persistent, persistent-postgresql, readable, restful-snap, snap 252670 + , snap-extras, snaplet-persistent, text, time, transformers 252671 + , unordered-containers, xmlhtml 253450 252672 }: 253451 252673 mkDerivation { 253452 252674 pname = "snaplet-actionlog"; 253453 - version = "0.3.1"; 253454 - sha256 = "1cs1spfy253zf2lxjdx2ki20ikzyj035xcxkzldxkn994amw2p7l"; 252675 + version = "0.4.0"; 252676 + sha256 = "1sg6pni9317v9g0v69b4a8rhnln6bal9iv0znz07ssgj9jg1ppp0"; 253455 252677 enableSeparateDataOutput = true; 253456 252678 libraryHaskellDepends = [ 253457 252679 base blaze-builder bytestring digestive-functors 253458 252680 digestive-functors-heist digestive-functors-snap errors heist lens 253459 - map-syntax persistent persistent-postgresql persistent-template 253460 - readable restful-snap snap snap-extras snaplet-persistent text time 253461 - transformers unordered-containers xmlhtml 252681 + map-syntax persistent persistent-postgresql readable restful-snap 252682 + snap snap-extras snaplet-persistent text time transformers 252683 + unordered-containers xmlhtml 253462 252684 ]; 253463 252685 description = "Generic action log snaplet for the Snap Framework"; 253464 252686 license = lib.licenses.bsd3; ··· 260539 259761 license = lib.licenses.mit; 260540 259762 }) {}; 260541 259763 259764 + "store_0_7_15" = callPackage 259765 + ({ mkDerivation, array, async, base, base-orphans 259766 + , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 259767 + , clock, containers, contravariant, criterion, cryptohash, deepseq 259768 + , directory, filepath, free, ghc-prim, hashable, hspec 259769 + , hspec-discover, hspec-smallcheck, integer-gmp, lifted-base 259770 + , monad-control, mono-traversable, nats, network, primitive 259771 + , resourcet, safe, smallcheck, store-core, syb, template-haskell 259772 + , text, th-lift, th-lift-instances, th-orphans, th-reify-many 259773 + , th-utilities, time, transformers, unordered-containers, vector 259774 + , vector-binary-instances, void, weigh 259775 + }: 259776 + mkDerivation { 259777 + pname = "store"; 259778 + version = "0.7.15"; 259779 + sha256 = "0ws8gck230q2wcmgbpynvppd122ag1rksjjg67wcy62dfkzdk264"; 259780 + libraryHaskellDepends = [ 259781 + array async base base-orphans base64-bytestring bifunctors 259782 + bytestring containers contravariant cryptohash deepseq directory 259783 + filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp 259784 + lifted-base monad-control mono-traversable nats network primitive 259785 + resourcet safe smallcheck store-core syb template-haskell text 259786 + th-lift th-lift-instances th-orphans th-reify-many th-utilities 259787 + time transformers unordered-containers vector void 259788 + ]; 259789 + testHaskellDepends = [ 259790 + array async base base-orphans base64-bytestring bifunctors 259791 + bytestring clock containers contravariant cryptohash deepseq 259792 + directory filepath free ghc-prim hashable hspec hspec-smallcheck 259793 + integer-gmp lifted-base monad-control mono-traversable nats network 259794 + primitive resourcet safe smallcheck store-core syb template-haskell 259795 + text th-lift th-lift-instances th-orphans th-reify-many 259796 + th-utilities time transformers unordered-containers vector void 259797 + ]; 259798 + testToolDepends = [ hspec-discover ]; 259799 + benchmarkHaskellDepends = [ 259800 + array async base base-orphans base64-bytestring bifunctors 259801 + bytestring cereal cereal-vector containers contravariant criterion 259802 + cryptohash deepseq directory filepath free ghc-prim hashable hspec 259803 + hspec-smallcheck integer-gmp lifted-base monad-control 259804 + mono-traversable nats network primitive resourcet safe smallcheck 259805 + store-core syb template-haskell text th-lift th-lift-instances 259806 + th-orphans th-reify-many th-utilities time transformers 259807 + unordered-containers vector vector-binary-instances void weigh 259808 + ]; 259809 + description = "Fast binary serialization"; 259810 + license = lib.licenses.mit; 259811 + hydraPlatforms = lib.platforms.none; 259812 + }) {}; 259813 + 260542 259814 "store-core" = callPackage 260543 259815 ({ mkDerivation, base, bytestring, ghc-prim, primitive, text 260544 259816 , transformers ··· 262234 261406 ({ mkDerivation, base }: 262235 261407 mkDerivation { 262236 261408 pname = "string-interpreter"; 262237 - version = "0.5.5.0"; 262238 - sha256 = "094fh3byv0bgcaccq15nqra31cw12csmyqj38hib2a2p6jnc3mq1"; 261409 + version = "0.6.0.0"; 261410 + sha256 = "0a0i95j8y49wijh2c0bpy5fwz72w0p6nh19df56g2yy7xik5h6xq"; 262239 261411 libraryHaskellDepends = [ base ]; 262240 261412 description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; 262241 261413 license = lib.licenses.mit; ··· 263110 262282 }: 263111 262283 mkDerivation { 263112 262284 pname = "stylish-haskell"; 263113 - version = "0.14.1.0"; 263114 - sha256 = "1chgkxqbnrgq7w9zzx118igp08h9vfgp150akazmgimy378cadlk"; 262285 + version = "0.14.2.0"; 262286 + sha256 = "1k2ffsizpy476v3zj6j634ap62qklzv80ryyh7c3j5l2cbzfv0gi"; 263115 262287 isLibrary = true; 263116 262288 isExecutable = true; 263117 262289 libraryHaskellDepends = [ ··· 264672 263844 264673 263845 "swish" = callPackage 264674 263846 ({ mkDerivation, base, containers, directory, filepath, hashable 264675 - , HUnit, intern, mtl, network-uri, old-locale, polyparse 264676 - , semigroups, test-framework, test-framework-hunit, text, time 263847 + , HUnit, intern, mtl, network-uri, polyparse, semigroups 263848 + , test-framework, test-framework-hunit, text, time 264677 263849 }: 264678 263850 mkDerivation { 264679 263851 pname = "swish"; 264680 - version = "0.10.1.0"; 264681 - sha256 = "0xy12fmmiydaqm0cng24qd7c1py1sbb4ww66w0n5w26kwgh622cc"; 263852 + version = "0.10.2.0"; 263853 + sha256 = "162sq6k9ylzlnqj4l9plykvhhrkc7sc08bza6az5cadfvnqlham8"; 264682 263854 isLibrary = true; 264683 263855 isExecutable = true; 264684 263856 enableSeparateDataOutput = true; 264685 263857 libraryHaskellDepends = [ 264686 263858 base containers directory filepath hashable intern mtl network-uri 264687 - old-locale polyparse text time 263859 + polyparse text time 264688 263860 ]; 264689 263861 executableHaskellDepends = [ base ]; 264690 263862 testHaskellDepends = [ 264691 - base containers hashable HUnit network-uri old-locale semigroups 263863 + base containers hashable HUnit network-uri semigroups 264692 263864 test-framework test-framework-hunit text time 264693 263865 ]; 264694 263866 description = "A semantic web toolkit"; ··· 264855 264027 , MonadRandom, mtl, optparse-applicative, path, path-io 264856 264028 , pretty-show, QuickCheck, quickcheck-io, random, random-shuffle 264857 264029 , safe, safe-coloured-text, safe-coloured-text-terminfo, split, stm 264858 - , sydtest-discover, text, yaml 264030 + , sydtest-discover, text 264859 264031 }: 264860 264032 mkDerivation { 264861 264033 pname = "sydtest"; 264862 - version = "0.9.0.0"; 264863 - sha256 = "1gp9kifyh88pjnk7vnb0p09fkcmnhy5akgfdacmrmgwcnyswx6f1"; 264034 + version = "0.10.0.0"; 264035 + sha256 = "009d4ai8dqhxcrgkd0d37l97dkiqh7qmr1wvhwj38mblrhpgpm3z"; 264864 264036 libraryHaskellDepends = [ 264865 264037 async autodocodec autodocodec-yaml base bytestring containers Diff 264866 264038 dlist envparse filepath MonadRandom mtl optparse-applicative path 264867 264039 path-io pretty-show QuickCheck quickcheck-io random-shuffle safe 264868 - safe-coloured-text safe-coloured-text-terminfo split stm text yaml 264040 + safe-coloured-text safe-coloured-text-terminfo split stm text 264869 264041 ]; 264870 264042 testHaskellDepends = [ 264871 264043 base bytestring path path-io QuickCheck random safe-coloured-text ··· 264878 264050 }) {}; 264879 264051 264880 264052 "sydtest-aeson" = callPackage 264881 - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, path 264882 - , path-io, sydtest, sydtest-discover, text 264053 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq 264054 + , directory, path, path-io, sydtest, sydtest-discover, text 264883 264055 }: 264884 264056 mkDerivation { 264885 264057 pname = "sydtest-aeson"; 264886 - version = "0.0.0.0"; 264887 - sha256 = "0x4n27v60m6h44xwpf60j11j1r9r1zzixlszq21skrf2r6lla2gn"; 264058 + version = "0.1.0.0"; 264059 + sha256 = "1kidxlaw8snyzl0nq2vynjz179blh03cvg2qdjr5j521cjxxmwf8"; 264888 264060 libraryHaskellDepends = [ 264889 - aeson aeson-pretty base bytestring path path-io sydtest text 264061 + aeson aeson-pretty base bytestring deepseq path path-io sydtest 264062 + text 264890 264063 ]; 264891 - testHaskellDepends = [ aeson base sydtest text ]; 264064 + testHaskellDepends = [ aeson base directory sydtest text ]; 264892 264065 testToolDepends = [ sydtest-discover ]; 264893 264066 description = "An aeson companion library for sydtest"; 264894 264067 license = "unknown"; ··· 264942 264113 }: 264943 264114 mkDerivation { 264944 264115 pname = "sydtest-hedgehog"; 264945 - version = "0.1.0.0"; 264946 - sha256 = "0p0aj2jd6cgi3mdzdlwksczikxsx9ajh0lcvd6k4059x1ddjxplb"; 264116 + version = "0.2.0.0"; 264117 + sha256 = "084nqzl1i5phy0hwdgcx0dvlajr8g1iva73f3j9y9rsgl08wh727"; 264947 264118 libraryHaskellDepends = [ base containers hedgehog stm sydtest ]; 264948 264119 testHaskellDepends = [ base hedgehog sydtest ]; 264949 264120 testToolDepends = [ sydtest-discover ]; ··· 264978 264149 }: 264979 264150 mkDerivation { 264980 264151 pname = "sydtest-hspec"; 264981 - version = "0.1.0.0"; 264982 - sha256 = "17j48cp7n0smci0m42yyvkz0rd5xfrysb2f6hwxaqhl703ifhlyy"; 264152 + version = "0.3.0.0"; 264153 + sha256 = "1vda3jhgnqbs0sw219li3s83vyqr1k1hzvy0prr2c4hv62cr47p3"; 264983 264154 libraryHaskellDepends = [ 264984 264155 base hspec-core mtl QuickCheck stm sydtest 264985 264156 ]; ··· 265033 264204 265034 264205 "sydtest-persistent-postgresql" = callPackage 265035 264206 ({ mkDerivation, base, monad-logger, mtl, persistent 265036 - , persistent-postgresql, persistent-template, sydtest 265037 - , sydtest-discover, sydtest-persistent, tmp-postgres 264207 + , persistent-postgresql, sydtest, sydtest-discover 264208 + , sydtest-persistent, tmp-postgres 265038 264209 }: 265039 264210 mkDerivation { 265040 264211 pname = "sydtest-persistent-postgresql"; 265041 - version = "0.2.0.0"; 265042 - sha256 = "0c3f9m3d7nryb2xvfp7zrqqi9136mgf89ccwg8vlaapnx1bqap43"; 264212 + version = "0.2.0.1"; 264213 + sha256 = "1j4mb5vxwcdpfnrbk1xk8cg9s93dzndhdg2b4xgb91ix1c2ly5rz"; 265043 264214 libraryHaskellDepends = [ 265044 264215 base monad-logger mtl persistent persistent-postgresql sydtest 265045 264216 sydtest-persistent tmp-postgres 265046 264217 ]; 265047 264218 testHaskellDepends = [ 265048 - base persistent persistent-postgresql persistent-template sydtest 264219 + base persistent persistent-postgresql sydtest 265049 264220 ]; 265050 264221 testToolDepends = [ sydtest-discover ]; 265051 264222 description = "An persistent-postgresql companion library for sydtest"; ··· 265055 264226 265056 264227 "sydtest-persistent-sqlite" = callPackage 265057 264228 ({ mkDerivation, base, monad-logger, mtl, persistent 265058 - , persistent-sqlite, persistent-template, sydtest, sydtest-discover 265059 - , sydtest-persistent 264229 + , persistent-sqlite, sydtest, sydtest-discover, sydtest-persistent 265060 264230 }: 265061 264231 mkDerivation { 265062 264232 pname = "sydtest-persistent-sqlite"; 265063 - version = "0.2.0.0"; 265064 - sha256 = "1l17n6hgc64ngjfdgg6c1zhnlg6ks9bvb7hbv5yf454bhbm6p83s"; 264233 + version = "0.2.0.1"; 264234 + sha256 = "1hy0i03pmdxmrw8nh07m8s7vr9af7m54gw0myn6flw9x57s2zk7v"; 265065 264235 libraryHaskellDepends = [ 265066 - base monad-logger mtl persistent persistent-sqlite 265067 - persistent-template sydtest sydtest-persistent 264236 + base monad-logger mtl persistent persistent-sqlite sydtest 264237 + sydtest-persistent 265068 264238 ]; 265069 - testHaskellDepends = [ 265070 - base persistent persistent-sqlite persistent-template sydtest 265071 - ]; 264239 + testHaskellDepends = [ base persistent persistent-sqlite sydtest ]; 265072 264240 testToolDepends = [ sydtest-discover ]; 265073 264241 description = "A persistent-sqlite companion library for sydtest"; 265074 264242 license = "unknown"; ··· 265109 264283 }) {}; 265110 264284 265111 264285 "sydtest-servant" = callPackage 265112 - ({ mkDerivation, base, http-client, servant, servant-client 265113 - , servant-server, stm, sydtest, sydtest-discover, sydtest-wai 264286 + ({ mkDerivation, base, http-client, servant-client, servant-server 264287 + , stm, sydtest, sydtest-discover, sydtest-wai 265114 264288 }: 265115 264289 mkDerivation { 265116 264290 pname = "sydtest-servant"; 265117 - version = "0.2.0.1"; 265118 - sha256 = "1yclwmcqp6wkcd980ha7a93dz99zc55mcw2z5fwhk3gfwdpdfyfj"; 264291 + version = "0.2.0.2"; 264292 + sha256 = "0gmaf1p7f588mvcf486wb32qjh74gvqyf965wczh5h0phgyg2f8z"; 265119 264293 libraryHaskellDepends = [ 265120 - base http-client servant servant-client servant-server sydtest 265121 - sydtest-wai 264294 + base http-client servant-client servant-server sydtest sydtest-wai 265122 264295 ]; 265123 264296 testHaskellDepends = [ 265124 - base servant servant-client servant-server stm sydtest sydtest-wai 264297 + base servant-client servant-server stm sydtest sydtest-wai 265125 264298 ]; 265126 264299 testToolDepends = [ sydtest-discover ]; 265127 264300 description = "A servant companion library for sydtest"; ··· 269687 268862 pname = "telegram-bot-simple"; 269688 268863 version = "0.5"; 269689 268864 sha256 = "0mzzq7lfl56h1i9dr617h5vcv47j2nsf77pkq18s8wk5zrc67r2w"; 268865 + revision = "1"; 268866 + editedCabalFile = "0nz2g3jfb3l66ixrxlz257pmg2qbg7l6wsi0q38iv8fl4483md2s"; 269690 268867 isLibrary = true; 269691 268868 isExecutable = true; 269692 268869 libraryHaskellDepends = [ ··· 271892 271065 license = lib.licenses.mit; 271893 271066 }) {}; 271894 271067 271068 + "text-builder_0_6_7" = callPackage 271069 + ({ mkDerivation, base, bytestring, criterion, QuickCheck 271070 + , quickcheck-instances, rerebase, tasty, tasty-hunit 271071 + , tasty-quickcheck, text, text-builder-dev 271072 + }: 271073 + mkDerivation { 271074 + pname = "text-builder"; 271075 + version = "0.6.7"; 271076 + sha256 = "00pl4jbqpcrfc00m3hf871g9k7s0n6xf2igb7ba1dnqh76w4lw4h"; 271077 + libraryHaskellDepends = [ base bytestring text text-builder-dev ]; 271078 + testHaskellDepends = [ 271079 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 271080 + tasty-quickcheck 271081 + ]; 271082 + benchmarkHaskellDepends = [ criterion rerebase ]; 271083 + description = "An efficient strict text builder"; 271084 + license = lib.licenses.mit; 271085 + hydraPlatforms = lib.platforms.none; 271086 + }) {}; 271087 + 271895 271088 "text-builder-dev" = callPackage 271896 271089 ({ mkDerivation, base, bytestring, criterion, deferred-folds 271897 271090 , QuickCheck, quickcheck-instances, rerebase, split, tasty ··· 271933 271086 benchmarkHaskellDepends = [ criterion rerebase ]; 271934 271087 description = "Edge of developments for \"text-builder\""; 271935 271088 license = lib.licenses.mit; 271089 + }) {}; 271090 + 271091 + "text-builder-dev_0_3_1" = callPackage 271092 + ({ mkDerivation, base, bytestring, criterion, deferred-folds 271093 + , QuickCheck, quickcheck-instances, rerebase, split, tasty 271094 + , tasty-hunit, tasty-quickcheck, text, transformers 271095 + }: 271096 + mkDerivation { 271097 + pname = "text-builder-dev"; 271098 + version = "0.3.1"; 271099 + sha256 = "18ipiiqrr0hz0yl7lqv2y730vl6mzqp0jg1yir097gp53ky6hzyw"; 271100 + libraryHaskellDepends = [ 271101 + base bytestring deferred-folds split text transformers 271102 + ]; 271103 + testHaskellDepends = [ 271104 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 271105 + tasty-quickcheck 271106 + ]; 271107 + benchmarkHaskellDepends = [ criterion rerebase ]; 271108 + description = "Edge of developments for \"text-builder\""; 271109 + license = lib.licenses.mit; 271110 + hydraPlatforms = lib.platforms.none; 271936 271111 }) {}; 271937 271112 271938 271113 "text-containers" = callPackage ··· 274611 273742 benchmarkHaskellDepends = [ base criterion weigh ]; 274612 273743 description = "Pattern language for improvised music"; 274613 273744 license = lib.licenses.gpl3Only; 273745 + }) {}; 273746 + 273747 + "tidal_1_8_0" = callPackage 273748 + ({ mkDerivation, async, base, bifunctors, bytestring, clock, colour 273749 + , containers, criterion, deepseq, exceptions, hint, hosc, microspec 273750 + , mtl, network, parsec, primitive, random, text, transformers 273751 + , weigh 273752 + }: 273753 + mkDerivation { 273754 + pname = "tidal"; 273755 + version = "1.8.0"; 273756 + sha256 = "19gh5l8hna9s4k5qw98qcr1s9wpqi6mf2kxd4kz6lzl3yxj56y6z"; 273757 + isLibrary = true; 273758 + isExecutable = true; 273759 + enableSeparateDataOutput = true; 273760 + libraryHaskellDepends = [ 273761 + base bifunctors bytestring clock colour containers deepseq 273762 + exceptions hosc mtl network parsec primitive random text 273763 + transformers 273764 + ]; 273765 + executableHaskellDepends = [ async base exceptions hint ]; 273766 + testHaskellDepends = [ 273767 + base containers deepseq hosc microspec parsec 273768 + ]; 273769 + benchmarkHaskellDepends = [ base criterion weigh ]; 273770 + description = "Pattern language for improvised music"; 273771 + license = lib.licenses.gpl3Only; 273772 + hydraPlatforms = lib.platforms.none; 274614 273773 }) {}; 274615 273774 274616 273775 "tidal-midi" = callPackage ··· 280483 279586 280484 279587 "twain" = callPackage 280485 279588 ({ mkDerivation, aeson, base, bytestring, case-insensitive, cookie 280486 - , either, exceptions, http-types, http2, text, time, transformers 280487 - , vault, wai, wai-extra 279589 + , either, exceptions, hspec, hspec-discover, hspec-wai, http-types 279590 + , http2, text, time, transformers, vault, wai, wai-extra 280488 279591 }: 280489 279592 mkDerivation { 280490 279593 pname = "twain"; 280491 - version = "2.0.1.0"; 280492 - sha256 = "0wal0qr3bacy7phgbvi2sif5q490jk8mhw675lpl2ch8dmmf769p"; 279594 + version = "2.1.0.0"; 279595 + sha256 = "0ffppxfdrjgqr3csm2cwsc2sgxgrl9dqx60n2zffnh3c7qc7z749"; 280493 279596 libraryHaskellDepends = [ 280494 279597 aeson base bytestring case-insensitive cookie either exceptions 280495 279598 http-types http2 text time transformers vault wai wai-extra 280496 279599 ]; 279600 + testHaskellDepends = [ base hspec hspec-discover hspec-wai ]; 279601 + testToolDepends = [ hspec-discover ]; 280497 279602 description = "Tiny web application framework for WAI"; 280498 279603 license = lib.licenses.bsd3; 280499 279604 hydraPlatforms = lib.platforms.none; ··· 281114 280215 testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; 281115 280216 description = "Text"; 281116 280217 license = lib.licenses.bsd3; 280218 + hydraPlatforms = lib.platforms.none; 281117 280219 }) {}; 281118 280220 281119 280221 "txt-sushi" = callPackage ··· 281975 281075 }) {}; 281976 281076 281977 281077 "typecheck-plugin-nat-simple" = callPackage 281978 - ({ mkDerivation, base, containers, ghc }: 281078 + ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra }: 281979 281079 mkDerivation { 281980 281080 pname = "typecheck-plugin-nat-simple"; 281981 - version = "0.1.0.4"; 281982 - sha256 = "0ybkkfk9ha3f1f5cq45r0rmnws0ai6imwic0srf78d6ys3q5n5n5"; 281081 + version = "0.1.0.6"; 281082 + sha256 = "0qhqys9kiisgy8gwfz92ffvmccgan2v95zxyfnbjqj1z9ks26br5"; 281983 281083 enableSeparateDataOutput = true; 281984 - libraryHaskellDepends = [ base containers ghc ]; 281985 - testHaskellDepends = [ base containers ghc ]; 281084 + libraryHaskellDepends = [ 281085 + base containers ghc ghc-tcplugins-extra 281086 + ]; 281087 + testHaskellDepends = [ base containers ghc ghc-tcplugins-extra ]; 281986 281088 description = "Simple type check plugin which calculate addition, subtraction and less-or-equal-than"; 281987 281089 license = lib.licenses.bsd3; 281090 + hydraPlatforms = lib.platforms.none; 281091 + broken = true; 281988 281092 }) {}; 281989 281093 281990 281094 "typed-admin" = callPackage ··· 284733 283829 benchmarkHaskellDepends = [ base criterion ]; 284734 283830 description = "Universal"; 284735 283831 license = lib.licenses.bsd3; 283832 + hydraPlatforms = lib.platforms.none; 284736 283833 }) {}; 284737 283834 284738 283835 "universal-binary" = callPackage ··· 285205 284300 license = lib.licenses.mit; 285206 284301 }) {}; 285207 284302 284303 + "unliftio_0_2_22_0" = callPackage 284304 + ({ mkDerivation, async, base, bytestring, containers, deepseq 284305 + , directory, filepath, gauge, hspec, process, QuickCheck, stm, time 284306 + , transformers, unix, unliftio-core 284307 + }: 284308 + mkDerivation { 284309 + pname = "unliftio"; 284310 + version = "0.2.22.0"; 284311 + sha256 = "125vzwkzp53i5n0yxy7bbivpzgf3c7ynsfhn04xk1ymy9fqsvi0z"; 284312 + libraryHaskellDepends = [ 284313 + async base bytestring deepseq directory filepath process stm time 284314 + transformers unix unliftio-core 284315 + ]; 284316 + testHaskellDepends = [ 284317 + async base bytestring containers deepseq directory filepath hspec 284318 + process QuickCheck stm time transformers unix unliftio-core 284319 + ]; 284320 + benchmarkHaskellDepends = [ 284321 + async base bytestring deepseq directory filepath gauge process stm 284322 + time transformers unix unliftio-core 284323 + ]; 284324 + description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; 284325 + license = lib.licenses.mit; 284326 + hydraPlatforms = lib.platforms.none; 284327 + }) {}; 284328 + 285208 284329 "unliftio-core" = callPackage 285209 284330 ({ mkDerivation, base, transformers }: 285210 284331 mkDerivation { ··· 285384 284453 license = lib.licenses.bsd3; 285385 284454 }) {}; 285386 284455 285387 - "unordered-containers_0_2_18_0" = callPackage 284456 + "unordered-containers_0_2_19_1" = callPackage 285388 284457 ({ mkDerivation, base, bytestring, ChasingBottoms, containers 285389 284458 , deepseq, hashable, hashmap, HUnit, mtl, nothunks, QuickCheck 285390 284459 , random, tasty, tasty-bench, tasty-hunit, tasty-quickcheck ··· 285392 284461 }: 285393 284462 mkDerivation { 285394 284463 pname = "unordered-containers"; 285395 - version = "0.2.18.0"; 285396 - sha256 = "09cvqdqaqbf0z5i0hbkgn7hkz44plniznj6zimdx0a86i6lhq3b2"; 284464 + version = "0.2.19.1"; 284465 + sha256 = "1li8s6qw8mgv6a7011y7hg0cn2nllv2g9sr9c1xb48nmw32vw9qv"; 285397 284466 libraryHaskellDepends = [ base deepseq hashable template-haskell ]; 285398 284467 testHaskellDepends = [ 285399 284468 base ChasingBottoms containers hashable HUnit nothunks QuickCheck ··· 286815 285884 pname = "util"; 286816 285885 version = "0.1.17.1"; 286817 285886 sha256 = "1qhx4r27sny25sykacf5xi5br4msq4335ghp5zc3fq0lii3866s7"; 286818 - revision = "1"; 286819 - editedCabalFile = "16hbcmcq2674j37gl808n5i02kv0vn3nwq5l2a6v5lj0dn34nicb"; 285887 + revision = "2"; 285888 + editedCabalFile = "0z9bf05jn5y9k5nrjksfpzjml5xchjrj3nk3jh90g8pygs2658rb"; 286820 285889 libraryHaskellDepends = [ base transformers ]; 286821 285890 description = "Utilities"; 286822 285891 license = lib.licenses.bsd3; 285892 + hydraPlatforms = lib.platforms.none; 285893 + broken = true; 286823 285894 }) {}; 286824 285895 286825 285896 "util-exception" = callPackage ··· 287228 286295 }: 287229 286296 mkDerivation { 287230 286297 pname = "uuid-orphans"; 287231 - version = "1.4.5"; 287232 - sha256 = "14d7gyf3sa2874r0dhj3ydvmb1iz174kp4pxz7aq984zb4m6d87z"; 287233 - revision = "2"; 287234 - editedCabalFile = "1202zn5f70f1yvmaknm8l34igg9ihyqs8lhch4ihvx9vcqxs3c0v"; 286298 + version = "1.4.6"; 286299 + sha256 = "0is5f2fn5ip93wla33dcjpl8hscpcwyv6cpxcmqs25vvbwz27kvz"; 287235 286300 libraryHaskellDepends = [ 287236 286301 base safecopy text th-lift uuid-types web-routes 287237 286302 ]; ··· 287531 286600 libraryHaskellDepends = [ base util ]; 287532 286601 description = "Type isomorphic to `Either` with `Applicative` instance which combines errors"; 287533 286602 license = lib.licenses.bsd3; 286603 + hydraPlatforms = lib.platforms.none; 287534 286604 }) {}; 287535 286605 287536 286606 "valid-names" = callPackage ··· 287738 286806 license = lib.licenses.mit; 287739 286807 }) {}; 287740 286808 286809 + "validity_0_12_0_1" = callPackage 286810 + ({ mkDerivation, base, hspec }: 286811 + mkDerivation { 286812 + pname = "validity"; 286813 + version = "0.12.0.1"; 286814 + sha256 = "1j9yswqas9dpb9mv132myfn1rky5vbh5gdvcxbb7p93k5c2y4g0w"; 286815 + libraryHaskellDepends = [ base ]; 286816 + testHaskellDepends = [ base hspec ]; 286817 + description = "Validity typeclass"; 286818 + license = lib.licenses.mit; 286819 + hydraPlatforms = lib.platforms.none; 286820 + }) {}; 286821 + 287741 286822 "validity-aeson" = callPackage 287742 286823 ({ mkDerivation, aeson, base, hspec, validity, validity-scientific 287743 286824 , validity-text, validity-unordered-containers, validity-vector 287744 286825 }: 287745 286826 mkDerivation { 287746 286827 pname = "validity-aeson"; 287747 - version = "0.2.0.4"; 287748 - sha256 = "1k0x6va9mmz0z9hgd1is71ks4fgbziw53rm7r6jsidp4ksszdzm0"; 287749 - revision = "1"; 287750 - editedCabalFile = "1zhqg6hac0js33yn0xw10pcp11hbygr95vmcmgpp3sdxdhgpbnmy"; 286828 + version = "0.2.0.5"; 286829 + sha256 = "0gk2mqhsailjp3130jgd17j2254kx28fnhhwyi1f66is1axw6cmj"; 287751 286830 libraryHaskellDepends = [ 287752 286831 aeson base validity validity-scientific validity-text 287753 286832 validity-unordered-containers validity-vector ··· 287778 286835 sha256 = "0ck7pn8c8srwdwpcx6x4ihixff07kigq8q9sjkc3zzyf54n93f3x"; 287779 286836 libraryHaskellDepends = [ base bytestring validity ]; 287780 286837 description = "Validity instances for bytestring"; 286838 + license = lib.licenses.mit; 286839 + }) {}; 286840 + 286841 + "validity-case-insensitive" = callPackage 286842 + ({ mkDerivation, base, case-insensitive, genvalidity-hspec, hspec 286843 + , validity 286844 + }: 286845 + mkDerivation { 286846 + pname = "validity-case-insensitive"; 286847 + version = "0.0.0.0"; 286848 + sha256 = "075pxgviqmf5xi4if15mbabn32xw11nss19a4il9z9ng1fsrcn1d"; 286849 + libraryHaskellDepends = [ base case-insensitive validity ]; 286850 + testHaskellDepends = [ 286851 + base case-insensitive genvalidity-hspec hspec validity 286852 + ]; 286853 + description = "Validity instances for case-insensitive"; 287781 286854 license = lib.licenses.mit; 287782 286855 }) {}; 287783 286856 ··· 287868 286909 libraryHaskellDepends = [ base bytestring text validity ]; 287869 286910 description = "Validity instances for text"; 287870 286911 license = lib.licenses.mit; 286912 + }) {}; 286913 + 286914 + "validity-text_0_3_1_3" = callPackage 286915 + ({ mkDerivation, base, bytestring, text, validity }: 286916 + mkDerivation { 286917 + pname = "validity-text"; 286918 + version = "0.3.1.3"; 286919 + sha256 = "0igxjd53aqlhhnjilbyjsxs4hjc8b21mpi504kc8c60q0ysq7vks"; 286920 + libraryHaskellDepends = [ base bytestring text validity ]; 286921 + description = "Validity instances for text"; 286922 + license = lib.licenses.mit; 286923 + hydraPlatforms = lib.platforms.none; 287871 286924 }) {}; 287872 286925 287873 286926 "validity-time" = callPackage ··· 291103 290132 }: 291104 290133 mkDerivation { 291105 290134 pname = "wai-extra"; 291106 - version = "3.1.8"; 291107 - sha256 = "0ddgdr0304b3kg50vfjsg3bxlhfp3vmsb4c8i80k8adqzh54hz5l"; 291108 - isLibrary = true; 291109 - isExecutable = true; 291110 - libraryHaskellDepends = [ 291111 - aeson ansi-terminal base base64-bytestring bytestring call-stack 291112 - case-insensitive containers cookie data-default-class directory 291113 - fast-logger http-types http2 HUnit iproute network resourcet 291114 - streaming-commons text time transformers unix vault wai wai-logger 291115 - word8 291116 - ]; 291117 - testHaskellDepends = [ 291118 - aeson base bytestring case-insensitive cookie fast-logger hspec 291119 - http-types http2 HUnit iproute resourcet text time transformers wai 291120 - zlib 291121 - ]; 291122 - description = "Provides some basic WAI handlers and middleware"; 291123 - license = lib.licenses.mit; 291124 - }) {}; 291125 - 291126 - "wai-extra_3_1_10" = callPackage 291127 - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring 291128 - , bytestring, call-stack, case-insensitive, containers, cookie 291129 - , data-default-class, directory, fast-logger, hspec, http-types 291130 - , http2, HUnit, iproute, network, resourcet, streaming-commons 291131 - , text, time, transformers, unix, vault, wai, wai-logger, word8 291132 - , zlib 291133 - }: 291134 - mkDerivation { 291135 - pname = "wai-extra"; 291136 290135 version = "3.1.10"; 291137 290136 sha256 = "0ldzwcjgj0k3ma25y4jaywv4g4bjjnn75ixlk1h4r4f3iapxm6kr"; 291138 290137 isLibrary = true; ··· 291121 290180 ]; 291122 290181 description = "Provides some basic WAI handlers and middleware"; 291123 290182 license = lib.licenses.mit; 291124 - hydraPlatforms = lib.platforms.none; 291125 290183 }) {}; 291126 290184 291127 290185 "wai-feature-flags" = callPackage ··· 293538 292598 }: 293539 292599 mkDerivation { 293540 292600 pname = "web-routes"; 293541 - version = "0.27.14.3"; 293542 - sha256 = "1a66m261ilqafbwwgjvalh3rz38qxcwxw9a99wr18lm0ah27lvx4"; 293543 - libraryHaskellDepends = [ 293544 - base blaze-builder bytestring exceptions ghc-prim http-types mtl 293545 - parsec split text utf8-string 293546 - ]; 293547 - testHaskellDepends = [ base hspec HUnit QuickCheck text ]; 293548 - description = "portable, type-safe URL routing"; 293549 - license = lib.licenses.bsd3; 293550 - }) {}; 293551 - 293552 - "web-routes_0_27_14_4" = callPackage 293553 - ({ mkDerivation, base, blaze-builder, bytestring, exceptions 293554 - , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck 293555 - , split, text, utf8-string 293556 - }: 293557 - mkDerivation { 293558 - pname = "web-routes"; 293559 292601 version = "0.27.14.4"; 293560 292602 sha256 = "10zpyxigrmp97x7xd9aw8kn925ygjf0jv8hppxmksjf9a6pvyfn1"; 293561 292603 libraryHaskellDepends = [ ··· 293547 292625 testHaskellDepends = [ base hspec HUnit QuickCheck text ]; 293548 292626 description = "portable, type-safe URL routing"; 293549 292627 license = lib.licenses.bsd3; 293550 - hydraPlatforms = lib.platforms.none; 293551 292628 }) {}; 293552 292629 293553 292630 "web-routes-boomerang" = callPackage 293554 - ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 293555 - mkDerivation { 293556 - pname = "web-routes-boomerang"; 293557 - version = "0.28.4.2"; 293558 - sha256 = "09vq5gfxibrbh65a4y94crcb99s848rx56grmfny89ccdv6r5a3y"; 293559 - libraryHaskellDepends = [ 293560 - base boomerang mtl parsec text web-routes 293561 - ]; 293562 - description = "Use boomerang for type-safe URL parsers/printers"; 293563 - license = lib.licenses.bsd3; 293564 - }) {}; 293565 - 293566 - "web-routes-boomerang_0_28_4_3" = callPackage 293567 292631 ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: 293568 292632 mkDerivation { 293569 292633 pname = "web-routes-boomerang"; ··· 293560 292652 ]; 293561 292653 description = "Use boomerang for type-safe URL parsers/printers"; 293562 292654 license = lib.licenses.bsd3; 293563 - hydraPlatforms = lib.platforms.none; 293564 292655 }) {}; 293565 292656 293566 292657 "web-routes-generics" = callPackage ··· 293579 292672 }: 293580 292673 mkDerivation { 293581 292674 pname = "web-routes-happstack"; 293582 - version = "0.23.12.1"; 293583 - sha256 = "06gifknfv6g9rd9f83r75hc3sld4xb4f1czxs9k5ca7n1l1vlccy"; 293584 - libraryHaskellDepends = [ 293585 - base bytestring happstack-server text web-routes 293586 - ]; 293587 - description = "Adds support for using web-routes with Happstack"; 293588 - license = lib.licenses.bsd3; 293589 - }) {}; 293590 - 293591 - "web-routes-happstack_0_23_12_2" = callPackage 293592 - ({ mkDerivation, base, bytestring, happstack-server, text 293593 - , web-routes 293594 - }: 293595 - mkDerivation { 293596 - pname = "web-routes-happstack"; 293597 292675 version = "0.23.12.2"; 293598 292676 sha256 = "01ks9c8bln8yiff7dqfm3ai7scci304q94w1zaqvzph57m1whrd6"; 293599 292677 libraryHaskellDepends = [ ··· 293586 292694 ]; 293587 292695 description = "Adds support for using web-routes with Happstack"; 293588 292696 license = lib.licenses.bsd3; 293589 - hydraPlatforms = lib.platforms.none; 293590 292697 }) {}; 293591 292698 293592 292699 "web-routes-hsp" = callPackage 293593 - ({ mkDerivation, base, hsp, text, web-routes }: 293594 - mkDerivation { 293595 - pname = "web-routes-hsp"; 293596 - version = "0.24.6.1"; 293597 - sha256 = "1arc22l7xk49fp80i1fkvj8xj71lqxrs2g5gnvjzwlkc0azzaz6a"; 293598 - libraryHaskellDepends = [ base hsp text web-routes ]; 293599 - description = "Adds XMLGenerator instance for RouteT monad"; 293600 - license = lib.licenses.bsd3; 293601 - }) {}; 293602 - 293603 - "web-routes-hsp_0_24_6_2" = callPackage 293604 292700 ({ mkDerivation, base, hsp, text, web-routes }: 293605 292701 mkDerivation { 293606 292702 pname = "web-routes-hsp"; ··· 293597 292717 libraryHaskellDepends = [ base hsp text web-routes ]; 293598 292718 description = "Adds XMLGenerator instance for RouteT monad"; 293599 292719 license = lib.licenses.bsd3; 293600 - hydraPlatforms = lib.platforms.none; 293601 292720 }) {}; 293602 292721 293603 292722 "web-routes-mtl" = callPackage ··· 293674 292795 }: 293675 292796 mkDerivation { 293676 292797 pname = "web-routes-wai"; 293677 - version = "0.24.3.1"; 293678 - sha256 = "0j9h22nsj7zf5qpf4i07jdcih00r2fivdilvj8wsylk4d23x27wf"; 293679 - libraryHaskellDepends = [ 293680 - base bytestring http-types text wai web-routes 293681 - ]; 293682 - description = "Library for maintaining correctness of URLs within an application"; 293683 - license = lib.licenses.bsd3; 293684 - }) {}; 293685 - 293686 - "web-routes-wai_0_24_3_2" = callPackage 293687 - ({ mkDerivation, base, bytestring, http-types, text, wai 293688 - , web-routes 293689 - }: 293690 - mkDerivation { 293691 - pname = "web-routes-wai"; 293692 292798 version = "0.24.3.2"; 293693 292799 sha256 = "1cdahkpw0194gdx11g4h4313ni0b6sdj9j5r666rgwwzr22wgql7"; 293694 292800 libraryHaskellDepends = [ ··· 293681 292817 ]; 293682 292818 description = "Library for maintaining correctness of URLs within an application"; 293683 292819 license = lib.licenses.bsd3; 293684 - hydraPlatforms = lib.platforms.none; 293685 292820 }) {}; 293686 292821 293687 292822 "web-routing" = callPackage ··· 299334 298471 pname = "xmlhtml"; 299335 298472 version = "0.2.5.2"; 299336 298473 sha256 = "1p2v1cj9jjwbqyb0fyv2201zd7ljz5d46qg5kwy7rz2bchbqd0b4"; 299337 - revision = "3"; 299338 - editedCabalFile = "00a7ymnzf87p6dv6mphziycyx6p97xbbbvg8fzbqa6am4pvr029z"; 298474 + revision = "4"; 298475 + editedCabalFile = "1q4f9pvyrkrw793kvd1lxzpzf49h2rs8zdmmhsli487sllflghnq"; 299339 298476 libraryHaskellDepends = [ 299340 298477 base blaze-builder blaze-html blaze-markup bytestring 299341 298478 bytestring-builder containers parsec text unordered-containers ··· 300861 299998 license = lib.licenses.mit; 300862 299999 }) {}; 300863 300000 300001 + "yaml-unscrambler_0_1_0_10" = callPackage 300002 + ({ mkDerivation, acc, attoparsec, attoparsec-data, attoparsec-time 300003 + , base, base64-bytestring, bytestring, conduit, containers, foldl 300004 + , hashable, libyaml, mtl, neat-interpolation, QuickCheck 300005 + , quickcheck-instances, rerebase, scientific, selective, tasty 300006 + , tasty-hunit, tasty-quickcheck, text, text-builder-dev, time 300007 + , transformers, unordered-containers, uuid, vector, yaml 300008 + }: 300009 + mkDerivation { 300010 + pname = "yaml-unscrambler"; 300011 + version = "0.1.0.10"; 300012 + sha256 = "07pwdd6w6gh0x05925hfk5mhzmig6rh9yb87rkyx15197r9hj7xw"; 300013 + libraryHaskellDepends = [ 300014 + acc attoparsec attoparsec-data attoparsec-time base 300015 + base64-bytestring bytestring conduit containers foldl hashable 300016 + libyaml mtl scientific selective text text-builder-dev time 300017 + transformers unordered-containers uuid vector yaml 300018 + ]; 300019 + testHaskellDepends = [ 300020 + foldl neat-interpolation QuickCheck quickcheck-instances rerebase 300021 + tasty tasty-hunit tasty-quickcheck 300022 + ]; 300023 + description = "Flexible declarative YAML parsing toolkit"; 300024 + license = lib.licenses.mit; 300025 + hydraPlatforms = lib.platforms.none; 300026 + }) {}; 300027 + 300864 300028 "yaml2owl" = callPackage 300865 300029 ({ mkDerivation, base, containers, directory, filepath, network 300866 300030 , network-uri, swish, text, xml, yaml ··· 302296 301406 }: 302297 301407 mkDerivation { 302298 301408 pname = "yesod-core"; 302299 - version = "1.6.22.0"; 302300 - sha256 = "0vc60va1lj7a409ljpipk90k89pycsf7zfpvdn0bvsqgsy75qgq6"; 301409 + version = "1.6.23"; 301410 + sha256 = "06v475xa2qbgsqx2gk1lz4y8xwb4d1ak06cw75ig3ji7d1knq4w2"; 302301 301411 libraryHaskellDepends = [ 302302 301412 aeson auto-update base blaze-html blaze-markup bytestring 302303 301413 case-insensitive cereal clientsession conduit conduit-extra ··· 302318 301428 ]; 302319 301429 description = "Creation of type-safe, RESTful web applications"; 302320 301430 license = lib.licenses.mit; 301431 + }) {}; 301432 + 301433 + "yesod-core_1_6_23_1" = callPackage 301434 + ({ mkDerivation, aeson, async, auto-update, base, blaze-html 301435 + , blaze-markup, bytestring, case-insensitive, cereal, clientsession 301436 + , conduit, conduit-extra, containers, cookie, deepseq, entropy 301437 + , fast-logger, gauge, hspec, hspec-expectations, http-types, HUnit 301438 + , memory, monad-logger, mtl, network, parsec, path-pieces 301439 + , primitive, random, resourcet, shakespeare, streaming-commons 301440 + , template-haskell, text, time, transformers, unix-compat, unliftio 301441 + , unordered-containers, vector, wai, wai-extra, wai-logger, warp 301442 + , word8 301443 + }: 301444 + mkDerivation { 301445 + pname = "yesod-core"; 301446 + version = "1.6.23.1"; 301447 + sha256 = "1s9wa9xw9ximivwv9bk7lf4w20yhlcy8vyp2i3j6w4fig918qxg9"; 301448 + libraryHaskellDepends = [ 301449 + aeson auto-update base blaze-html blaze-markup bytestring 301450 + case-insensitive cereal clientsession conduit conduit-extra 301451 + containers cookie deepseq entropy fast-logger http-types memory 301452 + monad-logger mtl parsec path-pieces primitive random resourcet 301453 + shakespeare template-haskell text time transformers unix-compat 301454 + unliftio unordered-containers vector wai wai-extra wai-logger warp 301455 + word8 301456 + ]; 301457 + testHaskellDepends = [ 301458 + async base bytestring clientsession conduit conduit-extra 301459 + containers cookie hspec hspec-expectations http-types HUnit network 301460 + path-pieces random resourcet shakespeare streaming-commons 301461 + template-haskell text transformers unliftio wai wai-extra warp 301462 + ]; 301463 + benchmarkHaskellDepends = [ 301464 + base blaze-html bytestring gauge shakespeare text 301465 + ]; 301466 + description = "Creation of type-safe, RESTful web applications"; 301467 + license = lib.licenses.mit; 301468 + hydraPlatforms = lib.platforms.none; 302321 301469 }) {}; 302322 301470 302323 301471 "yesod-crud" = callPackage ··· 303586 302658 }: 303587 302659 mkDerivation { 303588 302660 pname = "yesod-test"; 303589 - version = "1.6.12"; 303590 - sha256 = "1xgy7dzhqjgllqcpyyxs0spdg6vlz2c1sjvni7w7qnsf0ckyw2l8"; 303591 - libraryHaskellDepends = [ 303592 - aeson attoparsec base blaze-builder blaze-html bytestring 303593 - case-insensitive conduit containers cookie hspec-core html-conduit 303594 - http-types HUnit memory mtl network pretty-show text time 303595 - transformers wai wai-extra xml-conduit xml-types yesod-core 303596 - ]; 303597 - testHaskellDepends = [ 303598 - base bytestring containers cookie hspec html-conduit http-types 303599 - HUnit text unliftio unliftio-core wai wai-extra xml-conduit 303600 - yesod-core yesod-form 303601 - ]; 303602 - description = "integration testing for WAI/Yesod Applications"; 303603 - license = lib.licenses.mit; 303604 - }) {}; 303605 - 303606 - "yesod-test_1_6_13" = callPackage 303607 - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 303608 - , bytestring, case-insensitive, conduit, containers, cookie, hspec 303609 - , hspec-core, html-conduit, http-types, HUnit, memory, mtl, network 303610 - , pretty-show, text, time, transformers, unliftio, unliftio-core 303611 - , wai, wai-extra, xml-conduit, xml-types, yesod-core, yesod-form 303612 - }: 303613 - mkDerivation { 303614 - pname = "yesod-test"; 303615 302661 version = "1.6.13"; 303616 302662 sha256 = "1r5ip85x0shv00dvznd201fbl9gi90nkk33szmh0cz77x8960v19"; 303617 302663 libraryHaskellDepends = [ ··· 303601 302699 ]; 303602 302700 description = "integration testing for WAI/Yesod Applications"; 303603 302701 license = lib.licenses.mit; 303604 - hydraPlatforms = lib.platforms.none; 303605 302702 }) {}; 303606 302703 303607 302704 "yesod-test-json" = callPackage ··· 306374 305473 hydraPlatforms = lib.platforms.none; 306375 305474 broken = true; 306376 305475 }) {}; 305476 + 305477 + "zyre2" = callPackage 305478 + ({ mkDerivation, base, bytestring, containers, czmq, inline-c, text 305479 + , zyre 305480 + }: 305481 + mkDerivation { 305482 + pname = "zyre2"; 305483 + version = "0.1.1.0"; 305484 + sha256 = "0dqlp60mamqmga6g87qawxg1646czgzhqm441cxpw1dkrshv08jk"; 305485 + isLibrary = true; 305486 + isExecutable = true; 305487 + libraryHaskellDepends = [ 305488 + base bytestring containers inline-c text 305489 + ]; 305490 + librarySystemDepends = [ czmq zyre ]; 305491 + executableHaskellDepends = [ 305492 + base bytestring containers inline-c text 305493 + ]; 305494 + testHaskellDepends = [ base bytestring containers inline-c text ]; 305495 + description = "Haskell zyre bindings for reliable group messaging over local area networks"; 305496 + license = lib.licenses.mit; 305497 + hydraPlatforms = lib.platforms.none; 305498 + broken = true; 305499 + }) {inherit (pkgs) czmq; zyre = null;}; 306377 305500 306378 305501 }
+3 -3
pkgs/development/tools/purescript/spago/spago.nix
··· 14 14 }: 15 15 mkDerivation { 16 16 pname = "spago"; 17 - version = "0.20.8"; 17 + version = "0.20.9"; 18 18 src = fetchgit { 19 19 url = "https://github.com/purescript/spago.git"; 20 - sha256 = "0lakss2pg5kwbxqsmvzgkcc70l6j40cj9rarhkpcf0kxw98bb5x0"; 21 - rev = "744bdbbefc538750d4c36888ee53dc5d336314c4"; 20 + sha256 = "00vdqg7vaw3d9zwh47886lw9fhhlwjagzhaj3aqz4xm92pjavhih"; 21 + rev = "d16d4914200783fbd820ba89dbdf67270454faf5"; 22 22 fetchSubmodules = true; 23 23 }; 24 24 isLibrary = true;
+4 -1
pkgs/development/tools/purescript/spago/update.sh
··· 33 33 # TODO: This should ideally also automatically update the docsSearchVersion 34 34 # from pkgs/development/haskell/configuration-nix.nix. 35 35 36 - echo "Finished." 36 + echo 37 + echo "Finished. Make sure you run the following commands to confirm Spago builds correctly:" 38 + echo ' - `nix build -L -f ./. spago`' 39 + echo ' - `sudo nix build -L -f ./. spago.passthru.tests --option sandbox relaxed`'
+2
pkgs/top-level/release-haskell.nix
··· 317 317 random 318 318 QuickCheck 319 319 cabal2nix 320 + xhtml # isn't bundled for cross 320 321 ; 321 322 }; 322 323 ··· 328 327 random 329 328 QuickCheck 330 329 cabal2nix 330 + xhtml # isn't bundled for cross 331 331 ; 332 332 }; 333 333 };