lol

Merge pull request #228965 from NixOS/haskell-updates

haskellPackages: update stackage and hackage

authored by

sternenseemann and committed by
GitHub
b3fb03d0 e7d6e5b7

+981 -983
+6
maintainers/maintainer-list.nix
··· 14362 14362 githubId = 487050; 14363 14363 name = "Shea Levy"; 14364 14364 }; 14365 + shlok = { 14366 + email = "sd-nix-maintainer@quant.is"; 14367 + github = "shlok"; 14368 + githubId = 3000933; 14369 + name = "Shlok Datye"; 14370 + }; 14365 14371 shmish111 = { 14366 14372 email = "shmish111@gmail.com"; 14367 14373 github = "shmish111";
+2 -1
maintainers/scripts/haskell/merge-and-open-pr.sh
··· 85 85 echo "Updating Hackage hashes..." 86 86 ./maintainers/scripts/haskell/update-hackage.sh --do-commit 87 87 echo "Regenerating Hackage packages..." 88 - ./maintainers/scripts/haskell/regenerate-hackage-packages.sh --do-commit 88 + # Using fast here because after the hackage-update eval errors will likely break the transitive dependencies check. 89 + ./maintainers/scripts/haskell/regenerate-hackage-packages.sh --fast --do-commit 89 90 90 91 # Push these new commits to the haskell-updates branch 91 92 echo "Pushing commits just created to the remote haskell-updates branch..."
+13 -2
maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh
··· 1 1 #! /usr/bin/env nix-shell 2 2 #! nix-shell -i bash -p coreutils jq nix -I nixpkgs=. 3 3 4 + set -euo pipefail 5 + 6 + TMP_TEMPLATE=transitive-broken.XXXXXXX 7 + readonly TMP_TEMPLATE 8 + 9 + tmpfile=$(mktemp "$TMP_TEMPLATE") 10 + 11 + trap 'rm -f "${tmpfile}"' 0 12 + 4 13 config_file=pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml 5 14 6 - cat > $config_file << EOF 15 + cat > $tmpfile << EOF 7 16 # This file is automatically generated by 8 17 # maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh 9 18 # It is supposed to list all haskellPackages that cannot evaluate because they ··· 11 20 dont-distribute-packages: 12 21 EOF 13 22 14 - nix-instantiate --eval --option restrict-eval true -I . --strict --json maintainers/scripts/haskell/transitive-broken-packages.nix | jq -r . | LC_ALL=C.UTF-8 sort -i >> $config_file 23 + nix-instantiate --eval --option restrict-eval true -I . --strict --json maintainers/scripts/haskell/transitive-broken-packages.nix | jq -r . | LC_ALL=C.UTF-8 sort -i >> $tmpfile 24 + 25 + mv $tmpfile $config_file
+16 -3
pkgs/applications/science/logic/tamarin-prover/default.nix
··· 68 68 isExecutable = true; 69 69 70 70 patches = [ 71 - # Backport of https://github.com/tamarin-prover/tamarin-prover/pull/536 to 1.6.1 71 + # Backport unreleased patch allowing maude 3.2.1 72 + (fetchpatch { 73 + name = "tamarin-prover-allow-maude-3.2.1.patch"; 74 + url = "https://github.com/tamarin-prover/tamarin-prover/commit/bfcf56909479e154a203f0eeefa767f4d91b600d.patch"; 75 + sha256 = "1zjqzyxwnfp7z3h3li8jrxn9732dx6lyq9q3w2dsphmxbzrs64dg"; 76 + }) 77 + # Backport unreleased patch allowing maude 3.2.2 78 + (fetchpatch { 79 + name = "tamarin-prover-allow-maude-3.2.2.patch"; 80 + url = "https://github.com/tamarin-prover/tamarin-prover/commit/df1aa9fc4fcc72b6cf0bed0f71844efe3d8ad238.patch"; 81 + sha256 = "1bkwvyyz5d660jjh08z8wq9c3l40s0rxd2nsbn20xnl2nynyvqpy"; 82 + }) 83 + # Backport proposed patch allowing maude 3.3 and 3.3.1 72 84 (fetchpatch { 73 - url = "https://github.com/tamarin-prover/tamarin-prover/commit/95fbace0c5cbea57b5f320f6bb4d0387a4beab8d.patch"; 74 - sha256 = "sha256-Wjf7C208kcskEN1op//HQZnhoZopKQS42JvE8kV5NhI="; 85 + name = "tamarin-prover-allow-maude-3.3.patch"; 86 + url = "https://github.com/tamarin-prover/tamarin-prover/pull/544/commits/d0313b1a1bac7c92130773f7ccdd890f8aec286d.patch"; 87 + sha256 = "1jhlz8vp9a3aahyhj24yjcv4l1389y9kg878yfnq0rkkgvk0m681"; 75 88 }) 76 89 ]; 77 90
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "835ef6db789d6459876c083419d61e068de15dd3", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/835ef6db789d6459876c083419d61e068de15dd3.tar.gz", 4 - "sha256": "11506nwsd15b3jhdydr54j0jk5pzj3qhs92c167xv0f0czw5pj8a", 5 - "msg": "Update from Hackage at 2023-04-22T18:19:29Z" 2 + "commit": "54b1e8a3a0447c7b969fd97816c4c0821ba9fec1", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/54b1e8a3a0447c7b969fd97816c4c0821ba9fec1.tar.gz", 4 + "sha256": "1lryj166qysqkmdy9ll15dvg9f797zmy8brzpbavxb149pa6b0j9", 5 + "msg": "Update from Hackage at 2023-04-29T17:51:14Z" 6 6 }
+3 -3
pkgs/development/compilers/ghc/head.nix
··· 1 1 import ./common-hadrian.nix { 2 - version = "9.7.20230406"; 3 - rev = "04b80850c535fa8c11f435711577296a99499105"; 4 - sha256 = "190fpgg8sbcfp2l62vaqhk3wddkbz8vf5ivd7hw5gkcyyn5px3q9"; 2 + version = "9.7.20230505"; 3 + rev = "983ce55815f2dd57f84ee86eee97febf7d80b470"; 4 + sha256 = "sha256-U+LZIe9WbF/DF5Zn8w8wkRf4JJHxgdY2ahM517bwRo4="; 5 5 }
+3 -3
pkgs/development/haskell-modules/cabal2nix-unstable.nix
··· 8 8 }: 9 9 mkDerivation { 10 10 pname = "cabal2nix"; 11 - version = "unstable-2023-04-11"; 11 + version = "unstable-2023-05-05"; 12 12 src = fetchzip { 13 - url = "https://github.com/NixOS/cabal2nix/archive/010ff5c3b75d976d0f3a25b7caa0bc5bf2fdae9f.tar.gz"; 14 - sha256 = "1n38kmavdv6s1czqbiq6f6nagpv27s8xg0g0rvyh4l0x2my8wj4y"; 13 + url = "https://github.com/NixOS/cabal2nix/archive/078350047d358bb450d634d775493aba89b21212.tar.gz"; 14 + sha256 = "0rsdn2zyw0zr6pi3dg6cm3i310alppigdsv20iqpx0dzykkicywj"; 15 15 }; 16 16 postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot"; 17 17 isLibrary = true;
+47 -18
pkgs/development/haskell-modules/configuration-common.nix
··· 61 61 # not solvable short of recompiling GHC. Instead of adding 62 62 # allowInconsistentDependencies for all reverse dependencies of hspec-core, 63 63 # just upgrade to an hspec version without the offending dependency. 64 - hspec-core = cself.hspec-core_2_11_0; 65 - hspec-discover = cself.hspec-discover_2_11_0; 66 - hspec = cself.hspec_2_11_0; 64 + hspec-core = cself.hspec-core_2_11_0_1; 65 + hspec-discover = cself.hspec-discover_2_11_0_1; 66 + hspec = cself.hspec_2_11_0_1; 67 67 68 68 # hspec-discover and hspec-core depend on hspec-meta for testing which 69 69 # we need to avoid since it depends on ghc as well. Since hspec*_2_10* 70 70 # are overridden to take the versioned attributes as inputs, we need 71 71 # to make sure to override the versioned attribute with this fix. 72 - hspec-discover_2_11_0 = dontCheck csuper.hspec-discover_2_11_0; 72 + hspec-discover_2_11_0_1 = dontCheck csuper.hspec-discover_2_11_0_1; 73 73 74 74 # Prevent dependency on doctest which causes an inconsistent dependency 75 75 # due to depending on ghc which depends on directory etc. ··· 85 85 (super.guardian.overrideScope (self: super: 86 86 cabalInstallOverlay self super // { 87 87 # Needs at least path-io 1.8.0 due to canonicalizePath changes 88 - path-io = self.path-io_1_8_0; 88 + path-io = self.path-io_1_8_1; 89 89 } 90 90 )) 91 91 [ ··· 193 193 # For -f-auto see cabal.project in haskell-language-server. 194 194 ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex); 195 195 196 + # Test ldap server test/ldap.js is missing from sdist 197 + # https://github.com/supki/ldap-client/issues/18 198 + ldap-client-og = dontCheck super.ldap-client-og; 199 + 196 200 # For -fghc-lib see cabal.project in haskell-language-server. 197 201 stylish-haskell = if lib.versionAtLeast super.ghc.version "9.2" 198 202 then enableCabalFlag "ghc-lib" ··· 204 208 ########################################### 205 209 ### END HASKELL-LANGUAGE-SERVER SECTION ### 206 210 ########################################### 211 + 212 + # Remove when Stackage LTS advances to this version, should be LTS-20.20 213 + utility-ht = doDistribute self.utility-ht_0_0_17; 207 214 208 215 vector = overrideCabal (old: { 209 216 # Too strict bounds on doctest which isn't used, but is part of the configuration ··· 408 415 # 2022-01-29: Tests fail: https://github.com/psibi/streamly-bytestring/issues/27 409 416 # 2022-02-14: Strict upper bound: https://github.com/psibi/streamly-bytestring/issues/30 410 417 streamly-bytestring = dontCheck (doJailbreak super.streamly-bytestring); 418 + 419 + # The package requires streamly == 0.9.*. 420 + # (We can remove this once the assert starts failing.) 421 + streamly-archive = super.streamly-archive.override { 422 + streamly = 423 + assert (builtins.compareVersions pkgs.haskellPackages.streamly.version "0.9.0" < 0); 424 + pkgs.haskellPackages.streamly_0_9_0; 425 + }; 426 + 427 + # The package requires streamly == 0.9.*. 428 + # (We can remove this once the assert starts failing.) 429 + streamly-lmdb = super.streamly-lmdb.override { 430 + streamly = 431 + assert (builtins.compareVersions pkgs.haskellPackages.streamly.version "0.9.0" < 0); 432 + pkgs.haskellPackages.streamly_0_9_0; 433 + }; 411 434 412 435 # base bound 413 436 digit = doJailbreak super.digit; ··· 630 653 }) 631 654 ] (dontCheck super.snappy); 632 655 633 - # 2023-04-22: omfort-fftw 0.0.0.1 contains fixes to the tests. We can drop 634 - # this override as soon as stackage advances. 635 - comfort-fftw = doDistribute super.comfort-fftw_0_0_0_1; 636 - 637 656 # https://github.com/vincenthz/hs-crypto-pubkey/issues/20 638 657 crypto-pubkey = dontCheck super.crypto-pubkey; 639 658 ··· 1005 1024 testHaskellDepends = drv.testHaskellDepends or [] ++ [ self.hspec-meta_2_10_5 ]; 1006 1025 testToolDepends = drv.testToolDepends or [] ++ [ pkgs.git ]; 1007 1026 }) (super.sensei.override { 1008 - hspec = self.hspec_2_11_0; 1027 + hspec = self.hspec_2_11_0_1; 1009 1028 hspec-wai = self.hspec-wai.override { 1010 - hspec = self.hspec_2_11_0; 1029 + hspec = self.hspec_2_11_0_1; 1011 1030 }; 1012 1031 hspec-contrib = self.hspec-contrib.override { 1013 - hspec-core = self.hspec-core_2_11_0; 1032 + hspec-core = self.hspec-core_2_11_0_1; 1014 1033 }; 1015 1034 fsnotify = self.fsnotify_0_4_1_0; 1016 1035 }); ··· 1604 1623 # Also, we need QuickCheck-2.14.x to build the test suite, which isn't easy in LTS-16.x. 1605 1624 # So let's not go there and just disable the tests altogether. 1606 1625 hspec-core = dontCheck super.hspec-core; 1626 + hspec-core_2_7_10 = doDistribute (dontCheck super.hspec-core_2_7_10); 1607 1627 1608 1628 # tests seem to require a different version of hspec-core 1609 1629 hspec-contrib = dontCheck super.hspec-contrib; ··· 1674 1694 servant-openapi3 = dontCheck super.servant-openapi3; 1675 1695 1676 1696 # Give hspec 2.10.* correct dependency versions without overrideScope 1677 - hspec_2_11_0 = doDistribute (super.hspec_2_11_0.override { 1678 - hspec-discover = self.hspec-discover_2_11_0; 1679 - hspec-core = self.hspec-core_2_11_0; 1697 + hspec_2_11_0_1 = doDistribute (super.hspec_2_11_0_1.override { 1698 + hspec-discover = self.hspec-discover_2_11_0_1; 1699 + hspec-core = self.hspec-core_2_11_0_1; 1680 1700 }); 1681 - hspec-discover_2_11_0 = doDistribute (super.hspec-discover_2_11_0.override { 1701 + hspec-discover_2_11_0_1 = doDistribute (super.hspec-discover_2_11_0_1.override { 1682 1702 hspec-meta = self.hspec-meta_2_10_5; 1683 1703 }); 1684 - # Need to disable tests to prevent an infinite recursion if hspec-core_2_11_0 1704 + # Need to disable tests to prevent an infinite recursion if hspec-core_2_11_0_1 1685 1705 # is overlayed to hspec-core. 1686 - hspec-core_2_11_0 = doDistribute (dontCheck (super.hspec-core_2_11_0.override { 1706 + hspec-core_2_11_0_1 = doDistribute (dontCheck (super.hspec-core_2_11_0_1.override { 1687 1707 hspec-meta = self.hspec-meta_2_10_5; 1688 1708 })); 1689 1709 ··· 2632 2652 2633 2653 # libfuse3 fails to mount fuse file systems within the build environment 2634 2654 libfuse3 = dontCheck super.libfuse3; 2655 + 2656 + # Tests fail due to the newly-build fourmolu not being in PATH 2657 + # https://github.com/fourmolu/fourmolu/issues/231 2658 + fourmolu_0_12_0_0 = dontCheck (super.fourmolu_0_12_0_0.overrideScope (lself: lsuper: { 2659 + Cabal-syntax = lself.Cabal-syntax_3_10_1_0; 2660 + ghc-lib-parser = lself.ghc-lib-parser_9_6_1_20230312; 2661 + parsec = lself.parsec_3_1_16_1; 2662 + text = lself.text_2_0_2; 2663 + })); 2635 2664 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+23 -1
pkgs/development/haskell-modules/configuration-ghcjs.nix
··· 27 27 # GHCJS does not ship with the same core packages as GHC. 28 28 # https://github.com/ghcjs/ghcjs/issues/676 29 29 stm = doJailbreak self.stm_2_5_1_0; 30 - exceptions = dontCheck self.exceptions_0_10_5; 30 + exceptions = dontCheck self.exceptions_0_10_7; 31 31 32 32 ## OTHER PACKAGES 33 33 ··· 108 108 109 109 # Need hedgehog for tests, which fails to compile due to dep on concurrent-output 110 110 zenc = dontCheck super.zenc; 111 + 112 + hspec = self.hspec_2_7_10; 113 + hspec-core = self.hspec-core_2_7_10; 114 + hspec-meta = self.hspec-meta_2_7_8; 115 + hspec-discover = self.hspec-discover_2_7_10; 116 + 117 + # ReferenceError: h$primop_ShrinkSmallMutableArrayOp_Char is not defined 118 + unordered-containers = dontCheck super.unordered-containers; 119 + 120 + # Without this revert, test suites using tasty fail with: 121 + # ReferenceError: h$getMonotonicNSec is not defined 122 + # https://github.com/UnkindPartition/tasty/pull/345#issuecomment-1538216407 123 + tasty = appendPatch (pkgs.fetchpatch { 124 + name = "tasty-ghcjs.patch"; 125 + url = "https://github.com/UnkindPartition/tasty/commit/e692065642fd09b82acccea610ad8f49edd207df.patch"; 126 + revert = true; 127 + relative = "core"; 128 + hash = "sha256-ryABU2ywkVOEPC/jWv8humT3HaRpCwMYEk+Ux3hhi/M="; 129 + }) super.tasty; 130 + 131 + # Tests take unacceptably long. 132 + vector = dontCheck super.vector; 111 133 }
+6 -2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1173 1173 - directed-cubical 1174 1174 - direct-fastcgi 1175 1175 - direct-http 1176 + - directory-ospath-streaming # dependency missing in job https://hydra.nixos.org/build/219209527 at 2023-05-10 1176 1177 - direct-plugins 1177 1178 - direm 1179 + - disco # failure building library in job https://hydra.nixos.org/build/219207076 at 2023-05-10 1178 1180 - discordian-calendar 1179 1181 - discord-register 1180 1182 - discord-types ··· 1897 1899 - Grempa 1898 1900 - greplicate 1899 1901 - gridfs 1902 + - grid-proto # failure building library in job https://hydra.nixos.org/build/219248049 at 2023-05-10 1900 1903 - grids 1901 1904 - grm 1902 1905 - GroteTrap ··· 5018 5021 - sqlvalue-list 5019 5022 - srcinst 5020 5023 - srt-dhall 5024 + - srtree # dependency missing in job https://hydra.nixos.org/build/219208055 at 2023-05-10 5021 5025 - sscan 5022 5026 - ssh 5023 5027 - ssh-tunnel ··· 5106 5110 - streaming-png 5107 5111 - streaming-postgresql-simple 5108 5112 - streaming-sort 5109 - - streamly-archive 5110 5113 - streamly-binary 5111 5114 - streamly-cassava 5112 5115 - streamly-examples 5113 - - streamly-lmdb 5114 5116 - streamly-lz4 5115 5117 - streamly-process 5116 5118 - stream-monad ··· 5584 5586 - unamb-custom 5585 5587 - unbeliever 5586 5588 - unbounded-delays-units 5589 + - unbound-kind-generics # failure building library in job https://hydra.nixos.org/build/219201570 at 2023-05-10 5587 5590 - unboxed 5588 5591 - unboxed-containers 5589 5592 - unboxed-references ··· 5773 5776 - wai-middleware-travisci 5774 5777 - wai-middleware-validation 5775 5778 - wai-predicates 5779 + - wai-problem-details # dependency missing in job https://hydra.nixos.org/build/219206235 at 2023-05-10 5776 5780 - wai-rate-limit-postgres 5777 5781 - wai-rate-limit-redis 5778 5782 - wai-request-spec
+3
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 368 368 - taffybar 369 369 - arbtt 370 370 - lentil 371 + shlok: 372 + - streamly-archive 373 + - streamly-lmdb 371 374 sorki: 372 375 - cayenne-lpp 373 376 - blockfrost-client
+60 -60
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 20.18 1 + # Stackage LTS 20.19 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 16 16 - adjunctions ==4.4.2 17 17 - adler32 ==0.1.2.0 18 18 - advent-of-code-api ==0.2.8.4 19 - - aern2-mp ==0.2.11.0 19 + - aern2-mp ==0.2.15.0 20 20 - aern2-real ==0.2.11.0 21 21 - aeson ==2.0.3.0 22 22 - aeson-attoparsec ==0.0.0 ··· 43 43 - al ==0.1.4.2 44 44 - alarmclock ==0.7.0.6 45 45 - alerts ==0.1.2.0 46 - - alex ==3.2.7.2 46 + - alex ==3.2.7.3 47 47 - alex-meta ==0.3.0.13 48 48 - algebra ==4.3.1 49 49 - algebraic-graphs ==0.6.1 ··· 81 81 - app-settings ==0.2.0.12 82 82 - arbor-lru-cache ==0.1.1.1 83 83 - arbtt ==0.12.0.1 84 - - arithmoi ==0.12.0.2 84 + - arithmoi ==0.12.1.0 85 85 - array-memoize ==0.6.0 86 86 - arrow-extras ==0.1.0.1 87 87 - arrows ==0.4.4.2 ··· 217 217 - blaze-svg ==0.3.6.1 218 218 - blaze-textual ==0.2.3.1 219 219 - bloodhound ==0.21.0.0 220 - - bm ==0.1.0.2 220 + - bm ==0.1.1.0 221 221 - bmp ==1.2.6.3 222 222 - bnb-staking-csvs ==0.2.1.0 223 223 - BNFC ==2.9.4.1 ··· 253 253 - bugsnag-wai ==1.0.0.1 254 254 - bugsnag-yesod ==1.0.0.1 255 255 - bugzilla-redhat ==1.0.1 256 - - burrito ==2.0.1.5 256 + - burrito ==2.0.1.6 257 257 - butcher ==1.3.3.2 258 258 - bv ==0.5 259 259 - byteable ==0.1.1 260 260 - bytebuild ==0.3.12.0 261 - - byte-count-reader ==0.10.1.9 261 + - byte-count-reader ==0.10.1.10 262 262 - bytedump ==1.0 263 263 - bytehash ==0.1.0.0 264 264 - byte-order ==0.1.3.0 ··· 380 380 - combinatorial ==0.1.1 381 381 - comfort-array ==0.5.2.1 382 382 - comfort-array-shape ==0.0 383 - - comfort-fftw ==0.0 383 + - comfort-fftw ==0.0.0.1 384 384 - comfort-graph ==0.0.3.2 385 385 - commonmark ==0.2.2 386 386 - commonmark-extensions ==0.2.3.4 ··· 447 447 - cookie ==0.4.6 448 448 - copr-api ==0.1.0 449 449 - core-data ==0.3.9.1 450 - - core-program ==0.6.5.1 451 - - core-telemetry ==0.2.8.0 450 + - core-program ==0.6.6.0 451 + - core-telemetry ==0.2.9.1 452 452 - core-text ==0.3.8.1 453 453 - countable ==1.2 454 454 - country ==0.2.3 ··· 486 486 - crypt-sha512 ==0 487 487 - csp ==1.4.0 488 488 - css-text ==0.1.3.0 489 - - c-struct ==0.1.1.2 489 + - c-struct ==0.1.1.3 490 490 - csv ==0.1.2 491 491 - csv-conduit ==0.7.3.0 492 492 - ctrie ==0.2 ··· 580 580 - dhall ==1.41.2 581 581 - dhall-bash ==1.0.40 582 582 - dhall-json ==1.7.11 583 - - dhall-yaml ==1.2.11 583 + - dhall-yaml ==1.2.12 584 584 - di ==1.3 585 585 - diagrams ==1.4.0.1 586 586 - diagrams-builder ==0.8.0.5 ··· 613 613 - distributive ==0.6.2.1 614 614 - diversity ==0.8.1.0 615 615 - djinn-lib ==0.0.1.4 616 - - dl-fedora ==0.9.4 616 + - dl-fedora ==0.9.5 617 617 - dlist ==1.0 618 618 - dlist-instances ==0.1.1.1 619 619 - dlist-nonempty ==0.1.2 ··· 658 658 - dyre ==0.9.1 659 659 - eap ==0.9.0.2 660 660 - Earley ==0.13.0.1 661 - - easy-file ==0.2.3 661 + - easy-file ==0.2.4 662 662 - easy-logger ==0.1.0.7 663 663 - Ebnf2ps ==1.0.15 664 664 - echo ==0.1.4 ··· 860 860 - generic-data-surgery ==0.3.0.0 861 861 - generic-deriving ==1.14.3 862 862 - generic-functor ==1.1.0.0 863 - - generic-lens ==2.2.1.0 863 + - generic-lens ==2.2.2.0 864 864 - generic-lens-core ==2.2.1.0 865 865 - generic-monoid ==0.1.0.1 866 866 - generic-optics ==2.2.1.0 867 867 - GenericPretty ==1.2.2 868 868 - generic-random ==1.5.0.1 869 869 - generics-eot ==0.4.0.1 870 - - generics-sop ==0.5.1.2 870 + - generics-sop ==0.5.1.3 871 871 - generics-sop-lens ==0.2.0.1 872 872 - genvalidity ==1.1.0.0 873 873 - genvalidity-aeson ==1.0.0.1 ··· 1073 1073 - hedgehog-fakedata ==0.0.1.5 1074 1074 - hedgehog-fn ==1.0 1075 1075 - hedgehog-quickcheck ==0.1.1 1076 - - hedis ==0.15.1 1076 + - hedis ==0.15.2 1077 1077 - hedn ==0.3.0.4 1078 1078 - here ==1.2.13 1079 1079 - heredoc ==0.2.0.0 ··· 1318 1318 - inline-c-cpp ==0.5.0.0 1319 1319 - inliterate ==0.1.0 1320 1320 - input-parsers ==0.2.3.2 1321 - - insert-ordered-containers ==0.2.5.1 1321 + - insert-ordered-containers ==0.2.5.2 1322 1322 - inspection-testing ==0.4.6.1 1323 1323 - instance-control ==0.1.2.0 1324 1324 - integer-logarithms ==1.0.3.1 ··· 1376 1376 - js-flot ==0.8.3 1377 1377 - js-jquery ==3.3.1 1378 1378 - json ==0.10 1379 - - json-feed ==2.0.0.7 1379 + - json-feed ==2.0.0.8 1380 1380 - jsonifier ==0.2.1.2 1381 1381 - jsonpath ==0.3.0.0 1382 1382 - json-rpc ==1.0.4 ··· 1409 1409 - koji ==0.0.2 1410 1410 - l10n ==0.1.0.1 1411 1411 - labels ==0.3.3 1412 - - lackey ==2.0.0.5 1412 + - lackey ==2.0.0.6 1413 1413 - LambdaHack ==0.11.0.0 1414 1414 - lame ==0.2.0 1415 1415 - language-avro ==0.1.4.0 ··· 1452 1452 - lens-properties ==4.11.1 1453 1453 - lens-regex ==0.1.3 1454 1454 - lens-regex-pcre ==1.1.0.0 1455 - - lentil ==1.5.5.1 1455 + - lentil ==1.5.5.2 1456 1456 - LetsBeRational ==1.0.0.0 1457 1457 - leveldb-haskell ==0.6.5 1458 1458 - lexer-applicative ==2.1.0.2 ··· 1471 1471 - linear ==1.21.10 1472 1472 - linear-base ==0.3.1 1473 1473 - linear-generics ==0.2.1 1474 - - linebreak ==1.1.0.3 1474 + - linebreak ==1.1.0.4 1475 1475 - linenoise ==0.3.2 1476 1476 - linux-capabilities ==0.1.1.0 1477 1477 - linux-file-extents ==0.2.0.0 ··· 1516 1516 - lxd-client-config ==0.1.0.1 1517 1517 - lz4 ==0.2.3.1 1518 1518 - lz4-frame-conduit ==0.1.0.1 1519 - - lzma ==0.0.0.4 1519 + - lzma ==0.0.1.0 1520 1520 - lzma-clib ==5.2.2 1521 1521 - lzma-conduit ==1.2.3 1522 1522 - machines ==0.7.3 ··· 1619 1619 - monadlist ==0.0.2 1620 1620 - monadloc ==0.7.1 1621 1621 - monad-logger ==0.3.39 1622 - - monad-logger-aeson ==0.4.0.3 1622 + - monad-logger-aeson ==0.4.0.4 1623 1623 - monad-logger-json ==0.1.0.0 1624 1624 - monad-logger-logstash ==0.2.0.2 1625 1625 - monad-logger-prefix ==0.1.12 ··· 1652 1652 - mono-traversable-instances ==0.1.1.0 1653 1653 - mono-traversable-keys ==0.2.0 1654 1654 - more-containers ==0.2.2.2 1655 - - morpheus-graphql ==0.27.1 1656 - - morpheus-graphql-app ==0.27.1 1657 - - morpheus-graphql-client ==0.27.1 1658 - - morpheus-graphql-code-gen ==0.27.1 1659 - - morpheus-graphql-code-gen-utils ==0.27.1 1660 - - morpheus-graphql-core ==0.27.1 1661 - - morpheus-graphql-server ==0.27.1 1662 - - morpheus-graphql-subscriptions ==0.27.1 1663 - - morpheus-graphql-tests ==0.27.1 1655 + - morpheus-graphql ==0.27.2 1656 + - morpheus-graphql-app ==0.27.2 1657 + - morpheus-graphql-client ==0.27.2 1658 + - morpheus-graphql-code-gen ==0.27.2 1659 + - morpheus-graphql-code-gen-utils ==0.27.2 1660 + - morpheus-graphql-core ==0.27.2 1661 + - morpheus-graphql-server ==0.27.2 1662 + - morpheus-graphql-subscriptions ==0.27.2 1663 + - morpheus-graphql-tests ==0.27.2 1664 1664 - moss ==0.2.0.1 1665 1665 - mountpoints ==1.0.2 1666 1666 - mpi-hs ==0.7.2.0 ··· 1780 1780 - OneTuple ==0.3.1 1781 1781 - Only ==0.1 1782 1782 - oo-prototypes ==0.1.0.0 1783 - - opaleye ==0.9.6.1 1783 + - opaleye ==0.9.6.2 1784 1784 - OpenAL ==1.7.0.5 1785 1785 - openapi3 ==3.2.3 1786 1786 - open-browser ==0.2.1.0 ··· 1995 1995 - print-console-colors ==0.1.0.0 1996 1996 - probability ==0.2.8 1997 1997 - process-extras ==0.7.4 1998 - - product-profunctors ==0.11.0.3 1998 + - product-profunctors ==0.11.1.1 1999 1999 - profiterole ==0.1 2000 2000 - profiteur ==0.4.6.1 2001 2001 - profunctors ==5.6.2 ··· 2012 2012 - protobuf-simple ==0.1.1.1 2013 2013 - protocol-radius ==0.0.1.1 2014 2014 - protocol-radius-test ==0.1.0.1 2015 - - proto-lens ==0.7.1.2 2015 + - proto-lens ==0.7.1.3 2016 2016 - proto-lens-arbitrary ==0.1.2.11 2017 - - proto-lens-optparse ==0.1.1.9 2017 + - proto-lens-optparse ==0.1.1.10 2018 2018 - proto-lens-protobuf-types ==0.7.1.2 2019 2019 - proto-lens-protoc ==0.7.1.1 2020 - - proto-lens-runtime ==0.7.0.3 2020 + - proto-lens-runtime ==0.7.0.4 2021 2021 - proto-lens-setup ==0.4.0.6 2022 2022 - protolude ==0.3.3 2023 2023 - proxied ==0.3.1 ··· 2035 2035 - PyF ==0.11.1.1 2036 2036 - qchas ==1.1.0.1 2037 2037 - qm-interpolated-string ==0.3.1.0 2038 - - qrcode-core ==0.9.6 2039 - - qrcode-juicypixels ==0.8.4 2038 + - qrcode-core ==0.9.7 2039 + - qrcode-juicypixels ==0.8.5 2040 2040 - quadratic-irrational ==0.1.1 2041 2041 - QuasiText ==0.1.2.6 2042 2042 - QuickCheck ==2.14.2 ··· 2049 2049 - quickcheck-io ==0.2.0 2050 2050 - quickcheck-simple ==0.1.1.1 2051 2051 - quickcheck-special ==0.1.0.6 2052 - - quickcheck-state-machine ==0.7.1 2052 + - quickcheck-state-machine ==0.7.2 2053 2053 - quickcheck-text ==0.1.2.1 2054 2054 - quickcheck-transformer ==0.3.1.2 2055 2055 - quickcheck-unicode ==1.0.1.0 ··· 2060 2060 - rainbow ==0.34.2.2 2061 2061 - rainbox ==0.26.0.0 2062 2062 - ral ==0.2.1 2063 - - rampart ==2.0.0.5 2063 + - rampart ==2.0.0.6 2064 2064 - ramus ==0.1.2 2065 2065 - rando ==0.0.0.4 2066 2066 - random ==1.2.1.1 2067 2067 - random-bytestring ==0.1.4 2068 - - random-fu ==0.3.0.0 2068 + - random-fu ==0.3.0.1 2069 2069 - random-shuffle ==0.0.4 2070 2070 - random-tree ==0.6.0.5 2071 2071 - range ==0.3.0.2 ··· 2077 2077 - rank2classes ==1.4.6 2078 2078 - Rasterific ==0.7.5.4 2079 2079 - rasterific-svg ==0.3.3.2 2080 - - ratel ==2.0.0.7 2080 + - ratel ==2.0.0.8 2081 2081 - ratel-wai ==2.0.0.4 2082 2082 - ratio-int ==0.1.2 2083 2083 - rattle ==0.2 ··· 2151 2151 - resource-pool ==0.2.3.2 2152 2152 - resourcet ==1.2.6 2153 2153 - result ==0.2.6.0 2154 - - retry ==0.9.3.0 2154 + - retry ==0.9.3.1 2155 2155 - rev-state ==0.1.2 2156 2156 - rex ==0.6.2 2157 2157 - rfc1751 ==0.1.3 ··· 2181 2181 - run-haskell-module ==0.0.2 2182 2182 - runmemo ==1.0.0.1 2183 2183 - run-st ==0.1.1.0 2184 - - rvar ==0.3.0.1 2184 + - rvar ==0.3.0.2 2185 2185 - s3-signer ==0.5.0.0 2186 2186 - safe ==0.3.19 2187 2187 - safe-coloured-text ==0.2.0.1 ··· 2203 2203 - sample-frame-np ==0.0.5 2204 2204 - sampling ==0.3.5 2205 2205 - sandi ==0.5 2206 - - sandwich ==0.1.3.1 2206 + - sandwich ==0.1.3.2 2207 2207 - sandwich-hedgehog ==0.1.1.0 2208 - - sandwich-quickcheck ==0.1.0.6 2208 + - sandwich-quickcheck ==0.1.0.7 2209 2209 - sandwich-slack ==0.1.1.0 2210 2210 - sandwich-webdriver ==0.1.2.0 2211 2211 - say ==0.1.0.1 ··· 2221 2221 - scientist ==0.0.0.0 2222 2222 - scotty ==0.12.1 2223 2223 - scrypt ==0.5.0 2224 - - sdl2 ==2.5.4.0 2224 + - sdl2 ==2.5.5.0 2225 2225 - sdl2-gfx ==0.3.0.0 2226 2226 - sdl2-image ==2.1.0.0 2227 2227 - sdl2-mixer ==1.2.0.0 ··· 2244 2244 - semiring-simple ==1.0.0.1 2245 2245 - semver ==0.4.0.1 2246 2246 - sendfile ==0.7.11.4 2247 - - sendgrid-v3 ==1.0.0.0 2247 + - sendgrid-v3 ==1.0.0.1 2248 2248 - seqalign ==0.2.0.4 2249 2249 - seqid ==0.6.2 2250 2250 - seqid-streams ==0.7.2 ··· 2335 2335 - simple-media-timestamp-attoparsec ==0.1.0.0 2336 2336 - simple-media-timestamp-formatting ==0.1.1.0 2337 2337 - simple-reflect ==0.3.3 2338 - - simple-sendfile ==0.2.30 2338 + - simple-sendfile ==0.2.31 2339 2339 - simple-vec3 ==0.6.0.1 2340 2340 - since ==0.0.0 2341 2341 - singleton-bool ==0.1.6 ··· 2423 2423 - stm-containers ==1.2.0.2 2424 2424 - stm-delay ==0.1.1.1 2425 2425 - stm-extras ==0.1.0.3 2426 - - stm-hamt ==1.2.0.10 2426 + - stm-hamt ==1.2.0.11 2427 2427 - stm-lifted ==2.5.0.0 2428 2428 - STMonadTrans ==0.4.6 2429 2429 - stm-split ==0.0.2.1 ··· 2451 2451 - strict-base-types ==0.7 2452 2452 - strict-concurrency ==0.2.4.3 2453 2453 - strict-lens ==0.4.0.2 2454 - - strict-list ==0.1.7 2454 + - strict-list ==0.1.7.1 2455 2455 - strict-tuple ==0.1.5.2 2456 2456 - strict-wrapper ==0.0.0.0 2457 2457 - stringable ==0.1.3 ··· 2460 2460 - string-combinators ==0.6.0.5 2461 2461 - string-conv ==0.2.0 2462 2462 - string-conversions ==0.4.0.1 2463 - - string-interpolate ==0.3.2.0 2463 + - string-interpolate ==0.3.2.1 2464 2464 - stringprep ==1.0.0 2465 2465 - string-qq ==0.0.4 2466 2466 - string-random ==0.1.4.3 ··· 2482 2482 - svg-builder ==0.1.1 2483 2483 - SVGFonts ==1.8.0.1 2484 2484 - svg-tree ==0.6.2.4 2485 - - swagger2 ==2.8.6 2485 + - swagger2 ==2.8.7 2486 2486 - swish ==0.10.4.0 2487 2487 - syb ==0.7.2.3 2488 2488 - syb-with-class ==0.6.1.14 ··· 2530 2530 - tasty ==1.4.3 2531 2531 - tasty-ant-xml ==1.1.8 2532 2532 - tasty-autocollect ==0.3.2.0 2533 - - tasty-bench ==0.3.3 2533 + - tasty-bench ==0.3.4 2534 2534 - tasty-dejafu ==2.1.0.0 2535 2535 - tasty-discover ==4.2.2 2536 2536 - tasty-expected-failure ==0.12.3 ··· 2649 2649 - time-manager ==0.0.0 2650 2650 - time-parsers ==0.1.2.1 2651 2651 - timerep ==2.1.0.0 2652 - - timers-tick ==0.5.0.3 2652 + - timers-tick ==0.5.0.4 2653 2653 - timer-wheel ==0.4.0.1 2654 2654 - timespan ==0.4.0.0 2655 2655 - time-units ==1.0.0 ··· 2732 2732 - ulid ==0.3.2.0 2733 2733 - unagi-chan ==0.4.1.4 2734 2734 - unbounded-delays ==0.1.1.1 2735 - - unbound-generics ==0.4.2 2735 + - unbound-generics ==0.4.3 2736 2736 - unboxed-ref ==0.4.0.0 2737 2737 - unboxing-vector ==0.2.0.0 2738 2738 - uncaught-exception ==0.1.0 ··· 2824 2824 - vector-bytes-instances ==0.1.1 2825 2825 - vector-circular ==0.1.4 2826 2826 - vector-extras ==0.2.8 2827 - - vector-instances ==3.4 2827 + - vector-instances ==3.4.2 2828 2828 - vector-mmap ==0.0.3 2829 2829 - vector-rotcev ==0.1.0.2 2830 2830 - vector-sized ==1.5.0 ··· 2878 2878 - warp-tls-uid ==0.2.0.6 2879 2879 - wave ==0.2.0 2880 2880 - wcwidth ==0.0.2 2881 - - webby ==1.1.0 2881 + - webby ==1.1.1 2882 2882 - webdriver ==0.10.0.1 2883 2883 - webex-teams-api ==0.2.0.1 2884 2884 - webex-teams-conduit ==0.2.0.1
+2 -2
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 1270 1270 - distribution-plot 1271 1271 - dixi 1272 1272 - dl-fedora 1273 - - dl-fedora_0_9_5 1274 1273 - dmenu-pkill 1275 1274 - dmenu-pmount 1276 1275 - dmenu-search ··· 1284 1283 - doc-review 1285 1284 - domain 1286 1285 - domain-aeson 1286 + - domain-aeson_0_1_1_1 1287 1287 - domain-cereal 1288 1288 - domaindriven 1289 1289 - dormouse-client ··· 3007 3007 - pandoc-crossref_0_3_15_2 3008 3008 - pandoc-highlighting-extensions 3009 3009 - pandoc-japanese-filters 3010 + - pandoc-symreg 3010 3011 - pandora-io 3011 3012 - papa 3012 3013 - papa-base ··· 3247 3248 - quickcheck-relaxng 3248 3249 - quickcheck-state-machine 3249 3250 - quickcheck-state-machine-distributed 3250 - - quickcheck-state-machine_0_7_2 3251 3251 - quicktest 3252 3252 - quipper 3253 3253 - quipper-algorithms
+8 -9
pkgs/development/haskell-modules/configuration-nix.nix
··· 514 514 libraryHaskellDepends = 515 515 (drv.libraryHaskellDepends or []) 516 516 ++ lib.optionals (!(pkgs.stdenv.hostPlatform.isAarch64 517 - || pkgs.stdenv.hostPlatform.isx86_64)) [ 517 + || pkgs.stdenv.hostPlatform.isx86_64) 518 + || (self.ghc.isGhcjs or false)) [ 518 519 self.unbounded-delays 519 520 ]; 520 521 }) super.tasty; ··· 906 907 # Pass the correct libarchive into the package. 907 908 streamly-archive = super.streamly-archive.override { archive = pkgs.libarchive; }; 908 909 910 + # Pass the correct lmdb into the package. 911 + streamly-lmdb = super.streamly-lmdb.override { lmdb = pkgs.lmdb; }; 912 + 909 913 hlint = overrideCabal (drv: { 910 914 postInstall = '' 911 915 install -Dm644 data/hlint.1 -t "$out/share/man/man1" ··· 1014 1018 fsnotify = dontCheck super.fsnotify_0_4_1_0; 1015 1019 hnix-store-core = super.hnix-store-core_0_6_1_0; 1016 1020 }); 1017 - 1018 - hercules-ci-api-core = 1019 - # 2023-05-02: Work around a corrupted file on cache.nixos.org. This is a hash for x86_64-linux. Remove when it has changed. 1020 - if super.hercules-ci-api-core.drvPath == "/nix/store/dgy3w43zypmdswc7a7zis0njgljqvnq0-hercules-ci-api-core-0.1.5.0.drv" 1021 - then super.hercules-ci-api-core.overrideAttrs (_: { 1022 - dummyAttr = 1; 1023 - }) 1024 - else super.hercules-ci-api-core; 1025 1021 1026 1022 hercules-ci-agent = super.hercules-ci-agent.override { nix = self.hercules-ci-cnix-store.passthru.nixPackage; }; 1027 1023 hercules-ci-cnix-expr = addTestToolDepend pkgs.git (super.hercules-ci-cnix-expr.override { nix = self.hercules-ci-cnix-store.passthru.nixPackage; }); ··· 1233 1229 emanote = addBuildDepend pkgs.stork super.emanote; 1234 1230 1235 1231 keid-render-basic = addBuildTool pkgs.glslang super.keid-render-basic; 1232 + 1233 + # Disable checks to break dependency loop with SCalendar 1234 + scalendar = dontCheck super.scalendar; 1236 1235 1237 1236 }
+775 -874
pkgs/development/haskell-modules/hackage-packages.nix
··· 14937 14937 mainProgram = "nanoid"; 14938 14938 }) {}; 14939 14939 14940 + "NanoID_3_3_0" = callPackage 14941 + ({ mkDerivation, aeson, base, bytestring, cereal, extra, mwc-random 14942 + , optparse-applicative, text 14943 + }: 14944 + mkDerivation { 14945 + pname = "NanoID"; 14946 + version = "3.3.0"; 14947 + sha256 = "1334i8hqacsd2nr9798dibdfn7dci2r4afhhghch5nwcxm15qk6i"; 14948 + isLibrary = true; 14949 + isExecutable = true; 14950 + libraryHaskellDepends = [ 14951 + aeson base bytestring cereal extra mwc-random text 14952 + ]; 14953 + executableHaskellDepends = [ 14954 + base bytestring mwc-random optparse-applicative 14955 + ]; 14956 + description = "NanoID generator"; 14957 + license = lib.licenses.bsd3; 14958 + hydraPlatforms = lib.platforms.none; 14959 + mainProgram = "nanoid"; 14960 + }) {}; 14961 + 14940 14962 "NanoProlog" = callPackage 14941 14963 ({ mkDerivation, base, containers, ListLike, uu-parsinglib }: 14942 14964 mkDerivation { ··· 17394 17416 version = "0.0.5"; 17395 17417 sha256 = "0p46b105lixbxqjz8pwxf4asl4s7zdh2ss3nvgmp1rclqfg6cwrq"; 17396 17418 libraryHaskellDepends = [ base ]; 17397 - description = "Pure haskell Red-Black-Tree implementation"; 17419 + description = "Pure haskell Red-Black-Tree implemetation"; 17398 17420 license = lib.licenses.bsd3; 17399 17421 }) {}; 17400 17422 ··· 20821 20843 }: 20822 20844 mkDerivation { 20823 20845 pname = "TeX-my-math"; 20824 - version = "0.202.2.0"; 20825 - sha256 = "1w074jr2qr603hjh644cvlc0n1miaz10r8mhkskq39jn184kriyl"; 20826 - revision = "1"; 20827 - editedCabalFile = "1chcybl7wf1kkf4mnjxm3vd7hdjmq6fkc8x1hn9fydln57wjzw0v"; 20846 + version = "0.203.0.0"; 20847 + sha256 = "03c8bn7m5a9rjsna55g1qrfwnn195kgz4dm30czrb6blpd0giyhy"; 20828 20848 isLibrary = true; 20829 20849 isExecutable = true; 20830 20850 libraryHaskellDepends = [ ··· 25524 25544 }: 25525 25545 mkDerivation { 25526 25546 pname = "aern2-mp"; 25527 - version = "0.2.11.0"; 25528 - sha256 = "17syak48rqqlssk4gsxdfl21sidfypfwsyfmxsakahflcvl9jgpy"; 25529 - libraryHaskellDepends = [ 25530 - base cdar-mBound collect-errors deepseq hspec integer-logarithms 25531 - mixed-types-num QuickCheck reflection regex-tdfa template-haskell 25532 - ]; 25533 - testHaskellDepends = [ 25534 - base cdar-mBound collect-errors deepseq hspec integer-logarithms 25535 - mixed-types-num QuickCheck reflection regex-tdfa template-haskell 25536 - ]; 25537 - description = "Multi-precision ball (interval) arithmetic"; 25538 - license = lib.licenses.bsd3; 25539 - }) {}; 25540 - 25541 - "aern2-mp_0_2_15_0" = callPackage 25542 - ({ mkDerivation, base, cdar-mBound, collect-errors, deepseq, hspec 25543 - , integer-logarithms, mixed-types-num, QuickCheck, reflection 25544 - , regex-tdfa, template-haskell 25545 - }: 25546 - mkDerivation { 25547 - pname = "aern2-mp"; 25548 25547 version = "0.2.15.0"; 25549 25548 sha256 = "04kjjd86q2hj13y8dvnqfir6dhqy2n5nx6xr7q19f0j0sc0654vl"; 25550 25549 libraryHaskellDepends = [ ··· 25557 25556 ]; 25558 25557 description = "Multi-precision ball (interval) arithmetic"; 25559 25558 license = lib.licenses.bsd3; 25560 - hydraPlatforms = lib.platforms.none; 25561 25559 }) {}; 25562 25560 25563 25561 "aern2-real" = callPackage ··· 26625 26623 license = lib.licenses.bsd3; 26626 26624 }) {}; 26627 26625 26628 - "aeson-typescript_0_5_0_0" = callPackage 26626 + "aeson-typescript_0_6_0_0" = callPackage 26629 26627 ({ mkDerivation, aeson, base, bytestring, containers, directory 26630 26628 , filepath, hspec, mtl, process, string-interpolate 26631 26629 , template-haskell, temporary, text, th-abstraction, transformers ··· 26633 26631 }: 26634 26632 mkDerivation { 26635 26633 pname = "aeson-typescript"; 26636 - version = "0.5.0.0"; 26637 - sha256 = "0c1pgfzwp91n1ni25lg0pvhr3p513523dbq54sj7mfa7ri85290q"; 26634 + version = "0.6.0.0"; 26635 + sha256 = "1dlbxma80vjw19c8b5b0msmsd55rpnxxqb147ppy1w4d4yvsmrr3"; 26638 26636 libraryHaskellDepends = [ 26639 26637 aeson base containers mtl string-interpolate template-haskell text 26640 26638 th-abstraction transformers unordered-containers ··· 26683 26681 ]; 26684 26682 description = "API for parsing \"aeson\" JSON tree into Haskell types"; 26685 26683 license = lib.licenses.mit; 26684 + }) {}; 26685 + 26686 + "aeson-value-parser_0_19_7_1" = callPackage 26687 + ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable 26688 + , megaparsec, mtl, scientific, text, transformers 26689 + , unordered-containers, vector 26690 + }: 26691 + mkDerivation { 26692 + pname = "aeson-value-parser"; 26693 + version = "0.19.7.1"; 26694 + sha256 = "1w62li1g1hfdc9hf45x49fgdqs6jap06pq6nq9wr9vlmcnrzb34i"; 26695 + libraryHaskellDepends = [ 26696 + aeson attoparsec base bytestring hashable megaparsec mtl scientific 26697 + text transformers unordered-containers vector 26698 + ]; 26699 + description = "API for parsing \"aeson\" JSON tree into Haskell types"; 26700 + license = lib.licenses.mit; 26701 + hydraPlatforms = lib.platforms.none; 26686 26702 }) {}; 26687 26703 26688 26704 "aeson-via" = callPackage ··· 27576 27592 }: 27577 27593 mkDerivation { 27578 27594 pname = "alex"; 27579 - version = "3.2.7.2"; 27580 - sha256 = "04yfq9inq6waw1imkj3xqfg2riijzzwlnphbll7r9gjvraw8gpmy"; 27581 - isLibrary = false; 27582 - isExecutable = true; 27583 - enableSeparateDataOutput = true; 27584 - executableHaskellDepends = [ array base containers directory ]; 27585 - executableToolDepends = [ happy ]; 27586 - testHaskellDepends = [ base process ]; 27587 - description = "Alex is a tool for generating lexical analysers in Haskell"; 27588 - license = lib.licenses.bsd3; 27589 - mainProgram = "alex"; 27590 - }) {}; 27591 - 27592 - "alex_3_2_7_3" = callPackage 27593 - ({ mkDerivation, array, base, containers, directory, happy, process 27594 - }: 27595 - mkDerivation { 27596 - pname = "alex"; 27597 27595 version = "3.2.7.3"; 27598 27596 sha256 = "0jdsyd6k0h2c952gqgqksh5g40gdb0lrrlpivimfxkpd14mv6rh6"; 27599 27597 isLibrary = false; ··· 27604 27602 testHaskellDepends = [ base process ]; 27605 27603 description = "Alex is a tool for generating lexical analysers in Haskell"; 27606 27604 license = lib.licenses.bsd3; 27607 - hydraPlatforms = lib.platforms.none; 27608 27605 mainProgram = "alex"; 27609 27606 }) {}; 27610 27607 ··· 35010 35007 }: 35011 35008 mkDerivation { 35012 35009 pname = "arithmoi"; 35013 - version = "0.12.0.2"; 35014 - sha256 = "03mxkzcg2pik4p1ik648h3w953zmf47ycafm2gd7hgg4gadsnslj"; 35015 - configureFlags = [ "-f-llvm" ]; 35016 - libraryHaskellDepends = [ 35017 - array base chimera constraints containers deepseq exact-pi 35018 - integer-gmp integer-logarithms integer-roots mod random semirings 35019 - transformers vector 35020 - ]; 35021 - testHaskellDepends = [ 35022 - base containers exact-pi integer-gmp integer-roots mod QuickCheck 35023 - quickcheck-classes random semirings smallcheck tasty tasty-hunit 35024 - tasty-quickcheck tasty-rerun tasty-smallcheck transformers vector 35025 - ]; 35026 - benchmarkHaskellDepends = [ 35027 - array base constraints containers deepseq integer-logarithms mod 35028 - random semirings tasty-bench vector 35029 - ]; 35030 - description = "Efficient basic number-theoretic functions"; 35031 - license = lib.licenses.mit; 35032 - }) {}; 35033 - 35034 - "arithmoi_0_12_1_0" = callPackage 35035 - ({ mkDerivation, array, base, chimera, constraints, containers 35036 - , deepseq, exact-pi, integer-gmp, integer-logarithms, integer-roots 35037 - , mod, QuickCheck, quickcheck-classes, random, semirings 35038 - , smallcheck, tasty, tasty-bench, tasty-hunit, tasty-quickcheck 35039 - , tasty-rerun, tasty-smallcheck, transformers, vector 35040 - }: 35041 - mkDerivation { 35042 - pname = "arithmoi"; 35043 35010 version = "0.12.1.0"; 35044 35011 sha256 = "1g8jswfjcy8q7fg7qf5d2yq1amxwwvpai97n96cgl6hrfz6y1ghf"; 35045 35012 configureFlags = [ "-f-llvm" ]; ··· 35059 35026 ]; 35060 35027 description = "Efficient basic number-theoretic functions"; 35061 35028 license = lib.licenses.mit; 35062 - hydraPlatforms = lib.platforms.none; 35063 35029 }) {}; 35064 35030 35065 35031 "arity-generic-liftA" = callPackage ··· 37753 37719 pname = "attoparsec-iso8601"; 37754 37720 version = "1.1.0.0"; 37755 37721 sha256 = "0ji6rcz49caqpj85dg8gs90cnc15500qyyh4b3n598a8qhbsh28i"; 37722 + revision = "1"; 37723 + editedCabalFile = "1h84bvjji5kwk54fr8q2gs8qhb39xwsm585s3472vvjh54dllf31"; 37756 37724 libraryHaskellDepends = [ 37757 37725 attoparsec base base-compat-batteries text time time-compat 37758 37726 ]; ··· 41327 41295 pname = "base64-bytestring-type"; 41328 41296 version = "1.0.1"; 41329 41297 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 41330 - revision = "15"; 41331 - editedCabalFile = "0yka3aazfd5jj0dqh89cpjc8sgx3yhiiqfhrpb9z5p4zvbyvym6g"; 41298 + revision = "17"; 41299 + editedCabalFile = "1wbwmwab30g41d9m1xb0vqlfnla6h2f6if53vv99dasd03jqd32l"; 41332 41300 libraryHaskellDepends = [ 41333 41301 aeson base base-compat base64-bytestring binary bytestring cereal 41334 41302 deepseq hashable http-api-data QuickCheck serialise text ··· 47867 47835 }: 47868 47836 mkDerivation { 47869 47837 pname = "bm"; 47870 - version = "0.1.0.2"; 47871 - sha256 = "1rpwlbhn5fkndw19ryksm9x2fcg7z7xscigi4zfs9v4w16skn7zj"; 47872 - revision = "3"; 47873 - editedCabalFile = "12san5rjl486n4wf3918bd3rm64n52d82vgz85pjb8gc2s8drdk1"; 47838 + version = "0.1.1.0"; 47839 + sha256 = "0w8zqf01c4rzqsbh6bsjxqqh8j2mlh5i3iiba4m529kd3m6sxjp5"; 47874 47840 isLibrary = true; 47875 47841 isExecutable = true; 47876 47842 libraryHaskellDepends = [ ··· 49471 49437 ({ mkDerivation, base, brick, containers, microlens, vector }: 49472 49438 mkDerivation { 49473 49439 pname = "brick-list-skip"; 49474 - version = "0.1.1.2"; 49475 - sha256 = "1qi7p9qj8v7k5sacvdkfr2f4mjaazg6yc6v17bxfxg3h3cswb2az"; 49440 + version = "0.1.1.3"; 49441 + sha256 = "0pa3k28qia4pjmiwv8zmzka7vmfgqwf570b6fjigxvid4wlh58d3"; 49476 49442 isLibrary = true; 49477 49443 isExecutable = true; 49478 49444 libraryHaskellDepends = [ base brick containers microlens vector ]; ··· 49544 49510 }: 49545 49511 mkDerivation { 49546 49512 pname = "brick-tabular-list"; 49547 - version = "2.2.0.0"; 49548 - sha256 = "1d6akj5mlaycp7rgf7b5krpc3i8cypxnswcqrllhlics7ivycl79"; 49513 + version = "2.2.0.1"; 49514 + sha256 = "0iplqfvvb5q7p99fgizj0py350sghmmd7pgyq87yx28rv4d4mbm3"; 49549 49515 isLibrary = true; 49550 49516 isExecutable = true; 49551 49517 libraryHaskellDepends = [ ··· 50929 50895 }: 50930 50896 mkDerivation { 50931 50897 pname = "burrito"; 50932 - version = "2.0.1.5"; 50933 - sha256 = "1lkv9ibz627yfk4lxj6vhzz3grahc2ckc6rn41gz1wnbv893f6qa"; 50898 + version = "2.0.1.6"; 50899 + sha256 = "1q8ahf5czy2lc8jvlx648ns6ir7q6wmb3zrgzksvznrrb8r163hv"; 50934 50900 libraryHaskellDepends = [ 50935 50901 base bytestring containers parsec template-haskell text 50936 50902 transformers ··· 51312 51278 }: 51313 51279 mkDerivation { 51314 51280 pname = "byte-count-reader"; 51315 - version = "0.10.1.9"; 51316 - sha256 = "0k9ayxy7snxp0wc9wqqb8yka4zyc6s3bkm98znzbpznhqld81x8v"; 51281 + version = "0.10.1.10"; 51282 + sha256 = "0g9l8razsdy4y4s81p4w7djck6266y6p592a5vycg9z5521wayj4"; 51317 51283 libraryHaskellDepends = [ base extra parsec parsec-numbers text ]; 51318 51284 testHaskellDepends = [ 51319 51285 base extra hspec parsec parsec-numbers text ··· 52341 52307 ({ mkDerivation, array, base, primitive, template-haskell }: 52342 52308 mkDerivation { 52343 52309 pname = "c-struct"; 52344 - version = "0.1.1.2"; 52345 - sha256 = "179sqqzik48xf9axhm3m9y6qv8028lh7l16cr79z85ddkvry7avd"; 52310 + version = "0.1.1.3"; 52311 + sha256 = "190xw0bjzmwzw3lav5cb7gs11wd42hj7a8pggn3nxrp46fvqf07i"; 52346 52312 libraryHaskellDepends = [ array base primitive template-haskell ]; 52347 52313 testHaskellDepends = [ array base primitive template-haskell ]; 52348 52314 description = "To make a wrapper for struct of C language"; ··· 52539 52505 }: 52540 52506 mkDerivation { 52541 52507 pname = "cab"; 52542 - version = "0.2.20"; 52543 - sha256 = "005vpmjpxrnj84pn7qjswjrb0vzmyhid2lr923q7m4rr3bi78ac1"; 52508 + version = "0.2.21"; 52509 + sha256 = "06hpsqanj0c3wy8jmk29gg3ma189fw8l41jx4k53zdjgx9x9wqmv"; 52544 52510 isLibrary = true; 52545 52511 isExecutable = true; 52546 52512 libraryHaskellDepends = [ ··· 53484 53450 ]; 53485 53451 description = "Library and utility for processing cabal's plan.json file"; 53486 53452 license = lib.licenses.gpl2Plus; 53453 + mainProgram = "cabal-plan"; 53454 + }) {}; 53455 + 53456 + "cabal-plan_0_7_3_0" = callPackage 53457 + ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat 53458 + , base16-bytestring, bytestring, containers, directory, filepath 53459 + , mtl, optics-core, optparse-applicative, parsec, process 53460 + , semialign, singleton-bool, text, these, topograph, transformers 53461 + , vector 53462 + }: 53463 + mkDerivation { 53464 + pname = "cabal-plan"; 53465 + version = "0.7.3.0"; 53466 + sha256 = "0rjyf5dh13kqwjr520i4w1g7y37nv4rn7vbpkgcjf5qi9f2m9p6c"; 53467 + configureFlags = [ "-fexe" ]; 53468 + isLibrary = true; 53469 + isExecutable = true; 53470 + libraryHaskellDepends = [ 53471 + aeson base base16-bytestring bytestring containers directory 53472 + filepath text 53473 + ]; 53474 + executableHaskellDepends = [ 53475 + ansi-terminal async base base-compat bytestring containers 53476 + directory mtl optics-core optparse-applicative parsec process 53477 + semialign singleton-bool text these topograph transformers vector 53478 + ]; 53479 + description = "Library and utility for processing cabal's plan.json file"; 53480 + license = lib.licenses.gpl2Plus; 53481 + hydraPlatforms = lib.platforms.none; 53487 53482 mainProgram = "cabal-plan"; 53488 53483 }) {}; 53489 53484 ··· 64394 64389 }: 64395 64390 mkDerivation { 64396 64391 pname = "comfort-fftw"; 64397 - version = "0.0"; 64398 - sha256 = "1g43fj1wmzdsfqz9axrq35bp2ad2900zcqvf9b2w57k3pl2cdk65"; 64399 - libraryHaskellDepends = [ 64400 - base comfort-array deepseq fftw-ffi netlib-ffi QuickCheck 64401 - ]; 64402 - testHaskellDepends = [ 64403 - base comfort-array deepseq doctest-exitcode-stdio doctest-lib 64404 - netlib-ffi non-empty QuickCheck storable-record 64405 - ]; 64406 - description = "High-level interface to FFTW (Fast Fourier Transform) based on comfort-array"; 64407 - license = lib.licenses.bsd3; 64408 - maintainers = [ lib.maintainers.thielema ]; 64409 - }) {}; 64410 - 64411 - "comfort-fftw_0_0_0_1" = callPackage 64412 - ({ mkDerivation, base, comfort-array, deepseq 64413 - , doctest-exitcode-stdio, doctest-lib, fftw-ffi, netlib-ffi 64414 - , non-empty, QuickCheck, storable-record 64415 - }: 64416 - mkDerivation { 64417 - pname = "comfort-fftw"; 64418 64392 version = "0.0.0.1"; 64419 64393 sha256 = "10934ckhl5hj4k331cdhdz6512m3hyn4bm4w1xwqja4j0arndklb"; 64420 64394 libraryHaskellDepends = [ ··· 64426 64400 ]; 64427 64401 description = "High-level interface to FFTW (Fast Fourier Transform) based on comfort-array"; 64428 64402 license = lib.licenses.bsd3; 64429 - hydraPlatforms = lib.platforms.none; 64430 64403 maintainers = [ lib.maintainers.thielema ]; 64431 64404 }) {}; 64432 64405 64433 64406 "comfort-glpk" = callPackage 64434 64407 ({ mkDerivation, base, comfort-array, deepseq 64435 64408 , doctest-exitcode-stdio, doctest-lib, glpk, glpk-headers 64436 - , non-empty, QuickCheck, utility-ht 64409 + , non-empty, QuickCheck, random, transformers, utility-ht 64437 64410 }: 64438 64411 mkDerivation { 64439 64412 pname = "comfort-glpk"; 64440 - version = "0.0.0.1"; 64441 - sha256 = "005k3w37xxgwbdd5wby75jhqnvim7fixp82kkqazij7wzdmnlr5h"; 64413 + version = "0.0.1"; 64414 + sha256 = "18n6nbq8gf3lx05xxak8k8frk1qhivh1hg83i0qxvabgfxl6gvxg"; 64442 64415 libraryHaskellDepends = [ 64443 - base comfort-array deepseq glpk-headers non-empty utility-ht 64416 + base comfort-array deepseq glpk-headers non-empty transformers 64417 + utility-ht 64444 64418 ]; 64445 64419 librarySystemDepends = [ glpk ]; 64446 64420 testHaskellDepends = [ 64447 - base comfort-array doctest-exitcode-stdio doctest-lib QuickCheck 64448 - utility-ht 64421 + base comfort-array doctest-exitcode-stdio doctest-lib non-empty 64422 + QuickCheck random utility-ht 64449 64423 ]; 64450 64424 description = "Linear Programming using GLPK and comfort-array"; 64451 64425 license = lib.licenses.bsd3; ··· 69987 69961 }: 69988 69962 mkDerivation { 69989 69963 pname = "core-program"; 69990 - version = "0.6.5.1"; 69991 - sha256 = "08znxjkr3mkkcj9chgps158a5i1szclan2nsji4lq4c7q9678f21"; 69964 + version = "0.6.6.0"; 69965 + sha256 = "0s29n16nmk9w0yg8agwjgxg6h2f3xbsf1ah74g08m0inskq96s9h"; 69992 69966 libraryHaskellDepends = [ 69993 69967 base bytestring core-data core-text directory exceptions filepath 69994 69968 fsnotify hashable hourglass mtl prettyprinter safe-exceptions stm ··· 70007 69981 }: 70008 69982 mkDerivation { 70009 69983 pname = "core-telemetry"; 70010 - version = "0.2.8.0"; 70011 - sha256 = "0zmddy3br8c3ii6ddrcf7v742n050hh34wrfwc94jfbrq79m6k6p"; 69984 + version = "0.2.9.1"; 69985 + sha256 = "0x36wzm4akxd5lq67hqmfrm1pddriw1mvq455bz308nabjdd65vl"; 70012 69986 libraryHaskellDepends = [ 70013 69987 base bytestring core-data core-program core-text exceptions 70014 69988 http-streams io-streams mtl network-info random safe-exceptions ··· 75989 75963 ({ mkDerivation, base, containers, data-elevator, deepseq, HUnit }: 75990 75964 mkDerivation { 75991 75965 pname = "data-forced"; 75992 - version = "0.2.0.0"; 75993 - sha256 = "0wg2l1ad05yhymi37wbb6sq9jab6cl69mkghp7qigviyzfcdw66y"; 75966 + version = "0.3.0.0"; 75967 + sha256 = "1y97a5n9brqi076anzlhcg61h7r7wmkcplch0y0qh2c6p8ssm91y"; 75994 75968 libraryHaskellDepends = [ base data-elevator deepseq ]; 75995 75969 testHaskellDepends = [ base containers HUnit ]; 75996 75970 description = "Specify that lifted values were forced to WHNF or NF"; ··· 76107 76081 pname = "data-interval"; 76108 76082 version = "2.1.1"; 76109 76083 sha256 = "1gxdf1pi54s9fvxgp112b0l9f4q4r29f03caz04wbhv1f6cbs912"; 76110 - revision = "1"; 76111 - editedCabalFile = "0b7wljz2xcj8j2aka343i19rzw2lva5bbd4wp9wmrzlafp8anxpd"; 76084 + revision = "2"; 76085 + editedCabalFile = "1was8y0bsr36qwqs3kphpncp7jqimvyw27nd9qx6fmyp0s71yjmw"; 76112 76086 libraryHaskellDepends = [ 76113 76087 base containers deepseq extended-reals hashable lattices 76114 76088 ]; ··· 76652 76626 version = "1.0"; 76653 76627 sha256 = "01gv16yz5y3wyc370a2snihz95wdnl7sk1jz9k7aypixsaw28a2f"; 76654 76628 libraryHaskellDepends = [ base lens typelevel ]; 76655 - description = "Recursive tuple data structure. It is very useful when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; 76629 + description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; 76656 76630 license = lib.licenses.asl20; 76657 76631 hydraPlatforms = lib.platforms.none; 76658 76632 }) {}; ··· 77844 77818 base bytestring cereal containers criterion QuickCheck 77845 77819 quickcheck-instances 77846 77820 ]; 77847 - description = "This package is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; 77821 + description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; 77848 77822 license = lib.licenses.bsd3; 77849 77823 hydraPlatforms = lib.platforms.none; 77850 77824 broken = true; ··· 78839 78813 pname = "deepseq-generics"; 78840 78814 version = "0.2.0.0"; 78841 78815 sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; 78842 - revision = "8"; 78843 - editedCabalFile = "0dcv4kf2g4xyacjpci9kql1gm706lkzhcyz9ks9jkbdvyvs8lf90"; 78816 + revision = "9"; 78817 + editedCabalFile = "1ww3328aga9s7knbl8xxvsff13gdnl3rdqplpx11rl6k6gnr032k"; 78844 78818 libraryHaskellDepends = [ base deepseq ghc-prim ]; 78845 78819 testHaskellDepends = [ 78846 78820 base deepseq ghc-prim HUnit test-framework test-framework-hunit ··· 81416 81390 }: 81417 81391 mkDerivation { 81418 81392 pname = "dhall-yaml"; 81419 - version = "1.2.11"; 81420 - sha256 = "1iqn9gign1y9cysdghxip4gpcp3x4knirlnm3mkin7zbr9hhxflh"; 81421 - revision = "1"; 81422 - editedCabalFile = "0h7fzbx3fndfgh3afsa2gjj4zqcmdh43afzr9whxdk5n0l9cn02r"; 81423 - isLibrary = true; 81424 - isExecutable = true; 81425 - libraryHaskellDepends = [ 81426 - aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson 81427 - optparse-applicative text vector 81428 - ]; 81429 - executableHaskellDepends = [ 81430 - aeson ansi-terminal base bytestring dhall dhall-json exceptions 81431 - optparse-applicative prettyprinter prettyprinter-ansi-terminal text 81432 - ]; 81433 - testHaskellDepends = [ 81434 - base bytestring dhall dhall-json tasty tasty-expected-failure 81435 - tasty-hunit text 81436 - ]; 81437 - description = "Convert between Dhall and YAML"; 81438 - license = lib.licenses.gpl3Only; 81439 - maintainers = [ lib.maintainers.Gabriel439 ]; 81440 - }) {}; 81441 - 81442 - "dhall-yaml_1_2_12" = callPackage 81443 - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 81444 - , dhall-json, exceptions, HsYAML, HsYAML-aeson 81445 - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 81446 - , tasty, tasty-expected-failure, tasty-hunit, text, vector 81447 - }: 81448 - mkDerivation { 81449 - pname = "dhall-yaml"; 81450 81393 version = "1.2.12"; 81451 81394 sha256 = "1sh802maai9vxfrjd0w4k9cv4pklhkxid1s5xdbagywcaqdhk272"; 81452 81395 isLibrary = true; ··· 81465 81408 ]; 81466 81409 description = "Convert between Dhall and YAML"; 81467 81410 license = lib.licenses.gpl3Only; 81468 - hydraPlatforms = lib.platforms.none; 81469 81411 maintainers = [ lib.maintainers.Gabriel439 ]; 81470 81412 }) {}; 81471 81413 ··· 83549 83491 license = lib.licenses.bsd3; 83550 83492 }) {}; 83551 83493 83494 + "directory-ospath-streaming" = callPackage 83495 + ({ mkDerivation, base, directory, filepath, random, tasty 83496 + , tasty-hunit, unix 83497 + }: 83498 + mkDerivation { 83499 + pname = "directory-ospath-streaming"; 83500 + version = "0.1"; 83501 + sha256 = "1xjjb9h3gxdc8m8z2xx7c7bawcrqmb94jvpfppfv01k48b6w8y3v"; 83502 + libraryHaskellDepends = [ base filepath unix ]; 83503 + testHaskellDepends = [ 83504 + base directory filepath random tasty tasty-hunit unix 83505 + ]; 83506 + description = "Stream directory entries in constant memory in vanilla IO"; 83507 + license = lib.licenses.asl20; 83508 + hydraPlatforms = lib.platforms.none; 83509 + broken = true; 83510 + }) {}; 83511 + 83552 83512 "directory-tree" = callPackage 83553 83513 ({ mkDerivation, base, directory, filepath, process }: 83554 83514 mkDerivation { ··· 83711 83671 ]; 83712 83672 description = "Functional programming language for teaching discrete math"; 83713 83673 license = lib.licenses.bsd3; 83674 + hydraPlatforms = lib.platforms.none; 83714 83675 mainProgram = "disco"; 83676 + broken = true; 83715 83677 }) {}; 83716 83678 83717 83679 "discogs-haskell" = callPackage ··· 84006 83968 pname = "discrimination"; 84007 83969 version = "0.5"; 84008 83970 sha256 = "1qq7fs1dsfqgf4969gksqcp3swcx0wbzdh66a89fv78k6y94g0pc"; 84009 - revision = "1"; 84010 - editedCabalFile = "0mlask4a08z0bkns89857vj96cqdqvdxqf5q7qsa0kpdaqkwrjz9"; 83971 + revision = "2"; 83972 + editedCabalFile = "14zhk0ygk2cmq2pk6limj3jiaa1pfdy7n2qc9nb3gxfg7yj4qvp2"; 84011 83973 libraryHaskellDepends = [ 84012 83974 array base containers contravariant deepseq ghc-bignum ghc-prim 84013 83975 hashable primitive promises transformers ··· 85098 85060 }: 85099 85061 mkDerivation { 85100 85062 pname = "dl-fedora"; 85101 - version = "0.9.4"; 85102 - sha256 = "0ni69z2bi61c1xx8gqz29447w91gzls3cvxj67vvl4yzdwnmwv21"; 85103 - isLibrary = false; 85104 - isExecutable = true; 85105 - executableHaskellDepends = [ 85106 - base bytestring directory extra filepath http-client 85107 - http-client-tls http-directory http-types optparse-applicative 85108 - regex-posix simple-cmd simple-cmd-args text time unix xdg-userdirs 85109 - ]; 85110 - testHaskellDepends = [ base simple-cmd ]; 85111 - description = "Fedora image download tool"; 85112 - license = lib.licenses.gpl3Only; 85113 - hydraPlatforms = lib.platforms.none; 85114 - mainProgram = "dl-fedora"; 85115 - }) {}; 85116 - 85117 - "dl-fedora_0_9_5" = callPackage 85118 - ({ mkDerivation, base, bytestring, directory, extra, filepath 85119 - , http-client, http-client-tls, http-directory, http-types 85120 - , optparse-applicative, regex-posix, simple-cmd, simple-cmd-args 85121 - , text, time, unix, xdg-userdirs 85122 - }: 85123 - mkDerivation { 85124 - pname = "dl-fedora"; 85125 85063 version = "0.9.5"; 85126 85064 sha256 = "105vy7bnwbvp6pv8p1lk96qp1asck5wk3677l56snxyqds5qfx0i"; 85127 85065 isLibrary = false; ··· 86560 86498 aeson base domain-core template-haskell 86561 86499 template-haskell-compat-v0208 text th-lego unordered-containers 86562 86500 vector 86501 + ]; 86502 + testHaskellDepends = [ 86503 + domain generic-arbitrary hspec quickcheck-classes 86504 + quickcheck-instances rerebase 86505 + ]; 86506 + description = "Integration of domain with aeson"; 86507 + license = lib.licenses.mit; 86508 + hydraPlatforms = lib.platforms.none; 86509 + }) {}; 86510 + 86511 + "domain-aeson_0_1_1_1" = callPackage 86512 + ({ mkDerivation, aeson, base, domain, domain-core 86513 + , generic-arbitrary, hspec, quickcheck-classes 86514 + , quickcheck-instances, rerebase, template-haskell 86515 + , template-haskell-compat-v0208, text, th-lego, vector 86516 + }: 86517 + mkDerivation { 86518 + pname = "domain-aeson"; 86519 + version = "0.1.1.1"; 86520 + sha256 = "0g363qyri9s6qbp52znah3qgnrqh0cn4xlfyp7hmjjwmllnm8dsn"; 86521 + libraryHaskellDepends = [ 86522 + aeson base domain-core template-haskell 86523 + template-haskell-compat-v0208 text th-lego vector 86563 86524 ]; 86564 86525 testHaskellDepends = [ 86565 86526 domain generic-arbitrary hspec quickcheck-classes ··· 89337 89298 }: 89338 89299 mkDerivation { 89339 89300 pname = "easy-file"; 89340 - version = "0.2.3"; 89341 - sha256 = "1jac0x8n72nhr68v3nnjndb04bq951glj9r67xqbvr7glp1dhdq4"; 89301 + version = "0.2.4"; 89302 + sha256 = "1jw4y7l4ik0rbzkpr6anhydpp6dgxy9nqzsmlck5lh11mcai7l9y"; 89342 89303 libraryHaskellDepends = [ base directory filepath time unix ]; 89343 89304 testHaskellDepends = [ base tasty tasty-hunit ]; 89344 89305 description = "Cross-platform File handling"; ··· 90382 90343 }: 90383 90344 mkDerivation { 90384 90345 pname = "eflint"; 90385 - version = "3.1.0.0"; 90386 - sha256 = "1bxpw80sgsgzxsxc6niwi0zjhgqxsx4kx2q5ah2vxnkfs117fmcm"; 90346 + version = "3.1.0.1"; 90347 + sha256 = "19l5m01fnm1bgwf7v6sv589xv759sizvq226ip4m9fmx3ihi5qly"; 90387 90348 isLibrary = true; 90388 90349 isExecutable = true; 90389 90350 libraryHaskellDepends = [ ··· 100852 100813 pname = "fin"; 100853 100814 version = "0.3"; 100854 100815 sha256 = "0dqwwd940pws4dpcaimbzxvxj7crncdcnslvjl2npa69x5vh63g2"; 100816 + revision = "1"; 100817 + editedCabalFile = "14f3mg6hjwy8yycrkj8p925kwb6hjzy2hm6yb4fwl243w92yf5qa"; 100855 100818 libraryHaskellDepends = [ 100856 100819 base boring dec deepseq hashable QuickCheck some universe-base 100857 100820 ]; ··· 101206 101169 pname = "finite-typelits"; 101207 101170 version = "0.1.6.0"; 101208 101171 sha256 = "0f047dywlxiz3pl3rq6maym9wpwjwl4zjqfwlwnj0yiv7dmlaiih"; 101172 + revision = "1"; 101173 + editedCabalFile = "0v7m5hhkkj4wyfas6a9a59sxx05rvfmhnd2qwp0wryd40f52xwmr"; 101209 101174 libraryHaskellDepends = [ base deepseq ]; 101210 101175 testHaskellDepends = [ base deepseq QuickCheck ]; 101211 101176 description = "A type inhabited by finitely many values, indexed by type-level naturals"; ··· 105035 105000 ({ mkDerivation, base }: 105036 105001 mkDerivation { 105037 105002 pname = "fractionizer"; 105038 - version = "0.6.1.2"; 105039 - sha256 = "16hvgi7g3dx63lf6h5v9l5gjq5753kqbvfn2npqpblzvgpv7lf4s"; 105003 + version = "0.9.0.0"; 105004 + sha256 = "125z1kxkzjdcfqi83dqrgqjk04baw6x0jgm2svyf5zgrxj1fjxaz"; 105040 105005 libraryHaskellDepends = [ base ]; 105041 105006 description = "Allows to approximate the fractional numbers in the range [0.005, 1] with sum of 2 or 3 unit fractions of special types."; 105042 105007 license = lib.licenses.mit; ··· 107633 107598 }: 107634 107599 mkDerivation { 107635 107600 pname = "futhark"; 107636 - version = "0.24.2"; 107637 - sha256 = "1dkjd66x6x9wvbdq9kr0mfkasndnnnchcqxhd2c4ffwncwvk346q"; 107601 + version = "0.24.3"; 107602 + sha256 = "0y83phng77asca4pk66w8grx8b4d1ip7xi77vrfjc04yjagrj1ba"; 107638 107603 isLibrary = true; 107639 107604 isExecutable = true; 107640 107605 libraryHaskellDepends = [ ··· 109577 109542 }: 109578 109543 mkDerivation { 109579 109544 pname = "generic-lens"; 109580 - version = "2.2.1.0"; 109581 - sha256 = "17an4669igzs6pwzqxnpkx9gmxwz64p32d1zcinhh5agd56y70pa"; 109582 - revision = "1"; 109583 - editedCabalFile = "1wzxvfi9kzhbglih1syqhx42kcsvlinnfc338fl731k6hc95hmlm"; 109584 - libraryHaskellDepends = [ 109585 - base generic-lens-core profunctors text 109586 - ]; 109587 - testHaskellDepends = [ 109588 - base doctest HUnit inspection-testing lens profunctors 109589 - ]; 109590 - description = "Generically derive traversals, lenses and prisms"; 109591 - license = lib.licenses.bsd3; 109592 - }) {}; 109593 - 109594 - "generic-lens_2_2_2_0" = callPackage 109595 - ({ mkDerivation, base, doctest, generic-lens-core, HUnit 109596 - , inspection-testing, lens, profunctors, text 109597 - }: 109598 - mkDerivation { 109599 - pname = "generic-lens"; 109600 109545 version = "2.2.2.0"; 109601 109546 sha256 = "0s4b51s11ssmndmx9m9zbwgv9rb27ajwihsrk10hn582rp4ck3c6"; 109602 109547 libraryHaskellDepends = [ ··· 109607 109552 ]; 109608 109553 description = "Generically derive traversals, lenses and prisms"; 109609 109554 license = lib.licenses.bsd3; 109610 - hydraPlatforms = lib.platforms.none; 109611 109555 }) {}; 109612 109556 109613 109557 "generic-lens-core" = callPackage ··· 110031 109975 }: 110032 109976 mkDerivation { 110033 109977 pname = "generics-sop"; 110034 - version = "0.5.1.2"; 110035 - sha256 = "098blydb7c7wg77dn658r0zb1z20vfkar1him1rqlq0da90437b3"; 110036 - revision = "1"; 110037 - editedCabalFile = "1s8bx25yrjqy1cj9y1s1m8a8qlby9dxjzin16yymz7g39fqcqxz8"; 109978 + version = "0.5.1.3"; 109979 + sha256 = "01xgd5b4na6xz2bw117hw37k3iqfk3mabi4aadkzs527rawwg77c"; 110038 109980 libraryHaskellDepends = [ 110039 109981 base ghc-prim sop-core template-haskell th-abstraction 110040 109982 ]; ··· 110052 109994 pname = "generics-sop-lens"; 110053 109995 version = "0.2.0.1"; 110054 109996 sha256 = "1yl74pz6r2zf9sspzbqg6xvr6k9b5irq3c3pjrf5ih6hfrz4k1ks"; 110055 - revision = "3"; 110056 - editedCabalFile = "0p9h7xbd0jcf85r480gbnyyh822r3wziv1rg2qwgq0ll5apqvzmn"; 109997 + revision = "4"; 109998 + editedCabalFile = "0n3ynw8zaavp5a259slff5b5smah0jfb8lxslkljsmpbndmh5sdv"; 110057 109999 libraryHaskellDepends = [ base generics-sop lens ]; 110058 110000 description = "Lenses for types in generics-sop"; 110059 110001 license = lib.licenses.bsd3; ··· 116361 116303 pname = "github"; 116362 116304 version = "0.28.0.1"; 116363 116305 sha256 = "16ahq2ng52ypkkgqbbmizr486px3dh709hw3jdn7jzglgvn20712"; 116364 - revision = "1"; 116365 - editedCabalFile = "1irbqis6iv62nqc75fy87mv1lahrnybq1j8mal15n129sxyyvz56"; 116306 + revision = "2"; 116307 + editedCabalFile = "1cbzn6idgmcihgkwgwc96a68hl24mai2gydbgqpydnknwmslp8qj"; 116366 116308 libraryHaskellDepends = [ 116367 116309 aeson base base-compat base16-bytestring binary binary-instances 116368 116310 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 122398 122340 }: 122399 122341 mkDerivation { 122400 122342 pname = "graphql"; 122401 - version = "1.2.0.0"; 122402 - sha256 = "1qngvwah69jb175shpy5n9qqyxck6687c20bqqlij4nj8amp4vfh"; 122343 + version = "1.2.0.1"; 122344 + sha256 = "0y5n1whdycszin7a0cixgf3h6v9r7vcs1z0n3hm3c8jwf8c079d8"; 122403 122345 libraryHaskellDepends = [ 122404 122346 base conduit containers exceptions megaparsec parser-combinators 122405 122347 template-haskell text transformers unordered-containers vector ··· 123013 122955 description = "Game engine for Prototyping on a Grid"; 123014 122956 license = lib.licenses.bsd3; 123015 122957 badPlatforms = lib.platforms.darwin; 122958 + hydraPlatforms = lib.platforms.none; 122959 + broken = true; 123016 122960 }) {}; 123017 122961 123018 122962 "gridbounds" = callPackage ··· 124685 124629 }) {}; 124686 124630 124687 124631 "h-raylib" = callPackage 124688 - ({ mkDerivation, base, c, containers, libGL, libX11, libXcursor 124689 - , libXext, libXi, libXinerama, libXrandr 124632 + ({ mkDerivation, base, c, containers, lens, libGL, libX11 124633 + , libXcursor, libXext, libXi, libXinerama, libXrandr 124690 124634 }: 124691 124635 mkDerivation { 124692 124636 pname = "h-raylib"; 124693 - version = "4.6.0.2"; 124694 - sha256 = "0c6qr5jrn327phaksib176aclz1ajs3z155nzn5pbd3gsln1g9jp"; 124637 + version = "4.6.0.3"; 124638 + sha256 = "0796hlc63pmbs861316xh6wrw72zczjkl9wx6mwjfcpq1jg4b5fp"; 124695 124639 isLibrary = true; 124696 124640 isExecutable = true; 124697 - libraryHaskellDepends = [ base containers ]; 124641 + libraryHaskellDepends = [ base containers lens ]; 124698 124642 librarySystemDepends = [ 124699 124643 c libGL libX11 libXcursor libXext libXi libXinerama libXrandr 124700 124644 ]; ··· 127129 127073 testToolDepends = [ util-linux ]; 127130 127074 description = "A static website compiler library"; 127131 127075 license = lib.licenses.bsd3; 127076 + mainProgram = "hakyll-init"; 127077 + maintainers = [ lib.maintainers.erictapen ]; 127078 + }) {inherit (pkgs) util-linux;}; 127079 + 127080 + "hakyll_4_16_0_0" = callPackage 127081 + ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup 127082 + , bytestring, containers, data-default, deepseq, directory 127083 + , file-embed, filepath, fsnotify, hashable, http-conduit 127084 + , http-types, lifted-async, lrucache, mtl, network-uri 127085 + , optparse-applicative, pandoc, parsec, process, QuickCheck, random 127086 + , regex-tdfa, resourcet, scientific, tagsoup, tasty, tasty-golden 127087 + , tasty-hunit, tasty-quickcheck, template-haskell, text, time 127088 + , time-locale-compat, unordered-containers, util-linux, vector, wai 127089 + , wai-app-static, warp, yaml 127090 + }: 127091 + mkDerivation { 127092 + pname = "hakyll"; 127093 + version = "4.16.0.0"; 127094 + sha256 = "1cxhi1k2fzxzgx6wvplq90jx7mqdzpnab0qjf763s8ih8bf6zck4"; 127095 + isLibrary = true; 127096 + isExecutable = true; 127097 + enableSeparateDataOutput = true; 127098 + libraryHaskellDepends = [ 127099 + aeson base binary blaze-html blaze-markup bytestring containers 127100 + data-default deepseq directory file-embed filepath fsnotify 127101 + hashable http-conduit http-types lifted-async lrucache mtl 127102 + network-uri optparse-applicative pandoc parsec process random 127103 + regex-tdfa resourcet scientific tagsoup template-haskell text time 127104 + time-locale-compat unordered-containers vector wai wai-app-static 127105 + warp yaml 127106 + ]; 127107 + executableHaskellDepends = [ base directory filepath ]; 127108 + testHaskellDepends = [ 127109 + aeson base bytestring containers filepath pandoc QuickCheck tagsoup 127110 + tasty tasty-golden tasty-hunit tasty-quickcheck text 127111 + unordered-containers yaml 127112 + ]; 127113 + testToolDepends = [ util-linux ]; 127114 + description = "A static website compiler library"; 127115 + license = lib.licenses.bsd3; 127116 + hydraPlatforms = lib.platforms.none; 127132 127117 mainProgram = "hakyll-init"; 127133 127118 maintainers = [ lib.maintainers.erictapen ]; 127134 127119 }) {inherit (pkgs) util-linux;}; ··· 132003 131988 executableHaskellDepends = [ 132004 131989 base containers lens linear mtl random sdl2 sdl2-ttf text vector 132005 131990 ]; 132006 - description = "Snake game implementation in Haskell using SDL2"; 131991 + description = "Snake game implemetation in Haskell using SDL2"; 132007 131992 license = lib.licenses.gpl3Only; 132008 131993 badPlatforms = lib.platforms.darwin; 132009 131994 hydraPlatforms = lib.platforms.none; ··· 137710 137695 }: 137711 137696 mkDerivation { 137712 137697 pname = "hedgehog-extras"; 137713 - version = "0.4.1.0"; 137714 - sha256 = "10qdca2pfxmk2fgnipdxxm1sh8a5dk1hb0b8f924gsfbd0pl2q4d"; 137698 + version = "0.4.2.0"; 137699 + sha256 = "0svn2biiknmb4wybya3rvjwsmpf6rv05804sm3b3975qcvg7js0q"; 137715 137700 libraryHaskellDepends = [ 137716 137701 aeson aeson-pretty async base bytestring deepseq directory 137717 137702 exceptions filepath hedgehog hw-aeson mmorph mtl network process ··· 137894 137879 }: 137895 137880 mkDerivation { 137896 137881 pname = "hedis"; 137897 - version = "0.15.1"; 137898 - sha256 = "1a09i21qmzjcx171452bm69cj188f1jha2gwj0yi7shimcqz3l8m"; 137899 - revision = "1"; 137900 - editedCabalFile = "1ppc8xygcqv9s9jf44s1hh7ndm9mrvjxjwhv5g2rfdkkbsfyr7r5"; 137901 - libraryHaskellDepends = [ 137902 - async base bytestring bytestring-lexing containers deepseq errors 137903 - exceptions HTTP mtl network network-uri resource-pool scanner stm 137904 - text time tls unliftio-core unordered-containers vector 137905 - ]; 137906 - testHaskellDepends = [ 137907 - async base bytestring doctest HUnit mtl stm test-framework 137908 - test-framework-hunit text time 137909 - ]; 137910 - benchmarkHaskellDepends = [ base mtl time ]; 137911 - description = "Client library for the Redis datastore: supports full command set, pipelining"; 137912 - license = lib.licenses.bsd3; 137913 - }) {}; 137914 - 137915 - "hedis_0_15_2" = callPackage 137916 - ({ mkDerivation, async, base, bytestring, bytestring-lexing 137917 - , containers, deepseq, doctest, errors, exceptions, HTTP, HUnit 137918 - , mtl, network, network-uri, resource-pool, scanner, stm 137919 - , test-framework, test-framework-hunit, text, time, tls 137920 - , unliftio-core, unordered-containers, vector 137921 - }: 137922 - mkDerivation { 137923 - pname = "hedis"; 137924 137882 version = "0.15.2"; 137925 137883 sha256 = "0za6ybxzfba922jz5zzvyqd1yy7g7kcj5j3hjzpi2w2hwcbwa21p"; 137926 137884 libraryHaskellDepends = [ ··· 137935 137893 benchmarkHaskellDepends = [ base mtl time ]; 137936 137894 description = "Client library for the Redis datastore: supports full command set, pipelining"; 137937 137895 license = lib.licenses.bsd3; 137938 - hydraPlatforms = lib.platforms.none; 137939 137896 }) {}; 137940 137897 137941 137898 "hedis-config" = callPackage ··· 139458 139415 mainProgram = "hetris"; 139459 139416 broken = true; 139460 139417 }) {inherit (pkgs) ncurses;}; 139418 + 139419 + "hetzner" = callPackage 139420 + ({ mkDerivation, aeson, base, bytestring, conduit, containers 139421 + , country, http-conduit, ip, megaparsec, scientific, text, time 139422 + , yaml 139423 + }: 139424 + mkDerivation { 139425 + pname = "hetzner"; 139426 + version = "0.1.2.0"; 139427 + sha256 = "111wv77l9nj7l20kyl4yixzpdj4lpdqvdpzrvlhyppzfba5sx9gb"; 139428 + libraryHaskellDepends = [ 139429 + aeson base bytestring conduit containers country http-conduit ip 139430 + megaparsec scientific text time yaml 139431 + ]; 139432 + description = "Hetzner Cloud client library"; 139433 + license = lib.licenses.mit; 139434 + }) {}; 139461 139435 139462 139436 "heukarya" = callPackage 139463 139437 ({ mkDerivation, base, containers, deepseq, parallel, random, text ··· 139479 139453 ({ mkDerivation, abstract-par, aeson, aeson-optics, ansi-wl-pprint 139480 139454 , array, async, base, base16, binary, brick, bytestring, cereal 139481 139455 , containers, cryptonite, data-dword, Decimal, deepseq, directory 139482 - , filemanip, filepath, free, gmp, haskeline, here, HUnit, libff 139483 - , megaparsec, memory, monad-par, mtl, multiset, operational 139484 - , optics-core, optics-extra, optics-th, optparse-generic, process 139485 - , QuickCheck, quickcheck-instances, quickcheck-text, regex 139486 - , regex-tdfa, restless-git, rosezipper, scientific, secp256k1 139487 - , smt2-parser, spawn, spool, stm, tasty, tasty-bench 139488 - , tasty-expected-failure, tasty-hunit, tasty-quickcheck, temporary 139489 - , text, time, transformers, tree-view, tuple, unordered-containers 139490 - , vector, vty, witherable, word-wrap, wreq 139456 + , filemanip, filepath, filepattern, free, gmp, haskeline, here 139457 + , HUnit, libff, megaparsec, memory, monad-par, mtl, multiset 139458 + , operational, optics-core, optics-extra, optics-th 139459 + , optparse-generic, process, QuickCheck, quickcheck-instances 139460 + , quickcheck-text, regex, regex-tdfa, restless-git, rosezipper 139461 + , scientific, secp256k1, smt2-parser, spawn, spool, stm, tasty 139462 + , tasty-bench, tasty-expected-failure, tasty-hunit 139463 + , tasty-quickcheck, temporary, text, time, transformers, tree-view 139464 + , tuple, unordered-containers, vector, vty, witherable, word-wrap 139465 + , wreq 139491 139466 }: 139492 139467 mkDerivation { 139493 139468 pname = "hevm"; 139494 - version = "0.50.5"; 139495 - sha256 = "1spsq9xx69l6y7qvhz4d3m8yam7af389s7ijx9y5ki1vjr4kxrwx"; 139469 + version = "0.51.0"; 139470 + sha256 = "1c0y0mbdb0p9h1x9fsfd6zwnf2kh3nh24dh8rayhqk77c4wwasvl"; 139496 139471 isLibrary = true; 139497 139472 isExecutable = true; 139498 139473 libraryHaskellDepends = [ 139499 139474 abstract-par aeson aeson-optics ansi-wl-pprint array async base 139500 139475 base16 binary brick bytestring cereal containers cryptonite 139501 - data-dword Decimal deepseq directory filemanip filepath free 139502 - haskeline here HUnit megaparsec memory monad-par mtl multiset 139476 + data-dword Decimal deepseq directory filemanip filepath filepattern 139477 + free haskeline here HUnit megaparsec memory monad-par mtl multiset 139503 139478 operational optics-core optics-extra optics-th optparse-generic 139504 139479 process QuickCheck quickcheck-instances quickcheck-text regex 139505 139480 regex-tdfa restless-git rosezipper scientific smt2-parser spawn ··· 140826 140801 ]; 140827 140802 description = "Parser for GHC's hi files"; 140828 140803 license = lib.licenses.bsd3; 140804 + }) {}; 140805 + 140806 + "hi-file-parser_0_1_4_0" = callPackage 140807 + ({ mkDerivation, base, binary, bytestring, hspec, mtl, rio, vector 140808 + }: 140809 + mkDerivation { 140810 + pname = "hi-file-parser"; 140811 + version = "0.1.4.0"; 140812 + sha256 = "0kaazv6qfpg7n52wms08hf63ic776p9wyyylsh0d4yrh1sbh1s52"; 140813 + libraryHaskellDepends = [ base binary bytestring mtl rio vector ]; 140814 + testHaskellDepends = [ 140815 + base binary bytestring hspec mtl rio vector 140816 + ]; 140817 + description = "Parser for GHC's hi files"; 140818 + license = lib.licenses.bsd3; 140819 + hydraPlatforms = lib.platforms.none; 140829 140820 }) {}; 140830 140821 140831 140822 "hi3status" = callPackage ··· 142572 142563 }: 142573 142564 mkDerivation { 142574 142565 pname = "hix"; 142575 - version = "0.5.0"; 142576 - sha256 = "1y5v27dyhq7qcqrdxsvmxfh98lswdvjvr8pw0hxf2005vi5sxdcf"; 142566 + version = "0.5.2"; 142567 + sha256 = "1vr4mbpkshd19ypn6xj788z2znfaqvkqg5ak7ziix955j6wsackl"; 142577 142568 isLibrary = true; 142578 142569 isExecutable = true; 142579 142570 libraryHaskellDepends = [ ··· 153106 153097 license = lib.licenses.mit; 153107 153098 }) {}; 153108 153099 153109 - "hspec_2_11_0" = callPackage 153100 + "hspec_2_11_0_1" = callPackage 153110 153101 ({ mkDerivation, base, hspec-core, hspec-discover 153111 153102 , hspec-expectations, QuickCheck 153112 153103 }: 153113 153104 mkDerivation { 153114 153105 pname = "hspec"; 153115 - version = "2.11.0"; 153116 - sha256 = "1qfvablqypql0z1d5fyamaavddbr96ymkfsjzawra1vhcjy602mw"; 153106 + version = "2.11.0.1"; 153107 + sha256 = "0sz2ishjz7fa09w2215fdxw2yj6bv1q55arr554l1jdxf6mvd7r7"; 153117 153108 libraryHaskellDepends = [ 153118 153109 base hspec-core hspec-discover hspec-expectations QuickCheck 153119 153110 ]; ··· 153135 153126 license = lib.licenses.mit; 153136 153127 }) {}; 153137 153128 153138 - "hspec-api_2_11_0" = callPackage 153129 + "hspec-api_2_11_0_1" = callPackage 153139 153130 ({ mkDerivation, base, hspec, hspec-core, hspec-discover 153140 153131 , transformers 153141 153132 }: 153142 153133 mkDerivation { 153143 153134 pname = "hspec-api"; 153144 - version = "2.11.0"; 153145 - sha256 = "1arh3bycb44dby1pqbjapxc09gg6q8bd44aqwgk8havrsnvp19ay"; 153135 + version = "2.11.0.1"; 153136 + sha256 = "0zrd2kn9qwx5cs9cbn8pz9sm8jr322jnj99lpasskpg8acby3pkk"; 153146 153137 libraryHaskellDepends = [ base hspec-core transformers ]; 153147 153138 testHaskellDepends = [ base hspec hspec-core transformers ]; 153148 153139 testToolDepends = [ hspec-discover ]; ··· 153267 153258 license = lib.licenses.mit; 153268 153259 }) {}; 153269 153260 153270 - "hspec-core_2_11_0" = callPackage 153261 + "hspec-core_2_11_0_1" = callPackage 153271 153262 ({ mkDerivation, ansi-terminal, array, base, base-orphans 153272 153263 , call-stack, deepseq, directory, filepath, haskell-lexer 153273 153264 , hspec-expectations, hspec-meta, HUnit, process, QuickCheck ··· 153276 153267 }: 153277 153268 mkDerivation { 153278 153269 pname = "hspec-core"; 153279 - version = "2.11.0"; 153280 - sha256 = "03ni0grfgj9g39vnfy2d4ijy42kgfj7c4wshk5d7qvsd31iy5mbl"; 153270 + version = "2.11.0.1"; 153271 + sha256 = "03fwa0y901khi3gp45qs72f6yzxils1dwkm8hpc2znl0ndaf06hq"; 153281 153272 libraryHaskellDepends = [ 153282 153273 ansi-terminal array base call-stack deepseq directory filepath 153283 153274 haskell-lexer hspec-expectations HUnit process QuickCheck ··· 153358 153349 maintainers = [ lib.maintainers.maralorn ]; 153359 153350 }) {}; 153360 153351 153361 - "hspec-discover_2_11_0" = callPackage 153352 + "hspec-discover_2_11_0_1" = callPackage 153362 153353 ({ mkDerivation, base, directory, filepath, hspec-meta, mockery 153363 153354 , QuickCheck 153364 153355 }: 153365 153356 mkDerivation { 153366 153357 pname = "hspec-discover"; 153367 - version = "2.11.0"; 153368 - sha256 = "1ii5mklpc0b7gv562qhw8s76pspfkwbiz8ff7klz2k61j0zmcywd"; 153358 + version = "2.11.0.1"; 153359 + sha256 = "18acqmw3zgkn718vgjiskx266ids4pp4mamb4gxlhj2934vfl656"; 153369 153360 isLibrary = true; 153370 153361 isExecutable = true; 153371 153362 libraryHaskellDepends = [ base directory filepath ]; ··· 164262 164253 }: 164263 164254 mkDerivation { 164264 164255 pname = "insert-ordered-containers"; 164265 - version = "0.2.5.1"; 164266 - sha256 = "1mnc0gby7xz8065rvkqsaqk1vqs0gv1y9qgvwsvxx3gsg9yj3a7r"; 164267 - revision = "3"; 164268 - editedCabalFile = "11awwf3lm3qzjqxy8gw9cizr30228cjwhqzff7wvjvdx131s0raa"; 164256 + version = "0.2.5.2"; 164257 + sha256 = "0ybcqbcaq3ixpfrpdb0xl89gzjj3f6xhsgwwh57nlcqdcvvzhpls"; 164269 164258 libraryHaskellDepends = [ 164270 164259 aeson base deepseq hashable indexed-traversable lens optics-core 164271 164260 optics-extra semigroupoids text transformers unordered-containers ··· 164796 164785 }) {}; 164797 164786 164798 164787 "integer-types" = callPackage 164799 - ({ mkDerivation, base, deepseq, exceptions, hedgehog, hspec 164800 - , hspec-hedgehog, quaalude 164788 + ({ mkDerivation, base, deepseq, exceptions, hashable, hedgehog 164789 + , hspec, hspec-hedgehog, quaalude 164801 164790 }: 164802 164791 mkDerivation { 164803 164792 pname = "integer-types"; 164804 - version = "0.1.0.0"; 164805 - sha256 = "0ydhb8sy8klaf0lgvckxcl15wc7b2l0kqr3q225xgkw0qz6qzbic"; 164806 - libraryHaskellDepends = [ base deepseq quaalude ]; 164793 + version = "0.1.1.0"; 164794 + sha256 = "0m22rmag4kdf3rad8i916dk1j2qwcnrviz9wwqhxz3rnf2r3jqm2"; 164795 + libraryHaskellDepends = [ base deepseq hashable quaalude ]; 164807 164796 testHaskellDepends = [ 164808 - base deepseq exceptions hedgehog hspec hspec-hedgehog quaalude 164797 + base deepseq exceptions hashable hedgehog hspec hspec-hedgehog 164798 + quaalude 164809 164799 ]; 164810 164800 description = "Integer, Natural, and Positive"; 164811 164801 license = lib.licenses.asl20; ··· 165825 165815 ({ mkDerivation, array, async, base, bytestring, mtl, stm, time }: 165826 165816 mkDerivation { 165827 165817 pname = "io-classes"; 165828 - version = "1.0.0.1"; 165829 - sha256 = "1akhhlrzsk1xih8l1mc0mk27p5p6hks7bxkjyvh95fghjqkgsif3"; 165818 + version = "1.1.0.0"; 165819 + sha256 = "11mnmz3wvgp4vw3djlyyixxjzzqfk0qk4k3pfdywkbya2mb4n4mn"; 165830 165820 libraryHaskellDepends = [ 165831 165821 array async base bytestring mtl stm time 165832 165822 ]; ··· 165840 165830 pname = "io-classes-mtl"; 165841 165831 version = "0.1.0.1"; 165842 165832 sha256 = "0kqq14jgpkxaz106ahr20apizgdnxz2q0ih9kwgz0q4l1v106698"; 165833 + revision = "1"; 165834 + editedCabalFile = "0a5y6pch1pb7ml7cr22xl3gh6am7xcs87ad9yqamlpy4765g3ihh"; 165843 165835 libraryHaskellDepends = [ array base io-classes mtl si-timers ]; 165844 165836 description = "Experimental MTL instances for io-classes"; 165845 165837 license = lib.licenses.asl20; ··· 165919 165911 }: 165920 165912 mkDerivation { 165921 165913 pname = "io-sim"; 165922 - version = "1.0.0.1"; 165923 - sha256 = "0cknyc86mg5a5fc4kk0sk68j1vvfhdi3dqfvz5n27zz600h3mij5"; 165914 + version = "1.1.0.0"; 165915 + sha256 = "0pb9b08mj6zm45r5ka67y3wjvk767bqha8gpyzvgld5p743pgn8i"; 165924 165916 libraryHaskellDepends = [ 165925 165917 base containers exceptions io-classes nothunks parallel psqueues 165926 165918 QuickCheck quiet si-timers strict-stm time ··· 169426 169418 license = lib.licenses.bsd3; 169427 169419 }) {}; 169428 169420 169421 + "jose-jwt_0_9_5" = callPackage 169422 + ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal 169423 + , containers, criterion, cryptonite, hspec, HUnit, memory, mtl 169424 + , QuickCheck, text, time, transformers, transformers-compat 169425 + , unordered-containers, vector 169426 + }: 169427 + mkDerivation { 169428 + pname = "jose-jwt"; 169429 + version = "0.9.5"; 169430 + sha256 = "0iw686xqx500n2f500qwqc6j7i503r7s10sxlmfwj0wjz9mhmp57"; 169431 + libraryHaskellDepends = [ 169432 + aeson attoparsec base bytestring cereal containers cryptonite 169433 + memory mtl text time transformers transformers-compat 169434 + unordered-containers vector 169435 + ]; 169436 + testHaskellDepends = [ 169437 + aeson base bytestring cryptonite hspec HUnit memory mtl QuickCheck 169438 + text unordered-containers vector 169439 + ]; 169440 + benchmarkHaskellDepends = [ base bytestring criterion cryptonite ]; 169441 + description = "JSON Object Signing and Encryption Library"; 169442 + license = lib.licenses.bsd3; 169443 + hydraPlatforms = lib.platforms.none; 169444 + }) {}; 169445 + 169429 169446 "jot" = callPackage 169430 169447 ({ mkDerivation, base, data-default, dhall, docopt, extra, filepath 169431 169448 , process, time, turtle, yaml ··· 170081 170098 }: 170082 170099 mkDerivation { 170083 170100 pname = "json-feed"; 170084 - version = "2.0.0.7"; 170085 - sha256 = "0f24cdhr75sacj9n54z5k9n73cydqzjp35hq36crclj09lyf1fyp"; 170101 + version = "2.0.0.8"; 170102 + sha256 = "1iq2m3fhi7c2z9na4yqy94m047caqi60rx6d3g6bgf6mvpn5aqk3"; 170086 170103 libraryHaskellDepends = [ 170087 170104 aeson base bytestring mime-types network-uri tagsoup text time 170088 170105 ]; ··· 174232 174249 }: 174233 174250 mkDerivation { 174234 174251 pname = "koji-tool"; 174235 - version = "0.9.5"; 174236 - sha256 = "0pcy0xr6iq5g6w0vxvrx7wiz2gy6whb8c2hh53w8x7a2j04na8gn"; 174252 + version = "1.0"; 174253 + sha256 = "1vpy8pvs1f4wlgrsyynhwcynds0lz6yw60jdr8fhbm4b8cq0kjzr"; 174237 174254 isLibrary = false; 174238 174255 isExecutable = true; 174239 174256 executableHaskellDepends = [ ··· 174957 174974 ({ mkDerivation, base, hspec, servant, servant-foreign, text }: 174958 174975 mkDerivation { 174959 174976 pname = "lackey"; 174960 - version = "2.0.0.5"; 174961 - sha256 = "1vrmqvjchnwjwlnsw8s8zq02vi4f0vgwgy1npvigv5xfvd9pvdvs"; 174977 + version = "2.0.0.6"; 174978 + sha256 = "0msm0qrgrnagkia8k0261p7q2ab67ml1q2nn9f951jxnhjm4mglj"; 174962 174979 libraryHaskellDepends = [ base servant-foreign text ]; 174963 174980 testHaskellDepends = [ base hspec servant servant-foreign text ]; 174964 174981 description = "Generate Ruby clients from Servant APIs"; ··· 178675 178692 license = lib.licenses.bsd2; 178676 178693 }) {}; 178677 178694 178695 + "ldap-client-og" = callPackage 178696 + ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring 178697 + , connection, containers, hspec, ldap-client, network, process 178698 + , semigroups, stm, text 178699 + }: 178700 + mkDerivation { 178701 + pname = "ldap-client-og"; 178702 + version = "0.3.0"; 178703 + sha256 = "0sirs44j5lp0xc6c9h7qwd2wxqzcnvw06pfvwylx252j38yy4r9i"; 178704 + libraryHaskellDepends = [ 178705 + asn1-encoding asn1-types async base bytestring connection 178706 + containers network semigroups stm text 178707 + ]; 178708 + testHaskellDepends = [ 178709 + base bytestring hspec ldap-client process semigroups 178710 + ]; 178711 + description = "Pure Haskell LDAP Client Library"; 178712 + license = lib.licenses.bsd2; 178713 + }) {}; 178714 + 178678 178715 "ldap-scim-bridge" = callPackage 178679 178716 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 178680 178717 , email-validate, hscim, http-client, http-client-tls, http-types ··· 179890 179927 }: 179891 179928 mkDerivation { 179892 179929 pname = "lentil"; 179893 - version = "1.5.5.1"; 179894 - sha256 = "0y32f2ayj59by729df783ghj5y83318551wdgjjqdvrhx4vi3jsy"; 179930 + version = "1.5.5.2"; 179931 + sha256 = "0ccm21y14q87r8w888js9s6cb615mi2hif0j1ca84x934q0r2a8v"; 179895 179932 isLibrary = false; 179896 179933 isExecutable = true; 179897 179934 executableHaskellDepends = [ ··· 180593 180630 , containers, directory, doctest, filepath, free, hspec 180594 180631 , hspec-expectations-lens, http-client, http-conduit, http-types 180595 180632 , lens, lifted-async, lifted-base, monad-control, mtl, network 180596 - , network-uri, profunctors, resourcet, text, transformers 180597 - , xml-conduit 180633 + , network-bsd, network-uri, profunctors, resourcet, text 180634 + , transformers, xml-conduit 180598 180635 }: 180599 180636 mkDerivation { 180600 180637 pname = "libjenkins"; 180601 - version = "0.8.4"; 180602 - sha256 = "08qiny7sn18yfidlrgdgp5s0qlngcnrq9nrxbqqahq96670jyq77"; 180638 + version = "0.9.0"; 180639 + sha256 = "16h6qx15xsyhs1mkd7zmvddjxjfz31d0alp1qbivsxjhzjn3hail"; 180603 180640 libraryHaskellDepends = [ 180604 180641 async attoparsec base bytestring conduit containers free 180605 180642 http-client http-conduit http-types monad-control mtl network 180606 - network-uri profunctors resourcet text 180643 + network-bsd network-uri profunctors resourcet text 180607 180644 ]; 180608 180645 testHaskellDepends = [ 180609 180646 async attoparsec base bytestring conduit containers directory ··· 182575 182612 ({ mkDerivation, base, hspec, hyphenation }: 182576 182613 mkDerivation { 182577 182614 pname = "linebreak"; 182578 - version = "1.1.0.3"; 182579 - sha256 = "1k4vkmbwk851ln0h3i686mwf14hirna2zgcvhb4n1xlhdzb968ck"; 182615 + version = "1.1.0.4"; 182616 + sha256 = "14axpazwivl3qcvrflvzskik0kdvpg50kqpyilik22ywrqagyya0"; 182580 182617 libraryHaskellDepends = [ base hyphenation ]; 182581 182618 testHaskellDepends = [ base hspec hyphenation ]; 182582 182619 description = "breaks strings to fit width"; ··· 185763 185800 license = lib.licenses.bsd3; 185764 185801 }) {}; 185765 185802 185803 + "logict_0_8_1_0" = callPackage 185804 + ({ mkDerivation, async, base, mtl, tasty, tasty-hunit, transformers 185805 + }: 185806 + mkDerivation { 185807 + pname = "logict"; 185808 + version = "0.8.1.0"; 185809 + sha256 = "04xqwfbvh5gfjwbvmadbakq0932gskh2gy68aw7251443ic4gp6k"; 185810 + isLibrary = true; 185811 + isExecutable = true; 185812 + libraryHaskellDepends = [ base mtl transformers ]; 185813 + testHaskellDepends = [ 185814 + async base mtl tasty tasty-hunit transformers 185815 + ]; 185816 + description = "A backtracking logic-programming monad"; 185817 + license = lib.licenses.bsd3; 185818 + hydraPlatforms = lib.platforms.none; 185819 + }) {}; 185820 + 185766 185821 "logict-sequence" = callPackage 185767 185822 ({ mkDerivation, base, containers, gauge, hedgehog, hedgehog-fn 185768 185823 , hspec, hspec-hedgehog, list-t, logict, mmorph, mtl, sequence ··· 187810 187865 }: 187811 187866 mkDerivation { 187812 187867 pname = "lzma"; 187813 - version = "0.0.0.4"; 187814 - sha256 = "0fy11i7fanrsbh8w7cclwx0i6csn5df6vl38dh2112aqw6n7h382"; 187815 - libraryHaskellDepends = [ base bytestring ]; 187816 - librarySystemDepends = [ xz ]; 187817 - testHaskellDepends = [ 187818 - base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck 187819 - ]; 187820 - description = "LZMA/XZ compression and decompression"; 187821 - license = lib.licenses.bsd3; 187822 - }) {inherit (pkgs) xz;}; 187823 - 187824 - "lzma_0_0_1_0" = callPackage 187825 - ({ mkDerivation, base, bytestring, HUnit, liblzma, QuickCheck 187826 - , tasty, tasty-hunit, tasty-quickcheck 187827 - }: 187828 - mkDerivation { 187829 - pname = "lzma"; 187830 187868 version = "0.0.1.0"; 187831 187869 sha256 = "0knz0d6456zf6wbqifzcsw2xvdgaqnig2zn96kav7aqn5i4nfbvj"; 187832 187870 libraryHaskellDepends = [ base bytestring ]; 187833 - libraryPkgconfigDepends = [ liblzma ]; 187871 + libraryPkgconfigDepends = [ xz ]; 187834 187872 testHaskellDepends = [ 187835 187873 base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck 187836 187874 ]; 187837 187875 description = "LZMA/XZ compression and decompression"; 187838 187876 license = lib.licenses.bsd3; 187839 - hydraPlatforms = lib.platforms.none; 187840 - }) {liblzma = null;}; 187877 + }) {inherit (pkgs) xz;}; 187841 187878 187842 187879 "lzma-clib" = callPackage 187843 187880 ({ mkDerivation }: ··· 193799 193836 license = lib.licenses.bsd3; 193800 193837 }) {}; 193801 193838 193839 + "microlens-th_0_4_3_13" = callPackage 193840 + ({ mkDerivation, base, containers, microlens, tagged 193841 + , template-haskell, th-abstraction, transformers 193842 + }: 193843 + mkDerivation { 193844 + pname = "microlens-th"; 193845 + version = "0.4.3.13"; 193846 + sha256 = "1g41wb61k2l99xxy23yp2zqk0wanskgdypbjhib71ji0y1dcsfz7"; 193847 + libraryHaskellDepends = [ 193848 + base containers microlens template-haskell th-abstraction 193849 + transformers 193850 + ]; 193851 + testHaskellDepends = [ base microlens tagged ]; 193852 + description = "Automatic generation of record lenses for microlens"; 193853 + license = lib.licenses.bsd3; 193854 + hydraPlatforms = lib.platforms.none; 193855 + }) {}; 193856 + 193802 193857 "micrologger" = callPackage 193803 193858 ({ mkDerivation, aeson, base, bytestring, containers, hspec, lens 193804 193859 , text, text-format, time, transformers ··· 197052 197107 }: 197053 197108 mkDerivation { 197054 197109 pname = "monad-logger-aeson"; 197055 - version = "0.4.0.3"; 197056 - sha256 = "1i5lp7falarvwad3a7xnm865bl4q7jqj9dq96hlf4phh4rsx0h9q"; 197110 + version = "0.4.0.4"; 197111 + sha256 = "01klhx1zizf9f5cn42n0zhsspgfiqg2vi6bdd5sliyfn38z1fhrn"; 197057 197112 isLibrary = true; 197058 197113 isExecutable = true; 197059 197114 libraryHaskellDepends = [ ··· 199285 199340 }: 199286 199341 mkDerivation { 199287 199342 pname = "morpheus-graphql"; 199288 - version = "0.27.1"; 199289 - sha256 = "1n9qflbgl7f4qd3sxc6rwnv0rmg0dj731rf1b9avc6xw199ydr3w"; 199343 + version = "0.27.2"; 199344 + sha256 = "1lp5a6hb8y4j7zj8fa5yvw6wffl800gwfp42k9hayh2cn4fgfmz0"; 199290 199345 enableSeparateDataOutput = true; 199291 199346 libraryHaskellDepends = [ 199292 199347 aeson base bytestring containers morpheus-graphql-app ··· 199305 199360 license = lib.licenses.mit; 199306 199361 }) {}; 199307 199362 199308 - "morpheus-graphql_0_27_2" = callPackage 199363 + "morpheus-graphql_0_27_3" = callPackage 199309 199364 ({ mkDerivation, aeson, base, bytestring, containers 199310 199365 , morpheus-graphql-app, morpheus-graphql-code-gen 199311 199366 , morpheus-graphql-core, morpheus-graphql-server ··· 199315 199370 }: 199316 199371 mkDerivation { 199317 199372 pname = "morpheus-graphql"; 199318 - version = "0.27.2"; 199319 - sha256 = "1lp5a6hb8y4j7zj8fa5yvw6wffl800gwfp42k9hayh2cn4fgfmz0"; 199373 + version = "0.27.3"; 199374 + sha256 = "04qah7565dzq7v4q43zjz8778pdn5jwnway5rvz4kkibcrscfagn"; 199320 199375 enableSeparateDataOutput = true; 199321 199376 libraryHaskellDepends = [ 199322 199377 aeson base bytestring containers morpheus-graphql-app ··· 199345 199400 }: 199346 199401 mkDerivation { 199347 199402 pname = "morpheus-graphql-app"; 199348 - version = "0.27.1"; 199349 - sha256 = "0qs5gx7k1ix4i0mqkmy681xlg7ckr8fy089rj4c25vgv8rm0p36w"; 199403 + version = "0.27.2"; 199404 + sha256 = "1p9m9id8p737fzpmkb7ycbfvzims4qhayf3vm0d0k6bq07mlky7y"; 199350 199405 enableSeparateDataOutput = true; 199351 199406 libraryHaskellDepends = [ 199352 199407 aeson base bytestring containers hashable megaparsec ··· 199363 199418 license = lib.licenses.mit; 199364 199419 }) {}; 199365 199420 199366 - "morpheus-graphql-app_0_27_2" = callPackage 199421 + "morpheus-graphql-app_0_27_3" = callPackage 199367 199422 ({ mkDerivation, aeson, base, bytestring, containers, directory 199368 199423 , hashable, megaparsec, morpheus-graphql-core 199369 199424 , morpheus-graphql-tests, mtl, relude, scientific, tasty ··· 199372 199427 }: 199373 199428 mkDerivation { 199374 199429 pname = "morpheus-graphql-app"; 199375 - version = "0.27.2"; 199376 - sha256 = "1p9m9id8p737fzpmkb7ycbfvzims4qhayf3vm0d0k6bq07mlky7y"; 199430 + version = "0.27.3"; 199431 + sha256 = "0dicajcqgxpv1jhnywjjs0g4p5ryv0xlrywib1xwxrb04wy9aa3f"; 199377 199432 enableSeparateDataOutput = true; 199378 199433 libraryHaskellDepends = [ 199379 199434 aeson base bytestring containers hashable megaparsec ··· 199424 199479 }: 199425 199480 mkDerivation { 199426 199481 pname = "morpheus-graphql-client"; 199427 - version = "0.27.1"; 199428 - sha256 = "095kyjyv7gyrlqsdbw1aab2l990risr72c2j5gcwskbgqm7p3fip"; 199482 + version = "0.27.2"; 199483 + sha256 = "099pn7k8nw1yxh0sd6g34dwgnw7skqzh7lr8lvfl1hr1i9ak6c3q"; 199429 199484 enableSeparateDataOutput = true; 199430 199485 libraryHaskellDepends = [ 199431 199486 aeson base bytestring containers file-embed modern-uri ··· 199445 199500 license = lib.licenses.mit; 199446 199501 }) {}; 199447 199502 199448 - "morpheus-graphql-client_0_27_2" = callPackage 199503 + "morpheus-graphql-client_0_27_3" = callPackage 199449 199504 ({ mkDerivation, aeson, base, bytestring, containers, directory 199450 199505 , file-embed, modern-uri, morpheus-graphql-code-gen-utils 199451 199506 , morpheus-graphql-core, morpheus-graphql-subscriptions, mtl ··· 199455 199510 }: 199456 199511 mkDerivation { 199457 199512 pname = "morpheus-graphql-client"; 199458 - version = "0.27.2"; 199459 - sha256 = "099pn7k8nw1yxh0sd6g34dwgnw7skqzh7lr8lvfl1hr1i9ak6c3q"; 199513 + version = "0.27.3"; 199514 + sha256 = "1j4r6ar6l462aq8qvxikmwyxd2f8i60gd3j0qf5pxsslgjwmjbi9"; 199460 199515 enableSeparateDataOutput = true; 199461 199516 libraryHaskellDepends = [ 199462 199517 aeson base bytestring containers file-embed modern-uri ··· 199486 199541 }: 199487 199542 mkDerivation { 199488 199543 pname = "morpheus-graphql-code-gen"; 199489 - version = "0.27.1"; 199490 - sha256 = "0qvk2zpqhhjjfha5hfd9nkv30m07qbbnpil9h00w3skdw33mqqqk"; 199544 + version = "0.27.2"; 199545 + sha256 = "1p1s4szb284i53ifpzhm4p0bh2ba5ww42llljqvwhs5rwbz6lg8i"; 199491 199546 isLibrary = true; 199492 199547 isExecutable = true; 199493 199548 libraryHaskellDepends = [ ··· 199508 199563 mainProgram = "morpheus"; 199509 199564 }) {}; 199510 199565 199511 - "morpheus-graphql-code-gen_0_27_2" = callPackage 199566 + "morpheus-graphql-code-gen_0_27_3" = callPackage 199512 199567 ({ mkDerivation, base, bytestring, containers, file-embed, filepath 199513 199568 , Glob, morpheus-graphql-client, morpheus-graphql-code-gen-utils 199514 199569 , morpheus-graphql-core, morpheus-graphql-server ··· 199517 199572 }: 199518 199573 mkDerivation { 199519 199574 pname = "morpheus-graphql-code-gen"; 199520 - version = "0.27.2"; 199521 - sha256 = "1p1s4szb284i53ifpzhm4p0bh2ba5ww42llljqvwhs5rwbz6lg8i"; 199575 + version = "0.27.3"; 199576 + sha256 = "1rmxcr17xjx99aam048a4sqlwlnxjk41hx8fnb363ljid74vrcrb"; 199522 199577 isLibrary = true; 199523 199578 isExecutable = true; 199524 199579 libraryHaskellDepends = [ ··· 199547 199602 }: 199548 199603 mkDerivation { 199549 199604 pname = "morpheus-graphql-code-gen-utils"; 199550 - version = "0.27.1"; 199551 - sha256 = "0f8152jzjynfl65k8f4iyyi8akqrcn9dhx8pi20yhf152h5w0clp"; 199605 + version = "0.27.2"; 199606 + sha256 = "032vsvwknlv6ha289s71cwzq1qsisn6028p8k4hyqzmvqcm5aqg7"; 199552 199607 libraryHaskellDepends = [ 199553 199608 base bytestring containers morpheus-graphql-core mtl prettyprinter 199554 199609 relude template-haskell text unordered-containers ··· 199557 199612 license = lib.licenses.bsd3; 199558 199613 }) {}; 199559 199614 199560 - "morpheus-graphql-code-gen-utils_0_27_2" = callPackage 199615 + "morpheus-graphql-code-gen-utils_0_27_3" = callPackage 199561 199616 ({ mkDerivation, base, bytestring, containers 199562 199617 , morpheus-graphql-core, mtl, prettyprinter, relude 199563 199618 , template-haskell, text, unordered-containers 199564 199619 }: 199565 199620 mkDerivation { 199566 199621 pname = "morpheus-graphql-code-gen-utils"; 199567 - version = "0.27.2"; 199568 - sha256 = "032vsvwknlv6ha289s71cwzq1qsisn6028p8k4hyqzmvqcm5aqg7"; 199622 + version = "0.27.3"; 199623 + sha256 = "11dfnyd9wbrwjfjz1qkc188x6l4b149jsyzjwh1gqji0skzsk3f6"; 199569 199624 libraryHaskellDepends = [ 199570 199625 base bytestring containers morpheus-graphql-core mtl prettyprinter 199571 199626 relude template-haskell text unordered-containers ··· 199583 199638 }: 199584 199639 mkDerivation { 199585 199640 pname = "morpheus-graphql-core"; 199586 - version = "0.27.1"; 199587 - sha256 = "1id4dxi4kpgd25ffhw5qgkl05b2642qpz5dss68nq0n1cs2c021b"; 199641 + version = "0.27.2"; 199642 + sha256 = "16zff8r85aln6fl7zl48hzkij80aippg91kwdr7q5k1i0glg2c1n"; 199588 199643 enableSeparateDataOutput = true; 199589 199644 libraryHaskellDepends = [ 199590 199645 aeson base bytestring containers hashable megaparsec mtl relude ··· 199601 199656 license = lib.licenses.mit; 199602 199657 }) {}; 199603 199658 199604 - "morpheus-graphql-core_0_27_2" = callPackage 199659 + "morpheus-graphql-core_0_27_3" = callPackage 199605 199660 ({ mkDerivation, aeson, base, bytestring, containers, directory 199606 199661 , hashable, megaparsec, morpheus-graphql-tests, mtl, relude 199607 199662 , scientific, tasty, tasty-hunit, template-haskell, text ··· 199609 199664 }: 199610 199665 mkDerivation { 199611 199666 pname = "morpheus-graphql-core"; 199612 - version = "0.27.2"; 199613 - sha256 = "16zff8r85aln6fl7zl48hzkij80aippg91kwdr7q5k1i0glg2c1n"; 199667 + version = "0.27.3"; 199668 + sha256 = "0dd8bifn6qwpss06hbb0r730fqfkbd4nhwsr2bsrgxc7hvzv9wi7"; 199614 199669 enableSeparateDataOutput = true; 199615 199670 libraryHaskellDepends = [ 199616 199671 aeson base bytestring containers hashable megaparsec mtl relude ··· 199637 199692 }: 199638 199693 mkDerivation { 199639 199694 pname = "morpheus-graphql-server"; 199640 - version = "0.27.1"; 199641 - sha256 = "0b8hipwp5ddxn92appn2n6s43kmqvqrp2rg055jkb2kcfwh8g828"; 199695 + version = "0.27.2"; 199696 + sha256 = "0jfvg2r2nhx62n10ljy6c8qg4a91jsxmzcwx6f7yj4hp2z285a2l"; 199642 199697 enableSeparateDataOutput = true; 199643 199698 libraryHaskellDepends = [ 199644 199699 aeson base bytestring containers morpheus-graphql-app ··· 199655 199710 license = lib.licenses.mit; 199656 199711 }) {}; 199657 199712 199658 - "morpheus-graphql-server_0_27_2" = callPackage 199713 + "morpheus-graphql-server_0_27_3" = callPackage 199659 199714 ({ mkDerivation, aeson, base, bytestring, containers, file-embed 199660 199715 , morpheus-graphql-app, morpheus-graphql-core 199661 199716 , morpheus-graphql-subscriptions, morpheus-graphql-tests, mtl ··· 199664 199719 }: 199665 199720 mkDerivation { 199666 199721 pname = "morpheus-graphql-server"; 199667 - version = "0.27.2"; 199668 - sha256 = "0jfvg2r2nhx62n10ljy6c8qg4a91jsxmzcwx6f7yj4hp2z285a2l"; 199722 + version = "0.27.3"; 199723 + sha256 = "1hl2c78pnx2rxx869p6ixvnyhzm46f1hzalqz2vbwrflshpmjv91"; 199669 199724 enableSeparateDataOutput = true; 199670 199725 libraryHaskellDepends = [ 199671 199726 aeson base bytestring containers morpheus-graphql-app ··· 199690 199745 }: 199691 199746 mkDerivation { 199692 199747 pname = "morpheus-graphql-subscriptions"; 199693 - version = "0.27.1"; 199694 - sha256 = "0nj05ywj460v8kd821w7br44bx8wzqbbil0jb42sv442py69d6lj"; 199748 + version = "0.27.2"; 199749 + sha256 = "0qg8nkawwjm4sak524mgbid5f9a246c8a0w6cv3x4d3w01pnk9j9"; 199695 199750 libraryHaskellDepends = [ 199696 199751 aeson base bytestring morpheus-graphql-app morpheus-graphql-core 199697 199752 mtl relude text transformers unliftio-core unordered-containers ··· 199701 199756 license = lib.licenses.mit; 199702 199757 }) {}; 199703 199758 199704 - "morpheus-graphql-subscriptions_0_27_2" = callPackage 199759 + "morpheus-graphql-subscriptions_0_27_3" = callPackage 199705 199760 ({ mkDerivation, aeson, base, bytestring, morpheus-graphql-app 199706 199761 , morpheus-graphql-core, mtl, relude, text, transformers 199707 199762 , unliftio-core, unordered-containers, uuid, websockets 199708 199763 }: 199709 199764 mkDerivation { 199710 199765 pname = "morpheus-graphql-subscriptions"; 199711 - version = "0.27.2"; 199712 - sha256 = "0qg8nkawwjm4sak524mgbid5f9a246c8a0w6cv3x4d3w01pnk9j9"; 199766 + version = "0.27.3"; 199767 + sha256 = "0gynrshv858g36jwvmh3q2asc6ppkr7hv9w9lx1qfjqfwm7r0140"; 199713 199768 libraryHaskellDepends = [ 199714 199769 aeson base bytestring morpheus-graphql-app morpheus-graphql-core 199715 199770 mtl relude text transformers unliftio-core unordered-containers ··· 199726 199781 }: 199727 199782 mkDerivation { 199728 199783 pname = "morpheus-graphql-tests"; 199729 - version = "0.27.1"; 199730 - sha256 = "1nhpcai8lk3jq676zp6y6jcylm3zjzl4s6hk0f3g7vmg971ycd9w"; 199784 + version = "0.27.2"; 199785 + sha256 = "1vav6nrm26kbngzh0r5qvzg2524v30nx96s9vy61a3zmkwd9i5fc"; 199731 199786 libraryHaskellDepends = [ 199732 199787 aeson base bytestring directory relude tasty tasty-hunit text 199733 199788 unordered-containers ··· 199736 199791 license = lib.licenses.mit; 199737 199792 }) {}; 199738 199793 199739 - "morpheus-graphql-tests_0_27_2" = callPackage 199794 + "morpheus-graphql-tests_0_27_3" = callPackage 199740 199795 ({ mkDerivation, aeson, base, bytestring, directory, relude, tasty 199741 199796 , tasty-hunit, text, unordered-containers 199742 199797 }: 199743 199798 mkDerivation { 199744 199799 pname = "morpheus-graphql-tests"; 199745 - version = "0.27.2"; 199746 - sha256 = "1vav6nrm26kbngzh0r5qvzg2524v30nx96s9vy61a3zmkwd9i5fc"; 199800 + version = "0.27.3"; 199801 + sha256 = "1s9x4gcqd36gqf5w2wxiqhf7k9y44b7g7zm90y2kbclxqirs9rqf"; 199747 199802 libraryHaskellDepends = [ 199748 199803 aeson base bytestring directory relude tasty tasty-hunit text 199749 199804 unordered-containers ··· 207444 207499 pname = "newtype-generics"; 207445 207500 version = "0.6.2"; 207446 207501 sha256 = "0km7cp041bgdgrxrbrawz611mcylxp943880a2yg228a09961b51"; 207447 - revision = "1"; 207448 - editedCabalFile = "0xgc7sxs1p3qibgwbikjdrhn47j7m4gk5x1wrv9hncks6hd6hsyf"; 207502 + revision = "2"; 207503 + editedCabalFile = "1sys4nr905q5wxxyq0bv4mvaagm2qdx42q5v2316l60s4ivz7jw1"; 207449 207504 libraryHaskellDepends = [ base ]; 207450 207505 testHaskellDepends = [ base hspec ]; 207451 207506 testToolDepends = [ hspec-discover ]; ··· 212620 212675 }: 212621 212676 mkDerivation { 212622 212677 pname = "opaleye"; 212623 - version = "0.9.6.1"; 212624 - sha256 = "0xk2ibdakzayqc8h72iq3gav9ism5sww4wiz0wxypm6landzikfr"; 212625 - libraryHaskellDepends = [ 212626 - aeson base base16-bytestring bytestring case-insensitive 212627 - contravariant postgresql-simple pretty product-profunctors 212628 - profunctors scientific semigroups text time-compat 212629 - time-locale-compat transformers uuid void 212630 - ]; 212631 - testHaskellDepends = [ 212632 - aeson base bytestring containers contravariant dotenv hspec 212633 - hspec-discover multiset postgresql-simple product-profunctors 212634 - profunctors QuickCheck semigroups text time time-compat 212635 - transformers uuid 212636 - ]; 212637 - testToolDepends = [ hspec-discover ]; 212638 - description = "An SQL-generating DSL targeting PostgreSQL"; 212639 - license = lib.licenses.bsd3; 212640 - }) {}; 212641 - 212642 - "opaleye_0_9_6_2" = callPackage 212643 - ({ mkDerivation, aeson, base, base16-bytestring, bytestring 212644 - , case-insensitive, containers, contravariant, dotenv, hspec 212645 - , hspec-discover, multiset, postgresql-simple, pretty 212646 - , product-profunctors, profunctors, QuickCheck, scientific 212647 - , semigroups, text, time, time-compat, time-locale-compat 212648 - , transformers, uuid, void 212649 - }: 212650 - mkDerivation { 212651 - pname = "opaleye"; 212652 212678 version = "0.9.6.2"; 212653 212679 sha256 = "1pq0n3n686bbh6abjagxjkx4whkj1mw7nqvh1f4bkp9f3l4h7a3v"; 212654 212680 libraryHaskellDepends = [ ··· 212666 212692 testToolDepends = [ hspec-discover ]; 212667 212693 description = "An SQL-generating DSL targeting PostgreSQL"; 212668 212694 license = lib.licenses.bsd3; 212669 - hydraPlatforms = lib.platforms.none; 212670 212695 }) {}; 212671 212696 212672 212697 "opaleye-classy" = callPackage ··· 217483 217508 ]; 217484 217509 description = "A tool to convert symbolic regression expressions into different formats"; 217485 217510 license = lib.licenses.gpl3Only; 217511 + hydraPlatforms = lib.platforms.none; 217486 217512 mainProgram = "pandoc-symreg"; 217487 217513 }) {}; 217488 217514 ··· 219436 219462 }: 219437 219463 mkDerivation { 219438 219464 pname = "parsley-core"; 219439 - version = "2.2.0.0"; 219440 - sha256 = "0xkrlplvi97im634v2877capdnp9bl3ynqcxvr707j1s3z3636nq"; 219441 - revision = "1"; 219442 - editedCabalFile = "08y0px0178wmm6vj8y3gssh291j40mi9il18ifl8fxpb58488imq"; 219465 + version = "2.2.0.1"; 219466 + sha256 = "11wa1kkjpdiyg007llic926zpfc3bal9rl3i6hhmrh2w4pf13a7g"; 219443 219467 libraryHaskellDepends = [ 219444 219468 array base bytestring containers dependent-map dependent-sum 219445 219469 ghc-prim hashable mtl pretty-terminal rangeset template-haskell ··· 219823 219847 pname = "password-types"; 219824 219848 version = "1.0.0.0"; 219825 219849 sha256 = "090aqq2xs6m5djvr9zfdj7rxafbmj8d05vij5rchj1f9c46dclb5"; 219826 - revision = "3"; 219827 - editedCabalFile = "0i6djm9zsb95qdan0vr9shilhmzjxqsqrjy9v16hcaph49wnw7pr"; 219850 + revision = "4"; 219851 + editedCabalFile = "0kcd10nxam2ni685j9v9lrd6pi14cpxkr6sqzwxxkhn1mmb0bik7"; 219828 219852 setupHaskellDepends = [ base Cabal cabal-doctest ]; 219829 219853 libraryHaskellDepends = [ base bytestring memory text ]; 219830 219854 testHaskellDepends = [ ··· 220167 220191 license = lib.licenses.bsd3; 220168 220192 }) {}; 220169 220193 220170 - "path-io_1_8_0" = callPackage 220194 + "path-io_1_8_1" = callPackage 220171 220195 ({ mkDerivation, base, containers, directory, dlist, exceptions 220172 220196 , filepath, hspec, path, temporary, time, transformers, unix-compat 220173 220197 }: 220174 220198 mkDerivation { 220175 220199 pname = "path-io"; 220176 - version = "1.8.0"; 220177 - sha256 = "1iq6yj5kj8i20sr4h8rabway76hk0xmy9mi499xv22php3vb79l3"; 220200 + version = "1.8.1"; 220201 + sha256 = "1phaxzff8n4jfksdakbzxadh8m07h5ifscwyjz4h5568rlv7zlws"; 220178 220202 libraryHaskellDepends = [ 220179 220203 base containers directory dlist exceptions filepath path temporary 220180 220204 time transformers unix-compat ··· 220361 220385 }: 220362 220386 mkDerivation { 220363 220387 pname = "patrol"; 220364 - version = "1.0.0.3"; 220365 - sha256 = "011n6qdwndrnn366kn393hl4aw0ra40x91483ka74ld4wlzscsy3"; 220388 + version = "1.0.0.4"; 220389 + sha256 = "0pjczxpjjlzl1d56yqg07lgj5k2w1gx0krsjpkg1xar36iis5m2f"; 220366 220390 libraryHaskellDepends = [ 220367 220391 aeson base bytestring case-insensitive containers exceptions 220368 220392 http-client http-types network-uri text time uuid ··· 225008 225032 license = lib.licenses.bsd3; 225009 225033 }) {}; 225010 225034 225035 + "pinch_0_4_3_0" = callPackage 225036 + ({ mkDerivation, array, async, base, bytestring, cereal, containers 225037 + , deepseq, ghc-prim, hashable, hspec, hspec-discover, network 225038 + , network-run, QuickCheck, semigroups, text, unordered-containers 225039 + , vector 225040 + }: 225041 + mkDerivation { 225042 + pname = "pinch"; 225043 + version = "0.4.3.0"; 225044 + sha256 = "1m9pmcraw3rxgib44pskldig2xp0106zpbj3dbdgxam0ikaybb71"; 225045 + libraryHaskellDepends = [ 225046 + array base bytestring cereal containers deepseq ghc-prim hashable 225047 + network semigroups text unordered-containers vector 225048 + ]; 225049 + libraryToolDepends = [ hspec-discover ]; 225050 + testHaskellDepends = [ 225051 + async base bytestring cereal containers hspec network network-run 225052 + QuickCheck semigroups text unordered-containers vector 225053 + ]; 225054 + testToolDepends = [ hspec-discover ]; 225055 + description = "An alternative implementation of Thrift for Haskell"; 225056 + license = lib.licenses.bsd3; 225057 + hydraPlatforms = lib.platforms.none; 225058 + }) {}; 225059 + 225011 225060 "pinch-gen" = callPackage 225012 225061 ({ mkDerivation, base, bytestring, directory, filepath 225013 225062 , language-thrift, megaparsec, mtl, optparse-applicative ··· 226231 226280 pname = "pipes-safe"; 226232 226281 version = "2.3.4"; 226233 226282 sha256 = "1ha0q1dwl52rn59shmk8jhp7grngpiwmp8x4qa9h54flvxkqk12x"; 226234 - revision = "5"; 226235 - editedCabalFile = "0mh22g35wl0ri8fysyvk30qwkr9i7lynllwhg2z530lrsxqyfjqy"; 226283 + revision = "6"; 226284 + editedCabalFile = "00zidlhj81dp9ksnilkazi9rzi8azxxyv7gwjm0nn12jii45q6i4"; 226236 226285 libraryHaskellDepends = [ 226237 226286 base containers exceptions monad-control mtl pipes primitive 226238 226287 transformers transformers-base ··· 227760 227809 }: 227761 227810 mkDerivation { 227762 227811 pname = "pointfree"; 227763 - version = "1.1.1.9"; 227764 - sha256 = "1h6s4cjnj20rsvjcq6xvzyxfb156l4kmca7dcfm6bqkadpp2ia1w"; 227812 + version = "1.1.1.10"; 227813 + sha256 = "14q5anaxhqwqhz3gc2vbs8hqnijg02s3py5kyifmwlh1smnx5ls2"; 227765 227814 isLibrary = true; 227766 227815 isExecutable = true; 227767 227816 libraryHaskellDepends = [ ··· 231130 231179 pname = "postgresql-simple-url"; 231131 231180 version = "0.2.1.0"; 231132 231181 sha256 = "1jg9gvpidrfy2hqixwqsym1l1mnkafmxwq58jpbzdmrbvryga1qk"; 231133 - revision = "6"; 231134 - editedCabalFile = "1pvfb61ys58s66dass8qfaxrd4pbkbk8hsbrijds6gybcx3a7nhy"; 231182 + revision = "7"; 231183 + editedCabalFile = "1k5qpzxf4gp3smpriawdbwifyyf5dp2qfqm5wxk1gmbviqwm4f70"; 231135 231184 libraryHaskellDepends = [ 231136 231185 base network-uri postgresql-simple split 231137 231186 ]; ··· 232200 232249 license = lib.licenses.bsd3; 232201 232250 }) {}; 232202 232251 232252 + "prefix-units_0_3_0_1" = callPackage 232253 + ({ mkDerivation, base, Cabal, deepseq, HUnit, QuickCheck 232254 + , test-framework, test-framework-hunit, test-framework-quickcheck2 232255 + }: 232256 + mkDerivation { 232257 + pname = "prefix-units"; 232258 + version = "0.3.0.1"; 232259 + sha256 = "1knxb1r0lxdjr7iaqhknbzpidcz1fzfsarqg2fjz6mznjiqlsdgn"; 232260 + revision = "1"; 232261 + editedCabalFile = "0xds7l1xnxaq3frds928rkaqrqcs4cbszwwis5fzvrg20p3p9lcy"; 232262 + libraryHaskellDepends = [ base ]; 232263 + testHaskellDepends = [ 232264 + base Cabal deepseq HUnit QuickCheck test-framework 232265 + test-framework-hunit test-framework-quickcheck2 232266 + ]; 232267 + description = "A basic library for SI/IEC prefix units"; 232268 + license = lib.licenses.bsd3; 232269 + hydraPlatforms = lib.platforms.none; 232270 + }) {}; 232271 + 232203 232272 "prefork" = callPackage 232204 232273 ({ mkDerivation, base, cab, containers, data-default, directory 232205 232274 , filepath, hspec, process, stm, system-argv0, system-filepath ··· 234448 234517 }: 234449 234518 mkDerivation { 234450 234519 pname = "product-profunctors"; 234451 - version = "0.11.0.3"; 234452 - sha256 = "11q9vxj7pnby51gwgm0d17gd6ps2bxwrvajpqaqcg6bsdgdzvjws"; 234453 - libraryHaskellDepends = [ 234454 - base bifunctors contravariant profunctors tagged template-haskell 234455 - th-abstraction 234456 - ]; 234457 - testHaskellDepends = [ base profunctors ]; 234458 - benchmarkHaskellDepends = [ base criterion deepseq ]; 234459 - description = "product-profunctors"; 234460 - license = lib.licenses.bsd3; 234461 - }) {}; 234462 - 234463 - "product-profunctors_0_11_1_1" = callPackage 234464 - ({ mkDerivation, base, bifunctors, contravariant, criterion 234465 - , deepseq, profunctors, tagged, template-haskell, th-abstraction 234466 - }: 234467 - mkDerivation { 234468 - pname = "product-profunctors"; 234469 234520 version = "0.11.1.1"; 234470 234521 sha256 = "1nhwpfjz4iz30h8q7d40hlibqqymvmcf6wmbl6h3212d54hqdgiz"; 234522 + revision = "1"; 234523 + editedCabalFile = "12qgjm4r6k28vm1756grhgh16g4qv0s2nri8ysqi7jkvbjdm1jn4"; 234471 234524 libraryHaskellDepends = [ 234472 234525 base bifunctors contravariant profunctors tagged template-haskell 234473 234526 th-abstraction ··· 234476 234529 benchmarkHaskellDepends = [ base criterion deepseq ]; 234477 234530 description = "product-profunctors"; 234478 234531 license = lib.licenses.bsd3; 234479 - hydraPlatforms = lib.platforms.none; 234480 234532 }) {}; 234481 234533 234482 234534 "prof-flamegraph" = callPackage ··· 235599 235651 }: 235600 235652 mkDerivation { 235601 235653 pname = "proto-lens"; 235602 - version = "0.7.1.2"; 235603 - sha256 = "0zbkwksmnpc5ivbhckg1kjivn1qbk9pz79vifyiydp90nxjh56fy"; 235604 - enableSeparateDataOutput = true; 235605 - libraryHaskellDepends = [ 235606 - base bytestring containers deepseq ghc-prim lens-family parsec 235607 - pretty primitive profunctors tagged text transformers vector 235608 - ]; 235609 - testHaskellDepends = [ 235610 - base bytestring QuickCheck tasty tasty-quickcheck vector 235611 - ]; 235612 - description = "A lens-based implementation of protocol buffers in Haskell"; 235613 - license = lib.licenses.bsd3; 235614 - }) {}; 235615 - 235616 - "proto-lens_0_7_1_3" = callPackage 235617 - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim 235618 - , lens-family, parsec, pretty, primitive, profunctors, QuickCheck 235619 - , tagged, tasty, tasty-quickcheck, text, transformers, vector 235620 - }: 235621 - mkDerivation { 235622 - pname = "proto-lens"; 235623 235654 version = "0.7.1.3"; 235624 235655 sha256 = "1b73pa5vs5bhzaf2njhv8idw8i76fm7mq2qjrdv5y7d3f5v33i5a"; 235625 235656 enableSeparateDataOutput = true; ··· 235632 235663 ]; 235633 235664 description = "A lens-based implementation of protocol buffers in Haskell"; 235634 235665 license = lib.licenses.bsd3; 235635 - hydraPlatforms = lib.platforms.none; 235636 235666 }) {}; 235637 235667 235638 235668 "proto-lens-arbitrary" = callPackage ··· 235710 235740 ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 235711 235741 mkDerivation { 235712 235742 pname = "proto-lens-optparse"; 235713 - version = "0.1.1.9"; 235714 - sha256 = "1xg72lnx0r03gg41j8mgd61bil33kxpqd1jdpmgh6jx25km6rw9l"; 235715 - libraryHaskellDepends = [ 235716 - base optparse-applicative proto-lens text 235717 - ]; 235718 - description = "Adapting proto-lens to optparse-applicative ReadMs"; 235719 - license = lib.licenses.bsd3; 235720 - }) {}; 235721 - 235722 - "proto-lens-optparse_0_1_1_10" = callPackage 235723 - ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 235724 - mkDerivation { 235725 - pname = "proto-lens-optparse"; 235726 235743 version = "0.1.1.10"; 235727 235744 sha256 = "0w79ybb5vk7l7c2z5n5b9m6sp56xgabikwpwn64l4x35ird167zh"; 235728 235745 libraryHaskellDepends = [ ··· 235730 235747 ]; 235731 235748 description = "Adapting proto-lens to optparse-applicative ReadMs"; 235732 235749 license = lib.licenses.bsd3; 235733 - hydraPlatforms = lib.platforms.none; 235734 235750 }) {}; 235735 235751 235736 235752 "proto-lens-protobuf-types" = callPackage ··· 235779 235795 }: 235780 235796 mkDerivation { 235781 235797 pname = "proto-lens-runtime"; 235782 - version = "0.7.0.3"; 235783 - sha256 = "1fb64xcrgd7v2l4hqqcs0riszklkxh516l7n4p9lwwqmagmgz36y"; 235784 - libraryHaskellDepends = [ 235785 - base bytestring containers deepseq filepath lens-family proto-lens 235786 - text vector 235787 - ]; 235788 - doHaddock = false; 235789 - license = lib.licenses.bsd3; 235790 - }) {}; 235791 - 235792 - "proto-lens-runtime_0_7_0_4" = callPackage 235793 - ({ mkDerivation, base, bytestring, containers, deepseq, filepath 235794 - , lens-family, proto-lens, text, vector 235795 - }: 235796 - mkDerivation { 235797 - pname = "proto-lens-runtime"; 235798 235798 version = "0.7.0.4"; 235799 235799 sha256 = "0ivzb19fxydn3i5inpjvnvj4ghfwiakhp0wqasp6pmbzv40wsjap"; 235800 235800 libraryHaskellDepends = [ ··· 235803 235803 ]; 235804 235804 doHaddock = false; 235805 235805 license = lib.licenses.bsd3; 235806 - hydraPlatforms = lib.platforms.none; 235807 235806 }) {}; 235808 235807 235809 235808 "proto-lens-setup" = callPackage ··· 237268 237267 }: 237269 237268 mkDerivation { 237270 237269 pname = "purescript"; 237271 - version = "0.15.8"; 237272 - sha256 = "1h5d5hjc9hrlk718lf62qzaq1l6ppr0l2b3fl78csyh86cihh750"; 237270 + version = "0.15.9"; 237271 + sha256 = "1i9wszs5kwwq0l8l4if05y8xc8fih10assrdj8q1ipr0hx3zjawm"; 237273 237272 isLibrary = true; 237274 237273 isExecutable = true; 237275 237274 libraryHaskellDepends = [ ··· 238424 238423 }: 238425 238424 mkDerivation { 238426 238425 pname = "qrcode-core"; 238427 - version = "0.9.6"; 238428 - sha256 = "1abcv97p6ygayvcgmdnkikgxz9md1zjwcm1pglkdk2l18wav1mmd"; 238426 + version = "0.9.7"; 238427 + sha256 = "05h14ingvscyjxxig1iv7xb476qjngzfh8iw8f82jszmxdh4nwqg"; 238429 238428 libraryHaskellDepends = [ 238430 238429 base binary bytestring case-insensitive containers dlist primitive 238431 238430 text vector ··· 238440 238439 }: 238441 238440 mkDerivation { 238442 238441 pname = "qrcode-juicypixels"; 238443 - version = "0.8.4"; 238444 - sha256 = "1dmas3hv02y89akwdp7s7sm4hr3cpq68kny61pfs1p7z6wwxqlya"; 238442 + version = "0.8.5"; 238443 + sha256 = "0qgcdi77iyx04w2rx48nzk8lm9x368h9m4a468zcibn50cp4ynbg"; 238445 238444 libraryHaskellDepends = [ 238446 238445 base base64-bytestring bytestring JuicyPixels qrcode-core text 238447 238446 vector ··· 239556 239555 ({ mkDerivation, aeson, ansi-wl-pprint, array, base, bifunctors 239557 239556 , bytestring, containers, directory, doctest, exceptions, filelock 239558 239557 , filepath, generic-data, graphviz, hashable, hashtables, hs-rqlite 239559 - , HTTP, http-client, markov-chain-usage-model, matrix, monad-logger 239560 - , mtl, network, persistent, persistent-postgresql 239561 - , persistent-sqlite, persistent-template, postgresql-simple 239562 - , pretty-show, process, QuickCheck, quickcheck-instances, random 239563 - , resource-pool, resourcet, servant, servant-client, servant-server 239564 - , sop-core, split, stm, strict, string-conversions, tasty 239565 - , tasty-hunit, tasty-quickcheck, text, time, tree-diff, unliftio 239566 - , unliftio-core, vector, wai, warp 239567 - }: 239568 - mkDerivation { 239569 - pname = "quickcheck-state-machine"; 239570 - version = "0.7.1"; 239571 - sha256 = "0s6j3y0fkbbhmid0skqxx2m3mpbphz6npw9fvim5kx7w4i6jrvfz"; 239572 - libraryHaskellDepends = [ 239573 - ansi-wl-pprint base containers directory exceptions filepath 239574 - generic-data graphviz markov-chain-usage-model matrix mtl 239575 - pretty-show process QuickCheck random sop-core split text time 239576 - tree-diff unliftio 239577 - ]; 239578 - testHaskellDepends = [ 239579 - aeson array base bifunctors bytestring containers directory doctest 239580 - filelock filepath hashable hashtables hs-rqlite HTTP http-client 239581 - monad-logger mtl network persistent persistent-postgresql 239582 - persistent-sqlite persistent-template postgresql-simple pretty-show 239583 - process QuickCheck quickcheck-instances random resource-pool 239584 - resourcet servant servant-client servant-server split stm strict 239585 - string-conversions tasty tasty-hunit tasty-quickcheck text time 239586 - tree-diff unliftio unliftio-core vector wai warp 239587 - ]; 239588 - description = "Test monadic programs using state machine based models"; 239589 - license = lib.licenses.bsd3; 239590 - hydraPlatforms = lib.platforms.none; 239591 - }) {}; 239592 - 239593 - "quickcheck-state-machine_0_7_2" = callPackage 239594 - ({ mkDerivation, aeson, ansi-wl-pprint, array, base, bifunctors 239595 - , bytestring, containers, directory, doctest, exceptions, filelock 239596 - , filepath, generic-data, graphviz, hashable, hashtables, hs-rqlite 239597 239558 , http-client, markov-chain-usage-model, matrix, monad-logger, mtl 239598 239559 , network, persistent, persistent-postgresql, persistent-sqlite 239599 239560 , persistent-template, postgresql-simple, pretty-show, process ··· 240957 240918 ({ mkDerivation, base, hspec }: 240958 240919 mkDerivation { 240959 240920 pname = "rampart"; 240960 - version = "2.0.0.5"; 240961 - sha256 = "0g5nxvfmr1fng71qlyk30pscpd1y8qa51q9vwzwf8fd5sp13qvz9"; 240921 + version = "2.0.0.6"; 240922 + sha256 = "0znh7v4s7mljlkhk4xpgkps8irbnqh8q2hrb1niwjxnl9mvchpjg"; 240962 240923 libraryHaskellDepends = [ base ]; 240963 240924 testHaskellDepends = [ base hspec ]; 240964 240925 description = "Determine how intervals relate to each other"; ··· 241198 241159 }: 241199 241160 mkDerivation { 241200 241161 pname = "random-fu"; 241201 - version = "0.3.0.0"; 241202 - sha256 = "1iz4b8742pshzsscy6pq39x4pndvyrydzrn968fzav9b1y6ib7d1"; 241203 - libraryHaskellDepends = [ 241204 - base erf math-functions monad-loops mtl random random-shuffle rvar 241205 - syb template-haskell transformers vector 241206 - ]; 241207 - description = "Random number generation"; 241208 - license = lib.licenses.publicDomain; 241209 - }) {}; 241210 - 241211 - "random-fu_0_3_0_1" = callPackage 241212 - ({ mkDerivation, base, erf, math-functions, monad-loops, mtl 241213 - , random, random-shuffle, rvar, syb, template-haskell, transformers 241214 - , vector 241215 - }: 241216 - mkDerivation { 241217 - pname = "random-fu"; 241218 241162 version = "0.3.0.1"; 241219 241163 sha256 = "0h2yqjvy9ap5yfcdfr1x28qximx8lr63mlwssxvg3z74g496krh6"; 241220 241164 libraryHaskellDepends = [ ··· 241223 241167 ]; 241224 241168 description = "Random number generation"; 241225 241169 license = lib.licenses.publicDomain; 241226 - hydraPlatforms = lib.platforms.none; 241227 241170 }) {}; 241228 241171 241229 241172 "random-fu-multivariate" = callPackage ··· 241943 241886 }: 241944 241887 mkDerivation { 241945 241888 pname = "ratel"; 241946 - version = "2.0.0.7"; 241947 - sha256 = "1998bl9sggmabl64hkxswahmxqxx4j4sjsc6ghhm67wxikql7wy4"; 241889 + version = "2.0.0.8"; 241890 + sha256 = "0sbh3q4ddsk3fbmvkhcrnp4q0d0san78nnjgplrwz4qq1zk4bp00"; 241948 241891 libraryHaskellDepends = [ 241949 241892 aeson base bytestring case-insensitive containers http-client 241950 241893 http-client-tls http-types uuid ··· 246722 246665 }: 246723 246666 mkDerivation { 246724 246667 pname = "regression-simple"; 246725 - version = "0.2"; 246726 - sha256 = "15axsj9zfllyc98dpvxm7mr1vq2jxj5g7a8lkpbr24fxn3avd708"; 246668 + version = "0.2.1"; 246669 + sha256 = "1l91wmy29581hgdmn6ds6rp7lib4zphyzmqkjykkp5zi17kv8vmd"; 246727 246670 libraryHaskellDepends = [ base deepseq ]; 246728 246671 testHaskellDepends = [ 246729 246672 ad base math-functions splitmix statistics tasty tasty-hunit ··· 249406 249349 }: 249407 249350 mkDerivation { 249408 249351 pname = "retry"; 249409 - version = "0.9.3.0"; 249410 - sha256 = "1kafm17xk6hylr0lwa98wxjcx7z3rgnqi4fzxcks7dy9dz5ms7n1"; 249411 - libraryHaskellDepends = [ 249412 - base exceptions ghc-prim mtl mtl-compat random transformers 249413 - unliftio-core 249414 - ]; 249415 - testHaskellDepends = [ 249416 - base exceptions ghc-prim hedgehog HUnit mtl mtl-compat random stm 249417 - tasty tasty-hedgehog tasty-hunit time transformers unliftio-core 249418 - ]; 249419 - description = "Retry combinators for monadic actions that may fail"; 249420 - license = lib.licenses.bsd3; 249421 - }) {}; 249422 - 249423 - "retry_0_9_3_1" = callPackage 249424 - ({ mkDerivation, base, exceptions, ghc-prim, hedgehog, HUnit, mtl 249425 - , mtl-compat, random, stm, tasty, tasty-hedgehog, tasty-hunit, time 249426 - , transformers, unliftio-core 249427 - }: 249428 - mkDerivation { 249429 - pname = "retry"; 249430 249352 version = "0.9.3.1"; 249431 249353 sha256 = "1mky1dfllmx6dr1gayf636n3z5xrfmam3rhs5vx7c3wj9c8kabk2"; 249432 249354 libraryHaskellDepends = [ ··· 249439 249361 ]; 249440 249362 description = "Retry combinators for monadic actions that may fail"; 249441 249363 license = lib.licenses.bsd3; 249442 - hydraPlatforms = lib.platforms.none; 249443 249364 }) {}; 249444 249365 249445 249366 "retry-effectful" = callPackage ··· 253120 253041 }: 253121 253042 mkDerivation { 253122 253043 pname = "rvar"; 253123 - version = "0.3.0.1"; 253124 - sha256 = "1wa5nxlsfm1la5s70xv3swrmidxy0h6kv9ilicwkls12gwdc2a95"; 253125 - libraryHaskellDepends = [ 253126 - base bytestring MonadPrompt mtl random transformers 253127 - ]; 253128 - description = "Random Variables"; 253129 - license = lib.licenses.publicDomain; 253130 - }) {}; 253131 - 253132 - "rvar_0_3_0_2" = callPackage 253133 - ({ mkDerivation, base, bytestring, MonadPrompt, mtl, random 253134 - , transformers 253135 - }: 253136 - mkDerivation { 253137 - pname = "rvar"; 253138 253044 version = "0.3.0.2"; 253139 253045 sha256 = "1ml8xz5hhjbb4vr89kfibzv3kw0qp7c6bmkja89dir04i9sx0f2i"; 253140 253046 libraryHaskellDepends = [ ··· 253142 253048 ]; 253143 253049 description = "Random Variables"; 253144 253050 license = lib.licenses.publicDomain; 253145 - hydraPlatforms = lib.platforms.none; 253146 253051 }) {}; 253147 253052 253148 253053 "rwlock" = callPackage ··· 253204 253109 ({ mkDerivation, array, base, bifunctors, mtl, template-haskell }: 253205 253110 mkDerivation { 253206 253111 pname = "rzk"; 253207 - version = "0.2.0"; 253208 - sha256 = "0b8jphdsmx9b1k2dyx7il1ci15wsqz15zgr983kpmgsr6ggjjykn"; 253112 + version = "0.3.0"; 253113 + sha256 = "0vbkk0xf7cwynb7w7793byhh40jif3343r3h06h5bm6jz1yf4qxv"; 253209 253114 isLibrary = true; 253210 253115 isExecutable = true; 253211 253116 libraryHaskellDepends = [ ··· 254526 254431 }: 254527 254432 mkDerivation { 254528 254433 pname = "sandwich"; 254529 - version = "0.1.3.1"; 254530 - sha256 = "05x418al128vllrf5rcxl1asqm3lvviizgv3dhiw1pp1zppz4kk4"; 254531 - isLibrary = true; 254532 - isExecutable = true; 254533 - libraryHaskellDepends = [ 254534 - aeson ansi-terminal async base brick bytestring colour containers 254535 - directory exceptions filepath free haskell-src-exts lifted-async 254536 - microlens microlens-th monad-control monad-logger mtl 254537 - optparse-applicative pretty-show process safe safe-exceptions stm 254538 - string-interpolate template-haskell text time transformers 254539 - transformers-base unix unliftio-core vector vty 254540 - ]; 254541 - executableHaskellDepends = [ 254542 - aeson ansi-terminal async base brick bytestring colour containers 254543 - directory exceptions filepath free haskell-src-exts lifted-async 254544 - microlens microlens-th monad-control monad-logger mtl 254545 - optparse-applicative pretty-show process safe safe-exceptions stm 254546 - string-interpolate template-haskell text time transformers 254547 - transformers-base unix unliftio-core vector vty 254548 - ]; 254549 - testHaskellDepends = [ 254550 - aeson ansi-terminal async base brick bytestring colour containers 254551 - directory exceptions filepath free haskell-src-exts lifted-async 254552 - microlens microlens-th monad-control monad-logger mtl 254553 - optparse-applicative pretty-show process safe safe-exceptions stm 254554 - string-interpolate template-haskell text time transformers 254555 - transformers-base unix unliftio-core vector vty 254556 - ]; 254557 - description = "Yet another test framework for Haskell"; 254558 - license = lib.licenses.bsd3; 254559 - }) {}; 254560 - 254561 - "sandwich_0_1_3_2" = callPackage 254562 - ({ mkDerivation, aeson, ansi-terminal, async, base, brick 254563 - , bytestring, colour, containers, directory, exceptions, filepath 254564 - , free, haskell-src-exts, lifted-async, microlens, microlens-th 254565 - , monad-control, monad-logger, mtl, optparse-applicative 254566 - , pretty-show, process, safe, safe-exceptions, stm 254567 - , string-interpolate, template-haskell, text, time, transformers 254568 - , transformers-base, unix, unliftio-core, vector, vty 254569 - }: 254570 - mkDerivation { 254571 - pname = "sandwich"; 254572 254434 version = "0.1.3.2"; 254573 254435 sha256 = "0ijxvyd73xsaaci1kxwgs2k5gj9ax697bd84f7i068g8rc18nyak"; 254574 254436 isLibrary = true; ··· 254599 254461 ]; 254600 254462 description = "Yet another test framework for Haskell"; 254601 254463 license = lib.licenses.bsd3; 254602 - hydraPlatforms = lib.platforms.none; 254603 254464 }) {}; 254604 254465 254605 254466 "sandwich-hedgehog" = callPackage ··· 254651 254512 }: 254652 254513 mkDerivation { 254653 254514 pname = "sandwich-quickcheck"; 254654 - version = "0.1.0.6"; 254655 - sha256 = "1vlp15hcmrxrqwzqgk7ykpg3pvr0wd2cz6pib61yrxmp7334cf4y"; 254656 - libraryHaskellDepends = [ 254657 - base free monad-control mtl QuickCheck safe-exceptions sandwich 254658 - text time 254659 - ]; 254660 - testHaskellDepends = [ 254661 - base free monad-control mtl QuickCheck safe-exceptions sandwich 254662 - text time 254663 - ]; 254664 - description = "Sandwich integration with QuickCheck"; 254665 - license = lib.licenses.bsd3; 254666 - }) {}; 254667 - 254668 - "sandwich-quickcheck_0_1_0_7" = callPackage 254669 - ({ mkDerivation, base, free, monad-control, mtl, QuickCheck 254670 - , safe-exceptions, sandwich, text, time 254671 - }: 254672 - mkDerivation { 254673 - pname = "sandwich-quickcheck"; 254674 254515 version = "0.1.0.7"; 254675 254516 sha256 = "10l3k71lhppss9fdckp4wm3wd16ljg9jy3vq4gsmkzccs66wy7x8"; 254676 254517 libraryHaskellDepends = [ ··· 254683 254524 ]; 254684 254525 description = "Sandwich integration with QuickCheck"; 254685 254526 license = lib.licenses.bsd3; 254686 - hydraPlatforms = lib.platforms.none; 254687 254527 }) {}; 254688 254528 254689 254529 "sandwich-slack" = callPackage ··· 255195 255035 license = lib.licenses.mit; 255196 255036 }) {}; 255197 255037 255198 - "sbp_4_13_0" = callPackage 255038 + "sbp_4_14_0" = callPackage 255199 255039 ({ mkDerivation, aeson, aeson-pretty, array, base 255200 255040 , base64-bytestring, basic-prelude, binary, binary-conduit 255201 255041 , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 ··· 255204 255044 }: 255205 255045 mkDerivation { 255206 255046 pname = "sbp"; 255207 - version = "4.13.0"; 255208 - sha256 = "1gg1awq7xpb6lj25wpjbhfv9vp1a8a4js2w2c7aawl39wc980i6c"; 255047 + version = "4.14.0"; 255048 + sha256 = "1ycz6yqab4l9idsr2ks5mwa9mnbvq9vsjyki4lnxaxqg83f8a0lm"; 255209 255049 isLibrary = true; 255210 255050 isExecutable = true; 255211 255051 libraryHaskellDepends = [ ··· 255531 255371 }) {}; 255532 255372 255533 255373 "scalendar" = callPackage 255534 - ({ mkDerivation, base, containers, hspec, QuickCheck, text, time }: 255374 + ({ mkDerivation, base, containers, hspec, QuickCheck, SCalendar 255375 + , text, time 255376 + }: 255535 255377 mkDerivation { 255536 255378 pname = "scalendar"; 255537 - version = "1.1.1"; 255538 - sha256 = "1hsj1wa4x4qf6vwnxpfl40cx1ghrkdalz5a0nq0si83ykdq14ylf"; 255539 - revision = "1"; 255540 - editedCabalFile = "0ivxl975nlrpzz3rpq4hc9zi4rp7b3lvjn6izp4l83fm3crkl15i"; 255379 + version = "1.2.0"; 255380 + sha256 = "1b33w7fh9jfsr9wrdvnhc7nvn7km69f4qb03d0hb4zlylf6mxj7m"; 255541 255381 libraryHaskellDepends = [ base containers text time ]; 255542 255382 testHaskellDepends = [ 255543 - base containers hspec QuickCheck text time 255383 + base containers hspec QuickCheck SCalendar text time 255544 255384 ]; 255545 - description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; 255385 + description = "A library for handling calendars and resource availability over time"; 255546 255386 license = lib.licenses.mit; 255547 255387 hydraPlatforms = lib.platforms.none; 255548 255388 broken = true; ··· 257142 256982 }: 257143 256983 mkDerivation { 257144 256984 pname = "sdl2"; 257145 - version = "2.5.4.0"; 257146 - sha256 = "1g35phifz49kxk48s8jmgglxhxl79cbzc1cg2qlgk0vdpxpin8ym"; 257147 - revision = "2"; 257148 - editedCabalFile = "1yxzq4gb6ig3d94lc76i5d50fa0j1fxr1wdlmgwhkvlfd4xnh6sg"; 257149 - isLibrary = true; 257150 - isExecutable = true; 257151 - enableSeparateDataOutput = true; 257152 - libraryHaskellDepends = [ 257153 - base bytestring exceptions linear StateVar text transformers vector 257154 - ]; 257155 - librarySystemDepends = [ SDL2 ]; 257156 - libraryPkgconfigDepends = [ SDL2 ]; 257157 - testHaskellDepends = [ base deepseq linear vector weigh ]; 257158 - description = "Both high- and low-level bindings to the SDL library (version 2.0.6+)."; 257159 - license = lib.licenses.bsd3; 257160 - }) {inherit (pkgs) SDL2;}; 257161 - 257162 - "sdl2_2_5_5_0" = callPackage 257163 - ({ mkDerivation, base, bytestring, deepseq, exceptions, linear 257164 - , SDL2, StateVar, text, transformers, vector, weigh 257165 - }: 257166 - mkDerivation { 257167 - pname = "sdl2"; 257168 256985 version = "2.5.5.0"; 257169 256986 sha256 = "1kai6mmnwz9qq7q5y8c7wmcdf9qc5m167dzy3brj11jjds4smz93"; 257170 256987 isLibrary = true; ··· 257178 256995 testHaskellDepends = [ base deepseq linear vector weigh ]; 257179 256996 description = "Both high- and low-level bindings to the SDL library (version 2.0.6+)."; 257180 256997 license = lib.licenses.bsd3; 257181 - hydraPlatforms = lib.platforms.none; 257182 256998 }) {inherit (pkgs) SDL2;}; 257183 256999 257184 257000 "sdl2-cairo" = callPackage ··· 258677 258493 }: 258678 258494 mkDerivation { 258679 258495 pname = "sendgrid-v3"; 258680 - version = "1.0.0.0"; 258681 - sha256 = "0rl1zz01ca61bmm795b769k7h399s0yhkivp2br85flhrqw3asmm"; 258496 + version = "1.0.0.1"; 258497 + sha256 = "04nsk48n1v0qw7mj006dw68pjw8zjldfdpzd41g8dhilkr4n4rip"; 258682 258498 libraryHaskellDepends = [ 258683 258499 aeson base bytestring containers http-client lens semigroups text 258684 258500 wreq ··· 260979 260795 pname = "servant-multipart-api"; 260980 260796 version = "0.12.1"; 260981 260797 sha256 = "1gifa9g7ggs0plzffrd9a8j24dmqvgbkkdkfzyy7mpmwrjqw7mcj"; 260982 - revision = "3"; 260983 - editedCabalFile = "1zhiszjg8n37g25sh2cnw509n0v4b89fd93j466f2gzwkxfaaw0m"; 260798 + revision = "4"; 260799 + editedCabalFile = "0fgkmnfz0mgld1rwdli05kx2wfdxy5fv37i73v3xyx65hn9hfcy0"; 260984 260800 libraryHaskellDepends = [ 260985 260801 base bytestring servant text transformers 260986 260802 ]; ··· 265315 265131 }: 265316 265132 mkDerivation { 265317 265133 pname = "si-timers"; 265318 - version = "1.0.0.1"; 265319 - sha256 = "112rc3178kgam5iqhih20mylbz6l2siiac5d5n1zg4dqisjnh9zn"; 265134 + version = "1.1.0.0"; 265135 + sha256 = "1xcha073j5vylddcx1hrkkwfaajw75j9dvy9haip8crli72535r1"; 265320 265136 libraryHaskellDepends = [ base io-classes mtl stm time ]; 265321 265137 testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; 265322 265138 description = "timers using SI units (seconds)"; ··· 265757 265573 }: 265758 265574 mkDerivation { 265759 265575 pname = "simple"; 265760 - version = "1.0.0"; 265761 - sha256 = "18kzgs897xpvhxl68z49l850j3p4559r27i3sdp5nffyir32lwa5"; 265576 + version = "2.0.0"; 265577 + sha256 = "03x82bpj72mf48qjcygv6cj3df5d5bqq43x8bfgprhq5r31s9yd8"; 265762 265578 isLibrary = true; 265763 265579 isExecutable = true; 265764 265580 enableSeparateDataOutput = true; ··· 266429 266245 }: 266430 266246 mkDerivation { 266431 266247 pname = "simple-postgresql-orm"; 266432 - version = "1.0.0"; 266433 - sha256 = "0dl62x99j331371m8ailvk1pajnb43nsygl33j9vnq5alz7kpifp"; 266248 + version = "2.0.0"; 266249 + sha256 = "1pnazp4flngncc4zks4br3mz0003mf0gdbnzndki8i8d9r94wx8c"; 266434 266250 libraryHaskellDepends = [ 266435 266251 base bytestring directory filepath postgresql-orm postgresql-simple 266436 266252 resource-pool simple transformers ··· 266477 266293 266478 266294 "simple-sendfile" = callPackage 266479 266295 ({ mkDerivation, base, bytestring, conduit, conduit-extra 266480 - , directory, hspec, HUnit, network, process, resourcet, unix 266296 + , directory, hspec, hspec-discover, HUnit, network, process 266297 + , resourcet, unix 266481 266298 }: 266482 266299 mkDerivation { 266483 266300 pname = "simple-sendfile"; 266484 - version = "0.2.30"; 266485 - sha256 = "112j0qfsjazf9wg1zywf7hjybgsiywk9wkm27yi8xzv27hmlv1mn"; 266486 - revision = "1"; 266487 - editedCabalFile = "0g1fn6lcl6zi08miqrg5qyhvwr328yh5mqa5lkbvm5mvk50wiqly"; 266301 + version = "0.2.31"; 266302 + sha256 = "0q65dnvmwwcvpzhg3963s7yy404h4yrjgxvdbjy0grrs1qi6w1v6"; 266488 266303 libraryHaskellDepends = [ base bytestring network unix ]; 266489 266304 testHaskellDepends = [ 266490 266305 base bytestring conduit conduit-extra directory hspec HUnit network 266491 266306 process resourcet unix 266492 266307 ]; 266308 + testToolDepends = [ hspec-discover ]; 266493 266309 description = "Cross platform library for the sendfile system call"; 266494 266310 license = lib.licenses.bsd3; 266495 266311 }) {}; ··· 266519 266335 }: 266520 266336 mkDerivation { 266521 266337 pname = "simple-session"; 266522 - version = "1.0.0"; 266523 - sha256 = "0lgs260wcqa796mw9vsg9dfgx0d8kd5m067cr4s7cp4fbssja0kp"; 266338 + version = "2.0.0"; 266339 + sha256 = "0wsjvrx6ab05hgn75mphx9056yx1x9v4g0frd0cc4n32w48v30zm"; 266524 266340 libraryHaskellDepends = [ 266525 266341 base base64-bytestring blaze-builder byteable bytestring containers 266526 266342 cookie cryptohash http-types simple transformers wai wai-extra ··· 266639 266455 }: 266640 266456 mkDerivation { 266641 266457 pname = "simple-templates"; 266642 - version = "1.0.0"; 266643 - sha256 = "0vm30fdjm5fydv4ns3z2cvmqadyxb47kvj8nzwkk5jff35jaglrf"; 266458 + version = "2.0.0"; 266459 + sha256 = "12jpl09lf8v1jxk1j8v7fl2km27pr28lb2r4fsll1cw6b2xkhvaf"; 266644 266460 libraryHaskellDepends = [ 266645 266461 aeson attoparsec base scientific text unordered-containers vector 266646 266462 ]; ··· 274539 274355 }) {}; 274540 274356 274541 274357 "srtree" = callPackage 274542 - ({ mkDerivation, base, containers, mtl, random, vector }: 274358 + ({ mkDerivation, ad, base, containers, criterion, HUnit, mtl 274359 + , random, vector 274360 + }: 274543 274361 mkDerivation { 274544 274362 pname = "srtree"; 274545 - version = "0.1.2.1"; 274546 - sha256 = "1laybjb57vq50bkk2mqllxwygxg7i04ng2czm8vwy18577psbz11"; 274363 + version = "1.0.0.0"; 274364 + sha256 = "04js6ph95facdm34b9bb598s2j291dv71jg886li933zn5166j29"; 274365 + isLibrary = true; 274366 + isExecutable = true; 274547 274367 libraryHaskellDepends = [ base containers mtl random vector ]; 274548 - testHaskellDepends = [ base containers mtl random vector ]; 274368 + executableHaskellDepends = [ 274369 + base containers criterion mtl random vector 274370 + ]; 274371 + testHaskellDepends = [ 274372 + ad base containers HUnit mtl random vector 274373 + ]; 274549 274374 description = "A general framework to work with Symbolic Regression expression trees"; 274550 274375 license = lib.licenses.bsd3; 274376 + hydraPlatforms = lib.platforms.none; 274377 + mainProgram = "bench-srtree"; 274378 + broken = true; 274551 274379 }) {}; 274552 274380 274553 274381 "srv" = callPackage ··· 277284 277112 }: 277285 277113 mkDerivation { 277286 277114 pname = "stm-hamt"; 277287 - version = "1.2.0.10"; 277288 - sha256 = "1q844hxlb3f92j3q6p3nd3hwb1d0x67z65m0znpgzfxkm69hc23r"; 277115 + version = "1.2.0.11"; 277116 + sha256 = "0dw5vrsc9dwbxnydibwlwhrrg2db2d2frlddw24nfhvydba12p3j"; 277289 277117 libraryHaskellDepends = [ 277290 277118 base deferred-folds focus hashable list-t primitive 277291 277119 primitive-extras transformers ··· 278275 278103 license = lib.licenses.bsd3; 278276 278104 }) {}; 278277 278105 278106 + "streaming-bytestring_0_3_0" = callPackage 278107 + ({ mkDerivation, base, bytestring, deepseq, exceptions, ghc-prim 278108 + , mmorph, mtl, resourcet, smallcheck, streaming, tasty, tasty-hunit 278109 + , tasty-smallcheck, transformers, transformers-base 278110 + }: 278111 + mkDerivation { 278112 + pname = "streaming-bytestring"; 278113 + version = "0.3.0"; 278114 + sha256 = "0n0xa2mdbpz0h21z8xjmvkyj58kx8ln4naw5l7011qdp8lblbr2i"; 278115 + libraryHaskellDepends = [ 278116 + base bytestring deepseq exceptions ghc-prim mmorph mtl resourcet 278117 + streaming transformers transformers-base 278118 + ]; 278119 + testHaskellDepends = [ 278120 + base bytestring resourcet smallcheck streaming tasty tasty-hunit 278121 + tasty-smallcheck transformers 278122 + ]; 278123 + description = "Fast, effectful byte streams"; 278124 + license = lib.licenses.bsd3; 278125 + hydraPlatforms = lib.platforms.none; 278126 + }) {}; 278127 + 278278 278128 "streaming-cassava" = callPackage 278279 278129 ({ mkDerivation, base, bytestring, cassava, hspec, mtl, QuickCheck 278280 278130 , quickcheck-instances, streaming, streaming-bytestring, text ··· 278723 278573 testSystemDepends = [ archive ]; 278724 278574 description = "Stream data from archives using the streamly library"; 278725 278575 license = lib.licenses.bsd3; 278726 - hydraPlatforms = lib.platforms.none; 278727 - broken = true; 278576 + maintainers = [ lib.maintainers.shlok ]; 278728 278577 }) {archive = null;}; 278729 278578 278730 278579 "streamly-binary" = callPackage ··· 278873 278722 testSystemDepends = [ lmdb ]; 278874 278723 description = "Stream data to or from LMDB databases using the streamly library"; 278875 278724 license = lib.licenses.bsd3; 278876 - hydraPlatforms = lib.platforms.none; 278877 - broken = true; 278725 + maintainers = [ lib.maintainers.shlok ]; 278878 278726 }) {inherit (pkgs) lmdb;}; 278879 278727 278880 278728 "streamly-lz4" = callPackage ··· 279312 279160 }) {}; 279313 279161 279314 279162 "strict-list" = callPackage 279315 - ({ mkDerivation, base, deepseq, hashable, QuickCheck 279316 - , quickcheck-instances, rerebase, semigroupoids, tasty, tasty-hunit 279317 - , tasty-quickcheck 279163 + ({ mkDerivation, base, deepseq, hashable, rerebase, semigroupoids 279164 + , tasty, tasty-quickcheck 279318 279165 }: 279319 279166 mkDerivation { 279320 279167 pname = "strict-list"; 279321 - version = "0.1.7"; 279322 - sha256 = "0dhfnb5zvwnnbsy0c9lyymfq223zw9jgwv3wn1rq5xp1np68mkbh"; 279168 + , hsc3-plot, hsc3-sf-hsndfile, safe, split, SVGPath, xml 279169 + sha256 = "1bvzyfcjx6g5n2jm1hi0m3aw71xz842hz30giy8p33wjcbshs1c1"; 279323 279170 libraryHaskellDepends = [ base deepseq hashable semigroupoids ]; 279324 - testHaskellDepends = [ 279325 - QuickCheck quickcheck-instances rerebase tasty tasty-hunit 279326 - tasty-quickcheck 279327 - ]; 279171 + testHaskellDepends = [ rerebase tasty tasty-quickcheck ]; 279328 279172 description = "Strict linked list"; 279329 279173 license = lib.licenses.mit; 279330 279174 }) {}; ··· 279333 279177 ({ mkDerivation, base, io-classes }: 279334 279178 mkDerivation { 279335 279179 pname = "strict-mvar"; 279336 - version = "1.0.0.1"; 279337 - sha256 = "1spfih00nkr5i00dj4r70g8vq0f7gr2kia6l8w2k450b2k749596"; 279180 + version = "1.1.0.0"; 279181 + sha256 = "0wd6kdkady3pwsswyzx5w93fivsrsxvladh7ndip2qscfgpsd4fs"; 279338 279182 libraryHaskellDepends = [ base io-classes ]; 279339 279183 description = "Strict MVars for IO and IOSim"; 279340 279184 license = lib.licenses.asl20; ··· 279357 279201 ({ mkDerivation, array, base, io-classes, stm }: 279358 279202 mkDerivation { 279359 279203 pname = "strict-stm"; 279360 - version = "1.0.0.1"; 279361 - sha256 = "0xgd8hjbb7z168pn92naicfds71fd7s316w5nhvv09bkcsj7n9mx"; 279204 + version = "1.1.0.0"; 279205 + sha256 = "15yq90fa5i0v3mgrb7yhc6c753ypzpw08lh0ramx38kpv7l1gxvx"; 279362 279206 libraryHaskellDepends = [ array base io-classes stm ]; 279363 279207 description = "Strict STM interface polymorphic over stm implementation"; 279364 279208 license = lib.licenses.asl20; ··· 279590 279434 }: 279591 279435 mkDerivation { 279592 279436 pname = "string-interpolate"; 279593 - version = "0.3.2.0"; 279594 - sha256 = "1sdd472rvykrqkv76745vavpycvb0dzcaxs3yw9dfczaxaz16xws"; 279595 - revision = "1"; 279596 - editedCabalFile = "0crn9461yil03bh06z5dwii65sdq9gf7837qxfy5bxna2qwn0zz9"; 279437 + version = "0.3.2.1"; 279438 + sha256 = "1m7xpfvhsn61wvq6axxp93630l6zy3z9zxw7gx9syagjgmyh2brr"; 279597 279439 libraryHaskellDepends = [ 279598 279440 base bytestring haskell-src-exts haskell-src-meta split 279599 279441 template-haskell text text-conversions utf8-string ··· 281968 281810 ({ mkDerivation, base, blaze-markup, blaze-svg, directory, text }: 281969 281811 mkDerivation { 281970 281812 pname = "svg-icons"; 281971 - version = "2.8.0.2"; 281972 - sha256 = "1zjzi4grxzbdbbyiqm68xy3hf4xdxm7cn5g6cz7w8575yjbqghzx"; 281813 + version = "2.8.1.0"; 281814 + sha256 = "01919z0q1nsz8hv4xhn1ag44kd8i3cj7lxn2qfqw8ch3p89jnbla"; 281973 281815 isLibrary = true; 281974 281816 isExecutable = true; 281975 281817 libraryHaskellDepends = [ ··· 282258 282100 }: 282259 282101 mkDerivation { 282260 282102 pname = "swagger2"; 282261 - version = "2.8.6"; 282262 - sha256 = "1cvz98cn4xzr7fx8q7rwr22l7l95z1cvq7qpm1shwca5j4gq5084"; 282263 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 282264 - libraryHaskellDepends = [ 282265 - aeson aeson-pretty base base-compat-batteries bytestring containers 282266 - cookie generics-sop hashable http-media insert-ordered-containers 282267 - lens mtl network optics-core optics-th QuickCheck scientific 282268 - template-haskell text time transformers unordered-containers 282269 - uuid-types vector 282270 - ]; 282271 - testHaskellDepends = [ 282272 - aeson base base-compat-batteries bytestring containers doctest Glob 282273 - hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck 282274 - quickcheck-instances template-haskell text time 282275 - unordered-containers utf8-string vector 282276 - ]; 282277 - testToolDepends = [ hspec-discover ]; 282278 - description = "Swagger 2.0 data model"; 282279 - license = lib.licenses.bsd3; 282280 - }) {}; 282281 - 282282 - "swagger2_2_8_7" = callPackage 282283 - ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries 282284 - , bytestring, Cabal, cabal-doctest, containers, cookie, doctest 282285 - , generics-sop, Glob, hashable, hspec, hspec-discover, http-media 282286 - , HUnit, insert-ordered-containers, lens, mtl, network, optics-core 282287 - , optics-th, QuickCheck, quickcheck-instances, scientific 282288 - , template-haskell, text, time, transformers, unordered-containers 282289 - , utf8-string, uuid-types, vector 282290 - }: 282291 - mkDerivation { 282292 - pname = "swagger2"; 282293 282103 version = "2.8.7"; 282294 282104 sha256 = "021pshm4i5wvlixgr251xzk36bpx42920pfcvq1w4sakx8x9fyli"; 282295 282105 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 282309 282119 testToolDepends = [ hspec-discover ]; 282310 282120 description = "Swagger 2.0 data model"; 282311 282121 license = lib.licenses.bsd3; 282312 - hydraPlatforms = lib.platforms.none; 282313 282122 }) {}; 282314 282123 282315 282124 "swapper" = callPackage ··· 282779 282588 executableHaskellDepends = [ base ]; 282780 282589 description = "Automatic test suite discovery for sydtest"; 282781 282590 license = "unknown"; 282591 + mainProgram = "sydtest-discover"; 282592 + }) {}; 282593 + 282594 + "sydtest-discover_0_0_0_3" = callPackage 282595 + ({ mkDerivation, base, filepath, optparse-applicative, path 282596 + , path-io 282597 + }: 282598 + mkDerivation { 282599 + pname = "sydtest-discover"; 282600 + version = "0.0.0.3"; 282601 + sha256 = "1q0lblsi9shad3kn4vlampfxjl4kq6h04lpf5a2xwwjjbhl40ns2"; 282602 + isLibrary = true; 282603 + isExecutable = true; 282604 + libraryHaskellDepends = [ 282605 + base filepath optparse-applicative path path-io 282606 + ]; 282607 + executableHaskellDepends = [ base ]; 282608 + description = "Automatic test suite discovery for sydtest"; 282609 + license = "unknown"; 282610 + hydraPlatforms = lib.platforms.none; 282782 282611 mainProgram = "sydtest-discover"; 282783 282612 }) {}; 282784 282613 ··· 286251 286080 ({ mkDerivation, base, containers, deepseq, ghc-prim, tasty }: 286252 286081 mkDerivation { 286253 286082 pname = "tasty-bench"; 286254 - version = "0.3.3"; 286255 - sha256 = "13hsagamakay263shjm7pmya7zbl467bgwagxspx8k4xrzzqcx3m"; 286256 - libraryHaskellDepends = [ base containers deepseq ghc-prim tasty ]; 286257 - benchmarkHaskellDepends = [ base ]; 286258 - description = "Featherlight benchmark framework"; 286259 - license = lib.licenses.mit; 286260 - }) {}; 286261 - 286262 - "tasty-bench_0_3_4" = callPackage 286263 - ({ mkDerivation, base, containers, deepseq, ghc-prim, tasty }: 286264 - mkDerivation { 286265 - pname = "tasty-bench"; 286266 286083 version = "0.3.4"; 286267 286084 sha256 = "07nfm7wahfybnlazisf4xn70l25c4lzm190lpakwprdgmzmp3rjd"; 286268 286085 libraryHaskellDepends = [ base containers deepseq ghc-prim tasty ]; 286269 286086 benchmarkHaskellDepends = [ base ]; 286270 286087 description = "Featherlight benchmark framework"; 286271 286088 license = lib.licenses.mit; 286272 - hydraPlatforms = lib.platforms.none; 286273 286089 }) {}; 286274 286090 286275 286091 "tasty-checklist" = callPackage ··· 286596 286412 license = lib.licenses.bsd3; 286597 286413 }) {}; 286598 286414 286599 - "tasty-hspec_1_2_0_3" = callPackage 286600 - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, tasty 286601 - , tasty-quickcheck, tasty-smallcheck 286415 + "tasty-hspec_1_2_0_4" = callPackage 286416 + ({ mkDerivation, base, hspec, hspec-api, hspec-core, QuickCheck 286417 + , tasty, tasty-quickcheck, tasty-smallcheck 286602 286418 }: 286603 286419 mkDerivation { 286604 286420 pname = "tasty-hspec"; 286605 - version = "1.2.0.3"; 286606 - sha256 = "150dvscaa0sv5pjsd74mmnp9f0jmz09qs24swz73wwjzrzmnypcx"; 286607 - revision = "1"; 286608 - editedCabalFile = "01sc5gmij3280b63jpjcz0a2lq045dj5ay46yq9i896cyka6gs6r"; 286421 + version = "1.2.0.4"; 286422 + sha256 = "1hk1nkjvhp89xxgzj6dhbgw0fknnghpng6afq4i39hjkwv5p78ni"; 286609 286423 libraryHaskellDepends = [ 286610 - base hspec hspec-core QuickCheck tasty tasty-quickcheck 286424 + base hspec hspec-api hspec-core QuickCheck tasty tasty-quickcheck 286611 286425 tasty-smallcheck 286612 286426 ]; 286613 286427 description = "Hspec support for the Tasty test framework"; ··· 288133 287947 license = lib.licenses.mit; 288134 287948 }) {}; 288135 287949 287950 + "template-haskell-compat-v0208_0_1_9_2" = callPackage 287951 + ({ mkDerivation, base, template-haskell }: 287952 + mkDerivation { 287953 + pname = "template-haskell-compat-v0208"; 287954 + version = "0.1.9.2"; 287955 + sha256 = "1sfp8bzkxqbk7cjc70sz51mm2mcq9lz6cqk9pch8g3qgcscf02f0"; 287956 + libraryHaskellDepends = [ base template-haskell ]; 287957 + description = "A backwards compatibility layer for Template Haskell newer than 2.8"; 287958 + license = lib.licenses.mit; 287959 + hydraPlatforms = lib.platforms.none; 287960 + }) {}; 287961 + 288136 287962 "template-haskell-optics" = callPackage 288137 287963 ({ mkDerivation, base, containers, optics-core, template-haskell 288138 287964 , th-abstraction ··· 289687 289513 base bytestring cabal-test-bin hspec hspec-test-sandbox process 289688 289514 shakespeare test-sandbox text unix 289689 289515 ]; 289690 - description = "Lightweight development environments using test-sandbox"; 289516 + description = "Lightweight development enviroments using test-sandbox"; 289691 289517 license = lib.licenses.bsd3; 289692 289518 hydraPlatforms = lib.platforms.none; 289693 289519 mainProgram = "test-sandbox-compose"; ··· 291707 291533 pname = "th-letrec"; 291708 291534 version = "0.1"; 291709 291535 sha256 = "0z9j8a7p9m5kp3zzia593zbzfmqc6himrzzjfk7nplv6vfh36yah"; 291536 + revision = "1"; 291537 + editedCabalFile = "1f6wfk0k6ri8fxld4yz58n6inq8c2qpwkk0b8zd8yrc0584vqxy8"; 291710 291538 libraryHaskellDepends = [ 291711 291539 base containers some template-haskell transformers 291712 291540 ]; ··· 294026 293854 ({ mkDerivation, base, hspec, QuickCheck }: 294027 293855 mkDerivation { 294028 293856 pname = "timers-tick"; 294029 - version = "0.5.0.3"; 294030 - sha256 = "1lypbvg0i0xlss7z7pv9ibqf34jqccin8m2x3y2zzfvf5rbwpkib"; 293857 + version = "0.5.0.4"; 293858 + sha256 = "0q10njbdkiknqyvp276qpac7286z204f0a7qm7hafxzn7wrrp9mn"; 294031 293859 libraryHaskellDepends = [ base ]; 294032 293860 testHaskellDepends = [ base hspec QuickCheck ]; 294033 293861 description = "tick based timers"; ··· 302424 302252 }: 302425 302253 mkDerivation { 302426 302254 pname = "unbound-generics"; 302427 - version = "0.4.2"; 302428 - sha256 = "1pbpcvkkn360l0f5m7q5piyagvxznghknzjpxc7znb35i3xqywl1"; 302255 + version = "0.4.3"; 302256 + sha256 = "06mafwa6sp0b2vb1dlpjp9bsy6h8f01qrq58c3gwvcy5lrz4hwi4"; 302429 302257 libraryHaskellDepends = [ 302430 302258 ansi-wl-pprint base containers contravariant deepseq exceptions mtl 302431 302259 profunctors template-haskell transformers transformers-compat ··· 302451 302279 ]; 302452 302280 description = "Support for programming with names and binders using kind-generics"; 302453 302281 license = lib.licenses.bsd3; 302282 + hydraPlatforms = lib.platforms.none; 302283 + broken = true; 302454 302284 }) {}; 302455 302285 302456 302286 "unbounded-delays" = callPackage ··· 306276 306106 maintainers = [ lib.maintainers.thielema ]; 306277 306107 }) {}; 306278 306108 306109 + "utility-ht_0_0_17" = callPackage 306110 + ({ mkDerivation, base, doctest-exitcode-stdio, doctest-lib 306111 + , QuickCheck 306112 + }: 306113 + mkDerivation { 306114 + pname = "utility-ht"; 306115 + version = "0.0.17"; 306116 + sha256 = "164sy6vdq5vspvfcj59hsmynn97x0wimw4xa5jyzkl4b0vp8lhb2"; 306117 + libraryHaskellDepends = [ base ]; 306118 + testHaskellDepends = [ 306119 + base doctest-exitcode-stdio doctest-lib QuickCheck 306120 + ]; 306121 + description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; 306122 + license = lib.licenses.bsd3; 306123 + hydraPlatforms = lib.platforms.none; 306124 + maintainers = [ lib.maintainers.thielema ]; 306125 + }) {}; 306126 + 306279 306127 "uu-cco" = callPackage 306280 306128 ({ mkDerivation, ansi-terminal, base }: 306281 306129 mkDerivation { ··· 308238 308086 }: 308239 308087 mkDerivation { 308240 308088 pname = "vector-hashtables"; 308241 - version = "0.1.1.2"; 308242 - sha256 = "0hrjvy9qg1m5g3w91zxy4syqmp8jk7ajjbxbzkhy282dwfigkyd2"; 308089 + version = "0.1.1.3"; 308090 + sha256 = "0hi37svcw1z36xmjfx0s8lh2aj7ky9az0g6v4k1wn7c785bccbv6"; 308243 308091 libraryHaskellDepends = [ base hashable primitive vector ]; 308244 308092 testHaskellDepends = [ 308245 308093 base containers hashable hspec primitive QuickCheck ··· 308268 308116 308269 308117 "vector-instances" = callPackage 308270 308118 ({ mkDerivation, base, comonad, hashable, keys, pointed 308271 - , semigroupoids, semigroups, vector 308272 - }: 308273 - mkDerivation { 308274 - pname = "vector-instances"; 308275 - version = "3.4"; 308276 - sha256 = "10akvpa5w9bp0d8hflab63r9laa9gy2hv167smhjsdzq1kplc0hv"; 308277 - revision = "1"; 308278 - editedCabalFile = "177jllmcv0517vppc4lx0l0kvicgaf1h060lkcnv7fl0hnp16zf5"; 308279 - libraryHaskellDepends = [ 308280 - base comonad hashable keys pointed semigroupoids semigroups vector 308281 - ]; 308282 - description = "Orphan Instances for 'Data.Vector'"; 308283 - license = lib.licenses.bsd3; 308284 - }) {}; 308285 - 308286 - "vector-instances_3_4_2" = callPackage 308287 - ({ mkDerivation, base, comonad, hashable, keys, pointed 308288 308119 , semigroupoids, vector 308289 308120 }: 308290 308121 mkDerivation { ··· 308296 308127 ]; 308297 308128 description = "Orphan Instances for 'Data.Vector'"; 308298 308129 license = lib.licenses.bsd3; 308299 - hydraPlatforms = lib.platforms.none; 308300 308130 }) {}; 308301 308131 308302 308132 "vector-instances-collections" = callPackage ··· 308926 308756 license = lib.licenses.bsd3; 308927 308757 }) {}; 308928 308758 308759 + "versions_6_0_0" = callPackage 308760 + ({ mkDerivation, base, deepseq, hashable, megaparsec, microlens 308761 + , parser-combinators, tasty, tasty-hunit, text 308762 + }: 308763 + mkDerivation { 308764 + pname = "versions"; 308765 + version = "6.0.0"; 308766 + sha256 = "1cb8sal6iva16mn9fw1gzac7xd80l9pn5b2msp11rwr2hn8jppyp"; 308767 + libraryHaskellDepends = [ 308768 + base deepseq hashable megaparsec parser-combinators text 308769 + ]; 308770 + testHaskellDepends = [ 308771 + base megaparsec microlens tasty tasty-hunit text 308772 + ]; 308773 + description = "Types and parsers for software version numbers"; 308774 + license = lib.licenses.bsd3; 308775 + hydraPlatforms = lib.platforms.none; 308776 + }) {}; 308777 + 308929 308778 "vessel" = callPackage 308930 308779 ({ mkDerivation, aeson, aeson-gadt-th, base, base-orphans 308931 308780 , bifunctors, commutative-semigroups, constraints ··· 311798 311647 broken = true; 311799 311648 }) {}; 311800 311649 311650 + "wai-problem-details" = callPackage 311651 + ({ mkDerivation, aeson, base, bytestring, data-default 311652 + , deriving-aeson, hspec, hspec-wai, hspec-wai-json, http-types 311653 + , network-uri, text, wai 311654 + }: 311655 + mkDerivation { 311656 + pname = "wai-problem-details"; 311657 + version = "0.1.1.0"; 311658 + sha256 = "1pi7r3c0b5gi6z2hc6m498kf1xs93gn4m2nbkm5ixnja2670qjq8"; 311659 + libraryHaskellDepends = [ 311660 + aeson base bytestring data-default deriving-aeson http-types 311661 + network-uri text wai 311662 + ]; 311663 + testHaskellDepends = [ 311664 + base data-default hspec hspec-wai hspec-wai-json http-types wai 311665 + ]; 311666 + description = "Problem details middleware for WAI"; 311667 + license = lib.licenses.mit; 311668 + hydraPlatforms = lib.platforms.none; 311669 + broken = true; 311670 + }) {}; 311671 + 311801 311672 "wai-rate-limit" = callPackage 311802 311673 ({ mkDerivation, base, http-types, time-units, wai }: 311803 311674 mkDerivation { ··· 313686 313557 }: 313687 313558 mkDerivation { 313688 313559 pname = "webby"; 313689 - version = "1.1.0"; 313690 - sha256 = "1nrk40blzmzv3drgja76bq6czlayqan4rl3wgkd7mlkbkvdplmxj"; 313560 + version = "1.1.1"; 313561 + sha256 = "0iklinrh763cq2b4h59xfiszwbjkfkfs8wbkr2p5n6xnx084jwxq"; 313691 313562 isLibrary = true; 313692 313563 isExecutable = true; 313693 313564 libraryHaskellDepends = [ ··· 321486 321357 321487 321358 "yeamer" = callPackage 321488 321359 ({ mkDerivation, aeson, base, base64-bytestring, blaze-html 321489 - , bytestring, containers, data-default-class, diagrams-cairo 321490 - , diagrams-lib, directory, dumb-cas, filepath, flat, HaTeX 321491 - , js-jquery, microlens, microlens-th, numbered-semigroups 321360 + , bytestring, containers, data-default-class, diagrams-gi-cairo 321361 + , diagrams-lib, directory, dumb-cas, exceptions, filepath, flat 321362 + , HaTeX, js-jquery, microlens, microlens-th, numbered-semigroups 321492 321363 , semigroups, shakespeare, tasty, tasty-hunit, tasty-quickcheck 321493 321364 , template-haskell, temporary, TeX-my-math, texmath, text, these 321494 321365 , these-lens, time, transformers, unix, vector, xml, yesod ··· 321496 321367 }: 321497 321368 mkDerivation { 321498 321369 pname = "yeamer"; 321499 - version = "0.1.2.0"; 321500 - sha256 = "07xl891fdy9cilzpfpirzqmz7f6jw2m151bdk8p16633fkhsmvc3"; 321370 + version = "0.1.3.1"; 321371 + sha256 = "1ki0glpds53p31wwp73v27cb4i6s914q89kkhnl7rmafkjfdc5qd"; 321501 321372 isLibrary = true; 321502 321373 isExecutable = true; 321503 321374 libraryHaskellDepends = [ 321504 321375 aeson base base64-bytestring blaze-html bytestring containers 321505 - data-default-class directory dumb-cas filepath flat HaTeX js-jquery 321506 - microlens microlens-th numbered-semigroups semigroups shakespeare 321507 - template-haskell temporary TeX-my-math texmath text these 321508 - these-lens transformers unix vector xml yesod yesod-form 321509 - yesod-static zlib 321376 + data-default-class directory dumb-cas exceptions filepath flat 321377 + HaTeX js-jquery microlens microlens-th numbered-semigroups 321378 + semigroups shakespeare template-haskell temporary TeX-my-math 321379 + texmath text these these-lens transformers unix vector xml yesod 321380 + yesod-form yesod-static zlib 321510 321381 ]; 321511 321382 executableHaskellDepends = [ 321512 - base diagrams-cairo diagrams-lib flat numbered-semigroups 321383 + base diagrams-gi-cairo diagrams-lib flat numbered-semigroups 321513 321384 semigroups shakespeare TeX-my-math time 321514 321385 ]; 321515 321386 testHaskellDepends = [ ··· 325186 325057 325187 325058 "zephyr" = callPackage 325188 325059 ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, async, base 325189 - , base-compat, boxes, bytestring, containers, directory, filepath 325190 - , formatting, Glob, hspec, hspec-core, HUnit, language-javascript 325191 - , mtl, optparse-applicative, process, purescript, QuickCheck, safe 325192 - , text, transformers, utf8-string 325060 + , boxes, bytestring, containers, directory, filepath, formatting 325061 + , Glob, hspec, hspec-core, HUnit, language-javascript, mtl 325062 + , optparse-applicative, process, purescript, QuickCheck, safe, text 325063 + , transformers, unordered-containers, utf8-string 325193 325064 }: 325194 325065 mkDerivation { 325195 325066 pname = "zephyr"; 325196 - version = "0.3.2"; 325197 - sha256 = "0p0n4p4792jdivgqdwf2brbkrw6b5rxfzfq9ph0sjw7h3gkj1was"; 325067 + version = "0.5.3"; 325068 + sha256 = "1chfs864kayq4xfl5yz4pcwfy1zpsq9ygbvlbj3s7lifg7khyffz"; 325198 325069 isLibrary = true; 325199 325070 isExecutable = true; 325200 325071 libraryHaskellDepends = [ 325201 - aeson ansi-terminal base base-compat boxes containers formatting 325202 - language-javascript mtl purescript safe text 325072 + aeson ansi-terminal base boxes containers formatting 325073 + language-javascript mtl purescript safe text unordered-containers 325203 325074 ]; 325204 325075 executableHaskellDepends = [ 325205 325076 aeson ansi-terminal ansi-wl-pprint async base bytestring containers ··· 325207 325078 optparse-applicative purescript text transformers utf8-string 325208 325079 ]; 325209 325080 testHaskellDepends = [ 325210 - aeson base base-compat containers directory hspec hspec-core HUnit 325081 + aeson base containers directory hspec hspec-core HUnit 325211 325082 language-javascript mtl optparse-applicative process purescript 325212 - QuickCheck text transformers utf8-string 325083 + QuickCheck text transformers 325213 325084 ]; 325214 325085 testToolDepends = [ purescript ]; 325215 325086 description = "Zephyr, tree-shaking for the PureScript language"; ··· 325697 325568 pname = "zinza"; 325698 325569 version = "0.2"; 325699 325570 sha256 = "1sy4chm8zan0ixgvvq4vm3fzvhqykn315l333al84768nly9rjv8"; 325700 - revision = "5"; 325701 - editedCabalFile = "1gkfbm06qpcwy17mlk522wlf7jkxsmqdl33c6ckvwkq2z9diy63a"; 325571 + revision = "6"; 325572 + editedCabalFile = "0sx3cqlky3y1wppccxr4xfkh1f749apr7y6lsip6bipb3z2j0wqf"; 325702 325573 libraryHaskellDepends = [ 325703 325574 base containers parsec text transformers 325704 325575 ]; ··· 325756 325627 ]; 325757 325628 description = "Operations on zip archives"; 325758 325629 license = lib.licenses.bsd3; 325630 + mainProgram = "haskell-zip-app"; 325631 + }) {}; 325632 + 325633 + "zip_2_0_0" = callPackage 325634 + ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive 325635 + , cereal, conduit, conduit-extra, conduit-zstd, containers, digest 325636 + , directory, dlist, exceptions, filepath, hspec, monad-control, mtl 325637 + , QuickCheck, resourcet, temporary, text, time, transformers 325638 + , transformers-base, unix 325639 + }: 325640 + mkDerivation { 325641 + pname = "zip"; 325642 + version = "2.0.0"; 325643 + sha256 = "1j3gwhgcn2j2jsdg4dw7a5y1pw0n273zkfk782pvzjqmccaywbdp"; 325644 + isLibrary = true; 325645 + isExecutable = true; 325646 + libraryHaskellDepends = [ 325647 + base bytestring bzlib-conduit case-insensitive cereal conduit 325648 + conduit-extra conduit-zstd containers digest directory dlist 325649 + exceptions filepath monad-control mtl resourcet text time 325650 + transformers transformers-base unix 325651 + ]; 325652 + executableHaskellDepends = [ base filepath ]; 325653 + testHaskellDepends = [ 325654 + base bytestring conduit containers directory dlist exceptions 325655 + filepath hspec QuickCheck temporary text time transformers 325656 + ]; 325657 + description = "Operations on zip archives"; 325658 + license = lib.licenses.bsd3; 325659 + hydraPlatforms = lib.platforms.none; 325759 325660 mainProgram = "haskell-zip-app"; 325760 325661 }) {}; 325761 325662
+7
pkgs/development/interpreters/maude/default.nix
··· 1 1 { lib, stdenv, fetchurl, unzip, makeWrapper, flex, bison, ncurses, buddy, tecla 2 2 , libsigsegv, gmpxx, cln, yices 3 + # passthru.tests 4 + , tamarin-prover 3 5 }: 4 6 5 7 let ··· 45 47 postInstall = '' 46 48 for n in "$out/bin/"*; do wrapProgram "$n" --suffix MAUDE_LIB ':' "$out/share/maude"; done 47 49 ''; 50 + 51 + passthru.tests = { 52 + # tamarin-prover only supports specific versions of maude explicitly 53 + inherit tamarin-prover; 54 + }; 48 55 49 56 enableParallelBuilding = true; 50 57
+3 -1
pkgs/development/tools/haskell/hadrian/default.nix
··· 2 2 ghcSrc ? null, ghcVersion ? null 3 3 , mkDerivation, base, bytestring, Cabal, containers, directory 4 4 , extra, filepath, lib, mtl, parsec, shake, text, transformers 5 - , unordered-containers 5 + , unordered-containers, cryptohash-sha256, base16-bytestring 6 6 , userSettings ? null 7 7 , writeText 8 8 }: ··· 35 35 executableHaskellDepends = [ 36 36 base bytestring Cabal containers directory extra filepath mtl 37 37 parsec shake text transformers unordered-containers 38 + ] ++ lib.optionals (lib.versionAtLeast ghcVersion "9.7") [ 39 + cryptohash-sha256 base16-bytestring 38 40 ]; 39 41 description = "GHC build system"; 40 42 license = lib.licenses.bsd3;