lol

Merge haskell-updates PR #401105 into staging

+2778 -901
+1 -1
doc/languages-frameworks/haskell.section.md
··· 779 779 780 780 ```nix 781 781 haskellPackages.haskell-ci.overrideScope (self: super: { 782 - Cabal = self.Cabal_3_14_1_1; 782 + Cabal = self.Cabal_3_14_2_0; 783 783 }) 784 784 ``` 785 785
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "6fc5e0d20fed4a6e8ec26f6956786d0077f028b4", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/6fc5e0d20fed4a6e8ec26f6956786d0077f028b4.tar.gz", 4 - "sha256": "08vkrfn4s1jb680rq1flxas8hv04f5l715z0kh8sv909k3psbfak", 5 - "msg": "Update from Hackage at 2025-03-30T11:13:14Z" 2 + "commit": "611ebba3fc94becabf6cc6fbe713e4bfad592924", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/611ebba3fc94becabf6cc6fbe713e4bfad592924.tar.gz", 4 + "sha256": "1gn3asjrzr6v7lcdg1vyrpv7xv74ldwbz517cvfhh2mxzrawrkmc", 5 + "msg": "Update from Hackage at 2025-04-21T04:38:52Z" 6 6 }
+3 -3
pkgs/development/haskell-modules/cabal2nix-unstable.nix
··· 35 35 }: 36 36 mkDerivation { 37 37 pname = "cabal2nix"; 38 - version = "unstable-2025-04-22"; 38 + version = "unstable-2025-04-30"; 39 39 src = fetchzip { 40 - url = "https://github.com/NixOS/cabal2nix/archive/e6ed81965def7775aabdda7456d0c13f626295ee.tar.gz"; 41 - sha256 = "1fh428r4wfrqjj77dxy1l3d9scm4ywz89rp7dhp07y3bq5yr7hs4"; 40 + url = "https://github.com/NixOS/cabal2nix/archive/fbe593fe71b916861b97117dfb91f7aae9c4fcce.tar.gz"; 41 + sha256 = "0sdyyawsz5zl2ffg4h4r3xcf73gfz9v0vgahccbp01if3m2g7p0y"; 42 42 }; 43 43 postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot"; 44 44 isLibrary = true;
+82 -82
pkgs/development/haskell-modules/configuration-common.nix
··· 20 20 21 21 self: super: 22 22 { 23 + # Hackage's accelerate is from 2020 and incomptible with our GHC. 24 + # The existing derivation also has missing dependencies 25 + # compared to the source from github. 26 + # https://github.com/AccelerateHS/accelerate/issues/553 27 + accelerate = 28 + assert super.accelerate.version == "1.3.0.0"; 29 + lib.pipe super.accelerate [ 30 + (addBuildDepends [ 31 + self.double-conversion 32 + self.formatting 33 + self.microlens 34 + ]) 35 + 36 + (overrideCabal (drv: { 37 + version = "1.3.0.0-unstable-2025-04-25"; 38 + src = pkgs.fetchFromGitHub { 39 + owner = "AccelerateHS"; 40 + repo = "accelerate"; 41 + rev = "3f681a5091eddf5a3b97f4cd0de32adc830e1117"; 42 + sha256 = "sha256-tCcl7wAls+5cBSrqbxfEAJngbV43OJcLJdaC4qqkBxc="; 43 + }; 44 + })) 45 + ]; 46 + 23 47 # https://github.com/ivanperez-keera/dunai/issues/427 24 48 dunai = addBuildDepend self.list-transformer (enableCabalFlag "list-transformer" super.dunai); 25 49 ··· 34 58 Cabal-syntax = self.Cabal-syntax_3_12_1_0; 35 59 } 36 60 ); 37 - Cabal_3_14_1_1 = 61 + Cabal_3_14_2_0 = 38 62 overrideCabal 39 63 (drv: { 40 64 # Revert increased lower bound on unix since we have backported ··· 47 71 }) 48 72 ( 49 73 doDistribute ( 50 - super.Cabal_3_14_1_1.override { 51 - Cabal-syntax = self.Cabal-syntax_3_14_1_0; 74 + super.Cabal_3_14_2_0.override { 75 + Cabal-syntax = self.Cabal-syntax_3_14_2_0; 52 76 } 53 77 ) 54 78 ); 55 79 56 80 # Needs matching version of Cabal 57 81 Cabal-hooks = super.Cabal-hooks.override { 58 - Cabal = self.Cabal_3_14_1_1; 82 + Cabal = self.Cabal_3_14_2_0; 59 83 }; 60 84 61 85 # cabal-install needs most recent versions of Cabal and Cabal-syntax, ··· 67 91 cabalInstallOverlay = 68 92 cself: csuper: 69 93 lib.optionalAttrs (lib.versionOlder self.ghc.version "9.12") { 70 - Cabal = cself.Cabal_3_14_1_1; 71 - Cabal-syntax = cself.Cabal-syntax_3_14_1_0; 94 + Cabal = cself.Cabal_3_14_2_0; 95 + Cabal-syntax = cself.Cabal-syntax_3_14_2_0; 72 96 }; 73 97 in 74 98 { ··· 248 272 sha256 = "10zkvclyir3zf21v41zdsvg68vrkq89n64kv9k54742am2i4aygf"; 249 273 }) super.weeder; 250 274 251 - # Allow aeson == 2.1.* 252 - # https://github.com/hdgarrood/aeson-better-errors/issues/23 253 - aeson-better-errors = lib.pipe super.aeson-better-errors [ 254 - doJailbreak 255 - (appendPatches [ 256 - # https://github.com/hdgarrood/aeson-better-errors/pull/25 257 - (fetchpatch { 258 - name = "mtl-2-3.patch"; 259 - url = "https://github.com/hdgarrood/aeson-better-errors/commit/1ec49ab7d1472046b680b5a64ae2930515b47714.patch"; 260 - hash = "sha256-xuuocWxSoBDclVp0bJ9UrDamVcDVOAFgJIi/un1xBvk="; 261 - }) 262 - ]) 263 - ]; 264 - 265 275 # Version 2.1.1 is deprecated, but part of Stackage LTS at the moment. 266 276 # https://github.com/commercialhaskell/stackage/issues/7500 267 277 # https://github.com/yesodweb/shakespeare/issues/280 ··· 478 488 name = "git-annex-${super.git-annex.version}-src"; 479 489 url = "git://git-annex.branchable.com/"; 480 490 rev = "refs/tags/" + super.git-annex.version; 481 - sha256 = "18n6ah4d5i8qhx1s95zsb8bg786v0nv9hcjyxggrk88ya77maxha"; 491 + sha256 = "10prmih74h31fwv14inqavzmm25hmlr24h49h9lpxqd88dn3r9cd"; 482 492 # delete android and Android directories which cause issues on 483 493 # darwin (case insensitive directory). Since we don't need them 484 494 # during the build process, we can delete it to prevent a hash ··· 898 908 # Package exists only to be example of documentation, yet it has restrictive 899 909 # "base" dependency. 900 910 haddock-cheatsheet = doJailbreak super.haddock-cheatsheet; 901 - 902 - # https://github.com/Gabriella439/Haskell-MVC-Updates-Library/pull/1 903 - mvc-updates = appendPatches [ 904 - (pkgs.fetchpatch { 905 - name = "rename-pretraverse.patch"; 906 - url = "https://github.com/Gabriella439/Haskell-MVC-Updates-Library/commit/47b31202b761439947ffbc89ec1c6854c1520819.patch"; 907 - sha256 = "sha256-a6k3lWtXNYUIjWXR+vRAHz2bANq/2eM0F5FLL8Qt2lA="; 908 - includes = [ "src/MVC/Updates.hs" ]; 909 - }) 910 - ] (doJailbreak super.mvc-updates); 911 911 912 912 # Too strict bounds on bytestring < 0.12 913 913 # https://github.com/Gabriella439/Haskell-Pipes-HTTP-Library/issues/18 ··· 1232 1232 # test suite requires git and does a bunch of git operations 1233 1233 restless-git = dontCheck super.restless-git; 1234 1234 1235 - sensei = overrideCabal (drv: { 1236 - # sensei passes `-package hspec-meta` to GHC in the tests, but doesn't 1237 - # depend on it itself. 1238 - testHaskellDepends = drv.testHaskellDepends or [ ] ++ [ self.hspec-meta ]; 1239 - # requires git at test-time *and* runtime, but we'll just rely on users to 1240 - # bring their own git at runtime. 1241 - testToolDepends = drv.testToolDepends or [ ] ++ [ pkgs.git ]; 1242 - }) super.sensei; 1235 + # Missing test files 1236 + # https://github.com/pbrisbin/jsonpatch/issues/10 1237 + jsonpatch = overrideCabal (drv: { 1238 + testTargets = 1239 + lib.warnIf (lib.versionAtLeast drv.version "0.3.0.2") 1240 + "haskellPackages.jsonpatch: override can be dropped" 1241 + [ 1242 + "readme" # disabled: "spec" 1243 + ]; 1244 + }) super.jsonpatch; 1243 1245 1244 1246 # Work around https://github.com/haskell/c2hs/issues/192. 1245 1247 c2hs = dontCheck super.c2hs; ··· 1460 1462 hjsmin = dontCheck super.hjsmin; 1461 1463 1462 1464 # Remove for hail > 0.2.0.0 1463 - hail = overrideCabal (drv: { 1464 - patches = [ 1465 - (fetchpatch { 1466 - # Relax dependency constraints, 1467 - # upstream PR: https://github.com/james-preston/hail/pull/13 1468 - url = "https://patch-diff.githubusercontent.com/raw/james-preston/hail/pull/13.patch"; 1469 - sha256 = "039p5mqgicbhld2z44cbvsmam3pz0py3ybaifwrjsn1y69ldsmkx"; 1470 - }) 1471 - (fetchpatch { 1472 - # Relax dependency constraints, 1473 - # upstream PR: https://github.com/james-preston/hail/pull/16 1474 - url = "https://patch-diff.githubusercontent.com/raw/james-preston/hail/pull/16.patch"; 1475 - sha256 = "0dpagpn654zjrlklihsg911lmxjj8msylbm3c68xa5aad1s9gcf7"; 1476 - }) 1477 - ]; 1478 - }) super.hail; 1465 + hail = doJailbreak super.hail; 1479 1466 1480 1467 # https://github.com/kazu-yamamoto/dns/issues/150 1481 1468 dns = dontCheck super.dns; ··· 2763 2750 doJailbreak 2764 2751 # 2022-12-02: Hackage release lags behind actual releases: https://github.com/PostgREST/postgrest/issues/2275 2765 2752 (overrideSrc rec { 2766 - version = "12.2.7"; 2753 + version = "12.2.12"; 2767 2754 src = pkgs.fetchFromGitHub { 2768 2755 owner = "PostgREST"; 2769 2756 repo = "postgrest"; 2770 2757 rev = "v${version}"; 2771 - hash = "sha256-4lKA+U7J8maKiDX9CWxWGjepGKSUu4ZOAA188yMt0bU="; 2758 + hash = "sha256-A/3JQc9h/FKX+xZvOVMwhXsKxdkRS783I/1EiZ3e73Y="; 2772 2759 }; 2773 2760 }) 2774 2761 # 2024-11-03: Fixes build on aarch64-darwin. Can be removed after updating to 13+. ··· 2935 2922 } 2936 2923 ) super.feedback; 2937 2924 2938 - # https://github.com/maralorn/haskell-taskwarrior/pull/12 2939 - taskwarrior = appendPatches [ 2940 - (fetchpatch { 2941 - url = "https://github.com/maralorn/haskell-taskwarrior/commit/b846c6ae64e716dca2d44488f60fee3697b5322d.patch"; 2942 - sha256 = "sha256-fwBYBmw9Jva2UEPQ6E/5/HBA8ZDiM7/QQQDBp3diveU="; 2943 - }) 2944 - ] super.taskwarrior; 2945 - 2946 2925 testcontainers = lib.pipe super.testcontainers [ 2947 2926 dontCheck # Tests require docker 2948 2927 doJailbreak # https://github.com/testcontainers/testcontainers-hs/pull/58 ··· 3020 2999 # jailbreak to allow deepseq >= 1.5, https://github.com/jumper149/blucontrol/issues/3 3021 3000 blucontrol = doJailbreak super.blucontrol; 3022 3001 3023 - # Stackage LTS 23.17 has 0.1.5, which was marked deprecated as it was broken. 3024 - # Can probably be dropped for Stackage LTS >= 23.18 3025 - network-control = doDistribute self.network-control_0_1_6; 3026 - 3027 3002 # Needs to match pandoc, see: 3028 3003 # https://github.com/jgm/pandoc/commit/97b36ecb7703b434ed4325cc128402a9eb32418d 3029 3004 commonmark-pandoc = doDistribute self.commonmark-pandoc_0_2_2_3; ··· 3065 3040 assert super.bzlib.version == "0.5.2.0"; 3066 3041 doJailbreak super.bzlib; 3067 3042 3068 - what4 = lib.pipe super.what4 [ 3069 - (addTestToolDepends ( 3070 - with pkgs; 3071 - [ 3072 - cvc4 3073 - cvc5 3074 - z3 3043 + inherit 3044 + (lib.mapAttrs ( 3045 + _: pkg: 3046 + lib.pipe pkg [ 3047 + (addTestToolDepends ( 3048 + with pkgs; 3049 + [ 3050 + cvc4 3051 + cvc5 3052 + z3 3053 + ] 3054 + )) 3055 + # 2025-04-09: FIXME: template_tests still failing with: 3056 + # fd:9: hPutBuf: resource vanished (Broken pipe) 3057 + dontCheck 3058 + 3059 + doDistribute 3075 3060 ] 3076 - )) 3077 - # 2025-04-09: template_tests still failing with: 3078 - # fd:9: hPutBuf: resource vanished (Broken pipe) 3079 - dontCheck 3080 - ]; 3061 + ) super) 3062 + what4 3063 + what4_1_7 3064 + ; 3081 3065 3082 3066 copilot-theorem = lib.pipe super.copilot-theorem [ 3083 3067 (addTestToolDepends (with pkgs; [ z3 ])) ··· 3153 3137 # 2025-04-13: jailbreak to allow th-abstraction >= 0.7 3154 3138 crucible = 3155 3139 assert super.crucible.version == "0.7.2"; 3156 - doJailbreak super.crucible; 3140 + doJailbreak ( 3141 + super.crucible.override { 3142 + what4 = self.what4_1_7; 3143 + } 3144 + ); 3145 + 3146 + crucible-llvm = super.crucible-llvm.override { 3147 + what4 = self.what4_1_7; 3148 + }; 3149 + 3150 + # Test suite invokes cabal-install in a way incompatible with our generic builder 3151 + # (i.e. tries to re-use the ghc package db / environment from dist-newstyle). 3152 + sensei = dontCheck super.sensei; 3153 + 3154 + crux = super.crux.override { 3155 + simple-get-opt = self.simple-get-opt_0_4; 3156 + }; 3157 3157 3158 3158 # 2025-04-23: jailbreak to allow megaparsec >= 9.7 3159 3159 # 2025-04-23: test data missing from tarball
+10 -11
pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix
··· 147 147 ]; 148 148 }) super.doctest_0_24_0; 149 149 150 - # https://github.com/typeable/generic-arbitrary/issues/18 151 - generic-arbitrary = overrideCabal (drv: { 152 - patches = drv.patches or [ ] ++ [ 153 - (pkgs.fetchpatch { 154 - name = "hellwolf:fix-recursive-test-hidding-unit"; 155 - url = "https://github.com/typeable/generic-arbitrary/commit/133b80be93e6744f21e0e5ed4180a24c589f92e4.patch"; 156 - sha256 = "sha256-z9EVcD1uNAYUOVTwmCCnrEFFOvFB7lD94Y6BwGVwVRQ="; 157 - }) 158 - ]; 159 - }) super.generic-arbitrary; 160 - 161 150 # https://gitlab.haskell.org/ghc/ghc/-/issues/25930 162 151 generic-lens = dontCheck super.generic-lens; 163 152 ··· 172 161 173 162 # https://github.com/sjakobi/newtype-generics/pull/28/files 174 163 newtype-generics = warnAfterVersion "0.6.2" (doJailbreak super.newtype-generics); 164 + 165 + # Test failure because of GHC bug: 166 + # https://gitlab.haskell.org/ghc/ghc/-/issues/25937 167 + # https://github.com/sol/interpolate/issues/20 168 + interpolate = 169 + assert super.ghc.version == "9.12.2"; 170 + dontCheck super.interpolate; 175 171 176 172 # 177 173 # Multiple issues ··· 204 200 } 205 201 ) 206 202 ); 203 + 204 + # Allow Cabal 3.14 205 + hpack = doDistribute self.hpack_0_38_0; 207 206 }
+1 -7
pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
··· 7 7 inherit (pkgs) lib; 8 8 in 9 9 10 - self: super: 11 - { 10 + self: super: { 12 11 13 12 llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 14 13 ··· 99 98 ''; 100 99 } super.ghc-lib-parser; 101 100 } 102 - // lib.optionalAttrs (lib.versionAtLeast super.ghc.version "9.8.3") { 103 - # Breakage related to GHC 9.8.3 / deepseq 1.5.1.0 104 - # https://github.com/typeable/generic-arbitrary/issues/18 105 - generic-arbitrary = dontCheck super.generic-arbitrary; 106 - }
+3 -6
pkgs/development/haskell-modules/configuration-ghcjs-9.x.nix
··· 35 35 patch = haskellLib.disableParallelBuilding super.patch; 36 36 reflex-dom-core = haskellLib.disableParallelBuilding super.reflex-dom-core; 37 37 38 - reflex-dom = 39 - lib.warn "reflex-dom builds with JS backend but it is missing fixes for working at runtime" 40 - super.reflex-dom.override 41 - (drv: { 42 - jsaddle-webkit2gtk = null; 43 - }); 38 + reflex-dom = super.reflex-dom.override (drv: { 39 + jsaddle-webkit2gtk = null; 40 + }); 44 41 45 42 miso-examples = pkgs.lib.pipe super.miso-examples [ 46 43 (addBuildDepends (
+19 -19
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 11 11 - abides # failure in job https://hydra.nixos.org/build/233260056 at 2023-09-02 12 12 - abnf # failure in job https://hydra.nixos.org/build/233238839 at 2023-09-02 13 13 - AbortT-transformers # failure in job https://hydra.nixos.org/build/233210345 at 2023-09-02 14 + - abstract-par-accelerate # failure in job https://hydra.nixos.org/build/296049870 at 2025-05-02 14 15 - abt # failure in job https://hydra.nixos.org/build/233201301 at 2023-09-02 15 16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 16 - - accelerate # failure in job https://hydra.nixos.org/build/233198907 at 2023-09-02 17 + - accelerate-fftw # failure in job https://hydra.nixos.org/build/296049868 at 2025-05-02 18 + - accelerate-random # failure in job https://hydra.nixos.org/build/296049869 at 2025-05-02 19 + - accelerate-utility # failure in job https://hydra.nixos.org/build/296049871 at 2025-05-02 17 20 - accentuateus # failure in job https://hydra.nixos.org/build/233253627 at 2023-09-02 18 21 - access-time # failure in job https://hydra.nixos.org/build/233246051 at 2023-09-02 19 22 - accuerr # failure in job https://hydra.nixos.org/build/233220965 at 2023-09-02 ··· 129 132 - alga # failure in job https://hydra.nixos.org/build/233252723 at 2023-09-02 130 133 - algebra-dag # failure in job https://hydra.nixos.org/build/233191945 at 2023-09-02 131 134 - algebraic-classes # failure in job https://hydra.nixos.org/build/233246872 at 2023-09-02 135 + - algebraic # failure in job https://hydra.nixos.org/build/296049876 at 2025-05-02 132 136 - algebraic-prelude # failure in job https://hydra.nixos.org/build/233197561 at 2023-09-02 133 137 - AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02 134 138 - algo-s # failure in job https://hydra.nixos.org/build/233221988 at 2023-09-02 ··· 656 660 - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02 657 661 - cabal-progdeps # failure in job https://hydra.nixos.org/build/233251917 at 2023-09-02 658 662 - cabalQuery # failure in job https://hydra.nixos.org/build/233211475 at 2023-09-02 663 + - cabal-scaffold # failure in job https://hydra.nixos.org/build/295453285 at 2025-05-02 659 664 - CabalSearch # failure in job https://hydra.nixos.org/build/233200817 at 2023-09-02 660 665 - cabal-setup # failure in job https://hydra.nixos.org/build/233225406 at 2023-09-02 661 666 - cabal-sign # failure in job https://hydra.nixos.org/build/295092160 at 2025-04-22 ··· 682 687 - call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02 683 688 - cal-layout # failure in job https://hydra.nixos.org/build/233191194 at 2023-09-02 684 689 - call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02 685 - - calligraphy # only supports ghc < 9.6 686 690 - call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02 687 691 - candid # failure in job https://hydra.nixos.org/build/295092213 at 2025-04-22 688 692 - canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02 ··· 738 742 - CC-delcont-ref-tf # failure in job https://hydra.nixos.org/build/233257768 at 2023-09-02 739 743 - cci # failure in job https://hydra.nixos.org/build/233244756 at 2023-09-02 740 744 - ccnx # failure in job https://hydra.nixos.org/build/233237732 at 2023-09-02 741 - - cdar-mBound # failure in job https://hydra.nixos.org/build/295092219 at 2025-04-22 742 745 - cdp # failure in job https://hydra.nixos.org/build/233251735 at 2023-09-02 743 746 - c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02 744 747 - cedict # failure in job https://hydra.nixos.org/build/233206454 at 2023-09-02 ··· 1075 1078 - cr # failure in job https://hydra.nixos.org/build/233235318 at 2023-09-02 1076 1079 - critbit # failure in job https://hydra.nixos.org/build/233237880 at 2023-09-02 1077 1080 - criterion-cmp # failure in job https://hydra.nixos.org/build/233192619 at 2023-09-02 1078 - - criterion-compare # failure in job https://hydra.nixos.org/build/233257858 at 2023-09-02 1079 1081 - criterion-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02 1080 1082 - criterion-to-html # failure in job https://hydra.nixos.org/build/233209983 at 2023-09-02 1081 1083 - criu-rpc-types # failure in job https://hydra.nixos.org/build/252715844 at 2024-03-16 ··· 1083 1085 - crockford # failure in job https://hydra.nixos.org/build/233210759 at 2023-09-02 1084 1086 - crocodile # failure in job https://hydra.nixos.org/build/233222277 at 2023-09-02 1085 1087 - cronus # failure in job https://hydra.nixos.org/build/233225303 at 2023-09-02 1086 - - crucibile-llvm # what4 >=1.7 https://hydra.nixos.org/build/295428376 1087 1088 - cruncher-types # failure in job https://hydra.nixos.org/build/233229024 at 2023-09-02 1088 1089 - crunghc # failure in job https://hydra.nixos.org/build/233193295 at 2023-09-02 1089 - - crux # simple-get-opt <0.5 https://hydra.nixos.org/build/295428379 1090 1090 - crypto-cipher-benchmarks # failure in job https://hydra.nixos.org/build/233195297 at 2023-09-02 1091 1091 - cryptocompare # failure in job https://hydra.nixos.org/build/233192898 at 2023-09-02 1092 1092 - cryptoconditions # failure in job https://hydra.nixos.org/build/233211816 at 2023-09-02 ··· 1193 1193 - data-pprint # failure in job https://hydra.nixos.org/build/233221300 at 2023-09-02 1194 1194 - data-quotientref # failure in job https://hydra.nixos.org/build/233258168 at 2023-09-02 1195 1195 - data-reify-cse # failure in job https://hydra.nixos.org/build/233240126 at 2023-09-02 1196 - - data-reify-gadt # failure in job https://hydra.nixos.org/build/295092744 at 2025-04-22 1197 1196 - data-repr # failure in job https://hydra.nixos.org/build/233255402 at 2023-09-02 1198 1197 - data-rev # failure in job https://hydra.nixos.org/build/233239036 at 2023-09-02 1199 1198 - datarobot # failure in job https://hydra.nixos.org/build/233206913 at 2023-09-02 ··· 1248 1247 - decoder-conduit # failure in job https://hydra.nixos.org/build/233228100 at 2023-09-02 1249 1248 - deepcontrol # failure in job https://hydra.nixos.org/build/233238035 at 2023-09-02 1250 1249 - DeepDarkFantasy # failure in job https://hydra.nixos.org/build/233242150 at 2023-09-02 1250 + - deeplearning-hs # failure in job https://hydra.nixos.org/build/296049880 at 2025-05-02 1251 1251 - deepl # failure in job https://hydra.nixos.org/build/233232956 at 2023-09-02 1252 1252 - deepseq-bounded # failure in job https://hydra.nixos.org/build/233211193 at 2023-09-02 1253 1253 - deepseq-instances # failure in job https://hydra.nixos.org/build/233236748 at 2023-09-02 ··· 1581 1581 - enum-text # failure in job https://hydra.nixos.org/build/233194373 at 2023-09-02 1582 1582 - enum-utf8 # failure in job https://hydra.nixos.org/build/233234628 at 2023-09-02 1583 1583 - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02 1584 - - env-extra # failure in job https://hydra.nixos.org/build/295093099 at 2025-04-22 1585 1584 - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02 1586 1585 - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02 1587 1586 - envy-extensible # failure in job https://hydra.nixos.org/build/233229313 at 2023-09-02 ··· 1903 1902 - freetype-simple # failure in job https://hydra.nixos.org/build/233249707 at 2023-09-02 1904 1903 - free-v-bucks-generator-no-survey # failure in job https://hydra.nixos.org/build/233208419 at 2023-09-02 1905 1904 - free-v-bucks-generator-ps4-no-survey # failure in job https://hydra.nixos.org/build/233190747 at 2023-09-02 1906 - - free-vector-spaces # failure in job https://hydra.nixos.org/build/295093364 at 2025-04-22 1907 1905 - fregel # failure in job https://hydra.nixos.org/build/252734327 at 2024-03-16 1908 1906 - freq # failure in job https://hydra.nixos.org/build/233247154 at 2023-09-02 1909 1907 - fresh # failure in job https://hydra.nixos.org/build/233196569 at 2023-09-02 ··· 2018 2016 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 2019 2017 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 2020 2018 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 2019 + - genvalidity-network-uri # failure in job https://hydra.nixos.org/build/295454526 at 2025-05-02 2021 2020 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 2022 2021 - GeocoderOpenCage # failure in job https://hydra.nixos.org/build/233214852 at 2023-09-02 2023 2022 - geodetic-types # failure in job https://hydra.nixos.org/build/233209496 at 2023-09-02 ··· 2237 2236 - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02 2238 2237 - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02 2239 2238 - grpc-haskell-core # failure in job https://hydra.nixos.org/build/267997256 at 2024-07-31 2239 + - gruvbox-colors # failure in job https://hydra.nixos.org/build/295454932 at 2025-05-02 2240 2240 - gsl-random # failure in job https://hydra.nixos.org/build/233191503 at 2023-09-02 2241 2241 - gstreamer # failure in job https://hydra.nixos.org/build/233239224 at 2023-09-02 2242 2242 - GTALib # failure in job https://hydra.nixos.org/build/233250568 at 2023-09-02 ··· 2293 2293 - HaGL # failure in job https://hydra.nixos.org/build/234457220 at 2023-09-13 2294 2294 - hahp # failure in job https://hydra.nixos.org/build/233250101 at 2023-09-02 2295 2295 - haiji # failure in job https://hydra.nixos.org/build/233232272 at 2023-09-02 2296 - - hail # failure in job https://hydra.nixos.org/build/233219127 at 2023-09-02 2297 2296 - hailgun-send # failure in job https://hydra.nixos.org/build/282936164 at 2024-12-24 2298 2297 - hairy # failure in job https://hydra.nixos.org/build/233226903 at 2023-09-02 2299 2298 - hakaru # failure in job https://hydra.nixos.org/build/233231467 at 2023-09-02 ··· 2540 2539 - hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02 2541 2540 - hdbc-aeson # failure in job https://hydra.nixos.org/build/233240596 at 2023-09-02 2542 2541 - HDBC-mysql # failure in job https://hydra.nixos.org/build/233205323 at 2023-09-02 2543 - - HDBC-postgresql # failure in job https://hydra.nixos.org/build/295090953 at 2025-04-22 2544 2542 - hdbc-postgresql-hstore # failure in job https://hydra.nixos.org/build/233201143 at 2023-09-02 2545 2543 - HDBC-postgresql-hstore # failure in job https://hydra.nixos.org/build/233243932 at 2023-09-02 2546 2544 - hdevtools # failure in job https://hydra.nixos.org/build/233229115 at 2023-09-02 ··· 3195 3193 - injections # failure in job https://hydra.nixos.org/build/233207796 at 2023-09-02 3196 3194 - inline-c-cuda # failure in job https://hydra.nixos.org/build/237234701 at 2023-10-21 3197 3195 - inline-c-objc # failure in job https://hydra.nixos.org/build/233223704 at 2023-09-02 3198 - - inline-python # failure in job https://hydra.nixos.org/build/295094702 at 2025-04-22 3199 3196 - inline-r # failure in job https://hydra.nixos.org/build/233210520 at 2023-09-02 3200 3197 - in-other-words # failure in job https://hydra.nixos.org/build/252711798 at 2024-03-16 3201 3198 - in-other-words-plugin # failure in job https://hydra.nixos.org/build/233202396 at 2023-09-02 ··· 3260 3257 - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02 3261 3258 - ireal # failure in job https://hydra.nixos.org/build/233239811 at 2023-09-02 3262 3259 - iridium # failure in job https://hydra.nixos.org/build/233211261 at 2023-09-02 3260 + - iri # failure in job https://hydra.nixos.org/build/295455675 at 2025-05-02 3263 3261 - iris # failure in job https://hydra.nixos.org/build/233212713 at 2023-09-02 3264 3262 - iron-mq # failure in job https://hydra.nixos.org/build/233200693 at 2023-09-02 3265 3263 - irt # failure in job https://hydra.nixos.org/build/233216553 at 2023-09-02 ··· 3541 3539 - leb128 # failure in job https://hydra.nixos.org/build/252731801 at 2024-03-16 3542 3540 - leetify # failure in job https://hydra.nixos.org/build/233200752 at 2023-09-02 3543 3541 - lendingclub # failure in job https://hydra.nixos.org/build/233239123 at 2023-09-02 3542 + - lens-accelerate # failure in job https://hydra.nixos.org/build/296049887 at 2025-05-02 3544 3543 - lens-datetime # failure in job https://hydra.nixos.org/build/233252409 at 2023-09-02 3545 3544 - lenses # failure in job https://hydra.nixos.org/build/233239109 at 2023-09-02 3546 3545 - lens-filesystem # failure in job https://hydra.nixos.org/build/233205074 at 2023-09-02 ··· 3612 3611 - limp-cbc # failure in job https://hydra.nixos.org/build/233201076 at 2023-09-02 3613 3612 - linda # failure in job https://hydra.nixos.org/build/233249512 at 2023-09-02 3614 3613 - linden # failure in job https://hydra.nixos.org/build/233198590 at 2023-09-02 3614 + - linear-accelerate # failure in job https://hydra.nixos.org/build/296049888 at 2025-05-02 3615 3615 - linear-algebra-cblas # failure in job https://hydra.nixos.org/build/233239710 at 2023-09-02 3616 3616 - linearmap-category # failure in job https://hydra.nixos.org/build/236690982 at 2023-10-04 3617 3617 - linear-maps # failure in job https://hydra.nixos.org/build/233258332 at 2023-09-02 ··· 3718 3718 - L-seed # failure in job https://hydra.nixos.org/build/233222324 at 2023-09-02 3719 3719 - lsfrom # failure in job https://hydra.nixos.org/build/233211705 at 2023-09-02 3720 3720 - lsh # failure in job https://hydra.nixos.org/build/233256686 at 2023-09-02 3721 - - ltext # failure in job https://hydra.nixos.org/build/255686825 at 2024-04-16 3722 3721 - lti13 # failure in job https://hydra.nixos.org/build/252715722 at 2024-03-16 3723 3722 - ltiv1p1 # failure in job https://hydra.nixos.org/build/233200883 at 2023-09-02 3724 3723 - ltk # failure in job https://hydra.nixos.org/build/233244152 at 2023-09-02 ··· 3844 3843 - memcached # failure in job https://hydra.nixos.org/build/233190993 at 2023-09-02 3845 3844 - memcache-haskell # failure in job https://hydra.nixos.org/build/233211839 at 2023-09-02 3846 3845 - memfd # failure in job https://hydra.nixos.org/build/295095297 at 2025-04-22 3847 - - meminfo # failure in job https://hydra.nixos.org/build/233201130 at 2023-09-02 3848 3846 - memis # failure in job https://hydra.nixos.org/build/233207107 at 2023-09-02 3849 3847 - memoization-utils # failure in job https://hydra.nixos.org/build/233220093 at 2023-09-02 3850 3848 - memoize # failure in job https://hydra.nixos.org/build/295095333 at 2025-04-22 ··· 4060 4058 - multiarg # failure in job https://hydra.nixos.org/build/233238633 at 2023-09-02 4061 4059 - MultiChor # failure in job https://hydra.nixos.org/build/295091050 at 2025-04-22 4062 4060 - multicurryable # failure in job https://hydra.nixos.org/build/252731222 at 2024-03-16 4061 + - multidir # failure in job https://hydra.nixos.org/build/295456419 at 2025-05-02 4063 4062 - multihash # failure in job https://hydra.nixos.org/build/233203263 at 2023-09-02 4064 4063 - multi-instance # failure in job https://hydra.nixos.org/build/233203186 at 2023-09-02 4065 4064 - multilinear # failure in job https://hydra.nixos.org/build/233260046 at 2023-09-02 ··· 4142 4141 - nekos-best # failure in job https://hydra.nixos.org/build/233214327 at 2023-09-02 4143 4142 - Neks # failure in job https://hydra.nixos.org/build/233238103 at 2023-09-02 4144 4143 - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02 4144 + - nerd-font-icons # failure in job https://hydra.nixos.org/build/295456454 at 2025-05-02 4145 4145 - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02 4146 4146 - NestedFunctor # failure in job https://hydra.nixos.org/build/233253656 at 2023-09-02 4147 4147 - nestedmap # failure in job https://hydra.nixos.org/build/233219375 at 2023-09-02 ··· 4295 4295 - om-http # failure in job https://hydra.nixos.org/build/233245328 at 2023-09-02 4296 4296 - om-http-logging # failure in job https://hydra.nixos.org/build/233218069 at 2023-09-02 4297 4297 - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02 4298 - - om-socket # failure in job https://hydra.nixos.org/build/233235423 at 2023-09-02 4298 + - om-plugin-imports # failure in job https://hydra.nixos.org/build/295456635 at 2025-05-02 4299 4299 - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 at 2023-09-02 4300 4300 - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 at 2023-09-02 4301 4301 - on-demand-ssh-tunnel # failure in job https://hydra.nixos.org/build/233197181 at 2023-09-02 ··· 4313 4313 - OpenAFP # failure in job https://hydra.nixos.org/build/233249295 at 2023-09-02 4314 4314 - openai # failure in job https://hydra.nixos.org/build/295095863 at 2025-04-22 4315 4315 - openai-servant-gen # failure in job https://hydra.nixos.org/build/295095800 at 2025-04-22 4316 - - openapi3-code-generator # failure in job https://hydra.nixos.org/build/233255628 at 2023-09-02 4317 4316 - openapi-petstore # failure in job https://hydra.nixos.org/build/233221722 at 2023-09-02 4318 4317 - openapi-typed # failure in job https://hydra.nixos.org/build/233226830 at 2023-09-02 4319 4318 - opencc # failure in job https://hydra.nixos.org/build/233211902 at 2023-09-02 ··· 4769 4768 - postgresql-config # failure in job https://hydra.nixos.org/build/233197788 at 2023-09-02 4770 4769 - postgresql-cube # failure in job https://hydra.nixos.org/build/233195283 at 2023-09-02 4771 4770 - PostgreSQL # failure in job https://hydra.nixos.org/build/233258066 at 2023-09-02 4772 - - postgresql-libpq-configure # failure in job https://hydra.nixos.org/build/295096222 at 2025-04-22 4773 4771 - postgresql-lo-stream # failure in job https://hydra.nixos.org/build/233194012 at 2023-09-02 4774 4772 - postgresql-ltree # failure in job https://hydra.nixos.org/build/233199998 at 2023-09-02 4775 4773 - postgresql-named # failure in job https://hydra.nixos.org/build/233241920 at 2023-09-02 ··· 4982 4980 - querystring-pickle # failure in job https://hydra.nixos.org/build/233246108 at 2023-09-02 4983 4981 - questioner # failure in job https://hydra.nixos.org/build/233213704 at 2023-09-02 4984 4982 - quibble-core # failure in job https://hydra.nixos.org/build/233200635 at 2023-09-02 4983 + - quic # failure in job https://hydra.nixos.org/build/295457190 at 2025-05-02 4985 4984 - QuickAnnotate # failure in job https://hydra.nixos.org/build/233197428 at 2023-09-02 4986 4985 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 4987 4986 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 ··· 5143 5142 - reify # failure in job https://hydra.nixos.org/build/233247509 at 2023-09-02 5144 5143 - relacion # failure in job https://hydra.nixos.org/build/233241624 at 2023-09-02 5145 5144 - relational-postgresql8 # failure in job https://hydra.nixos.org/build/295096600 at 2025-04-22 5145 + - relational-query-postgresql-pure # failure in job https://hydra.nixos.org/build/296063076 at 2025-05-02 5146 5146 - relation # failure in job https://hydra.nixos.org/build/233244581 at 2023-09-02 5147 5147 - relevant-time # failure in job https://hydra.nixos.org/build/233190794 at 2023-09-02 5148 5148 - reload # failure in job https://hydra.nixos.org/build/233212925 at 2023-09-02 ··· 5601 5601 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 5602 5602 - sketch-frp-copilot # copilot >=4.3 && <4.4, 5603 5603 - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22 5604 - - skews # failure in job https://hydra.nixos.org/build/295097063 at 2025-04-22 5605 5604 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 5606 5605 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 5607 5606 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 ··· 5828 5827 - stm-firehose # failure in job https://hydra.nixos.org/build/233220943 at 2023-09-02 5829 5828 - stm-lifted # failure in job https://hydra.nixos.org/build/252726872 at 2024-03-16 5830 5829 - stm-promise # failure in job https://hydra.nixos.org/build/233204293 at 2023-09-02 5831 - - stm-queue # failure in job https://hydra.nixos.org/build/295097230 at 2025-04-22 5832 5830 - stm-stats # failure in job https://hydra.nixos.org/build/233214914 at 2023-09-02 5833 5831 - stochastic # failure in job https://hydra.nixos.org/build/233242019 at 2023-09-02 5834 5832 - Stomp # failure in job https://hydra.nixos.org/build/233252583 at 2023-09-02 ··· 6119 6117 - text-all # failure in job https://hydra.nixos.org/build/233229321 at 2023-09-02 6120 6118 - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02 6121 6119 - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02 6120 + - text-builder-time # failure in job https://hydra.nixos.org/build/295458315 at 2025-05-02 6122 6121 - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02 6123 6122 - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02 6124 6123 - text-format # failure in job https://hydra.nixos.org/build/295097568 at 2025-04-22 ··· 6361 6360 - type-combinators # failure in job https://hydra.nixos.org/build/233230024 at 2023-09-02 6362 6361 - type-compare # failure in job https://hydra.nixos.org/build/233207530 at 2023-09-02 6363 6362 - TypeCompose # failure in job https://hydra.nixos.org/build/233212999 at 2023-09-02 6363 + - typed-admin # failure in job https://hydra.nixos.org/build/296063081 at 2025-05-02 6364 6364 - typed-digits # failure in job https://hydra.nixos.org/build/233198266 at 2023-09-02 6365 6365 - typed-encoding # failure in job https://hydra.nixos.org/build/233208093 at 2023-09-02 6366 6366 - typed-fsm # failure in job https://hydra.nixos.org/build/269663128 at 2024-08-19
+2
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 90 90 - hlint == 3.4.1 # 2022-09-21: preserve for ghc 8.10 91 91 - hlint == 3.6.* # 2025-04-14: needed for hls with ghc-lib-parser 9.6 92 92 - hnix-store-core < 0.7 # 2023-12-11: required by hnix-store-remote 0.6 93 + - hpack == 0.38.0 # 2025-04-23: preserve for stack == 3.5.1 93 94 - hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 94 95 - hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 95 96 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 ··· 108 109 - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 109 110 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2 110 111 - shake-cabal < 0.2.2.3 # 2023-07-01: last version to support Cabal 3.6.* 112 + - simple-get-opt < 0.5 # 2025-05-01: for crux-0.7.2 111 113 - stylish-haskell == 0.14.4.0 # 2022-09-19: preserve for ghc 9.0 112 114 - stylish-haskell == 0.14.5.0 # 2025-04-14: needed for hls with ghc-lib 9.6 113 115 - tar == 0.6.0.0 # 2025-02-08: last version to not require os-string (which can't be built with GHC < 9.2)
+51 -51
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 23.17 1 + # Stackage LTS 23.19 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 39 39 - agda2lagda ==0.2023.6.9 40 40 - agreeing ==0.2.2.0 41 41 - alarmclock ==0.7.0.7 42 - - alex ==3.5.2.0 42 + - alex ==3.5.3.0 43 43 - alex-meta ==0.3.0.13 44 44 - alex-tools ==0.6.1 45 45 - algebra ==4.3.1 ··· 54 54 - alternators ==1.0.0.0 55 55 - ALUT ==2.4.0.3 56 56 - amqp ==0.24.0 57 - - annotated-exception ==0.3.0.2 57 + - annotated-exception ==0.3.0.4 58 58 - annotated-wl-pprint ==0.7.0 59 59 - ansi-terminal ==1.1.2 60 60 - ansi-terminal-game ==1.9.3.0 ··· 77 77 - approximate ==0.3.5 78 78 - approximate-equality ==1.1.0.2 79 79 - arbor-lru-cache ==0.1.1.1 80 - - arithmoi ==0.13.0.1 80 + - arithmoi ==0.13.1.0 81 81 - array-memoize ==0.6.0 82 82 - arrow-extras ==0.1.0.1 83 83 - arrows ==0.4.4.2 ··· 135 135 - aws-xray-client-wai ==0.1.0.2 136 136 - backprop ==0.2.6.5 137 137 - backtracking ==0.1.0 138 - - bank-holiday-germany ==1.3.0.0 138 + - bank-holiday-germany ==1.3.1.0 139 139 - bank-holidays-england ==0.2.0.11 140 140 - barbies ==2.1.1.0 141 141 - base16 ==1.0 ··· 173 173 - bencoding ==0.4.5.6 174 174 - benri-hspec ==0.1.0.3 175 175 - between ==0.11.0.0 176 - - bhoogle ==0.1.4.3 176 + - bhoogle ==0.1.4.4 177 177 - bibtex ==0.1.0.7 178 178 - bifunctor-classes-compat ==0.1 179 179 - bifunctors ==5.6.2 ··· 204 204 - bitvec ==1.1.5.0 205 205 - bitwise ==1.0.0.1 206 206 - bitwise-enum ==1.0.1.2 207 - - Blammo ==2.1.2.0 207 + - Blammo ==2.1.3.0 208 208 - blank-canvas ==0.7.4 209 209 - blas-carray ==0.1.0.2 210 - - blas-comfort-array ==0.0.0.3 210 + - blas-comfort-array ==0.0.0.4 211 211 - blas-ffi ==0.1 212 212 - blas-hs ==0.1.1.0 213 213 - blaze-bootstrap ==0.1.0.1 ··· 463 463 - control-monad-free ==0.6.2 464 464 - control-monad-omega ==0.3.3 465 465 - convertible ==1.1.1.1 466 - - cookie ==0.5.0 466 + - cookie ==0.5.1 467 467 - copilot ==4.1 468 468 - copilot-c99 ==4.1 469 469 - copilot-core ==4.1 ··· 501 501 - cryptohash-sha1 ==0.11.101.0 502 502 - cryptohash-sha256 ==0.11.102.1 503 503 - cryptohash-sha512 ==0.11.102.0 504 - - crypton ==1.0.3 504 + - crypton ==1.0.4 505 505 - crypton-conduit ==0.2.3 506 - - crypton-connection ==0.4.3 506 + - crypton-connection ==0.4.4 507 507 - cryptonite ==0.30 508 508 - cryptonite-conduit ==0.2.2 509 509 - cryptonite-openssl ==0.7 ··· 593 593 - declarative ==0.5.4 594 594 - deepseq-generics ==0.2.0.0 595 595 - deferred-folds ==0.9.18.7 596 - - defun-core ==0.1 596 + - defun-core ==0.1.0.1 597 597 - dejafu ==2.4.0.7 598 598 - dense-linear-algebra ==0.1.0.0 599 599 - dependent-map ==0.4.0.0 ··· 611 611 - df1 ==0.4.3 612 612 - dhall ==1.42.2 613 613 - di ==1.3 614 - - diagrams ==1.4.1 614 + - diagrams ==1.4.2 615 615 - diagrams-builder ==0.8.0.6 616 616 - diagrams-cairo ==1.4.2.1 617 617 - diagrams-canvas ==1.4.1.2 ··· 685 685 - dotenv ==0.12.0.0 686 686 - dotgen ==0.4.3 687 687 - dotnet-timespan ==0.0.1.0 688 - - dotparse ==0.1.2.1 688 + - dotparse ==0.1.2.2 689 689 - double-conversion ==2.0.5.0 690 690 - download ==0.3.2.7 691 691 - download-curl ==0.1.4 ··· 903 903 - functor-classes-compat ==2.0.0.2 904 904 - functor-combinators ==0.4.1.3 905 905 - functor-products ==0.1.2.2 906 - - fused-effects ==1.1.2.4 906 + - fused-effects ==1.1.2.5 907 907 - fusion-plugin ==0.2.7 908 908 - fusion-plugin-types ==0.1.0 909 909 - fuzzcheck ==0.1.1 ··· 917 917 - gemini-exports ==0.1.0.2 918 918 - general-games ==1.1.1 919 919 - generically ==0.1.1 920 - - generic-arbitrary ==1.0.1 920 + - generic-arbitrary ==1.0.1.2 921 921 - generic-constraints ==1.1.1.1 922 922 - generic-data ==1.1.0.2 923 923 - generic-data-functions ==0.6.0 ··· 991 991 - ghc-source-gen ==0.4.6.0 992 992 - ghc-syntax-highlighter ==0.0.11.0 993 993 - ghc-tcplugins-extra ==0.4.6 994 - - ghc-trace-events ==0.1.2.9 994 + - ghc-trace-events ==0.1.2.10 995 995 - ghc-typelits-extra ==0.4.8 996 996 - ghc-typelits-knownnat ==0.7.13 997 997 - ghc-typelits-natnormalise ==0.7.10 ··· 1012 1012 - gi-gdkx11 ==3.0.17 1013 1013 - gi-gdkx113 ==3.0.17 1014 1014 - gi-gdkx114 ==4.0.9 1015 - - gi-gio ==2.0.36 1015 + - gi-gio ==2.0.37 1016 1016 - gi-glib ==2.0.30 1017 1017 - gi-gmodule ==2.0.6 1018 1018 - gi-gobject ==2.0.31 ··· 1054 1054 - glob-posix ==0.2.0.1 1055 1055 - gloss ==1.13.2.2 1056 1056 - gloss-algorithms ==1.13.0.3 1057 - - gloss-rendering ==1.13.1.2 1057 + - gloss-rendering ==1.13.2.1 1058 1058 - glpk-headers ==0.5.1 1059 1059 - GLURaw ==2.0.0.5 1060 1060 - GLUT ==2.7.0.16 ··· 1114 1114 - hashids ==1.1.1.0 1115 1115 - hashmap ==1.3.3 1116 1116 - hashtables ==1.3.1 1117 - - haskell-gi ==0.26.14 1117 + - haskell-gi ==0.26.15 1118 1118 - haskell-gi-base ==0.26.8 1119 1119 - haskell-gi-overloading ==1.0 1120 1120 - haskell-lexer ==1.1.2 ··· 1308 1308 - html-email-validate ==0.2.0.0 1309 1309 - html-entities ==1.1.4.7 1310 1310 - html-entity-map ==0.1.0.0 1311 - - html-parse ==0.2.1.0 1311 + - html-parse ==0.2.2.0 1312 1312 - http2 ==5.3.9 1313 1313 - HTTP ==4000.4.1 1314 - - http-api-data ==0.6.1 1314 + - http-api-data ==0.6.2 1315 1315 - http-api-data-qq ==0.1.0.0 1316 1316 - http-client ==0.7.19 1317 1317 - http-client-openssl ==0.3.3 ··· 1325 1325 - http-download ==0.2.1.0 1326 1326 - httpd-shed ==0.4.1.2 1327 1327 - http-io-streams ==0.1.7.0 1328 - - http-link-header ==1.2.2 1328 + - http-link-header ==1.2.3 1329 1329 - http-media ==0.8.1.1 1330 1330 - http-query ==0.1.3 1331 1331 - http-reverse-proxy ==0.6.1.0 ··· 1447 1447 - iso639 ==0.1.0.3 1448 1448 - iso8601-time ==0.1.5 1449 1449 - isocline ==1.0.9 1450 - - isomorphism-class ==0.3.0.1 1450 + - isomorphism-class ==0.3.1.2 1451 1451 - ix-shapable ==0.1.0 1452 1452 - jack ==0.7.2.2 1453 1453 - jalaali ==1.0.0.0 ··· 1468 1468 - jsonifier ==0.2.1.3 1469 1469 - jsonpath ==0.3.0.0 1470 1470 - json-rpc ==1.1.1 1471 - - json-spec ==1.1.1.1 1472 - - json-spec-elm ==0.4.0.5 1471 + - json-spec ==1.1.1.2 1472 + - json-spec-elm ==0.4.0.6 1473 1473 - json-spec-elm-servant ==0.4.3.0 1474 - - json-spec-openapi ==1.0.1.0 1474 + - json-spec-openapi ==1.0.1.1 1475 1475 - json-stream ==0.4.6.0 1476 1476 - JuicyCairo ==0.1.0.0 1477 1477 - JuicyPixels ==3.3.9 ··· 1523 1523 - language-thrift ==0.13.0.0 1524 1524 - lapack ==0.5.2 1525 1525 - lapack-carray ==0.0.3 1526 - - lapack-comfort-array ==0.0.1 1526 + - lapack-comfort-array ==0.0.1.1 1527 1527 - lapack-ffi ==0.0.3 1528 - - lapack-ffi-tools ==0.1.3.1 1528 + - lapack-ffi-tools ==0.1.3.2 1529 1529 - lapack-hmatrix ==0.0.0.2 1530 1530 - large-hashable ==0.1.2.0 1531 1531 - largeword ==1.2.5 1532 1532 - latex ==0.1.0.4 1533 1533 - lattices ==2.2.1 1534 1534 - lawful ==0.1.0.0 1535 - - lawful-conversions ==0.1.6 1535 + - lawful-conversions ==0.1.6.1 1536 1536 - lazy-csv ==0.5.1 1537 1537 - lazyio ==0.1.0.4 1538 1538 - lazyppl ==1.0 ··· 1751 1751 - monads-tf ==0.3.0.1 1752 1752 - monad-time ==0.4.0.0 1753 1753 - mongoDB ==2.7.1.4 1754 - - monoidal-containers ==0.6.5.0 1754 + - monoidal-containers ==0.6.6.0 1755 1755 - monoidal-functors ==0.2.3.0 1756 1756 - monoid-extras ==0.6.5 1757 1757 - monoidmap ==0.0.4.3 ··· 1811 1811 - nanospec ==0.2.2 1812 1812 - nanovg ==0.8.1.0 1813 1813 - nats ==1.1.2 1814 - - natural-arithmetic ==0.2.1.0 1814 + - natural-arithmetic ==0.2.2.0 1815 1815 - natural-induction ==0.2.0.0 1816 1816 - natural-sort ==0.1.2 1817 1817 - natural-transformation ==0.4.1 ··· 1830 1830 - network-bsd ==2.8.1.0 1831 1831 - network-byte-order ==0.1.7 1832 1832 - network-conduit-tls ==1.4.0.1 1833 - - network-control ==0.1.5 1833 + - network-control ==0.1.6 1834 1834 - network-info ==0.2.1 1835 1835 - network-ip ==0.3.0.3 1836 1836 - network-messagepack-rpc ==0.1.2.0 ··· 1893 1893 - old-locale ==1.0.0.7 1894 1894 - old-time ==1.1.0.4 1895 1895 - ollama-haskell ==0.1.3.0 1896 - - om-elm ==2.0.0.7 1897 - - om-show ==0.1.2.10 1896 + - om-elm ==2.0.0.8 1897 + - om-show ==0.1.2.11 1898 1898 - once ==0.4 1899 1899 - one-liner ==2.1 1900 1900 - one-liner-instances ==0.1.3.0 ··· 1955 1955 - pandoc-types ==1.23.1 1956 1956 - pango ==0.13.12.0 1957 1957 - panic ==0.4.0.1 1958 - - pantry ==0.10.0 1958 + - pantry ==0.10.1 1959 1959 - parallel ==3.2.2.0 1960 1960 - parallel-io ==0.3.5 1961 1961 - parameterized ==0.5.0.0 ··· 2080 2080 - postgresql-schema ==0.1.14 2081 2081 - postgresql-simple ==0.7.0.0 2082 2082 - postgresql-simple-url ==0.2.1.0 2083 - - postgresql-syntax ==0.4.1.1 2083 + - postgresql-syntax ==0.4.1.2 2084 2084 - postgresql-typed ==0.6.2.5 2085 2085 - post-mess-age ==0.2.1.0 2086 2086 - pptable ==0.3.0.0 ··· 2108 2108 - pretty-terminal ==0.1.0.0 2109 2109 - primecount ==0.1.0.2 2110 2110 - primes ==0.2.1.0 2111 - - primitive ==0.9.0.0 2111 + - primitive ==0.9.1.0 2112 2112 - primitive-addr ==0.1.0.3 2113 2113 - primitive-extras ==0.10.2.2 2114 2114 - primitive-offset ==0.2.0.1 ··· 2511 2511 - sox ==0.2.3.2 2512 2512 - soxlib ==0.0.3.2 2513 2513 - speculate ==0.4.20 2514 - - specup ==0.2.0.4 2514 + - specup ==0.2.0.5 2515 2515 - speedy-slice ==0.3.2 2516 2516 - sphinx ==0.6.1 2517 2517 - Spintax ==0.3.7.0 ··· 2699 2699 - temporary-resourcet ==0.1.0.1 2700 2700 - tensorflow-test ==0.1.0.0 2701 2701 - tensort ==1.0.1.4 2702 - - termbox ==2.0.0.1 2703 - - termbox-banana ==2.0.0 2704 - - termbox-bindings-c ==0.1.0.1 2705 - - termbox-bindings-hs ==1.0.0 2706 - - termbox-tea ==1.0.0 2702 + - termbox ==2.0.0.2 2703 + - termbox-banana ==2.0.0.1 2704 + - termbox-bindings-c ==0.1.0.2 2705 + - termbox-bindings-hs ==1.0.0.1 2706 + - termbox-tea ==1.0.0.1 2707 2707 - terminal ==0.2.0.0 2708 2708 - terminal-progress-bar ==0.4.2 2709 2709 - terminal-size ==0.3.4 2710 2710 - termonad ==4.6.0.0 2711 2711 - test-certs ==0.1.1.1 2712 - - test-framework ==0.8.2.1 2712 + - test-framework ==0.8.2.2 2713 2713 - test-framework-hunit ==0.3.0.2 2714 2714 - test-framework-leancheck ==0.0.4 2715 2715 - test-framework-quickcheck2 ==0.3.0.6 ··· 2720 2720 - texmath ==0.12.9 2721 2721 - text-ansi ==0.3.0.1 2722 2722 - text-binary ==0.2.1.1 2723 - - text-builder ==0.6.7.3 2724 - - text-builder-dev ==0.3.9.1 2723 + - text-builder ==0.6.10 2724 + - text-builder-dev ==0.3.10 2725 2725 - text-builder-linear ==0.1.3 2726 2726 - text-conversions ==0.3.1.1 2727 2727 - text-icu ==0.8.0.5 ··· 2796 2796 - titlecase ==1.0.1 2797 2797 - tldr ==0.9.2 2798 2798 - tls ==2.1.1 2799 - - tls-session-manager ==0.0.7 2799 + - tls-session-manager ==0.0.8 2800 2800 - tlynx ==0.8.0.0 2801 2801 - tmapchan ==0.0.3 2802 2802 - tmapmvar ==0.0.4 ··· 2840 2840 - twitter-types ==0.11.0 2841 2841 - twitter-types-lens ==0.11.0 2842 2842 - typecheck-plugin-nat-simple ==0.1.0.9 2843 - - typed-process ==0.2.12.0 2843 + - typed-process ==0.2.13.0 2844 2844 - typed-uuid ==0.2.0.0 2845 2845 - type-equality ==1.0.1 2846 2846 - type-errors ==0.2.0.2 ··· 2914 2914 - unix-compat ==0.7.4 2915 2915 - unix-time ==0.4.16 2916 2916 - unjson ==0.15.4 2917 - - unlifted ==0.2.2.0 2917 + - unlifted ==0.2.3.0 2918 2918 - unliftio ==0.2.25.1 2919 2919 - unliftio-core ==0.2.1.0 2920 2920 - unliftio-path ==0.0.2.0 ··· 3086 3086 - xdg-desktop-entry ==0.1.1.2 3087 3087 - xdg-userdirs ==0.1.0.2 3088 3088 - xeno ==0.6 3089 - - xlsx ==1.1.3 3089 + - xlsx ==1.1.4 3090 3090 - xml ==1.3.14 3091 3091 - xml-basic ==0.1.3.3 3092 3092 - xmlbf ==0.7
+8 -31
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 415 415 - ZipFold 416 416 - a50 417 417 - abcBridge 418 - - abstract-par-accelerate 419 418 - ac-machine-conduit 420 419 - accelerate-arithmetic 421 - - accelerate-fftw 422 420 - accelerate-fourier 423 - - accelerate-io 424 - - accelerate-io-JuicyPixels 425 - - accelerate-io-array 426 - - accelerate-io-bmp 427 - - accelerate-io-bytestring 428 - - accelerate-io-cereal 429 - - accelerate-io-repa 430 - - accelerate-io-serialise 431 - - accelerate-io-vector 432 421 - accelerate-llvm 433 422 - accelerate-llvm-native 434 - - accelerate-random 435 423 - accelerate-typelits 436 - - accelerate-utility 437 424 - access-token-provider 438 425 - acme-php 439 426 - acme-safe ··· 442 429 - adhoc-network 443 430 - adict 444 431 - adp-multi-monadiccp 445 - - aern2-fun 446 - - aern2-mfun 447 - - aern2-mp 448 - - aern2-real 449 432 - aeson-native 450 433 - aeson_1_5_6_0 451 434 - affine ··· 460 443 - algebra-checkers 461 444 - algebra-driven-design 462 445 - algebra-sql 463 - - algebraic 464 446 - algolia 465 447 - algorithmic-composition-additional 466 448 - algorithmic-composition-basic ··· 839 821 - clickhouse-haskell 840 822 - clifford 841 823 - clippings 824 + - clod 842 825 - cloud-haskell 843 826 - cloud-seeder 844 827 - cloudyfs ··· 869 852 - color-counter 870 853 - colorless-http-client 871 854 - colorless-scotty 872 - - colour-accelerate 873 855 - colour-space 874 856 - columbia 875 857 - columnar ··· 946 928 - coordinate 947 929 - copilot-cbmc 948 930 - copilot-sbv 949 - - copilot-verifier 950 931 - coroutine-enumerator 951 932 - coroutine-iteratee 952 933 - couch-simple ··· 972 953 - crf-chain2-tiers 973 954 - criu-rpc 974 955 - cron-compat 975 - - crux-llvm 976 956 - crypto-classical 977 957 - crypto-conduit 978 958 - crypto-pubkey ··· 990 970 - curryer-rpc 991 971 - cv-combinators 992 972 - cypher 973 + - dahdit-audio 993 974 - dahdit-midi 994 975 - dahdit-test 995 976 - daino ··· 1039 1020 - ddc-tools 1040 1021 - ddc-war 1041 1022 - ddci-core 1042 - - dde 1043 1023 - debug 1044 1024 - decimal-arithmetic 1045 1025 - dedukti 1046 - - deeplearning-hs 1047 1026 - deepzoom 1048 1027 - defargs 1049 1028 - definitive-filesystem ··· 1489 1468 - gridland 1490 1469 - grisette 1491 1470 - grisette-monad-coroutine 1492 - - grisette_0_11_0_0 1471 + - grisette_0_12_0_0 1493 1472 - gross 1494 1473 - groundhog-converters 1495 1474 - groundhog-inspector ··· 1517 1496 - gtkimageview 1518 1497 - gtkrsync 1519 1498 - guarded-rewriting 1499 + - h3spec 1520 1500 - hOff-display 1521 1501 - hPDB 1522 1502 - hPDB-examples ··· 1589 1569 - hascat-system 1590 1570 - hash-addressed 1591 1571 - hash-addressed-cli 1592 - - hashable-accelerate 1593 1572 - hashflare 1594 1573 - hask-home 1595 1574 - haskanoid ··· 1897 1876 - http2-client-grpc 1898 1877 - http2-grpc-proto-lens 1899 1878 - http2-grpc-proto3-wire 1879 + - http3 1900 1880 - https-everywhere-rules 1901 1881 - https-everywhere-rules-raw 1902 1882 - httpspec ··· 1970 1950 - imj-base 1971 1951 - imj-game-hamazed 1972 1952 - imj-measure-stdout 1953 + - immutaball-core 1973 1954 - imparse 1974 1955 - imperative-edsl 1975 1956 - imperative-edsl-vhdl ··· 2164 2145 - lame-tester 2165 2146 - landlock 2166 2147 - lang 2148 + - langchain-hs 2167 2149 - language-Modula2 2168 2150 - language-ats 2169 2151 - language-boogie ··· 2201 2183 - legion-extra 2202 2184 - leksah 2203 2185 - leksah-server 2204 - - lens-accelerate 2205 2186 - lens-utils 2206 2187 - lenz 2207 2188 - lenz-mtl ··· 2228 2209 - lightstep-haskell 2229 2210 - lighttpd-conf 2230 2211 - lighttpd-conf-qq 2231 - - linear-accelerate 2232 2212 - linear-code 2233 2213 - linearEqSolver 2234 2214 - linearscan-hoopl ··· 2499 2479 - mutable-iter 2500 2480 - mute-unmute 2501 2481 - mvclient 2502 - - mwc-random-accelerate 2503 2482 - mwc-random-monad 2504 2483 - mxnet-dataiter 2505 2484 - mxnet-examples ··· 2609 2588 - ois-input-manager 2610 2589 - olwrapper 2611 2590 - om-kubernetes 2612 - - om-legion 2613 2591 - one-time-password 2614 2592 - online-csv 2615 2593 - oops-examples ··· 2989 2967 - regular-xmlpickler 2990 2968 - reheat 2991 2969 - rel8 2992 - - relational-query-postgresql-pure 2993 2970 - relative-date 2994 2971 - remote-json 2995 2972 - remote-json-client ··· 3594 3571 - type-structure 3595 3572 - type-sub-th 3596 3573 - typecheck-plugin-nat-simple_0_1_0_11 3597 - - typed-admin 3598 3574 - typed-encoding-encoding 3599 3575 - typed-gui 3600 3576 - typed-streams ··· 3727 3703 - wai-thrift 3728 3704 - waldo 3729 3705 - warp-grpc 3706 + - warp-quic 3730 3707 - warped 3731 3708 - wavesurfer 3732 3709 - wavy
+13
pkgs/development/haskell-modules/configuration-nix.nix
··· 825 825 ]; 826 826 }) super.crucible-symio; 827 827 828 + # Test suite requires z3 to be in PATH 829 + crucible-llvm = addTestToolDepends [ 830 + pkgs.z3 831 + ] super.crucible-llvm; 832 + 828 833 # Compile manpages (which are in RST and are compiled with Sphinx). 829 834 futhark = 830 835 overrideCabal ··· 1519 1524 ''; 1520 1525 }) super.jacinda; 1521 1526 1527 + # Needs network access 1528 + pinecone = dontCheck super.pinecone; 1529 + 1522 1530 # Smoke test can't be executed in sandbox 1523 1531 # https://github.com/georgefst/evdev/issues/25 1524 1532 evdev = overrideCabal (drv: { ··· 1699 1707 1700 1708 postgresql-libpq-configure = overrideCabal (drv: { 1701 1709 librarySystemDepends = (drv.librarySystemDepends or [ ]) ++ [ pkgs.libpq ]; 1710 + libraryToolDepends = (drv.libraryToolDepends or [ ]) ++ [ pkgs.libpq.pg_config ]; 1702 1711 }) super.postgresql-libpq-configure; 1703 1712 1704 1713 postgresql-libpq-pkgconfig = addPkgconfigDepend pkgs.libpq super.postgresql-libpq-pkgconfig; 1714 + 1715 + HDBC-postgresql = overrideCabal (drv: { 1716 + libraryToolDepends = (drv.libraryToolDepends or [ ]) ++ [ pkgs.libpq.pg_config ]; 1717 + }) super.HDBC-postgresql; 1705 1718 1706 1719 # Test failure is related to a GHC implementation detail of primitives and doesn't 1707 1720 # cause actual problems in dependent packages, see https://github.com/lehins/pvar/issues/4
+2579 -684
pkgs/development/haskell-modules/hackage-packages.nix
··· 4360 4360 }: 4361 4361 mkDerivation { 4362 4362 pname = "Blammo"; 4363 - version = "2.1.2.0"; 4364 - sha256 = "0aa1kn4aljj6nvsnilfq3xy4b4yzy4gs6k949jjcvjhpm2zgab1m"; 4363 + version = "2.1.3.0"; 4364 + sha256 = "1vng5l6pz4p391ywnmbmypbva1cr5i38knabk67j9ylk2i0fy04a"; 4365 4365 libraryHaskellDepends = [ 4366 4366 aeson 4367 4367 base ··· 5970 5970 } 5971 5971 ) { }; 5972 5972 5973 - "Cabal_3_14_1_1" = callPackage ( 5973 + "Cabal_3_14_2_0" = callPackage ( 5974 5974 { 5975 5975 mkDerivation, 5976 5976 array, ··· 5991 5991 }: 5992 5992 mkDerivation { 5993 5993 pname = "Cabal"; 5994 - version = "3.14.1.1"; 5995 - sha256 = "11grp5spxjmmjcvpszrzlgpv2zkad9l20rfbjd5rvnjp3wa51xan"; 5994 + version = "3.14.2.0"; 5995 + sha256 = "0cll8as76gvi0jhwrzpxrc0kf5v55jmc03mc9pnp4115gjqs5355"; 5996 + revision = "1"; 5997 + editedCabalFile = "016hy694a57zcqf8l5agfd19bxhdl4cr3my8vz30v4mr6xmai2pr"; 5996 5998 setupHaskellDepends = [ 5997 5999 mtl 5998 6000 parsec ··· 6268 6270 } 6269 6271 ) { }; 6270 6272 6271 - "Cabal-syntax_3_14_1_0" = callPackage ( 6273 + "Cabal-syntax_3_14_2_0" = callPackage ( 6272 6274 { 6273 6275 mkDerivation, 6274 6276 alex, ··· 6289 6291 }: 6290 6292 mkDerivation { 6291 6293 pname = "Cabal-syntax"; 6292 - version = "3.14.1.0"; 6293 - sha256 = "13d4sfqlbx2m8f075jnqq965sj0ayn1vk2fd2m8rdp9fsqy8hxm0"; 6294 + version = "3.14.2.0"; 6295 + sha256 = "11armvlq5ygzrsn1k4vld8fr5li1vh9gd1l4al31kz7zvbm3jpwx"; 6294 6296 libraryHaskellDepends = [ 6295 6297 array 6296 6298 base ··· 6724 6726 pname = "Chart-diagrams"; 6725 6727 version = "1.9.5.1"; 6726 6728 sha256 = "1pk2fsmjl2dsabzpdwk3190nw0nwy581c4qsl93npx764qcxkp7q"; 6727 - revision = "3"; 6728 - editedCabalFile = "1d02cd4i4kvz53ymw1jrracbv0mkfzjizc64mkg8yxmrby0ywvlj"; 6729 + revision = "4"; 6730 + editedCabalFile = "0lkpn0jdx0nj6991dkakm3262z4l9sqzbyhck2nrxcisgg8afmn6"; 6729 6731 enableSeparateDataOutput = true; 6730 6732 libraryHaskellDepends = [ 6731 6733 base ··· 17729 17731 librarySystemDepends = [ libpq ]; 17730 17732 description = "PostgreSQL driver for HDBC"; 17731 17733 license = lib.licenses.bsd3; 17732 - hydraPlatforms = lib.platforms.none; 17733 - broken = true; 17734 17734 } 17735 17735 ) { inherit (pkgs) libpq; }; 17736 17736 ··· 30321 30321 }: 30322 30322 mkDerivation { 30323 30323 pname = "Monadoro"; 30324 - version = "0.4.0.0"; 30325 - sha256 = "0axilb24mw5f0jvmdyqbrnmh2k9klygxdfazqsyrj2cbxfsby3c3"; 30324 + version = "0.4.0.2"; 30325 + sha256 = "0mkj5k57c1m9nl04qyn770a754gkna62jg805cg88nhdlgpx9shs"; 30326 30326 isLibrary = true; 30327 30327 isExecutable = true; 30328 30328 enableSeparateDataOutput = true; ··· 30715 30715 }: 30716 30716 mkDerivation { 30717 30717 pname = "MultiChor"; 30718 - version = "1.0.1.1"; 30719 - sha256 = "1rdwjr6j398m91f7a6mjhpp9zjzs2iclq22q221pcxx5x1y08hq1"; 30718 + version = "1.1.0.0"; 30719 + sha256 = "0i2g57h3cfcls0r5bjnpj79yrf2pfjh09ybfwqa81gli7szr5m6r"; 30720 30720 libraryHaskellDepends = [ 30721 30721 base 30722 30722 bytestring ··· 34884 34884 }: 34885 34885 mkDerivation { 34886 34886 pname = "PenroseKiteDart"; 34887 - version = "1.2"; 34888 - sha256 = "09z9kyyqmmbhw89inikh8hr2v8ninkwn4wkb7mjnfja92d4nfj3a"; 34887 + version = "1.2.1"; 34888 + sha256 = "0dzp261z231j0vwl727qa8vgzbi8dgc9vr462wlwdpzs8a18jdxf"; 34889 34889 libraryHaskellDepends = [ 34890 34890 base 34891 34891 containers ··· 37487 37487 } 37488 37488 ) { }; 37489 37489 37490 + "Ranged-sets_0_5_0" = callPackage ( 37491 + { 37492 + mkDerivation, 37493 + base, 37494 + HUnit, 37495 + QuickCheck, 37496 + }: 37497 + mkDerivation { 37498 + pname = "Ranged-sets"; 37499 + version = "0.5.0"; 37500 + sha256 = "03254dl4nl7x4dhlkj6285gc6djgwklfbg1yypl1vfl72l5bsh40"; 37501 + libraryHaskellDepends = [ 37502 + base 37503 + QuickCheck 37504 + ]; 37505 + testHaskellDepends = [ 37506 + base 37507 + HUnit 37508 + QuickCheck 37509 + ]; 37510 + description = "Ranged sets for Haskell"; 37511 + license = lib.licenses.bsd3; 37512 + hydraPlatforms = lib.platforms.none; 37513 + } 37514 + ) { }; 37515 + 37490 37516 "Ranka" = callPackage ( 37491 37517 { 37492 37518 mkDerivation, ··· 49188 49214 description = "Provides the class ParAccelerate, nothing more"; 49189 49215 license = lib.licenses.bsd3; 49190 49216 hydraPlatforms = lib.platforms.none; 49217 + broken = true; 49191 49218 } 49192 49219 ) { }; 49193 49220 ··· 49232 49259 QuickCheck, 49233 49260 quickcheck-classes, 49234 49261 random, 49262 + semirings, 49235 49263 tagged, 49236 49264 tasty, 49237 49265 tasty-hspec, ··· 49246 49274 }: 49247 49275 mkDerivation { 49248 49276 pname = "ac-library-hs"; 49249 - version = "1.2.3.0"; 49250 - sha256 = "0b41jpl97imwprn73qqff5p4l2qk0qnm58hi88lgn74az5harpqk"; 49277 + version = "1.2.6.0"; 49278 + sha256 = "1n10dg5c0khy3ijic77inbvar7n8qir9lqpdqgkjiyn5bhmc7j4x"; 49251 49279 isLibrary = true; 49252 49280 isExecutable = true; 49253 49281 libraryHaskellDepends = [ ··· 49255 49283 bitvec 49256 49284 bytestring 49257 49285 primitive 49286 + random 49258 49287 vector 49259 49288 vector-algorithms 49260 49289 wide-word ··· 49264 49293 bitvec 49265 49294 bytestring 49266 49295 primitive 49296 + random 49267 49297 vector 49268 49298 vector-algorithms 49269 49299 wide-word ··· 49279 49309 QuickCheck 49280 49310 quickcheck-classes 49281 49311 random 49312 + semirings 49282 49313 tagged 49283 49314 tasty 49284 49315 tasty-hspec ··· 49482 49513 ]; 49483 49514 description = "An embedded language for accelerated array processing"; 49484 49515 license = lib.licenses.bsd3; 49485 - hydraPlatforms = lib.platforms.none; 49486 - broken = true; 49487 49516 } 49488 49517 ) { }; 49489 49518 ··· 50020 50049 license = lib.licenses.bsd3; 50021 50050 hydraPlatforms = lib.platforms.none; 50022 50051 maintainers = [ lib.maintainers.thielema ]; 50052 + broken = true; 50023 50053 } 50024 50054 ) { }; 50025 50055 ··· 50124 50154 ]; 50125 50155 description = "Convert between Accelerate arrays and raw pointers"; 50126 50156 license = lib.licenses.bsd3; 50127 - hydraPlatforms = lib.platforms.none; 50128 50157 } 50129 50158 ) { }; 50130 50159 ··· 50301 50330 ]; 50302 50331 description = "Binary serialisation of Accelerate arrays using serialise"; 50303 50332 license = lib.licenses.bsd3; 50304 - hydraPlatforms = lib.platforms.none; 50305 50333 } 50306 50334 ) { }; 50307 50335 ··· 50592 50620 description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; 50593 50621 license = lib.licenses.bsd3; 50594 50622 hydraPlatforms = lib.platforms.none; 50623 + broken = true; 50595 50624 } 50596 50625 ) { }; 50597 50626 ··· 50663 50692 license = lib.licenses.bsd3; 50664 50693 hydraPlatforms = lib.platforms.none; 50665 50694 maintainers = [ lib.maintainers.thielema ]; 50695 + broken = true; 50666 50696 } 50667 50697 ) { }; 50668 50698 ··· 53292 53322 ]; 53293 53323 description = "Generic operations for real functions"; 53294 53324 license = lib.licenses.bsd3; 53295 - hydraPlatforms = lib.platforms.none; 53296 53325 } 53297 53326 ) { }; 53298 53327 ··· 53330 53359 ]; 53331 53360 description = "Multi-variate real function optimisation and proving"; 53332 53361 license = lib.licenses.bsd3; 53333 - hydraPlatforms = lib.platforms.none; 53334 53362 mainProgram = "aern2-mfun-benchmark-optimisation"; 53335 53363 } 53336 53364 ) { }; ··· 53382 53410 ]; 53383 53411 description = "Multi-precision ball (interval) arithmetic"; 53384 53412 license = lib.licenses.bsd3; 53385 - hydraPlatforms = lib.platforms.none; 53386 53413 } 53387 53414 ) { }; 53388 53415 ··· 53421 53448 ]; 53422 53449 description = "Real numbers as convergent sequences of intervals"; 53423 53450 license = lib.licenses.bsd3; 53424 - hydraPlatforms = lib.platforms.none; 53425 53451 } 53426 53452 ) { }; 53427 53453 ··· 53743 53769 }: 53744 53770 mkDerivation { 53745 53771 pname = "aeson-better-errors"; 53746 - version = "0.9.1.1"; 53747 - sha256 = "05yibq9kqbjb8rh84n12sbax05amvd8jccpja0hyadz58pjy4jnk"; 53748 - revision = "1"; 53749 - editedCabalFile = "0wzvrmhn5q2x1mcv43cyxhlck815ldkhx7c7gz5ijjyva1iicgn2"; 53772 + version = "0.9.1.3"; 53773 + sha256 = "1jsnpa1ry1iyzz5qmg58za7i0d4944gcidj12jgwdslmpvcxb436"; 53750 53774 libraryHaskellDepends = [ 53751 53775 aeson 53752 53776 base ··· 58170 58194 }: 58171 58195 mkDerivation { 58172 58196 pname = "alex"; 58173 - version = "3.5.2.0"; 58174 - sha256 = "02601mzx303gqicm1d528nqblnmwvc6mkmwyrl74f9s88vq04dli"; 58197 + version = "3.5.3.0"; 58198 + sha256 = "1ily1dp24i760m8p4l7x99ig532v8g1lxqp24f2i6dr8vpi55kd5"; 58175 58199 isLibrary = false; 58176 58200 isExecutable = true; 58177 58201 enableSeparateDataOutput = true; ··· 58748 58772 description = "General linear algebra structures"; 58749 58773 license = lib.licenses.bsd3; 58750 58774 hydraPlatforms = lib.platforms.none; 58775 + broken = true; 58751 58776 } 58752 58777 ) { }; 58753 58778 ··· 59365 59390 { 59366 59391 mkDerivation, 59367 59392 base, 59393 + hspec, 59368 59394 safe, 59369 59395 text, 59370 59396 }: 59371 59397 mkDerivation { 59372 59398 pname = "align-equal"; 59373 - version = "0.1.1.0"; 59374 - sha256 = "138iplm5xgbbahbssdqsrwq0w3qwyr26gpnjf9rrkw82p2xph74n"; 59399 + version = "1.0.1.2"; 59400 + sha256 = "1bm5vlklrrdvnh1qcks5bck66n2kyjz50dd21f55qhpav8m2sdcr"; 59375 59401 isLibrary = true; 59376 59402 isExecutable = true; 59377 59403 libraryHaskellDepends = [ ··· 59383 59409 base 59384 59410 text 59385 59411 ]; 59412 + testHaskellDepends = [ 59413 + base 59414 + hspec 59415 + safe 59416 + text 59417 + ]; 59386 59418 description = "Aligns text prefixes before '=' for consistent formatting"; 59387 59419 license = lib.licenses.mit; 59388 59420 hydraPlatforms = lib.platforms.none; ··· 76331 76363 }: 76332 76364 mkDerivation { 76333 76365 pname = "annotated-exception"; 76334 - version = "0.3.0.2"; 76335 - sha256 = "1xsyq28hkf7ngkq9v5ga958d2fqbmshc9gl8lzms6vknr64gaqr7"; 76366 + version = "0.3.0.4"; 76367 + sha256 = "134hwx6nm1ana5xc13dcrjb91r545lp00vpnzfm6narb5jgp9wg3"; 76336 76368 libraryHaskellDepends = [ 76337 76369 base 76338 76370 containers ··· 81984 82016 }: 81985 82017 mkDerivation { 81986 82018 pname = "arch-hs"; 81987 - version = "0.11.1.0"; 81988 - sha256 = "1f50id3xplp8zwi379n6xi4in01gms97qbqnfxnsqzrv47xszwj4"; 81989 - revision = "4"; 81990 - editedCabalFile = "1qizarnjfzlml2v0bpdswhxdapakyhqil4avvmflzg4s3fm31m7l"; 82019 + version = "0.12.0.1"; 82020 + sha256 = "0j8j22yy3mz31ypw3j8bk4cz5n2pfvv41m5smg0jxxxvdf6jbdia"; 81991 82021 isLibrary = true; 81992 82022 isExecutable = true; 81993 82023 libraryHaskellDepends = [ ··· 83341 83371 }: 83342 83372 mkDerivation { 83343 83373 pname = "arithmoi"; 83344 - version = "0.13.0.1"; 83345 - sha256 = "08ny7pwy2askq0h34lsna0p0fqrb4wgngw5pxbdc150y2wb7p0lq"; 83374 + version = "0.13.1.0"; 83375 + sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; 83346 83376 configureFlags = [ "-f-llvm" ]; 83347 83377 libraryHaskellDepends = [ 83348 83378 array ··· 89821 89851 }: 89822 89852 mkDerivation { 89823 89853 pname = "auto-split"; 89824 - version = "0.1.0.3"; 89825 - sha256 = "1v0m3a1jh04brkxvi9111a49wj7pfvx5wjix6h5q4clc85l0hcmg"; 89854 + version = "0.1.0.4"; 89855 + sha256 = "0h5amma97l6m8dxvhnnksskfm55zgpfx3qm24wivv7slhp7s9q2q"; 89826 89856 libraryHaskellDepends = [ 89827 89857 base 89828 89858 ghc ··· 93810 93840 bytestring, 93811 93841 containers, 93812 93842 directory, 93843 + effectful, 93844 + effectful-core, 93845 + effectful-plugin, 93846 + effectful-th, 93813 93847 extra, 93814 93848 filepath, 93815 - freer-simple, 93816 93849 ghcid, 93817 93850 hashable, 93818 93851 haskell-src-exts, 93819 93852 hedgehog, 93820 93853 hpack, 93854 + hspec, 93821 93855 lens, 93822 93856 lens-aeson, 93823 93857 megaparsec, 93824 93858 mono-traversable, 93825 93859 optparse-applicative, 93826 - polysemy, 93827 - polysemy-plugin, 93828 93860 prettyprinter, 93829 93861 process, 93830 93862 profunctors, ··· 93847 93879 }: 93848 93880 mkDerivation { 93849 93881 pname = "axel"; 93850 - version = "0.0.12"; 93851 - sha256 = "1136rnh5j47qxyciwmpgcdqy3j4f4pwcgb89wgkl8wixzxjxj6i1"; 93882 + version = "0.0.13"; 93883 + sha256 = "1300b6j2nnwwwlh4q0nw6qv2cadk6byiqqp0f4mhlmylzasvrbcy"; 93852 93884 isLibrary = true; 93853 93885 isExecutable = true; 93854 93886 enableSeparateDataOutput = true; ··· 93859 93891 bytestring 93860 93892 containers 93861 93893 directory 93894 + effectful 93895 + effectful-core 93896 + effectful-plugin 93897 + effectful-th 93862 93898 extra 93863 93899 filepath 93864 - freer-simple 93865 93900 ghcid 93866 93901 hashable 93867 93902 haskell-src-exts 93868 93903 hedgehog 93869 93904 hpack 93905 + hspec 93870 93906 lens 93871 93907 lens-aeson 93872 93908 megaparsec 93873 93909 mono-traversable 93874 93910 optparse-applicative 93875 - polysemy 93876 - polysemy-plugin 93877 93911 prettyprinter 93878 93912 process 93879 93913 profunctors ··· 93905 93939 bytestring 93906 93940 containers 93907 93941 directory 93942 + effectful 93943 + effectful-core 93944 + effectful-plugin 93945 + effectful-th 93908 93946 extra 93909 93947 filepath 93910 - freer-simple 93911 93948 ghcid 93912 93949 hashable 93913 93950 haskell-src-exts 93914 93951 hedgehog 93915 93952 hpack 93953 + hspec 93916 93954 lens 93917 93955 lens-aeson 93918 93956 megaparsec 93919 93957 mono-traversable 93920 93958 optparse-applicative 93921 - polysemy 93922 - polysemy-plugin 93923 93959 prettyprinter 93924 93960 process 93925 93961 profunctors ··· 93951 93987 bytestring 93952 93988 containers 93953 93989 directory 93990 + effectful 93991 + effectful-core 93992 + effectful-plugin 93993 + effectful-th 93954 93994 extra 93955 93995 filepath 93956 - freer-simple 93957 93996 ghcid 93958 93997 hashable 93959 93998 haskell-src-exts 93960 93999 hedgehog 93961 94000 hpack 94001 + hspec 93962 94002 lens 93963 94003 lens-aeson 93964 94004 megaparsec 93965 94005 mono-traversable 93966 94006 optparse-applicative 93967 - polysemy 93968 - polysemy-plugin 93969 94007 prettyprinter 93970 94008 process 93971 94009 profunctors ··· 96012 96050 }: 96013 96051 mkDerivation { 96014 96052 pname = "bank-holiday-germany"; 96015 - version = "1.3.0.0"; 96016 - sha256 = "1agf4flql5xkj2rpdbdxpmvajhigcwzbxsmrh76bckmcj2b38k9f"; 96017 - revision = "4"; 96018 - editedCabalFile = "057nvj7bd6hm4xjylr75gq3sg74iz8h4xkyzxmxj54x76nplgq9i"; 96053 + version = "1.3.1.0"; 96054 + sha256 = "1a9n5vc9bqs6a6nh87px4lb9i73ad4yg0l67rlwiv80l4pqia1fi"; 96019 96055 libraryHaskellDepends = [ 96020 96056 base 96021 96057 time ··· 96030 96066 ]; 96031 96067 description = "German bank holidays and public holidays"; 96032 96068 license = lib.licenses.mit; 96069 + } 96070 + ) { }; 96071 + 96072 + "bank-holiday-germany_2_1_0_0" = callPackage ( 96073 + { 96074 + mkDerivation, 96075 + base, 96076 + doctest, 96077 + hedgehog, 96078 + hspec, 96079 + hspec-hedgehog, 96080 + time, 96081 + }: 96082 + mkDerivation { 96083 + pname = "bank-holiday-germany"; 96084 + version = "2.1.0.0"; 96085 + sha256 = "1p0grrrd949ng2hjwfx66v42c9sl2lhwxy0qg1r4b0myr77wia03"; 96086 + libraryHaskellDepends = [ 96087 + base 96088 + time 96089 + ]; 96090 + testHaskellDepends = [ 96091 + base 96092 + doctest 96093 + hedgehog 96094 + hspec 96095 + hspec-hedgehog 96096 + time 96097 + ]; 96098 + description = "German bank holidays and public holidays"; 96099 + license = lib.licenses.mit; 96100 + hydraPlatforms = lib.platforms.none; 96033 96101 } 96034 96102 ) { }; 96035 96103 ··· 101619 101687 hoogle, 101620 101688 lens, 101621 101689 process, 101622 - protolude, 101623 101690 text, 101624 101691 time, 101625 101692 typed-process, 101626 101693 vector, 101694 + verset, 101627 101695 vty, 101628 101696 vty-crossplatform, 101629 101697 }: 101630 101698 mkDerivation { 101631 101699 pname = "bhoogle"; 101632 - version = "0.1.4.3"; 101633 - sha256 = "1qsvzsfn7cysz4p62pwba207h2q9khii1vbwgsgn01qwvhc0vm15"; 101700 + version = "0.1.4.4"; 101701 + sha256 = "1z19h0jgnipj16rqbrflcjnqaslafq9bvwkyg8q0il76q7s4wyxa"; 101702 + revision = "1"; 101703 + editedCabalFile = "182j2bc4cqddzv5vd2fkkyx2qs9ya7vg9r234xr5gyp35waln1i9"; 101634 101704 isLibrary = false; 101635 101705 isExecutable = true; 101636 101706 executableHaskellDepends = [ ··· 101643 101713 hoogle 101644 101714 lens 101645 101715 process 101646 - protolude 101647 101716 text 101648 101717 time 101649 101718 typed-process 101650 101719 vector 101720 + verset 101651 101721 vty 101652 101722 vty-crossplatform 101653 101723 ]; ··· 109391 109461 }: 109392 109462 mkDerivation { 109393 109463 pname = "blas-comfort-array"; 109394 - version = "0.0.0.3"; 109395 - sha256 = "1g0bvag205ag520vlxv24cv63idjg6j8nwnadq9gbcibn4gvsisz"; 109396 - revision = "1"; 109397 - editedCabalFile = "1jdl8x0vs6p0h3qcwal7zr281cxqlxppq43yg2jkidhddqf9sgpd"; 109464 + version = "0.0.0.4"; 109465 + sha256 = "0km1pkmzaf89amyw867kbbakvgvimha8d7nsjn6rzn7pyc4p66ja"; 109398 109466 libraryHaskellDepends = [ 109399 109467 base 109400 109468 blas-ffi ··· 110491 110559 }: 110492 110560 mkDerivation { 110493 110561 pname = "blockfrost-api"; 110494 - version = "0.12.1.0"; 110495 - sha256 = "0v3v42qlwiq9vmxb7n9y0sx6fpj58l367a28mrhjkagj3skh1m08"; 110562 + version = "0.12.2.0"; 110563 + sha256 = "04w745ws2nf90yix2idd6shahqfi7mwx83j4divjrkfb57pd8v6p"; 110496 110564 libraryHaskellDepends = [ 110497 110565 aeson 110498 110566 base ··· 110554 110622 }: 110555 110623 mkDerivation { 110556 110624 pname = "blockfrost-client"; 110557 - version = "0.9.1.0"; 110558 - sha256 = "14pgfkpp3k1vnci718w7hcn4wmj81lbwdw14kmixb31haqajvn6n"; 110625 + version = "0.9.2.0"; 110626 + sha256 = "04q48afris70y4j4ya52kvj9n1iy8jqn6ygydp11idr15fpjj4qh"; 110559 110627 isLibrary = true; 110560 110628 isExecutable = true; 110561 110629 libraryHaskellDepends = [ ··· 112338 112406 pname = "bond"; 112339 112407 version = "0.13.0.0"; 112340 112408 sha256 = "0zb42j6hz8vjg38cpmmqzisnirajz140s9yp83f1zv471r6zb868"; 112409 + revision = "1"; 112410 + editedCabalFile = "0vvj75033s2jfskfc6zrqpzdyi0jdv45dyr33z86nlsg4dwpj81f"; 112341 112411 isLibrary = true; 112342 112412 isExecutable = true; 112343 112413 libraryHaskellDepends = [ ··· 114198 114268 }: 114199 114269 mkDerivation { 114200 114270 pname = "bowtie"; 114201 - version = "0.5.0"; 114202 - sha256 = "0gdf3fiji0w68h51r8xdgn442k7gni66fq78bgpkrpj718fvjmbf"; 114271 + version = "0.7.0"; 114272 + sha256 = "0d26srb8r8p32n4cq0bs8r11psh3w87mf6bq4h5612knsbdyny0f"; 114203 114273 libraryHaskellDepends = [ 114204 114274 base 114205 114275 bifunctors ··· 123734 123804 }: 123735 123805 mkDerivation { 123736 123806 pname = "cabal-install"; 123737 - version = "3.14.1.1"; 123738 - sha256 = "1kmsnvdid2pc1r395id8h1vi8ckphm9h9rl7m5sn5d3zp153c7gi"; 123739 - revision = "1"; 123740 - editedCabalFile = "0yz85jln3nipglik8pn45kmbdn63i74xcll5yx5fdawlfrl4qav2"; 123807 + version = "3.14.2.0"; 123808 + sha256 = "1nvv3h9kq92ifyqqma88538579v7898pd9b52hras2h489skv8g8"; 123741 123809 isLibrary = true; 123742 123810 isExecutable = true; 123743 123811 libraryHaskellDepends = [ ··· 124173 124241 }: 124174 124242 mkDerivation { 124175 124243 pname = "cabal-install-solver"; 124176 - version = "3.14.1.0"; 124177 - sha256 = "0gcccglkhz8kjjvqas79wn402c5im2fqqzms453hj0i28j0y4ydm"; 124244 + version = "3.14.2.0"; 124245 + sha256 = "0551cvrkbnjfqjd3byq7pczlwjdb0n1jrfsrb0j8axagylbif7g1"; 124178 124246 libraryHaskellDepends = [ 124179 124247 array 124180 124248 base ··· 124810 124878 ]; 124811 124879 executableHaskellDepends = [ base ]; 124812 124880 license = lib.licenses.bsd3; 124881 + hydraPlatforms = lib.platforms.none; 124813 124882 mainProgram = "cabal-scaffold"; 124883 + broken = true; 124814 124884 } 124815 124885 ) { }; 124816 124886 ··· 126272 126342 }: 126273 126343 mkDerivation { 126274 126344 pname = "cachix"; 126275 - version = "1.7.7"; 126276 - sha256 = "1hlihm8lwng0g2w1a1cw56y32h85hdb1nxx9h8p60fql46z2f18w"; 126345 + version = "1.7.8"; 126346 + sha256 = "18vp2r0q6ibk5snsys7qh65vmshp4344z29pqdp8qfwzk5yqc3hc"; 126277 126347 isLibrary = true; 126278 126348 isExecutable = true; 126279 126349 libraryHaskellDepends = [ ··· 126433 126503 }: 126434 126504 mkDerivation { 126435 126505 pname = "cachix-api"; 126436 - version = "1.7.7"; 126437 - sha256 = "13gr7l65xpn8y32cds129bwwsjmc4ykz3vzvfm5hvmi5przlwb88"; 126506 + version = "1.7.8"; 126507 + sha256 = "0rvmfwmgyn6jpivq45f5v5sg0s007ansjmizflxgiqn4sfqbkndr"; 126438 126508 libraryHaskellDepends = [ 126439 126509 aeson 126440 126510 async ··· 127652 127722 } 127653 127723 ) { }; 127654 127724 127725 + "call-alloy_0_6_0_2" = callPackage ( 127726 + { 127727 + mkDerivation, 127728 + async, 127729 + base, 127730 + bytestring, 127731 + containers, 127732 + directory, 127733 + exceptions, 127734 + extra, 127735 + file-embed, 127736 + filepath, 127737 + hspec, 127738 + process, 127739 + split, 127740 + string-interpolate, 127741 + transformers, 127742 + trifecta, 127743 + unix, 127744 + }: 127745 + mkDerivation { 127746 + pname = "call-alloy"; 127747 + version = "0.6.0.2"; 127748 + sha256 = "1b8xb2z3cjlqiz2jj75qbw4p0xhdybhnarq3xg2gdn2c953xyscq"; 127749 + enableSeparateDataOutput = true; 127750 + libraryHaskellDepends = [ 127751 + async 127752 + base 127753 + bytestring 127754 + containers 127755 + directory 127756 + exceptions 127757 + extra 127758 + filepath 127759 + process 127760 + split 127761 + transformers 127762 + trifecta 127763 + unix 127764 + ]; 127765 + testHaskellDepends = [ 127766 + async 127767 + base 127768 + bytestring 127769 + containers 127770 + directory 127771 + exceptions 127772 + extra 127773 + file-embed 127774 + filepath 127775 + hspec 127776 + process 127777 + split 127778 + string-interpolate 127779 + transformers 127780 + trifecta 127781 + unix 127782 + ]; 127783 + description = "A simple library to call Alloy given a specification"; 127784 + license = lib.licenses.mit; 127785 + hydraPlatforms = lib.platforms.none; 127786 + broken = true; 127787 + } 127788 + ) { }; 127789 + 127655 127790 "call-haskell-from-anything" = callPackage ( 127656 127791 { 127657 127792 mkDerivation, ··· 127771 127906 }: 127772 127907 mkDerivation { 127773 127908 pname = "calligraphy"; 127774 - version = "0.1.6"; 127775 - sha256 = "1bsg18vq2cpzhj0lp5pcy73pa93wahaan0nrjgyyqd48szqppn33"; 127909 + version = "0.1.7"; 127910 + sha256 = "0lmhp9zqn65qlf93aijqcpnx5gbw51ms09hc553ks1nw4g97cpvv"; 127776 127911 isLibrary = true; 127777 127912 isExecutable = true; 127778 127913 libraryHaskellDepends = [ ··· 127798 127933 ]; 127799 127934 description = "HIE-based Haskell call graph and source code visualizer"; 127800 127935 license = lib.licenses.bsd3; 127801 - hydraPlatforms = lib.platforms.none; 127802 127936 mainProgram = "calligraphy"; 127803 - broken = true; 127804 127937 } 127805 127938 ) { }; 127806 127939 ··· 128070 128203 containers, 128071 128204 deep-transformations, 128072 128205 directory, 128206 + fast-logger, 128073 128207 filepath, 128074 128208 forms-data-format, 128075 128209 hedgehog, ··· 128093 128227 }: 128094 128228 mkDerivation { 128095 128229 pname = "canadian-income-tax"; 128096 - version = "2024.0"; 128097 - sha256 = "0lciy9q87wjv8gpc0qhgf2p7bpcxk7bg0ka7ac86c201qbva1xw7"; 128230 + version = "2024.1"; 128231 + sha256 = "1j68n3j05ga0l3fm9ric61i04kn0yjgzw80vzgwa5g208v1l97vj"; 128098 128232 isLibrary = true; 128099 128233 isExecutable = true; 128100 128234 enableSeparateDataOutput = true; ··· 128121 128255 ca-province-codes 128122 128256 containers 128123 128257 directory 128258 + fast-logger 128124 128259 filepath 128125 128260 forms-data-format 128126 128261 http-types ··· 128199 128334 }: 128200 128335 mkDerivation { 128201 128336 pname = "candid"; 128202 - version = "0.5.0.2"; 128203 - sha256 = "1xj5p9qjwn24xrm2wkp2bz5wrkljrjzvqsfd8az09r0x1d3v62b7"; 128337 + version = "0.5.0.3"; 128338 + sha256 = "1xl7pr6sf8750n7xscqh9fax9dak5rz63wxqrmib0a362arhvpgc"; 128204 128339 isLibrary = true; 128205 128340 isExecutable = true; 128206 128341 libraryHaskellDepends = [ ··· 129493 129628 pname = "cardano-addresses"; 129494 129629 version = "4.0.0"; 129495 129630 sha256 = "13cvazmshy3j9c53g7i8pd4fmh6mgiajhaf42cf2d353pjjxr1w4"; 129631 + revision = "1"; 129632 + editedCabalFile = "1alyswv1d4q616vikwyv35ycxlz73qa7w602y43iba2g953823xv"; 129496 129633 isLibrary = true; 129497 129634 isExecutable = true; 129498 129635 libraryHaskellDepends = [ ··· 132847 132984 ]; 132848 132985 description = "Exact real arithmetic using Centred Dyadic Approximations"; 132849 132986 license = lib.licenses.bsd3; 132850 - hydraPlatforms = lib.platforms.none; 132851 - broken = true; 132852 132987 } 132853 132988 ) { }; 132854 132989 ··· 141188 141323 }: 141189 141324 mkDerivation { 141190 141325 pname = "clash-shake"; 141191 - version = "0.3.2"; 141192 - sha256 = "0bgnl1q1xm1yhwspqlfr02p37iy8vka727r4awr2lihg12x83bjx"; 141193 - revision = "1"; 141194 - editedCabalFile = "1gqzayyqdrhfd11as965bmi06ahnx72sr5ghxczrlfxsihdrbcgl"; 141326 + version = "0.4.0"; 141327 + sha256 = "0k9zsgkdqhgw4l16j34b5y0sp553whiz77zvz5p4qsx2h7avri9w"; 141195 141328 libraryHaskellDepends = [ 141196 141329 aeson 141197 141330 base ··· 144136 144269 } 144137 144270 ) { QtCore = null; }; 144138 144271 144272 + "clod" = callPackage ( 144273 + { 144274 + mkDerivation, 144275 + aeson, 144276 + base, 144277 + bytestring, 144278 + containers, 144279 + dhall, 144280 + directory, 144281 + file-embed, 144282 + filepath, 144283 + hashable, 144284 + hspec, 144285 + lens, 144286 + magic, 144287 + mtl, 144288 + optparse-applicative, 144289 + process, 144290 + QuickCheck, 144291 + random, 144292 + temporary, 144293 + text, 144294 + time, 144295 + transformers, 144296 + unix, 144297 + xxhash-ffi, 144298 + }: 144299 + mkDerivation { 144300 + pname = "clod"; 144301 + version = "0.2.2"; 144302 + sha256 = "1r71lqpj29x9i8hsc8baajny2b79d5mp2l9xdnsadmgmxsszvdvb"; 144303 + isLibrary = true; 144304 + isExecutable = true; 144305 + libraryHaskellDepends = [ 144306 + aeson 144307 + base 144308 + bytestring 144309 + containers 144310 + dhall 144311 + directory 144312 + file-embed 144313 + filepath 144314 + hashable 144315 + lens 144316 + magic 144317 + mtl 144318 + process 144319 + temporary 144320 + text 144321 + time 144322 + transformers 144323 + unix 144324 + xxhash-ffi 144325 + ]; 144326 + executableHaskellDepends = [ 144327 + aeson 144328 + base 144329 + bytestring 144330 + containers 144331 + directory 144332 + filepath 144333 + hashable 144334 + magic 144335 + optparse-applicative 144336 + process 144337 + text 144338 + time 144339 + ]; 144340 + testHaskellDepends = [ 144341 + base 144342 + bytestring 144343 + containers 144344 + directory 144345 + filepath 144346 + hashable 144347 + hspec 144348 + mtl 144349 + optparse-applicative 144350 + process 144351 + QuickCheck 144352 + random 144353 + temporary 144354 + text 144355 + time 144356 + unix 144357 + ]; 144358 + description = "Project file manager for Claude AI integrations"; 144359 + license = lib.licenses.mit; 144360 + hydraPlatforms = lib.platforms.none; 144361 + } 144362 + ) { }; 144363 + 144139 144364 "clogparse" = callPackage ( 144140 144365 { 144141 144366 mkDerivation, ··· 146252 146477 ]; 146253 146478 description = "Composable Contravariant Comonadic Logging Library"; 146254 146479 license = lib.licenses.mpl20; 146480 + } 146481 + ) { }; 146482 + 146483 + "co-log_0_7_0_0" = callPackage ( 146484 + { 146485 + mkDerivation, 146486 + ansi-terminal, 146487 + base, 146488 + bytestring, 146489 + co-log-core, 146490 + containers, 146491 + contravariant, 146492 + dependent-map, 146493 + dependent-sum, 146494 + directory, 146495 + doctest, 146496 + exceptions, 146497 + filepath, 146498 + Glob, 146499 + hedgehog, 146500 + mtl, 146501 + text, 146502 + time, 146503 + transformers, 146504 + unliftio-core, 146505 + vector, 146506 + }: 146507 + mkDerivation { 146508 + pname = "co-log"; 146509 + version = "0.7.0.0"; 146510 + sha256 = "0r3jy8wah1bglx6qyys4v6qachgiwdlm1z3z3xp49b6yw82yjq38"; 146511 + isLibrary = true; 146512 + isExecutable = true; 146513 + libraryHaskellDepends = [ 146514 + ansi-terminal 146515 + base 146516 + bytestring 146517 + co-log-core 146518 + containers 146519 + contravariant 146520 + dependent-map 146521 + dependent-sum 146522 + directory 146523 + exceptions 146524 + filepath 146525 + mtl 146526 + text 146527 + time 146528 + transformers 146529 + unliftio-core 146530 + vector 146531 + ]; 146532 + executableHaskellDepends = [ 146533 + base 146534 + bytestring 146535 + dependent-map 146536 + mtl 146537 + ]; 146538 + testHaskellDepends = [ 146539 + base 146540 + co-log-core 146541 + doctest 146542 + Glob 146543 + hedgehog 146544 + ]; 146545 + description = "Composable Contravariant Comonadic Logging Library"; 146546 + license = lib.licenses.mpl20; 146547 + hydraPlatforms = lib.platforms.none; 146255 146548 } 146256 146549 ) { }; 146257 146550 ··· 149192 149485 ]; 149193 149486 description = "Working with colours in Accelerate"; 149194 149487 license = lib.licenses.bsd3; 149195 - hydraPlatforms = lib.platforms.none; 149196 149488 } 149197 149489 ) { }; 149198 149490 ··· 159042 159334 }: 159043 159335 mkDerivation { 159044 159336 pname = "consumers"; 159045 - version = "2.3.3.0"; 159046 - sha256 = "19j16m20qrlqqgcp1nfzn9q9bv3b27vn48chpj2ifh0l9mxjqnmv"; 159337 + version = "2.3.3.1"; 159338 + sha256 = "1c4kgsprk4gdgj6zy0vqpfh1izqqdrjbdlzvrln3xpafv80ig060"; 159047 159339 libraryHaskellDepends = [ 159048 159340 aeson 159049 159341 base ··· 159772 160064 } 159773 160065 ) { }; 159774 160066 160067 + "contiguous_0_6_5_0" = callPackage ( 160068 + { 160069 + mkDerivation, 160070 + base, 160071 + deepseq, 160072 + primitive, 160073 + primitive-unlifted, 160074 + QuickCheck, 160075 + quickcheck-classes, 160076 + quickcheck-instances, 160077 + random, 160078 + random-shuffle, 160079 + run-st, 160080 + vector, 160081 + weigh, 160082 + }: 160083 + mkDerivation { 160084 + pname = "contiguous"; 160085 + version = "0.6.5.0"; 160086 + sha256 = "1ml7a8gcx89jmd7l96amcwkfyq23h4z6gwn377iaw6nbi1hia0lm"; 160087 + libraryHaskellDepends = [ 160088 + base 160089 + deepseq 160090 + primitive 160091 + primitive-unlifted 160092 + run-st 160093 + ]; 160094 + testHaskellDepends = [ 160095 + base 160096 + primitive 160097 + QuickCheck 160098 + quickcheck-classes 160099 + quickcheck-instances 160100 + vector 160101 + ]; 160102 + benchmarkHaskellDepends = [ 160103 + base 160104 + random 160105 + random-shuffle 160106 + weigh 160107 + ]; 160108 + description = "Unified interface for primitive arrays"; 160109 + license = lib.licenses.bsd3; 160110 + hydraPlatforms = lib.platforms.none; 160111 + } 160112 + ) { }; 160113 + 159775 160114 "contiguous-checked" = callPackage ( 159776 160115 { 159777 160116 mkDerivation, ··· 160986 161325 }: 160987 161326 mkDerivation { 160988 161327 pname = "cookie"; 160989 - version = "0.5.0"; 160990 - sha256 = "178slrr0lpz3kim86i3a2g9qxccmxpcvgldp9f2cvyzqj1qgwl8f"; 161328 + version = "0.5.1"; 161329 + sha256 = "187plsi53i0hmkg44f7n5xd2qpsg1kz189f08zhvp8z34qkydp8s"; 160991 161330 libraryHaskellDepends = [ 160992 161331 base 160993 161332 bytestring ··· 162085 162424 doHaddock = false; 162086 162425 description = "System for verifying the correctness of generated Copilot programs"; 162087 162426 license = lib.licenses.bsd3; 162088 - hydraPlatforms = lib.platforms.none; 162089 162427 mainProgram = "verify-examples"; 162090 162428 } 162091 162429 ) { }; ··· 165557 165895 }: 165558 165896 mkDerivation { 165559 165897 pname = "crdt-event-fold"; 165560 - version = "1.8.1.1"; 165561 - sha256 = "07nqvmlpbcy88k7lmwl5n0mq2n0lxq48nigyqgzibadwg3i20r8q"; 165898 + version = "1.8.1.2"; 165899 + sha256 = "0la453h3y52nz7xwixz6r2scnya1729d6hj2dbzj98rld8bf8xcz"; 165562 165900 libraryHaskellDepends = [ 165563 165901 aeson 165564 165902 base ··· 166294 166632 pname = "criterion-compare"; 166295 166633 version = "0.1.0.0"; 166296 166634 sha256 = "034cm3hap9x6cwp44hrd03b09mifcm076a9pn3lgql5ardx91yl7"; 166297 - revision = "1"; 166298 - editedCabalFile = "0nzwqk0mrchrymbmim2542s37i3dvvs5ks25839z9x0fp6gpxiq6"; 166635 + revision = "2"; 166636 + editedCabalFile = "071hlwv6c510d2li0qxgdji1fa2c9iz88m63bcfk70bnamf4d5xr"; 166299 166637 isLibrary = false; 166300 166638 isExecutable = true; 166301 166639 executableHaskellDepends = [ ··· 166317 166655 ]; 166318 166656 description = "A simple tool for visualising differences in Criterion benchmark results"; 166319 166657 license = lib.licenses.bsd3; 166320 - hydraPlatforms = lib.platforms.none; 166321 166658 mainProgram = "criterion-compare"; 166322 - broken = true; 166323 166659 } 166324 166660 ) { }; 166325 166661 ··· 167321 167657 ]; 167322 167658 description = "Simple top-level library for Crucible Simulation"; 167323 167659 license = lib.licenses.bsd3; 167324 - hydraPlatforms = lib.platforms.none; 167325 - broken = true; 167326 167660 } 167327 167661 ) { }; 167328 167662 ··· 167447 167781 ]; 167448 167782 description = "A verification tool for C programs"; 167449 167783 license = lib.licenses.bsd3; 167450 - hydraPlatforms = lib.platforms.none; 167451 167784 } 167452 167785 ) { }; 167453 167786 ··· 169059 169392 }: 169060 169393 mkDerivation { 169061 169394 pname = "crypton"; 169062 - version = "1.0.3"; 169063 - sha256 = "12z3xavhzw2nvvbkq0j22agwcnc4hh235cr7mzbd1a076wxrdbhl"; 169064 - libraryHaskellDepends = [ 169065 - base 169066 - basement 169067 - bytestring 169068 - deepseq 169069 - ghc-prim 169070 - integer-gmp 169071 - memory 169072 - ]; 169073 - testHaskellDepends = [ 169074 - base 169075 - bytestring 169076 - memory 169077 - tasty 169078 - tasty-hunit 169079 - tasty-kat 169080 - tasty-quickcheck 169081 - ]; 169082 - benchmarkHaskellDepends = [ 169083 - base 169084 - bytestring 169085 - deepseq 169086 - gauge 169087 - memory 169088 - random 169089 - ]; 169090 - description = "Cryptography Primitives sink"; 169091 - license = lib.licenses.bsd3; 169092 - } 169093 - ) { }; 169094 - 169095 - "crypton_1_0_4" = callPackage ( 169096 - { 169097 - mkDerivation, 169098 - base, 169099 - basement, 169100 - bytestring, 169101 - deepseq, 169102 - gauge, 169103 - ghc-prim, 169104 - integer-gmp, 169105 - memory, 169106 - random, 169107 - tasty, 169108 - tasty-hunit, 169109 - tasty-kat, 169110 - tasty-quickcheck, 169111 - }: 169112 - mkDerivation { 169113 - pname = "crypton"; 169114 169395 version = "1.0.4"; 169115 169396 sha256 = "06h1qjvqd8gmiyzvh31sc061vcgns101l0774c44a8k44015925l"; 169116 169397 libraryHaskellDepends = [ ··· 169141 169422 ]; 169142 169423 description = "Cryptography Primitives sink"; 169143 169424 license = lib.licenses.bsd3; 169144 - hydraPlatforms = lib.platforms.none; 169145 169425 } 169146 169426 ) { }; 169147 169427 ··· 169232 169512 { 169233 169513 mkDerivation, 169234 169514 base, 169235 - basement, 169236 - bytestring, 169237 - containers, 169238 - crypton-x509, 169239 - crypton-x509-store, 169240 - crypton-x509-system, 169241 - crypton-x509-validation, 169242 - data-default, 169243 - network, 169244 - socks, 169245 - tls, 169246 - }: 169247 - mkDerivation { 169248 - pname = "crypton-connection"; 169249 - version = "0.4.3"; 169250 - sha256 = "1q9az1bd6gykm897vmasbx1v9dfnwz4fgypya12yssjy7772b269"; 169251 - libraryHaskellDepends = [ 169252 - base 169253 - basement 169254 - bytestring 169255 - containers 169256 - crypton-x509 169257 - crypton-x509-store 169258 - crypton-x509-system 169259 - crypton-x509-validation 169260 - data-default 169261 - network 169262 - socks 169263 - tls 169264 - ]; 169265 - description = "Simple and easy network connection API"; 169266 - license = lib.licenses.bsd3; 169267 - } 169268 - ) { }; 169269 - 169270 - "crypton-connection_0_4_4" = callPackage ( 169271 - { 169272 - mkDerivation, 169273 - base, 169274 169515 bytestring, 169275 169516 containers, 169276 169517 crypton-x509-store, ··· 169297 169538 ]; 169298 169539 description = "Simple and easy network connection API"; 169299 169540 license = lib.licenses.bsd3; 169300 - hydraPlatforms = lib.platforms.none; 169301 169541 } 169302 169542 ) { }; 169303 169543 ··· 173345 173585 ghc-typelits-knownnat, 173346 173586 mtl, 173347 173587 primitive, 173588 + primitive-unaligned, 173348 173589 prop-unit, 173349 173590 text, 173350 173591 transformers, ··· 173352 173593 }: 173353 173594 mkDerivation { 173354 173595 pname = "dahdit"; 173355 - version = "0.7.0"; 173356 - sha256 = "11g5c6csgrw6jq3ijv07yq2kj4f3ylkh450gv8qs9lqlg5haiis3"; 173596 + version = "0.8.0"; 173597 + sha256 = "15sj22p0xvxaa0mr6kyj86cmik3dyyz9v8ppziqfl055r9ja96vn"; 173357 173598 libraryHaskellDepends = [ 173358 173599 base 173359 173600 bytestring ··· 173364 173605 ghc-typelits-knownnat 173365 173606 mtl 173366 173607 primitive 173608 + primitive-unaligned 173367 173609 text 173368 173610 transformers 173369 173611 vector ··· 173378 173620 ghc-typelits-knownnat 173379 173621 mtl 173380 173622 primitive 173623 + primitive-unaligned 173381 173624 prop-unit 173382 173625 text 173383 173626 transformers ··· 173388 173631 } 173389 173632 ) { }; 173390 173633 173634 + "dahdit-audio" = callPackage ( 173635 + { 173636 + mkDerivation, 173637 + aeson, 173638 + aeson-casing, 173639 + aeson-pretty, 173640 + aeson-via, 173641 + base, 173642 + bytestring, 173643 + containers, 173644 + dahdit, 173645 + data-default, 173646 + data-sword, 173647 + daytripper, 173648 + digest, 173649 + directory, 173650 + filepath, 173651 + ghc-typelits-knownnat, 173652 + microlens, 173653 + mtl, 173654 + optparse-applicative, 173655 + pathwalk, 173656 + prettyprinter, 173657 + primitive, 173658 + regex-tdfa, 173659 + tasty, 173660 + tasty-hunit, 173661 + text, 173662 + transformers, 173663 + }: 173664 + mkDerivation { 173665 + pname = "dahdit-audio"; 173666 + version = "0.8.0"; 173667 + sha256 = "016wzjqvy0y1qj4jsqy183f570zlc4xzldgpqclj55lpcf2wv86b"; 173668 + libraryHaskellDepends = [ 173669 + aeson 173670 + aeson-casing 173671 + aeson-pretty 173672 + aeson-via 173673 + base 173674 + bytestring 173675 + containers 173676 + dahdit 173677 + data-default 173678 + data-sword 173679 + digest 173680 + directory 173681 + filepath 173682 + ghc-typelits-knownnat 173683 + microlens 173684 + mtl 173685 + optparse-applicative 173686 + pathwalk 173687 + prettyprinter 173688 + primitive 173689 + regex-tdfa 173690 + text 173691 + transformers 173692 + ]; 173693 + testHaskellDepends = [ 173694 + aeson 173695 + aeson-casing 173696 + aeson-pretty 173697 + aeson-via 173698 + base 173699 + bytestring 173700 + containers 173701 + dahdit 173702 + data-default 173703 + data-sword 173704 + daytripper 173705 + digest 173706 + directory 173707 + filepath 173708 + ghc-typelits-knownnat 173709 + microlens 173710 + mtl 173711 + optparse-applicative 173712 + pathwalk 173713 + prettyprinter 173714 + primitive 173715 + regex-tdfa 173716 + tasty 173717 + tasty-hunit 173718 + text 173719 + transformers 173720 + ]; 173721 + description = "Audio file parsing/printing with dahdit"; 173722 + license = lib.licenses.bsd3; 173723 + hydraPlatforms = lib.platforms.none; 173724 + } 173725 + ) { }; 173726 + 173391 173727 "dahdit-midi" = callPackage ( 173392 173728 { 173393 173729 mkDerivation, ··· 173410 173746 }: 173411 173747 mkDerivation { 173412 173748 pname = "dahdit-midi"; 173413 - version = "0.7.0"; 173414 - sha256 = "15id66nm3lknwgmmh57kfzjlg8ai7l3rlls5by56ii8a9c5x5hxg"; 173749 + version = "0.8.0"; 173750 + sha256 = "1avqjgyj86g20dyy3s816nvyqy4n8xwdqjvg4m0y70v343qr2bwg"; 173415 173751 libraryHaskellDepends = [ 173416 173752 base 173417 173753 bytestring ··· 173465 173801 }: 173466 173802 mkDerivation { 173467 173803 pname = "dahdit-network"; 173468 - version = "0.7.0"; 173469 - sha256 = "07aj5hc8vgy3691q9x335b4ypxjl5m17b7qw19gkg0lxphddxx25"; 173804 + version = "0.8.0"; 173805 + sha256 = "175pgcrw7iphw6yahy20dd1cf6p0bbmf2sq0hmgj6bm25ms35j47"; 173470 173806 libraryHaskellDepends = [ 173471 173807 base 173472 173808 bytestring ··· 173506 173842 }: 173507 173843 mkDerivation { 173508 173844 pname = "dahdit-test"; 173509 - version = "0.7.0"; 173510 - sha256 = "0k7sy43d319n2371qsv803x4p51653bfdysjk5nyc6f68i2q7j12"; 173845 + version = "0.8.0"; 173846 + sha256 = "0hzhqacfyhkk3y19y3f1mbd7jwwgdh8qf3y7clfjnpn67fjjmqng"; 173511 173847 libraryHaskellDepends = [ 173512 173848 base 173513 173849 bytestring ··· 176290 176626 } 176291 176627 ) { }; 176292 176628 176629 + "data-effects_0_4_0_2" = callPackage ( 176630 + { 176631 + mkDerivation, 176632 + base, 176633 + co-log-core, 176634 + containers, 176635 + data-default, 176636 + data-effects-core, 176637 + data-effects-th, 176638 + infinite-list, 176639 + lens, 176640 + tasty, 176641 + tasty-discover, 176642 + tasty-hunit, 176643 + text, 176644 + these, 176645 + time, 176646 + unbounded-delays, 176647 + unliftio, 176648 + }: 176649 + mkDerivation { 176650 + pname = "data-effects"; 176651 + version = "0.4.0.2"; 176652 + sha256 = "0dkrn3p8whywqmiznq8wp2g7j12pnrjjm11w7pj64hgjx0s0rkaf"; 176653 + libraryHaskellDepends = [ 176654 + base 176655 + co-log-core 176656 + containers 176657 + data-default 176658 + data-effects-core 176659 + data-effects-th 176660 + infinite-list 176661 + lens 176662 + text 176663 + these 176664 + time 176665 + unbounded-delays 176666 + unliftio 176667 + ]; 176668 + testHaskellDepends = [ 176669 + base 176670 + tasty 176671 + tasty-hunit 176672 + ]; 176673 + testToolDepends = [ tasty-discover ]; 176674 + description = "A basic framework for effect systems based on effects represented by GADTs"; 176675 + license = lib.licenses.mpl20; 176676 + hydraPlatforms = lib.platforms.none; 176677 + } 176678 + ) { }; 176679 + 176293 176680 "data-effects-core" = callPackage ( 176294 176681 { 176295 176682 mkDerivation, ··· 176320 176707 } 176321 176708 ) { }; 176322 176709 176710 + "data-effects-core_0_4_0_2" = callPackage ( 176711 + { 176712 + mkDerivation, 176713 + base, 176714 + free, 176715 + hspec, 176716 + kan-extensions, 176717 + mtl, 176718 + primitive, 176719 + tasty, 176720 + tasty-discover, 176721 + tasty-hspec, 176722 + unliftio, 176723 + }: 176724 + mkDerivation { 176725 + pname = "data-effects-core"; 176726 + version = "0.4.0.2"; 176727 + sha256 = "03p30sj5nqqmkw55p0fc83ncx5w8z7rpi920x35mdgl00wpxxs6a"; 176728 + libraryHaskellDepends = [ 176729 + base 176730 + free 176731 + kan-extensions 176732 + mtl 176733 + primitive 176734 + unliftio 176735 + ]; 176736 + testHaskellDepends = [ 176737 + base 176738 + hspec 176739 + tasty 176740 + tasty-hspec 176741 + ]; 176742 + testToolDepends = [ tasty-discover ]; 176743 + description = "A basic framework for effect systems based on effects represented by GADTs"; 176744 + license = lib.licenses.mpl20; 176745 + hydraPlatforms = lib.platforms.none; 176746 + } 176747 + ) { }; 176748 + 176323 176749 "data-effects-th" = callPackage ( 176324 176750 { 176325 176751 mkDerivation, ··· 176372 176798 testToolDepends = [ tasty-discover ]; 176373 176799 description = "Template Haskell utilities for the data-effects library"; 176374 176800 license = "MPL-2.0 AND BSD-3-Clause"; 176801 + } 176802 + ) { }; 176803 + 176804 + "data-effects-th_0_4_0_2" = callPackage ( 176805 + { 176806 + mkDerivation, 176807 + base, 176808 + containers, 176809 + data-default, 176810 + data-effects-core, 176811 + either, 176812 + extra, 176813 + formatting, 176814 + infinite-list, 176815 + lens, 176816 + mtl, 176817 + tasty, 176818 + tasty-discover, 176819 + tasty-hunit, 176820 + template-haskell, 176821 + text, 176822 + th-abstraction, 176823 + }: 176824 + mkDerivation { 176825 + pname = "data-effects-th"; 176826 + version = "0.4.0.2"; 176827 + sha256 = "08qa9f0mc4246qp8dnfp7pcbfvlfvrgpqyv407nqqnd1wc7nlf78"; 176828 + libraryHaskellDepends = [ 176829 + base 176830 + containers 176831 + data-default 176832 + data-effects-core 176833 + either 176834 + extra 176835 + formatting 176836 + infinite-list 176837 + lens 176838 + mtl 176839 + template-haskell 176840 + text 176841 + th-abstraction 176842 + ]; 176843 + testHaskellDepends = [ 176844 + base 176845 + data-default 176846 + data-effects-core 176847 + infinite-list 176848 + tasty 176849 + tasty-hunit 176850 + ]; 176851 + testToolDepends = [ tasty-discover ]; 176852 + description = "Template Haskell utilities for the data-effects library"; 176853 + license = lib.licenses.mpl20; 176854 + hydraPlatforms = lib.platforms.none; 176375 176855 } 176376 176856 ) { }; 176377 176857 ··· 177916 178396 }: 177917 178397 mkDerivation { 177918 178398 pname = "data-reify-gadt"; 177919 - version = "0.1.0.0"; 177920 - sha256 = "1fi9fsx1xvrd6lbh0zr21727clvv1j6ca62yq70z5fwsy4yx1gf2"; 178399 + version = "0.1.0.1"; 178400 + sha256 = "0zbqka2cjah449z4ddlq77ljg8x45pnjqvl0hkpghv55v2isg1sl"; 177921 178401 isLibrary = true; 177922 178402 isExecutable = true; 177923 178403 libraryHaskellDepends = [ ··· 177941 178421 ]; 177942 178422 description = "Data.Reify for GADTs"; 177943 178423 license = lib.licenses.bsd3; 177944 - hydraPlatforms = lib.platforms.none; 177945 178424 mainProgram = "example-ast"; 177946 - broken = true; 177947 178425 } 177948 178426 ) { }; 177949 178427 ··· 179392 179870 } 179393 179871 ) { }; 179394 179872 179873 + "dataframe" = callPackage ( 179874 + { 179875 + mkDerivation, 179876 + array, 179877 + attoparsec, 179878 + base, 179879 + bytestring, 179880 + containers, 179881 + criterion, 179882 + directory, 179883 + hashable, 179884 + HUnit, 179885 + random, 179886 + random-shuffle, 179887 + statistics, 179888 + text, 179889 + time, 179890 + vector, 179891 + vector-algorithms, 179892 + }: 179893 + mkDerivation { 179894 + pname = "dataframe"; 179895 + version = "0.1.0.1"; 179896 + sha256 = "1n17s20s4lznqs4rx8f90zw5sijkz0s6b48j6wrg4wgddg3dsb2m"; 179897 + isLibrary = true; 179898 + isExecutable = true; 179899 + libraryHaskellDepends = [ 179900 + array 179901 + attoparsec 179902 + base 179903 + bytestring 179904 + containers 179905 + directory 179906 + hashable 179907 + statistics 179908 + text 179909 + time 179910 + vector 179911 + vector-algorithms 179912 + ]; 179913 + executableHaskellDepends = [ 179914 + array 179915 + attoparsec 179916 + base 179917 + bytestring 179918 + containers 179919 + directory 179920 + hashable 179921 + statistics 179922 + text 179923 + time 179924 + vector 179925 + vector-algorithms 179926 + ]; 179927 + testHaskellDepends = [ 179928 + base 179929 + HUnit 179930 + random 179931 + random-shuffle 179932 + text 179933 + time 179934 + vector 179935 + ]; 179936 + benchmarkHaskellDepends = [ 179937 + base 179938 + criterion 179939 + random 179940 + text 179941 + vector 179942 + ]; 179943 + description = "An intuitive, dynamically-typed DataFrame library"; 179944 + license = lib.licenses.gpl3Plus; 179945 + mainProgram = "dataframe"; 179946 + } 179947 + ) { }; 179948 + 179395 179949 "datalog" = callPackage ( 179396 179950 { 179397 179951 mkDerivation, ··· 181642 182196 ]; 181643 182197 description = "Delay differential equations"; 181644 182198 license = lib.licenses.bsd3; 181645 - hydraPlatforms = lib.platforms.none; 181646 182199 } 181647 182200 ) { }; 181648 182201 ··· 182288 182841 { 182289 182842 mkDerivation, 182290 182843 aeson, 182844 + aeson-qq, 182291 182845 base, 182292 182846 containers, 182293 182847 hspec, ··· 182297 182851 }: 182298 182852 mkDerivation { 182299 182853 pname = "debug-print"; 182300 - version = "0.1.0.0"; 182301 - sha256 = "0920fwzv5lal5214g973yv73dyyg02aa9fdkddcv7bdq445as6m5"; 182854 + version = "0.2.0.0"; 182855 + sha256 = "195hacxpm3ik7r8mcl5vs1l6j5q8nhvvrsxqbp3p7bghybvnaa3v"; 182302 182856 libraryHaskellDepends = [ 182303 182857 aeson 182304 182858 base ··· 182308 182862 ]; 182309 182863 testHaskellDepends = [ 182310 182864 aeson 182865 + aeson-qq 182311 182866 base 182312 182867 hspec 182313 182868 markdown-unlit ··· 183059 183614 license = lib.licenses.mit; 183060 183615 hydraPlatforms = lib.platforms.none; 183061 183616 mainProgram = "deeplearning_demonstration"; 183617 + broken = true; 183062 183618 } 183063 183619 ) { }; 183064 183620 ··· 183679 184235 { mkDerivation, base }: 183680 184236 mkDerivation { 183681 184237 pname = "defun-core"; 183682 - version = "0.1"; 183683 - sha256 = "1vxkasxvkkk0x11r850h14fh37pfyavd0pib5zgnj4w0ddmqx00g"; 184238 + version = "0.1.0.1"; 184239 + sha256 = "0yy02va22bhxk1gl1m1k4c84sc788g891p5m81mr3bai5y7vq402"; 183684 184240 libraryHaskellDepends = [ base ]; 183685 184241 description = "Defunctionalization helpers: core definitions"; 183686 184242 license = lib.licenses.bsd3; ··· 183696 184252 }: 183697 184253 mkDerivation { 183698 184254 pname = "defun-sop"; 183699 - version = "0.1"; 183700 - sha256 = "1zd8laprbmaaxgj21n8bnrax2m9l67y950d1fs8b2bdlsc33llc8"; 184255 + version = "0.1.0.1"; 184256 + sha256 = "0wb6axzilgqf32c7xk3ja42cax7brbv29f7nx69j65qxblayb7ls"; 183701 184257 libraryHaskellDepends = [ 183702 184258 base 183703 184259 defun-core ··· 189154 189710 }: 189155 189711 mkDerivation { 189156 189712 pname = "diagrams"; 189157 - version = "1.4.1"; 189158 - sha256 = "0z4i169yzznfj6bmkvgs09v85zchq7visajn6v5hvhj3m0ic0cmh"; 189713 + version = "1.4.2"; 189714 + sha256 = "12ff6lvkmpbblz3id517rf48rzd1v940y6gq6khhbsy8p9ad2ic4"; 189159 189715 libraryHaskellDepends = [ 189160 189716 diagrams-contrib 189161 189717 diagrams-core ··· 189213 189769 }: 189214 189770 mkDerivation { 189215 189771 pname = "diagrams-braille"; 189216 - version = "0.1.1"; 189217 - sha256 = "1h9j1hrhpzl5rqhjnwp92sv0shc9i7yhnzpbs1dxfpyn8baws7mc"; 189772 + version = "0.1.2"; 189773 + sha256 = "1b2avafvrc2rx0r9x0xnx9nvl8cl21jrls587clwpv4nrsijfhnr"; 189218 189774 isLibrary = true; 189219 189775 isExecutable = true; 189220 189776 libraryHaskellDepends = [ ··· 189511 190067 pname = "diagrams-canvas"; 189512 190068 version = "1.4.2"; 189513 190069 sha256 = "0ns1xmgcjqig7qld7r77rbcrk779cmzj7xfqj6a7sbdci3in2dgm"; 190070 + revision = "1"; 190071 + editedCabalFile = "08pm7i10k7a046jjrdbzhmlrv05wp171mblgs8y18m6vc8hw87v6"; 189514 190072 libraryHaskellDepends = [ 189515 190073 base 189516 190074 blank-canvas ··· 189807 190365 pname = "diagrams-graphviz"; 189808 190366 version = "1.4.1.1"; 189809 190367 sha256 = "0lscrxd682jvyrl5bj4dxp7593qwyis01sl0p4jm2jfn335wdq40"; 189810 - revision = "6"; 189811 - editedCabalFile = "1h0y3dv8707yvk1g0hmyb6knzahyzyxqmabkih4wyq5cz1zjmh1n"; 190368 + revision = "7"; 190369 + editedCabalFile = "17wf141cgyw13v3ly074vaakrdgi1k3ifq6k521b4sn8r6vzfaws"; 189812 190370 libraryHaskellDepends = [ 189813 190371 base 189814 190372 containers ··· 190091 190649 } 190092 190650 ) { }; 190093 190651 190094 - "diagrams-input_0_1_4" = callPackage ( 190652 + "diagrams-input_0_1_5" = callPackage ( 190095 190653 { 190096 190654 mkDerivation, 190097 190655 attoparsec, ··· 190125 190683 }: 190126 190684 mkDerivation { 190127 190685 pname = "diagrams-input"; 190128 - version = "0.1.4"; 190129 - sha256 = "0xmywrx8mc12jzynym9d8aw026agwphygf6n4jmd1mvw9vs0270d"; 190686 + version = "0.1.5"; 190687 + sha256 = "011kvcx3py8dwjx10ddd0z6pm5k76lb2y4mzkfp1nbcy0imkkfyq"; 190130 190688 libraryHaskellDepends = [ 190131 190689 attoparsec 190132 190690 base ··· 192501 193059 }: 192502 193060 mkDerivation { 192503 193061 pname = "digraph"; 192504 - version = "0.3.0"; 192505 - sha256 = "0p70978qy83xz14drzk874zghjh3jybgw9a4fp1cfrmpmbdms5df"; 193062 + version = "0.3.2"; 193063 + sha256 = "1662r57g9lapqs6l3rqassa55li2q16v83ay4p41afcsn7119v11"; 192506 193064 libraryHaskellDepends = [ 192507 193065 base 192508 193066 containers ··· 200995 201553 }: 200996 201554 mkDerivation { 200997 201555 pname = "dotparse"; 200998 - version = "0.1.2.1"; 200999 - sha256 = "16vadqgm8wka009piypcy77prqlj0961frdldn5shd75kfbp1r0z"; 201556 + version = "0.1.2.2"; 201557 + sha256 = "0zn8vhq76jihraq8brq1h4klx99wsp4qd3ylzr0dzrv1rsiby6vx"; 201000 201558 libraryHaskellDepends = [ 201001 201559 algebraic-graphs 201002 201560 base ··· 213146 213704 } 213147 213705 ) { }; 213148 213706 213149 - "encoding_0_10" = callPackage ( 213707 + "encoding_0_10_2" = callPackage ( 213150 213708 { 213151 213709 mkDerivation, 213152 213710 array, ··· 213163 213721 }: 213164 213722 mkDerivation { 213165 213723 pname = "encoding"; 213166 - version = "0.10"; 213167 - sha256 = "035ma429ppxn69drwddhlkwy72wa9ddad0j0wl7g5xi5i980pmzj"; 213724 + version = "0.10.2"; 213725 + sha256 = "07fclvjvd25cb21j6hakkcrk83f46ri9mkc9qdgllhb5p9zwxdig"; 213168 213726 isLibrary = true; 213169 213727 isExecutable = true; 213170 213728 libraryHaskellDepends = [ ··· 214350 214908 ]; 214351 214909 description = "Safe helpers for accessing and modifying environment variables"; 214352 214910 license = lib.licenses.mit; 214353 - hydraPlatforms = lib.platforms.none; 214354 - broken = true; 214355 214911 } 214356 214912 ) { }; 214357 214913 ··· 215832 216388 aeson, 215833 216389 base, 215834 216390 bytestring, 216391 + doctest, 216392 + hedgehog, 216393 + hspec, 216394 + hspec-hedgehog, 215835 216395 http-client, 215836 216396 http-types, 215837 216397 network-uri, ··· 215840 216400 }: 215841 216401 mkDerivation { 215842 216402 pname = "erpnext-api-client"; 215843 - version = "0.1.0.1"; 215844 - sha256 = "01p08sgjpxmg9zq4953m09csg2qy28kp6ffpv042cn5djcdmb1ls"; 216403 + version = "0.2.0.0"; 216404 + sha256 = "02hcskijn2sazmi142vsk4d80fw1jm4rdbs93fq86r7jh6x4r6g0"; 215845 216405 libraryHaskellDepends = [ 215846 216406 aeson 215847 216407 base ··· 215852 216412 text 215853 216413 time 215854 216414 ]; 216415 + testHaskellDepends = [ 216416 + aeson 216417 + base 216418 + bytestring 216419 + doctest 216420 + hedgehog 216421 + hspec 216422 + hspec-hedgehog 216423 + http-client 216424 + http-types 216425 + network-uri 216426 + text 216427 + time 216428 + ]; 215855 216429 description = "Generic API client library for ERPNext"; 215856 216430 license = lib.licenses.mit; 215857 216431 } ··· 234498 235072 }: 234499 235073 mkDerivation { 234500 235074 pname = "flat-tex"; 234501 - version = "0.8.0"; 234502 - sha256 = "0p5shxpvv15ihbgdvgqwqjq1xz96s5cbflvwb8x7bh5qni8mm3ax"; 235075 + version = "0.8.1"; 235076 + sha256 = "1j6kjs1pl6lbcmkfwdxpa1m3bmb8ja53w9k99pzps5b9amdrcjgv"; 234503 235077 isLibrary = false; 234504 235078 isExecutable = true; 234505 235079 executableHaskellDepends = [ ··· 242307 242881 pname = "free-vector-spaces"; 242308 242882 version = "0.1.5.2"; 242309 242883 sha256 = "0p0flpai3n9ism9dd3kyf1fa8s8rpb4cc00m3bplb9s8zb6aghpb"; 242884 + revision = "1"; 242885 + editedCabalFile = "1b0c7vifxhnm91wzwy10nzjwxd4dv91zx7jcfmr22qflml89blp7"; 242310 242886 libraryHaskellDepends = [ 242311 242887 base 242312 242888 lens ··· 242319 242895 ]; 242320 242896 description = "Instantiate the classes from the vector-space package with types from linear"; 242321 242897 license = lib.licenses.bsd3; 242322 - hydraPlatforms = lib.platforms.none; 242323 - broken = true; 242324 242898 } 242325 242899 ) { }; 242326 242900 ··· 244548 245122 pname = "ftp-client"; 244549 245123 version = "0.5.1.6"; 244550 245124 sha256 = "0xlrmzngdzg8h7lcb6kaz1zcm3kd1rdax4xs0h048iz7f78q18dg"; 244551 - revision = "1"; 244552 - editedCabalFile = "14pdfmm796mv3qd5y2rq8pj429v31w1d3dlxgyvypjmjh07v87gf"; 245125 + revision = "2"; 245126 + editedCabalFile = "1wskfpp32w1cg48jvwymf4d3z5211zrwk373cymji3h4nww7v3b3"; 244553 245127 libraryHaskellDepends = [ 244554 245128 attoparsec 244555 245129 base ··· 246202 246776 }: 246203 246777 mkDerivation { 246204 246778 pname = "fused-effects"; 246205 - version = "1.1.2.4"; 246206 - sha256 = "0ib129qadbjvk6ksf6gy98j43i4dskpzsjys63zcqxcwy66i45yd"; 246779 + version = "1.1.2.5"; 246780 + sha256 = "1jpa9n06pph20hr73rx1shljdk78w4nnv285qsf28iz9mx6ggqvg"; 246207 246781 libraryHaskellDepends = [ 246208 246782 base 246209 246783 transformers ··· 250609 251183 }: 250610 251184 mkDerivation { 250611 251185 pname = "generic-arbitrary"; 250612 - version = "1.0.1"; 250613 - sha256 = "1ir95k98w3i7aisw3gjflzaxzgq3qamxw1bssvdbww43sgckw0cj"; 251186 + version = "1.0.1.2"; 251187 + sha256 = "17cpwndcycz9sca00nfpgq8k3p2kf4cjpl7zz2bjdlkw9jvkhh9x"; 250614 251188 libraryHaskellDepends = [ 250615 251189 base 250616 251190 QuickCheck ··· 250667 251241 }: 250668 251242 mkDerivation { 250669 251243 pname = "generic-case"; 250670 - version = "0.1.0.0"; 250671 - sha256 = "0fbdic8f3cj7vvj539g4fvsga1cj99awc3qinv491by0gfpvvq2l"; 251244 + version = "0.1.1.0"; 251245 + sha256 = "1sqm7rcn7qc2m46xy8rvz08a47ls1qxyd2aivamskd0zy5kfmmm1"; 250672 251246 libraryHaskellDepends = [ 250673 251247 base 250674 251248 generics-sop ··· 253307 253881 ]; 253308 253882 description = "GenValidity support for URI"; 253309 253883 license = lib.licenses.mit; 253884 + hydraPlatforms = lib.platforms.none; 253885 + broken = true; 253310 253886 } 253311 253887 ) { }; 253312 253888 ··· 254244 254820 }: 254245 254821 mkDerivation { 254246 254822 pname = "geoip2"; 254247 - version = "0.4.1.2"; 254248 - sha256 = "1gnwylivkxiiafda6yx7qggafknh2p0b4x8ci7lf412rifj0a4pr"; 254823 + version = "0.4.1.3"; 254824 + sha256 = "14prn5sn10ja8ad3j03fhvhjkgfrrcp9zsz0h266md0hayqlvzg0"; 254249 254825 libraryHaskellDepends = [ 254250 254826 base 254251 254827 bytestring ··· 258187 258763 }: 258188 258764 mkDerivation { 258189 258765 pname = "ghc-prof"; 258190 - version = "1.4.1.12"; 258191 - sha256 = "15gshlj8jp85m9y05z1wmssq5rkqyix9890hy1rkmy7nmkhij6mj"; 258766 + version = "1.4.1.13"; 258767 + sha256 = "0g85216s10pm515wi0dl95znq3vdac3zvagizg8vy82zfmsgxwcp"; 258192 258768 isLibrary = true; 258193 258769 isExecutable = true; 258194 258770 libraryHaskellDepends = [ ··· 259160 259736 }: 259161 259737 mkDerivation { 259162 259738 pname = "ghc-trace-events"; 259163 - version = "0.1.2.9"; 259164 - sha256 = "01fk87z47jf8hm7dahjnfdmg2m26gi00f64va0p8l6rnirzxz9z9"; 259739 + version = "0.1.2.10"; 259740 + sha256 = "0f3lsk1g4d07hw8hzl819wf04wismx4vynln7mq32zkrhqgkx0ph"; 259165 259741 libraryHaskellDepends = [ 259166 259742 base 259167 259743 bytestring ··· 262493 263069 }: 262494 263070 mkDerivation { 262495 263071 pname = "gi-gio"; 262496 - version = "2.0.36"; 262497 - sha256 = "03wbzg9xyjn6axkyvah4v5knf06inzfr1n5qd36bnbzffnbqihg9"; 263072 + version = "2.0.37"; 263073 + sha256 = "0a3z1aj1fqnpwxcf27anjcp2wpg3mbn86xybk150260bb00jzxpb"; 262498 263074 setupHaskellDepends = [ 262499 263075 base 262500 263076 Cabal ··· 264843 265419 }: 264844 265420 mkDerivation { 264845 265421 pname = "gi-soup3"; 264846 - version = "3.0.4"; 264847 - sha256 = "0llrmd15rvvagq67r1yhxdbrgj8ni94kv1ws4l2ysc728qdiyw06"; 265422 + version = "3.0.5"; 265423 + sha256 = "0g3znkvb2m2bsydwppqybp3j22d2mzkhhas6p3r3h9kfj8qb4510"; 264848 265424 setupHaskellDepends = [ 264849 265425 base 264850 265426 Cabal ··· 264981 265557 } 264982 265558 ) { vte_291 = pkgs.vte; }; 264983 265559 264984 - "gi-vte_2_91_34" = callPackage ( 265560 + "gi-vte_2_91_35" = callPackage ( 264985 265561 { 264986 265562 mkDerivation, 264987 265563 base, ··· 264991 265567 gi-atk, 264992 265568 gi-cairo, 264993 265569 gi-gdk3, 265570 + gi-gdkpixbuf, 264994 265571 gi-gio, 264995 265572 gi-glib, 264996 265573 gi-gobject, ··· 265005 265582 }: 265006 265583 mkDerivation { 265007 265584 pname = "gi-vte"; 265008 - version = "2.91.34"; 265009 - sha256 = "0l4sz3v2slj02h434fxv9nkycdvg4ndl6651zawbih19vqlwrn5j"; 265585 + version = "2.91.35"; 265586 + sha256 = "1m2kz8d1bkv4slb3pp7kw5k5fiyligxmn3bvss4gy6y0smhzdmyy"; 265010 265587 setupHaskellDepends = [ 265011 265588 base 265012 265589 Cabal 265013 265590 gi-atk 265014 265591 gi-cairo 265015 265592 gi-gdk3 265593 + gi-gdkpixbuf 265016 265594 gi-gio 265017 265595 gi-glib 265018 265596 gi-gobject ··· 265027 265605 gi-atk 265028 265606 gi-cairo 265029 265607 gi-gdk3 265608 + gi-gdkpixbuf 265030 265609 gi-gio 265031 265610 gi-glib 265032 265611 gi-gobject ··· 266261 266840 }: 266262 266841 mkDerivation { 266263 266842 pname = "git-annex"; 266264 - version = "10.20250320"; 266265 - sha256 = "03js1bafx3646h6h6zj0915c2pyjxj22f1nm6bjd34bjffx2di5i"; 266843 + version = "10.20250416"; 266844 + sha256 = "02d4dw7mc72y4lb34nhg4lv0wjns9p8hzx80wqbf2vgsyq7q6zk5"; 266266 266845 configureFlags = [ 266267 266846 "-fassistant" 266268 266847 "-f-benchmark" ··· 271110 271689 }: 271111 271690 mkDerivation { 271112 271691 pname = "gloss-rendering"; 271113 - version = "1.13.1.2"; 271114 - sha256 = "0zrdqh72gswyn27x43ifhy4q8m7hvmv24b5ki3hyra5yq74njlsm"; 271115 - revision = "2"; 271116 - editedCabalFile = "107mqdimasvv6vy2r16kk0cz3dqh98m9189q9hd10chk0r5k8ir0"; 271692 + version = "1.13.2.1"; 271693 + sha256 = "06xbbch1gh0rjyawj6x7lw8ig0ph9j13klzsfsxmvv3y7x0px09r"; 271117 271694 libraryHaskellDepends = [ 271118 271695 base 271119 271696 bmp ··· 279415 279992 }: 279416 279993 mkDerivation { 279417 279994 pname = "grammatical-parsers"; 279418 - version = "0.7.2"; 279419 - sha256 = "1lmi0rfzrs8jncfrqkdcf6x2ysd1j78wbgiap1dvk8ldp7qd1i95"; 279995 + version = "0.7.2.1"; 279996 + sha256 = "0j1y8bblzpx22nv7ix2c2bz0aw2mjz46lgym4jv65nbgmwqbnwny"; 279420 279997 isLibrary = true; 279421 279998 isExecutable = true; 279422 279999 setupHaskellDepends = [ ··· 279427 280004 libraryHaskellDepends = [ 279428 280005 attoparsec 279429 280006 base 279430 - containers 279431 280007 input-parsers 279432 280008 monoid-subclasses 279433 280009 parsers ··· 279644 280220 data-default, 279645 280221 deepseq, 279646 280222 exceptions, 280223 + filepath, 279647 280224 grpc-spec, 279648 280225 hashable, 279649 280226 http-types, ··· 279679 280256 }: 279680 280257 mkDerivation { 279681 280258 pname = "grapesy"; 279682 - version = "1.0.0"; 279683 - sha256 = "1vrb4xb57j5bpzrhzipnw454yb5hpdyl64c2pnl0gdh79c053vvm"; 279684 - revision = "1"; 279685 - editedCabalFile = "146jyzlqdppdshkjqc2k7wjfs0awil5n3b1m17dcsiis8fslnj6n"; 280259 + version = "1.0.1"; 280260 + sha256 = "1iplb4pvbqrpqdd6vbafd01drxyfinbrjq0w74w8rjzs4h7ag9wp"; 279686 280261 enableSeparateDataOutput = true; 279687 280262 libraryHaskellDepends = [ 279688 280263 aeson ··· 279726 280301 containers 279727 280302 deepseq 279728 280303 exceptions 280304 + filepath 279729 280305 grpc-spec 279730 280306 http-types 279731 280307 http2 ··· 281711 282287 pname = "greencard"; 281712 282288 version = "3.0.4.2"; 281713 282289 sha256 = "1vl9p6mqss5r4jfqnjir7m1q7fhh9f204c99qd5y5d0j7yc26r5y"; 282290 + revision = "1"; 282291 + editedCabalFile = "1scqpjhrv0sqbyrri78jj3jqjw24nv0as3p869ljrrpipxcwxlpp"; 281714 282292 isLibrary = true; 281715 282293 isExecutable = true; 281716 282294 libraryHaskellDepends = [ base ]; ··· 282672 283250 } 282673 283251 ) { }; 282674 283252 282675 - "grisette_0_11_0_0" = callPackage ( 283253 + "grisette_0_12_0_0" = callPackage ( 282676 283254 { 282677 283255 mkDerivation, 282678 283256 array, ··· 282712 283290 }: 282713 283291 mkDerivation { 282714 283292 pname = "grisette"; 282715 - version = "0.11.0.0"; 282716 - sha256 = "1fc1qdpq748fm3q61i1shpq0ksvnpz4zf7a5ph2gxgd49d7m0j3y"; 283293 + version = "0.12.0.0"; 283294 + sha256 = "0dcwbc53321jg6jfmsr72kmsx8w7c6x9aq4yllwfvbzh092ljlib"; 282717 283295 libraryHaskellDepends = [ 282718 283296 array 282719 283297 async ··· 284211 284789 } 284212 284790 ) { }; 284213 284791 284792 + "gruvbox-colors" = callPackage ( 284793 + { mkDerivation, base }: 284794 + mkDerivation { 284795 + pname = "gruvbox-colors"; 284796 + version = "0.1.0.0"; 284797 + sha256 = "0if8kvwx51bwsdkwpk9ardmlm9l5v91vfy4g3bj2gmd3184nw6la"; 284798 + libraryHaskellDepends = [ base ]; 284799 + description = "Gruvbox colors for use in Haskell"; 284800 + license = lib.licenses.mit; 284801 + hydraPlatforms = lib.platforms.none; 284802 + broken = true; 284803 + } 284804 + ) { }; 284805 + 284214 284806 "gsasl" = callPackage ( 284215 284807 { 284216 284808 mkDerivation, ··· 286412 287004 network, 286413 287005 quic, 286414 287006 tls, 286415 - unliftio, 286416 287007 }: 286417 287008 mkDerivation { 286418 287009 pname = "h3spec"; 286419 - version = "0.1.11"; 286420 - sha256 = "0h519wf2a9swgi695ynydvfcrmmbr70kin49qk04a4nx9b4lcln1"; 287010 + version = "0.1.12"; 287011 + sha256 = "0f62kj6676mwiynlih3xzzr836qjcln8gsy070fn4cpkdyx7m33w"; 286421 287012 isLibrary = false; 286422 287013 isExecutable = true; 286423 287014 executableHaskellDepends = [ ··· 286430 287021 network 286431 287022 quic 286432 287023 tls 286433 - unliftio 286434 287024 ]; 286435 287025 description = "QUIC"; 286436 287026 license = lib.licenses.bsd3; 287027 + hydraPlatforms = lib.platforms.none; 286437 287028 mainProgram = "h3spec"; 286438 287029 } 286439 287030 ) { }; ··· 290991 291582 ]; 290992 291583 description = "A service for pull-based continuous deployment based on hydra"; 290993 291584 license = lib.licenses.asl20; 290994 - hydraPlatforms = lib.platforms.none; 290995 291585 mainProgram = "hail"; 290996 - broken = true; 290997 291586 } 290998 291587 ) { }; 290999 291588 ··· 301288 301877 }: 301289 301878 mkDerivation { 301290 301879 pname = "haskell-gi"; 301291 - version = "0.26.14"; 301292 - sha256 = "1cz429xlbw7aszqz9dygy31vv0bckdxz14qlwqm57vkdd6j7gv00"; 301880 + version = "0.26.15"; 301881 + sha256 = "07lpd31j582czgvrivyh0fp3bbjmhvqicgy47pv2j69x450q2wsa"; 301293 301882 setupHaskellDepends = [ 301294 301883 base 301295 301884 Cabal ··· 302310 302899 }: 302311 302900 mkDerivation { 302312 302901 pname = "haskell-names"; 302313 - version = "0.9.9"; 302314 - sha256 = "0gqh7whzzcg46c262yf610g781ach3p8458kwf3mmf1pyhjrj7hm"; 302902 + version = "0.9.9.1"; 302903 + sha256 = "041dlfwxa68hlakad9p431adndjm9n3890zsbym14czygksznwzx"; 302315 302904 enableSeparateDataOutput = true; 302316 302905 libraryHaskellDepends = [ 302317 302906 aeson ··· 309256 309845 } 309257 309846 ) { }; 309258 309847 309259 - "hasql_1_9_1_1" = callPackage ( 309848 + "hasql_1_9_1_2" = callPackage ( 309260 309849 { 309261 309850 mkDerivation, 309262 309851 aeson, ··· 309294 309883 }: 309295 309884 mkDerivation { 309296 309885 pname = "hasql"; 309297 - version = "1.9.1.1"; 309298 - sha256 = "0wv3mpvv35nl7va34487naybxni3l588wpnfkgwlknfcv3qq4cg0"; 309886 + version = "1.9.1.2"; 309887 + sha256 = "0z8hadc22nx2yxbp9m5yvlz72rsbagwx676h29nh3cagaz7a9swi"; 309299 309888 libraryHaskellDepends = [ 309300 309889 aeson 309301 309890 attoparsec ··· 310234 310823 } 310235 310824 ) { }; 310236 310825 310237 - "hasql-pool_1_3" = callPackage ( 310826 + "hasql-pool_1_3_0_1" = callPackage ( 310238 310827 { 310239 310828 mkDerivation, 310240 310829 async, ··· 310251 310840 }: 310252 310841 mkDerivation { 310253 310842 pname = "hasql-pool"; 310254 - version = "1.3"; 310255 - sha256 = "0zi2sv8pv2vg3ga1pngf71cmzfam5aw3l5mkm18cwsa0z6zk7ksq"; 310843 + version = "1.3.0.1"; 310844 + sha256 = "0rvj241z6adnkrkr5yfr0k8ngxqylsl85kjcka6mn05m4swplsfz"; 310256 310845 libraryHaskellDepends = [ 310257 310846 base 310258 310847 bytestring ··· 312183 312772 }: 312184 312773 mkDerivation { 312185 312774 pname = "haxl"; 312186 - version = "2.5.1.0"; 312187 - sha256 = "15psynsr61ahcmmm06lcprl47l271nqw2h0kwkahs6jy00l7ymhb"; 312775 + version = "2.5.1.1"; 312776 + sha256 = "1paqg3yggvama25nsfpm656rhj3d23kcapd609pgikh9bbjr8syg"; 312188 312777 isLibrary = true; 312189 312778 isExecutable = true; 312190 312779 libraryHaskellDepends = [ ··· 317300 317889 } 317301 317890 ) { }; 317302 317891 317892 + "heftia_0_6_0_0" = callPackage ( 317893 + { 317894 + mkDerivation, 317895 + base, 317896 + data-effects, 317897 + mtl, 317898 + tasty, 317899 + tasty-discover, 317900 + tasty-hunit, 317901 + unliftio, 317902 + }: 317903 + mkDerivation { 317904 + pname = "heftia"; 317905 + version = "0.6.0.0"; 317906 + sha256 = "18nvp0zcdwi9zf2w1zz60zn4iy78mjy9zqnw6156kz8bwpi8vbda"; 317907 + revision = "1"; 317908 + editedCabalFile = "0abcmwiwqik19fc8h5z0ijpw2fmygfkkyx44wddq26gd3kh89wid"; 317909 + libraryHaskellDepends = [ 317910 + base 317911 + data-effects 317912 + mtl 317913 + unliftio 317914 + ]; 317915 + testHaskellDepends = [ 317916 + base 317917 + tasty 317918 + tasty-hunit 317919 + ]; 317920 + testToolDepends = [ tasty-discover ]; 317921 + description = "higher-order algebraic effects done right"; 317922 + license = lib.licenses.mpl20; 317923 + hydraPlatforms = lib.platforms.none; 317924 + } 317925 + ) { }; 317926 + 317303 317927 "heftia-effects" = callPackage ( 317304 317928 { 317305 317929 mkDerivation, ··· 317417 318041 } 317418 318042 ) { eff = null; }; 317419 318043 318044 + "heftia-effects_0_6_0_1" = callPackage ( 318045 + { 318046 + mkDerivation, 318047 + base, 318048 + bytestring, 318049 + co-log-core, 318050 + containers, 318051 + data-effects, 318052 + eff, 318053 + effectful, 318054 + eveff, 318055 + filepath, 318056 + freer-simple, 318057 + fused-effects, 318058 + heftia, 318059 + hspec, 318060 + logict, 318061 + mpeff, 318062 + mtl, 318063 + polysemy, 318064 + process, 318065 + tasty, 318066 + tasty-bench, 318067 + tasty-discover, 318068 + tasty-hspec, 318069 + text, 318070 + time, 318071 + unbounded-delays, 318072 + unliftio, 318073 + }: 318074 + mkDerivation { 318075 + pname = "heftia-effects"; 318076 + version = "0.6.0.1"; 318077 + sha256 = "0jdxprqjz2x7g9sa6szvh8bs54kqmmgaacqfwr7jsydnjsdmbayq"; 318078 + isLibrary = true; 318079 + isExecutable = true; 318080 + libraryHaskellDepends = [ 318081 + base 318082 + bytestring 318083 + co-log-core 318084 + containers 318085 + data-effects 318086 + heftia 318087 + process 318088 + text 318089 + time 318090 + unbounded-delays 318091 + unliftio 318092 + ]; 318093 + executableHaskellDepends = [ 318094 + base 318095 + bytestring 318096 + co-log-core 318097 + containers 318098 + data-effects 318099 + filepath 318100 + heftia 318101 + process 318102 + text 318103 + time 318104 + unbounded-delays 318105 + unliftio 318106 + ]; 318107 + testHaskellDepends = [ 318108 + base 318109 + bytestring 318110 + co-log-core 318111 + containers 318112 + data-effects 318113 + heftia 318114 + hspec 318115 + process 318116 + tasty 318117 + tasty-hspec 318118 + text 318119 + time 318120 + unbounded-delays 318121 + unliftio 318122 + ]; 318123 + testToolDepends = [ tasty-discover ]; 318124 + benchmarkHaskellDepends = [ 318125 + base 318126 + bytestring 318127 + co-log-core 318128 + containers 318129 + data-effects 318130 + eff 318131 + effectful 318132 + eveff 318133 + freer-simple 318134 + fused-effects 318135 + heftia 318136 + logict 318137 + mpeff 318138 + mtl 318139 + polysemy 318140 + process 318141 + tasty-bench 318142 + text 318143 + time 318144 + unbounded-delays 318145 + unliftio 318146 + ]; 318147 + description = "higher-order algebraic effects done right"; 318148 + license = lib.licenses.mpl20; 318149 + hydraPlatforms = lib.platforms.none; 318150 + broken = true; 318151 + } 318152 + ) { eff = null; }; 318153 + 317420 318154 "hegg" = callPackage ( 317421 318155 { 317422 318156 mkDerivation, ··· 323667 324401 }: 323668 324402 mkDerivation { 323669 324403 pname = "hhp"; 323670 - version = "1.0.2"; 323671 - sha256 = "1ssgxdk087h1j8sg1f28vsy64c8aipmr02f3rbhdxjmxf2z7jgim"; 324404 + version = "1.0.3"; 324405 + sha256 = "059a5j39l0mmk5wc9zird3jz1zsrpgk5h8zxbn18w9i9zpmlbwlc"; 323672 324406 isLibrary = true; 323673 324407 isExecutable = true; 323674 324408 enableSeparateDataOutput = true; ··· 324279 325013 pname = "hie-compat"; 324280 325014 version = "0.3.1.2"; 324281 325015 sha256 = "0m0520z20qd3vxh047izb140jbywnhi20i9av7gf6h8f8486cs0m"; 324282 - revision = "1"; 324283 - editedCabalFile = "03yidgx0vbw5jy1193lqb9yhc97z1hbwsfa92dkndh73j1d5ia3l"; 325016 + revision = "2"; 325017 + editedCabalFile = "0pljzwzj9szs7ynk8avfzy9wwphvm1jh3dl0zcid44bvkg15x863"; 324284 325018 libraryHaskellDepends = [ 324285 325019 array 324286 325020 base ··· 324445 325179 }: 324446 325180 mkDerivation { 324447 325181 pname = "hiedb"; 324448 - version = "0.6.0.1"; 324449 - sha256 = "0pvbxjhwqd7abvb5j23ynlg0rsqc09c0vq915drb52cilbs46fcn"; 325182 + version = "0.6.0.2"; 325183 + sha256 = "0sfxykvg5n44lpjj069j25pnff30ckby8k3n7yhp8ixajfnfrb5i"; 324450 325184 isLibrary = true; 324451 325185 isExecutable = true; 324452 325186 libraryHaskellDepends = [ ··· 327662 328396 incipit-base, 327663 328397 lens, 327664 328398 lens-regex-pcre, 328399 + monad-control, 328400 + network, 328401 + network-uri, 327665 328402 optparse-applicative, 327666 328403 path, 327667 328404 path-io, ··· 327669 328406 random, 327670 328407 tasty, 327671 328408 tasty-hedgehog, 328409 + template-haskell, 327672 328410 these, 327673 328411 time, 327674 328412 transformers, ··· 327677 328415 }: 327678 328416 mkDerivation { 327679 328417 pname = "hix"; 327680 - version = "0.8.0"; 327681 - sha256 = "014rbcbg99zz9a5095avrpcqzdqarifha9jaw7hwcbpxlxs1i3jn"; 328418 + version = "0.9.1"; 328419 + sha256 = "1vqlswkw63spi7lwdcsqcijz2lrihsghapr1wmxaa67vjf7hz3il"; 327682 328420 isLibrary = true; 327683 328421 isExecutable = true; 327684 328422 libraryHaskellDepends = [ ··· 327696 328434 filepattern 327697 328435 generic-lens 327698 328436 generics-sop 328437 + hedgehog 327699 328438 http-client 327700 328439 http-client-tls 327701 328440 http-types 327702 328441 incipit-base 327703 328442 lens 327704 328443 lens-regex-pcre 328444 + monad-control 328445 + network 328446 + network-uri 327705 328447 optparse-applicative 327706 328448 path 327707 328449 path-io 327708 328450 pretty 327709 328451 random 328452 + tasty 328453 + tasty-hedgehog 328454 + template-haskell 327710 328455 these 327711 328456 time 327712 328457 transformers ··· 327727 328472 incipit-base 327728 328473 path 327729 328474 path-io 328475 + pretty 327730 328476 tasty 327731 328477 tasty-hedgehog 327732 328478 these 328479 + time 327733 328480 transformers 327734 328481 ]; 328482 + doHaddock = false; 327735 328483 description = "Haskell/Nix development build tools"; 327736 328484 license = "BSD-2-Clause-Patent"; 327737 328485 hydraPlatforms = lib.platforms.none; ··· 328853 329601 pname = "hledger"; 328854 329602 version = "1.42.1"; 328855 329603 sha256 = "0cw2v3ckg3b90d7xkq7mjwb1pr7z5js9qb3bm2i9mz7284aqzn3q"; 329604 + revision = "1"; 329605 + editedCabalFile = "1i422nwlp4pab9c4pi0vrdmnc52znxwd7pyd1173gk6jkkkvqg7n"; 328856 329606 isLibrary = true; 328857 329607 isExecutable = true; 328858 329608 libraryHaskellDepends = [ ··· 329564 330314 pname = "hledger-lib"; 329565 330315 version = "1.42.1"; 329566 330316 sha256 = "0c59vxi9w809vhw0gzpkl8iv0qbd6wv5xq6lvllxz0y7axkw7vnl"; 330317 + revision = "1"; 330318 + editedCabalFile = "1lpnp61hfscjx01krypqlm08zsjgxgwd400wphg70yk7ay4zg981"; 329567 330319 libraryHaskellDepends = [ 329568 330320 aeson 329569 330321 aeson-pretty ··· 329913 330665 pname = "hledger-ui"; 329914 330666 version = "1.42.1"; 329915 330667 sha256 = "1grj5j2lndyxzbfbr9mp29qy2l4gs7pcqgbmrkdb2l8qcdm83nwm"; 330668 + revision = "1"; 330669 + editedCabalFile = "0db3yzr818m458ddlfkhbypsyjfkgmlbqyl9vyqdmvklxlnap0j5"; 329916 330670 isLibrary = true; 329917 330671 isExecutable = true; 329918 330672 libraryHaskellDepends = [ ··· 330168 330922 pname = "hledger-web"; 330169 330923 version = "1.42.1"; 330170 330924 sha256 = "13z1fzvfdacdcaabhc68ic93rbh2kw983nhcm7jzkipnp559lvnj"; 330925 + revision = "1"; 330926 + editedCabalFile = "1mf2g5j8jqfdnvs1qnq58bb2d6yzi9bc3kh0zz00f0wbqhwiih30"; 330171 330927 isLibrary = true; 330172 330928 isExecutable = true; 330173 330929 libraryHaskellDepends = [ ··· 335234 335990 } 335235 335991 ) { }; 335236 335992 335993 + "hoare" = callPackage ( 335994 + { 335995 + mkDerivation, 335996 + async, 335997 + base, 335998 + deepseq, 335999 + stm, 336000 + }: 336001 + mkDerivation { 336002 + pname = "hoare"; 336003 + version = "0.1.0.0"; 336004 + sha256 = "1xc49mfp7j9fk28xfn2w23ka6yx6rid453mfxh80ix1hzngyww4k"; 336005 + libraryHaskellDepends = [ 336006 + async 336007 + base 336008 + deepseq 336009 + stm 336010 + ]; 336011 + description = "Simple tools for communicating sequential processes"; 336012 + license = lib.licenses.zlib; 336013 + } 336014 + ) { }; 336015 + 335237 336016 "hoauth" = callPackage ( 335238 336017 { 335239 336018 mkDerivation, ··· 340145 340924 } 340146 340925 ) { }; 340147 340926 340927 + "hpack_0_38_1" = callPackage ( 340928 + { 340929 + mkDerivation, 340930 + aeson, 340931 + base, 340932 + bifunctors, 340933 + bytestring, 340934 + Cabal, 340935 + containers, 340936 + crypton, 340937 + deepseq, 340938 + directory, 340939 + filepath, 340940 + Glob, 340941 + hspec, 340942 + hspec-discover, 340943 + http-client, 340944 + http-client-tls, 340945 + http-types, 340946 + HUnit, 340947 + infer-license, 340948 + interpolate, 340949 + mockery, 340950 + mtl, 340951 + pretty, 340952 + QuickCheck, 340953 + scientific, 340954 + template-haskell, 340955 + temporary, 340956 + text, 340957 + transformers, 340958 + unordered-containers, 340959 + vcr, 340960 + vector, 340961 + yaml, 340962 + }: 340963 + mkDerivation { 340964 + pname = "hpack"; 340965 + version = "0.38.1"; 340966 + sha256 = "03qygb51jb4r6sg2bkaz7k80h11wgjr27hgpx6h08xm8axdk2gba"; 340967 + isLibrary = true; 340968 + isExecutable = true; 340969 + libraryHaskellDepends = [ 340970 + aeson 340971 + base 340972 + bifunctors 340973 + bytestring 340974 + Cabal 340975 + containers 340976 + crypton 340977 + deepseq 340978 + directory 340979 + filepath 340980 + Glob 340981 + http-client 340982 + http-client-tls 340983 + http-types 340984 + infer-license 340985 + mtl 340986 + pretty 340987 + scientific 340988 + text 340989 + transformers 340990 + unordered-containers 340991 + vector 340992 + yaml 340993 + ]; 340994 + executableHaskellDepends = [ 340995 + aeson 340996 + base 340997 + bifunctors 340998 + bytestring 340999 + Cabal 341000 + containers 341001 + crypton 341002 + deepseq 341003 + directory 341004 + filepath 341005 + Glob 341006 + http-client 341007 + http-client-tls 341008 + http-types 341009 + infer-license 341010 + mtl 341011 + pretty 341012 + scientific 341013 + text 341014 + transformers 341015 + unordered-containers 341016 + vector 341017 + yaml 341018 + ]; 341019 + testHaskellDepends = [ 341020 + aeson 341021 + base 341022 + bifunctors 341023 + bytestring 341024 + Cabal 341025 + containers 341026 + crypton 341027 + deepseq 341028 + directory 341029 + filepath 341030 + Glob 341031 + hspec 341032 + http-client 341033 + http-client-tls 341034 + http-types 341035 + HUnit 341036 + infer-license 341037 + interpolate 341038 + mockery 341039 + mtl 341040 + pretty 341041 + QuickCheck 341042 + scientific 341043 + template-haskell 341044 + temporary 341045 + text 341046 + transformers 341047 + unordered-containers 341048 + vcr 341049 + vector 341050 + yaml 341051 + ]; 341052 + testToolDepends = [ hspec-discover ]; 341053 + description = "A modern format for Haskell packages"; 341054 + license = lib.licenses.mit; 341055 + hydraPlatforms = lib.platforms.none; 341056 + mainProgram = "hpack"; 341057 + } 341058 + ) { }; 341059 + 340148 341060 "hpack-convert" = callPackage ( 340149 341061 { 340150 341062 mkDerivation, ··· 344379 345291 }: 344380 345292 mkDerivation { 344381 345293 pname = "hs-opentelemetry-instrumentation-auto"; 344382 - version = "0.1.0.1"; 344383 - sha256 = "00qsmldcn20c5vsy617w0kcn4dw0l730n74bdrp2acv1jpppaa4v"; 344384 - revision = "1"; 344385 - editedCabalFile = "0paa6p9w4ryr35dandqna53p56jsv3cgkw3dcw4f66j0bgaw2jgw"; 345294 + version = "0.1.0.2"; 345295 + sha256 = "1w4xq79phbbhjjp9q5pj7wlsdp0nrlfdhqpc9yh0vlaqag93cc6d"; 344386 345296 libraryHaskellDepends = [ 344387 345297 base 344388 345298 bytestring ··· 346820 347730 pname = "hsblst"; 346821 347731 version = "0.0.4"; 346822 347732 sha256 = "13dlz8am20np31bq31z596yam6w1rb0fdzlg3zwwvm6wyjh6b8sg"; 347733 + revision = "1"; 347734 + editedCabalFile = "1cwplg9k8pr6iy27gkc32ayxnwf63sbzdd660p1lm8dihvj9q1jy"; 346823 347735 libraryHaskellDepends = [ 346824 347736 base 346825 347737 deepseq ··· 356677 357589 }: 356678 357590 mkDerivation { 356679 357591 pname = "html-parse"; 356680 - version = "0.2.1.0"; 356681 - sha256 = "1vjy8bmxg0dsmq74hahmn1mkkgf7jm5qwhcfc8bsmm82c6jg08xx"; 357592 + version = "0.2.2.0"; 357593 + sha256 = "0dhwz7mx7y0pb2jqrx0pa8qdl0s3m77qjacyx6ih15xy39a4xn5z"; 356682 357594 isLibrary = true; 356683 357595 isExecutable = true; 356684 357596 libraryHaskellDepends = [ ··· 357634 358546 }: 357635 358547 mkDerivation { 357636 358548 pname = "http-api-data"; 357637 - version = "0.6.1"; 357638 - sha256 = "1kz3qjjazl61q7iad6q67zdsm2gynsjdfcn34rzmybjhq27wylas"; 357639 - revision = "1"; 357640 - editedCabalFile = "0gw1hahhc5pyagvmvbpwqbm7sqpyfccy59p249jrmz667hsz92g3"; 358549 + version = "0.6.2"; 358550 + sha256 = "0d42xkm60i3irxcvwixvn5c01paz2kpfsz29vhxz08ir83zsk16w"; 357641 358551 libraryHaskellDepends = [ 357642 358552 base 357643 358553 bytestring ··· 359343 360253 errors, 359344 360254 hspec, 359345 360255 hspec-attoparsec, 360256 + hspec-discover, 359346 360257 http-api-data, 359347 360258 network-uri, 359348 360259 QuickCheck, ··· 359351 360262 }: 359352 360263 mkDerivation { 359353 360264 pname = "http-link-header"; 359354 - version = "1.2.2"; 359355 - sha256 = "1ix1k35x2cxzjvbywkpz8c0w6mmhp6hj235ch8rmc64lsff6x1hc"; 360265 + version = "1.2.3"; 360266 + sha256 = "1fycx3ba06r0dhjnab9grikc7f61c4dbz1mgnw4l7ymhyyqwrchg"; 359356 360267 libraryHaskellDepends = [ 359357 360268 attoparsec 359358 360269 base ··· 359369 360280 errors 359370 360281 hspec 359371 360282 hspec-attoparsec 360283 + hspec-discover 359372 360284 http-api-data 359373 360285 network-uri 359374 360286 QuickCheck 359375 360287 text 359376 360288 ]; 360289 + testToolDepends = [ hspec-discover ]; 359377 360290 benchmarkHaskellDepends = [ 359378 360291 attoparsec 359379 360292 base ··· 360819 361732 testToolDepends = [ hspec-discover ]; 360820 361733 description = "HTTP/3 library"; 360821 361734 license = lib.licenses.bsd3; 361735 + hydraPlatforms = lib.platforms.none; 360822 361736 } 360823 361737 ) { }; 360824 361738 ··· 373065 373979 } 373066 373980 ) { }; 373067 373981 373982 + "immutaball-core" = callPackage ( 373983 + { 373984 + mkDerivation, 373985 + array, 373986 + async, 373987 + base, 373988 + bytestring, 373989 + containers, 373990 + curl, 373991 + directory, 373992 + filepath, 373993 + gl, 373994 + HUnit, 373995 + i18n, 373996 + JuicyPixels, 373997 + lens, 373998 + libvorbis, 373999 + mtl, 374000 + OpenGL, 374001 + parallel, 374002 + parsec, 374003 + pipes, 374004 + prettyprinter, 374005 + QuickCheck, 374006 + sdl2, 374007 + sdl2-ttf, 374008 + stm, 374009 + tasty, 374010 + tasty-hunit, 374011 + tasty-quickcheck, 374012 + text, 374013 + time, 374014 + transformers, 374015 + unbounded-delays, 374016 + wires, 374017 + }: 374018 + mkDerivation { 374019 + pname = "immutaball-core"; 374020 + version = "0.1.0.4.1"; 374021 + sha256 = "136vbcyywfyl2kafpygz1iwv5yahlzxhj9y07wsz3dch90x0lail"; 374022 + isLibrary = true; 374023 + isExecutable = true; 374024 + libraryHaskellDepends = [ 374025 + array 374026 + async 374027 + base 374028 + bytestring 374029 + containers 374030 + curl 374031 + directory 374032 + filepath 374033 + gl 374034 + i18n 374035 + JuicyPixels 374036 + lens 374037 + libvorbis 374038 + mtl 374039 + OpenGL 374040 + parallel 374041 + parsec 374042 + pipes 374043 + prettyprinter 374044 + sdl2 374045 + sdl2-ttf 374046 + stm 374047 + text 374048 + time 374049 + transformers 374050 + unbounded-delays 374051 + wires 374052 + ]; 374053 + executableHaskellDepends = [ 374054 + array 374055 + async 374056 + base 374057 + bytestring 374058 + containers 374059 + curl 374060 + directory 374061 + filepath 374062 + gl 374063 + i18n 374064 + JuicyPixels 374065 + lens 374066 + libvorbis 374067 + mtl 374068 + OpenGL 374069 + parallel 374070 + parsec 374071 + pipes 374072 + prettyprinter 374073 + sdl2 374074 + sdl2-ttf 374075 + stm 374076 + text 374077 + time 374078 + transformers 374079 + unbounded-delays 374080 + wires 374081 + ]; 374082 + testHaskellDepends = [ 374083 + array 374084 + async 374085 + base 374086 + bytestring 374087 + containers 374088 + curl 374089 + directory 374090 + filepath 374091 + gl 374092 + HUnit 374093 + i18n 374094 + JuicyPixels 374095 + lens 374096 + libvorbis 374097 + mtl 374098 + OpenGL 374099 + parallel 374100 + parsec 374101 + pipes 374102 + prettyprinter 374103 + QuickCheck 374104 + sdl2 374105 + sdl2-ttf 374106 + stm 374107 + tasty 374108 + tasty-hunit 374109 + tasty-quickcheck 374110 + text 374111 + time 374112 + transformers 374113 + unbounded-delays 374114 + wires 374115 + ]; 374116 + description = "Immutaball platformer game"; 374117 + license = lib.licenses.bsd0; 374118 + hydraPlatforms = lib.platforms.none; 374119 + } 374120 + ) { }; 374121 + 373068 374122 "imp" = callPackage ( 373069 374123 { 373070 374124 mkDerivation, ··· 376763 377817 inline-c, 376764 377818 primitive, 376765 377819 process, 376766 - python3-embed, 377820 + python3, 376767 377821 quickcheck-instances, 376768 377822 stm, 376769 377823 tasty, ··· 376797 377851 transformers 376798 377852 vector 376799 377853 ]; 376800 - libraryPkgconfigDepends = [ python3-embed ]; 377854 + libraryPkgconfigDepends = [ python3 ]; 376801 377855 testHaskellDepends = [ 376802 377856 base 376803 377857 tasty ··· 376810 377864 doHaddock = false; 376811 377865 description = "Python interpreter embedded into haskell"; 376812 377866 license = lib.licenses.bsd3; 376813 - hydraPlatforms = lib.platforms.none; 376814 - broken = true; 376815 377867 } 376816 - ) { python3-embed = null; }; 377868 + ) { inherit (pkgs) python3; }; 376817 377869 376818 377870 "inline-r" = callPackage ( 376819 377871 { ··· 380205 381257 pname = "invertible-grammar"; 380206 381258 version = "0.1.3.5"; 380207 381259 sha256 = "01g4lf31hgv8dqabmabkp6zld6v2l3a2mv9wcgyfxghfrd6dspdw"; 380208 - revision = "1"; 380209 - editedCabalFile = "04xlxfqhyapb2wzzzfvzk6pr11w4rfqyi1axvsk1mxlrihyvl6yy"; 381260 + revision = "2"; 381261 + editedCabalFile = "1w61hp5rsgp8lgfmaik3r8iqbhsq9hlb7bm5j9sfnlfv0j57ba4g"; 380210 381262 libraryHaskellDepends = [ 380211 381263 base 380212 381264 bifunctors ··· 382477 383529 }: 382478 383530 mkDerivation { 382479 383531 pname = "iri"; 382480 - version = "0.5.1"; 382481 - sha256 = "0r1isflm644d823vwimrcmh4s8ash84gi4hgav1gxgiryw9j013n"; 383532 + version = "0.5.1.1"; 383533 + sha256 = "1xyndxzdqpbmwv8f86jlin22snddcm769m84d29sb9dkhyi6hncd"; 382482 383534 libraryHaskellDepends = [ 382483 383535 attoparsec 382484 383536 base ··· 382507 383559 tasty-hunit 382508 383560 ]; 382509 383561 doHaddock = false; 382510 - description = "RFC-based resource identifier library"; 383562 + description = "RFC-compliant universal resource identifier library (URL, URI, IRI)"; 382511 383563 license = lib.licenses.mit; 383564 + hydraPlatforms = lib.platforms.none; 383565 + broken = true; 382512 383566 } 382513 383567 ) { }; 382514 383568 ··· 383287 384341 tasty, 383288 384342 tasty-quickcheck, 383289 384343 text, 384344 + time, 383290 384345 unordered-containers, 383291 384346 vector, 383292 384347 }: 383293 384348 mkDerivation { 383294 384349 pname = "isomorphism-class"; 383295 - version = "0.3.0.1"; 383296 - sha256 = "13jshr62x7wsj9bgwid8qbzig4svis5xk286c774k34k74vd4qy1"; 384350 + version = "0.3.1.2"; 384351 + sha256 = "0zsjpvxv6j81idqi8g18bahx24rp1y78p2g48yikr3lbbgjwlcic"; 383297 384352 libraryHaskellDepends = [ 383298 384353 base 383299 384354 bytestring ··· 383303 384358 profunctors 383304 384359 QuickCheck 383305 384360 text 384361 + time 383306 384362 unordered-containers 383307 384363 vector 383308 384364 ]; ··· 383316 384372 tasty-quickcheck 383317 384373 text 383318 384374 ]; 383319 - description = "Isomorphism typeclass solving the conversion problem"; 384375 + description = "Isomorphism typeclass as a lawful solution to the conversion problem"; 383320 384376 license = lib.licenses.mit; 383321 384377 } 383322 384378 ) { }; ··· 390436 391492 }: 390437 391493 mkDerivation { 390438 391494 description = "NestedText: A Human Friendly Data Format"; 390439 - version = "1.1.1.1"; 390440 - description = "NestedText: A Human Friendly Data Format"; 391495 + version = "1.1.1.2"; 391496 + sha256 = "1wg7g94mss8bjx65xgnpz1d2rm9a68q6lnprwclmhjcrk91lfw7l"; 390441 391497 libraryHaskellDepends = [ 390442 391498 aeson 390443 391499 base ··· 390477 391533 }: 390478 391534 mkDerivation { 390479 391535 description = "NestedText: A Human Friendly Data Format"; 390480 - version = "0.4.0.5"; 390481 - description = "NestedText: A Human Friendly Data Format"; 391536 + version = "0.4.0.6"; 391537 + sha256 = "1kr3j1lijki5v54gq71c1qm2ina2nsk26msxix4w9z8dg66nk6xr"; 390482 391538 libraryHaskellDepends = [ 390483 391539 base 390484 391540 bound ··· 390576 391632 } 390577 391633 ) { }; 390578 391634 390579 - description = "NestedText: A Human Friendly Data Format"; 391635 + "json-spec-elm-servant_0_4_4_1" = callPackage ( 390580 391636 { 390581 391637 mkDerivation, 390582 391638 aeson, ··· 390604 391660 }: 390605 391661 mkDerivation { 390606 391662 description = "NestedText: A Human Friendly Data Format"; 390607 - version = "0.4.4.0"; 390608 - description = "NestedText: A Human Friendly Data Format"; 391663 + version = "0.4.4.1"; 391664 + sha256 = "0236nyzixcj5z10kmmdxhdzb9gmaczjk0p9icgyh972zm6ql00l0"; 390609 391665 libraryHaskellDepends = [ 390610 391666 base 390611 391667 bound ··· 390668 391724 }: 390669 391725 mkDerivation { 390670 391726 description = "NestedText: A Human Friendly Data Format"; 390671 - version = "1.0.1.0"; 390672 - description = "NestedText: A Human Friendly Data Format"; 391727 + version = "1.0.1.1"; 391728 + sha256 = "0vk9m76ga1706b9r4ggpfk7f11jpv22mhibqxd7vqfbi3iffm2ys"; 390673 391729 libraryHaskellDepends = [ 390674 391730 aeson 390675 391731 base ··· 391715 392771 { 391716 392772 mkDerivation, 391717 392773 aeson, 391718 - ansi-wl-pprint, 391719 392774 base, 391720 392775 binary, 391721 392776 bytestring, 391722 392777 containers, 391723 392778 data-fix, 391724 - deriving-compat, 391725 392779 directory, 391726 392780 exceptions, 391727 392781 filepath, 391728 - hashable, 392782 + hedgehog, 391729 392783 lens, 391730 392784 megaparsec, 391731 392785 mtl, 391732 392786 optparse-applicative, 391733 392787 parser-combinators, 392788 + prettyprinter, 391734 392789 scientific, 391735 - semigroupoids, 391736 392790 tasty, 391737 392791 tasty-bench, 391738 392792 tasty-golden, 391739 - tasty-hunit, 392793 + tasty-hedgehog, 391740 392794 template-haskell, 391741 392795 text, 391742 392796 th-lift-instances, ··· 391748 392802 }: 391749 392803 mkDerivation { 391750 392804 description = "NestedText: A Human Friendly Data Format"; 391751 - version = "0.3.1.1"; 391752 - description = "NestedText: A Human Friendly Data Format"; 392805 + version = "0.4.0.0"; 392806 + sha256 = "1a9hn0mnwya2i8d513yw59n90racqr5zyyvy9f5vncwkxb6j7yvz"; 391753 392807 isLibrary = true; 391754 392808 isExecutable = true; 391755 392809 libraryHaskellDepends = [ 391756 392810 aeson 391757 - ansi-wl-pprint 391758 392811 base 391759 392812 binary 391760 392813 bytestring 391761 392814 containers 391762 392815 data-fix 391763 - deriving-compat 391764 392816 directory 391765 392817 exceptions 391766 392818 filepath 391767 - hashable 391768 392819 lens 391769 392820 megaparsec 391770 392821 mtl 391771 392822 parser-combinators 392823 + prettyprinter 391772 392824 scientific 391773 - semigroupoids 391774 392825 template-haskell 391775 392826 text 391776 392827 th-lift-instances ··· 391782 392833 ]; 391783 392834 executableHaskellDepends = [ 391784 392835 aeson 391785 - ansi-wl-pprint 391786 392836 base 391787 392837 bytestring 391788 - mtl 392838 + megaparsec 391789 392839 optparse-applicative 391790 392840 text 391791 392841 ]; 391792 392842 testHaskellDepends = [ 391793 - ansi-wl-pprint 391794 392843 base 391795 392844 bytestring 392845 + containers 392846 + data-fix 391796 392847 filepath 391797 - mtl 392848 + hedgehog 392849 + prettyprinter 391798 392850 tasty 391799 392851 tasty-golden 391800 - tasty-hunit 392852 + tasty-hedgehog 391801 392853 text 391802 392854 ]; 391803 392855 benchmarkHaskellDepends = [ 391804 - ansi-wl-pprint 391805 392856 base 391806 392857 bytestring 392858 + prettyprinter 391807 392859 tasty-bench 391808 392860 text 391809 392861 ]; ··· 391815 392867 } 391816 392868 ) { }; 391817 392869 392870 + "jsonpatch" = callPackage ( 392871 + { 392872 + mkDerivation, 392873 + aeson, 392874 + aeson-optics, 392875 + aeson-pretty, 392876 + aeson-qq, 392877 + base, 392878 + bytestring, 392879 + hspec, 392880 + hspec-expectations-json, 392881 + markdown-unlit, 392882 + optics-core, 392883 + path, 392884 + text, 392885 + vector, 392886 + }: 392887 + mkDerivation { 392888 + pname = "jsonpatch"; 392889 + version = "0.3.0.1"; 392890 + sha256 = "0ycszkiij85j1hymq3v7g8pyjqam6g3cphar0yvdhy00xfda2wxd"; 392891 + libraryHaskellDepends = [ 392892 + aeson 392893 + aeson-optics 392894 + base 392895 + bytestring 392896 + optics-core 392897 + text 392898 + vector 392899 + ]; 392900 + testHaskellDepends = [ 392901 + aeson 392902 + aeson-optics 392903 + aeson-pretty 392904 + aeson-qq 392905 + base 392906 + bytestring 392907 + hspec 392908 + hspec-expectations-json 392909 + markdown-unlit 392910 + optics-core 392911 + path 392912 + text 392913 + vector 392914 + ]; 392915 + testToolDepends = [ markdown-unlit ]; 392916 + description = "JSON Patch parsing and application"; 392917 + license = lib.licenses.agpl3Only; 392918 + } 392919 + ) { }; 392920 + 391818 392921 description = "NestedText: A Human Friendly Data Format"; 391819 392922 { 391820 392923 mkDerivation, ··· 398872 399975 rio, 398873 399976 template-haskell, 398874 399977 time, 399978 + transformers, 398875 399979 unix, 398876 399980 unliftio, 398877 399981 }: 398878 399982 mkDerivation { 398879 399983 description = "NestedText: A Human Friendly Data Format"; 398880 - version = "0.4.3"; 398881 - description = "NestedText: A Human Friendly Data Format"; 399984 + version = "0.4.4"; 399985 + sha256 = "1jyxsg0pj5slvz86d3jpfmrg4im678fw4abidjfy7qnhd4gid2dl"; 398882 399986 isLibrary = true; 398883 399987 isExecutable = true; 398884 399988 libraryHaskellDepends = [ ··· 398892 399996 rio 398893 399997 template-haskell 398894 399998 time 399999 + transformers 398895 400000 unix 398896 400001 unliftio 398897 400002 ]; ··· 403481 404586 } 403482 404587 ) { }; 403483 404588 404589 + "langchain-hs" = callPackage ( 404590 + { 404591 + mkDerivation, 404592 + aeson, 404593 + base, 404594 + bytestring, 404595 + containers, 404596 + directory, 404597 + filepath, 404598 + http-conduit, 404599 + http-types, 404600 + ollama-haskell, 404601 + pdf-toolbox-document, 404602 + scalpel, 404603 + tasty, 404604 + tasty-hunit, 404605 + temporary, 404606 + text, 404607 + }: 404608 + mkDerivation { 404609 + pname = "langchain-hs"; 404610 + version = "0.0.1.0"; 404611 + sha256 = "10i1xk5zi9dmbw86zi3fkanqgwdzkb6kgyr5bccjfjhrizb8c933"; 404612 + libraryHaskellDepends = [ 404613 + aeson 404614 + base 404615 + bytestring 404616 + containers 404617 + directory 404618 + http-conduit 404619 + http-types 404620 + ollama-haskell 404621 + pdf-toolbox-document 404622 + scalpel 404623 + text 404624 + ]; 404625 + testHaskellDepends = [ 404626 + aeson 404627 + base 404628 + bytestring 404629 + containers 404630 + directory 404631 + filepath 404632 + http-conduit 404633 + http-types 404634 + ollama-haskell 404635 + pdf-toolbox-document 404636 + scalpel 404637 + tasty 404638 + tasty-hunit 404639 + temporary 404640 + text 404641 + ]; 404642 + description = "Haskell implementation of Langchain"; 404643 + license = lib.licenses.mit; 404644 + hydraPlatforms = lib.platforms.none; 404645 + } 404646 + ) { }; 404647 + 403484 404648 description = "NestedText: A Human Friendly Data Format"; 403485 404649 { 403486 404650 mkDerivation, ··· 406916 408080 }: 406917 408081 mkDerivation { 406918 408082 pname = "lapack-comfort-array"; 406919 - version = "0.0.1"; 406920 - sha256 = "1p4vfw95qnd48cbizncb7b7fgzkxbv7r3rp3ffw6r11wymhm67q0"; 406921 - revision = "1"; 406922 - editedCabalFile = "0z80pnn3fpbfbrxmv2n3gwwwlny4a9hgnivd0b8i25q1agyprzcs"; 408083 + version = "0.0.1.1"; 408084 + sha256 = "04ls07alcsbnghrgvprgz81yv8v6xkpv392c18qyjfwfdv0hdg0j"; 406923 408085 libraryHaskellDepends = [ 406924 408086 base 406925 408087 comfort-array ··· 406977 408139 }: 406978 408140 mkDerivation { 406979 408141 pname = "lapack-ffi-tools"; 406980 - version = "0.1.3.1"; 406981 - sha256 = "1mf41wcbxkgiv71c3jjwhsdg9d7qpa88qsifpa5vgplpx2v1p6ya"; 406982 - revision = "3"; 406983 - editedCabalFile = "19xnq84gw4937zhmj2h8nlrlsikni7qjdm2dbljl1qv68cjs3gjz"; 408142 + version = "0.1.3.2"; 408143 + sha256 = "0y30qwxzbggn3aqr437j3bi1yfa1fpdq96xq7vxbi1fnll8a9432"; 406984 408144 isLibrary = false; 406985 408145 isExecutable = true; 406986 408146 enableSeparateDataOutput = true; ··· 408297 409457 }: 408298 409458 mkDerivation { 408299 409459 pname = "lawful-conversions"; 408300 - version = "0.1.6"; 408301 - sha256 = "1gp4z8g5smnhi31h4cpniha5g1lha6hh5rhh7cv1cwkrzh0cmkbg"; 409460 + version = "0.1.6.1"; 409461 + sha256 = "18dp73b63wvzznvk1v47jxalpbfc9zjh184p88pjrjq3y6m514dg"; 408302 409462 libraryHaskellDepends = [ 408303 409463 base 408304 409464 bytestring ··· 410978 412138 description = "Instances to mix lens with Accelerate"; 410979 412139 license = lib.licenses.bsd3; 410980 412140 hydraPlatforms = lib.platforms.none; 412141 + broken = true; 410981 412142 } 410982 412143 ) { }; 410983 412144 ··· 415409 416570 { 415410 416571 mkDerivation, 415411 416572 base, 415412 - c2hs, 416573 + cpphs, 415413 416574 libvirt, 415414 416575 syb, 415415 416576 unix, 415416 416577 }: 415417 416578 mkDerivation { 415418 416579 pname = "libvirt-hs"; 415419 - version = "0.2.2"; 415420 - sha256 = "1zrc7z0v3zarmbfhasv1mk2wcyhg8azhdpk7q4aayhrb9hcq3i0n"; 416580 + version = "0.2.3"; 416581 + sha256 = "07bpi4339g6848kvz42ii11w412qih1r52csjn5ppdxhj3dm8924"; 415421 416582 libraryHaskellDepends = [ 415422 416583 base 415423 416584 syb 415424 416585 unix 415425 416586 ]; 415426 416587 libraryPkgconfigDepends = [ libvirt ]; 415427 - libraryToolDepends = [ c2hs ]; 416588 + libraryToolDepends = [ cpphs ]; 415428 416589 description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; 415429 416590 license = lib.licenses.bsd3; 415430 416591 badPlatforms = lib.platforms.darwin; ··· 417313 418474 description = "Lifting linear vector spaces into Accelerate"; 417314 418475 license = lib.licenses.bsd3; 417315 418476 hydraPlatforms = lib.platforms.none; 418477 + broken = true; 417316 418478 } 417317 418479 ) { }; 417318 418480 ··· 417428 418590 } 417429 418591 ) { }; 417430 418592 418593 + "linear-base_0_5_0" = callPackage ( 418594 + { 418595 + mkDerivation, 418596 + base, 418597 + containers, 418598 + deepseq, 418599 + ghc-bignum, 418600 + ghc-prim, 418601 + hashable, 418602 + hashtables, 418603 + hedgehog, 418604 + inspection-testing, 418605 + linear-generics, 418606 + mmorph, 418607 + MonadRandom, 418608 + primitive, 418609 + random, 418610 + random-shuffle, 418611 + storable-tuple, 418612 + tasty, 418613 + tasty-bench, 418614 + tasty-hedgehog, 418615 + tasty-inspection-testing, 418616 + text, 418617 + transformers, 418618 + unordered-containers, 418619 + vector, 418620 + }: 418621 + mkDerivation { 418622 + pname = "linear-base"; 418623 + version = "0.5.0"; 418624 + sha256 = "0iikqp73i0isxkd8xwg5f8f6dk3cv5iw6ifjkmp5r5kwxb650xgq"; 418625 + libraryHaskellDepends = [ 418626 + base 418627 + containers 418628 + ghc-bignum 418629 + ghc-prim 418630 + hashable 418631 + linear-generics 418632 + primitive 418633 + storable-tuple 418634 + text 418635 + transformers 418636 + vector 418637 + ]; 418638 + testHaskellDepends = [ 418639 + base 418640 + containers 418641 + hedgehog 418642 + inspection-testing 418643 + linear-generics 418644 + mmorph 418645 + tasty 418646 + tasty-hedgehog 418647 + tasty-inspection-testing 418648 + vector 418649 + ]; 418650 + benchmarkHaskellDepends = [ 418651 + base 418652 + containers 418653 + deepseq 418654 + hashable 418655 + hashtables 418656 + MonadRandom 418657 + random 418658 + random-shuffle 418659 + tasty-bench 418660 + unordered-containers 418661 + vector 418662 + ]; 418663 + doHaddock = false; 418664 + description = "Standard library for linear types"; 418665 + license = lib.licenses.mit; 418666 + hydraPlatforms = lib.platforms.none; 418667 + } 418668 + ) { }; 418669 + 417431 418670 "linear-circuit" = callPackage ( 417432 418671 { 417433 418672 mkDerivation, ··· 417879 419118 }: 417880 419119 mkDerivation { 417881 419120 pname = "linearmap-category"; 417882 - version = "0.6.0.1"; 417883 - sha256 = "1rwa6jlkxvgzsw6v717gk5981rxdhk78zvv1smninlwsrjwc5j0i"; 417884 - revision = "1"; 417885 - editedCabalFile = "0qj860xn0k36vr45zpchskk3y86k8529qspz53f600nvzgd4r4cz"; 419121 + version = "0.6.0.2"; 419122 + sha256 = "0nkg4s9kdxqa8g20yyzp8hig8cvvccmqgh1lf5vb0z4sq9ca1ka4"; 417886 419123 libraryHaskellDepends = [ 417887 419124 base 417888 419125 call-stack ··· 421397 422634 aeson, 421398 422635 base, 421399 422636 http-conduit, 422637 + http-types, 421400 422638 text, 421401 422639 }: 421402 422640 mkDerivation { 421403 422641 pname = "llama-cpp-haskell"; 421404 - version = "0.1.0.1"; 421405 - sha256 = "0c4pw2mp73n5pvr377aa6kklqc1d4kcgmymb3bixqagcav7nizsh"; 422642 + version = "0.1.0.2"; 422643 + sha256 = "11g5v696mj0rcl8w2bjd6wvklrl25xk97s5hlzqc2hazwpzfgdwk"; 421406 422644 libraryHaskellDepends = [ 421407 422645 aeson 421408 422646 base 421409 422647 http-conduit 422648 + http-types 421410 422649 text 421411 422650 ]; 421412 422651 description = "Haskell bindings for the llama.cpp llama-server"; ··· 426008 427247 }: 426009 427248 mkDerivation { 426010 427249 pname = "looksee"; 426011 - version = "0.8.0"; 426012 - sha256 = "0nzbcw766wpn86z8vsmf765zisw8af3304nas2fngm7hkv77v5ds"; 427250 + version = "0.8.1"; 427251 + sha256 = "1xzidd03v499rcggkwdgj650jl3q9qbzwxwqll9hglbr5c12d4kb"; 426013 427252 libraryHaskellDepends = [ 426014 427253 base 426015 427254 bifunctors ··· 427975 429214 ]; 427976 429215 description = "Parameterized file evaluator"; 427977 429216 license = lib.licenses.bsd3; 427978 - hydraPlatforms = lib.platforms.none; 427979 429217 mainProgram = "ltext"; 427980 - broken = true; 427981 429218 } 427982 429219 ) { }; 427983 429220 ··· 433697 434934 }: 433698 434935 mkDerivation { 433699 434936 pname = "manifolds-core"; 433700 - version = "0.6.1.0"; 433701 - sha256 = "1fw6985ccg173x3449s81yzgnn3irhyzbw8i8jajyzqawr7kasp4"; 434937 + version = "0.6.1.1"; 434938 + sha256 = "0w953qmqczw7hhyxmd3vk9qng684k9cwjmgvxzr2yxhjpr05h7vm"; 433702 434939 libraryHaskellDepends = [ 433703 434940 base 433704 434941 call-stack ··· 440367 441604 pname = "meminfo"; 440368 441605 version = "0.2.0.0"; 440369 441606 sha256 = "1mxk57qr4d1k6sz4qld09d61nc15hixggc5klfj5xr0n8rw1za3x"; 440370 - revision = "2"; 440371 - editedCabalFile = "0i6znbcw4yyf8jzkixx5dxbklzfnh79hmywvwwamdmjgi39akpi5"; 441607 + revision = "3"; 441608 + editedCabalFile = "0gl7cfjc6l8nnwwkj6p9760a2k4swz4s8bbrz4c0hqlyywcds3gy"; 440372 441609 libraryHaskellDepends = [ 440373 441610 attoparsec 440374 441611 base ··· 440377 441614 ]; 440378 441615 description = "Library for reading `/proc/meminfo`"; 440379 441616 license = lib.licenses.bsd3; 440380 - hydraPlatforms = lib.platforms.none; 440381 - broken = true; 440382 441617 } 440383 441618 ) { }; 440384 441619 ··· 454486 455721 }: 454487 455722 mkDerivation { 454488 455723 pname = "monoidal-containers"; 454489 - version = "0.6.5.0"; 454490 - sha256 = "008icgq7704pk301s6224k24iy3n60h0jvkkqgq61fi2fbbdy5r7"; 454491 - revision = "2"; 454492 - editedCabalFile = "1261ch2xj89dp2bjah961164ssawbvbhq12nmv931fr2h2h8v80m"; 455724 + version = "0.6.6.0"; 455725 + sha256 = "0i2hc4x1y6437az5cg1rg8p57m1m6k742h5vbdw0vr4hrq2ldsqi"; 454493 455726 libraryHaskellDepends = [ 454494 455727 aeson 454495 455728 base ··· 461549 462782 } 461550 462783 ) { }; 461551 462784 462785 + "multidir" = callPackage ( 462786 + { 462787 + mkDerivation, 462788 + base, 462789 + cond, 462790 + containers, 462791 + directory, 462792 + filepath, 462793 + filepattern, 462794 + hspec, 462795 + HUnit, 462796 + optparse-applicative, 462797 + process, 462798 + text, 462799 + toml-reader, 462800 + }: 462801 + mkDerivation { 462802 + pname = "multidir"; 462803 + version = "0.1.0.0"; 462804 + sha256 = "04xhsp0d83ims32fgyr92l71gc1cja9hcw5gw2d0iqi81iysfvbg"; 462805 + isLibrary = true; 462806 + isExecutable = true; 462807 + libraryHaskellDepends = [ 462808 + base 462809 + cond 462810 + containers 462811 + directory 462812 + filepath 462813 + filepattern 462814 + optparse-applicative 462815 + process 462816 + text 462817 + toml-reader 462818 + ]; 462819 + executableHaskellDepends = [ 462820 + base 462821 + cond 462822 + containers 462823 + directory 462824 + filepath 462825 + filepattern 462826 + optparse-applicative 462827 + process 462828 + text 462829 + toml-reader 462830 + ]; 462831 + testHaskellDepends = [ 462832 + base 462833 + cond 462834 + containers 462835 + directory 462836 + filepath 462837 + filepattern 462838 + hspec 462839 + HUnit 462840 + optparse-applicative 462841 + process 462842 + text 462843 + toml-reader 462844 + ]; 462845 + description = "Simple tool for running commands in multiple directories"; 462846 + license = lib.licenses.bsd3; 462847 + hydraPlatforms = lib.platforms.none; 462848 + mainProgram = "muld"; 462849 + broken = true; 462850 + } 462851 + ) { }; 462852 + 461552 462853 "multifile" = callPackage ( 461553 462854 { 461554 462855 mkDerivation, ··· 464156 465457 }: 464157 465458 mkDerivation { 464158 465459 pname = "mvc-updates"; 464159 - version = "1.2.0"; 464160 - sha256 = "125bwc79qcmwb8dn8yqkrxlbqf3vwdzhjx66c69j2jbrp70061n6"; 464161 - revision = "2"; 464162 - editedCabalFile = "1al0sfcnyrrqyxlm3rg1zwg2iyk9am1j80g37x6hcg5prxqx98m0"; 465460 + version = "1.2.1"; 465461 + sha256 = "1x4v5c0fnvb42smhzbf0ra1w6y3rc8cynmy74q0xi7zw40y70f20"; 464163 465462 libraryHaskellDepends = [ 464164 465463 async 464165 465464 base ··· 464364 465663 ]; 464365 465664 description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; 464366 465665 license = lib.licenses.bsd3; 464367 - hydraPlatforms = lib.platforms.none; 464368 465666 } 464369 465667 ) { }; 464370 465668 ··· 467752 469050 }: 467753 469051 mkDerivation { 467754 469052 pname = "natural-arithmetic"; 467755 - version = "0.2.1.0"; 467756 - sha256 = "17kd0216k0rqfisdd7rad3cv3qg0jyvd146k3gg1pv9y8waf5rin"; 469053 + version = "0.2.2.0"; 469054 + sha256 = "1ps6lcp0s3izphp3hx73p2v91cs1r2iz4rh1hwrmxd9pfar815ya"; 467757 469055 libraryHaskellDepends = [ 467758 469056 base 467759 469057 unlifted ··· 468714 470012 license = lib.licenses.bsd3; 468715 470013 hydraPlatforms = lib.platforms.none; 468716 470014 mainProgram = "example-app"; 470015 + broken = true; 470016 + } 470017 + ) { }; 470018 + 470019 + "nerd-font-icons" = callPackage ( 470020 + { mkDerivation, base }: 470021 + mkDerivation { 470022 + pname = "nerd-font-icons"; 470023 + version = "0.1.0.0"; 470024 + sha256 = "0nbgb9lz0ibha72gyh0q86rbssik2fxphab6f1asm0r5kz5va3ly"; 470025 + libraryHaskellDepends = [ base ]; 470026 + description = "Nerd Font Icons for use in haskell"; 470027 + license = lib.licenses.mit; 470028 + hydraPlatforms = lib.platforms.none; 468717 470029 broken = true; 468718 470030 } 468719 470031 ) { }; ··· 471319 472631 }: 471320 472632 mkDerivation { 471321 472633 pname = "network-control"; 471322 - version = "0.1.5"; 471323 - sha256 = "0ir2v3ys923m7jqagvbi327d3gdnrccdvhkf2jzsljazn35l91qc"; 471324 - libraryHaskellDepends = [ 471325 - base 471326 - psqueues 471327 - unix-time 471328 - ]; 471329 - testHaskellDepends = [ 471330 - base 471331 - hspec 471332 - pretty-simple 471333 - QuickCheck 471334 - text 471335 - ]; 471336 - testToolDepends = [ hspec-discover ]; 471337 - description = "Library to control network protocols"; 471338 - license = lib.licenses.bsd3; 471339 - } 471340 - ) { }; 471341 - 471342 - "network-control_0_1_6" = callPackage ( 471343 - { 471344 - mkDerivation, 471345 - base, 471346 - hspec, 471347 - hspec-discover, 471348 - pretty-simple, 471349 - psqueues, 471350 - QuickCheck, 471351 - text, 471352 - unix-time, 471353 - }: 471354 - mkDerivation { 471355 - pname = "network-control"; 471356 472634 version = "0.1.6"; 471357 472635 sha256 = "18cgla6n1s773zzbk9h5lgx36bb52if44h8m3xs5w0b22jnql9gl"; 471358 472636 libraryHaskellDepends = [ ··· 471370 472648 testToolDepends = [ hspec-discover ]; 471371 472649 description = "Library to control network protocols"; 471372 472650 license = lib.licenses.bsd3; 471373 - hydraPlatforms = lib.platforms.none; 471374 472651 } 471375 472652 ) { }; 471376 472653 ··· 476669 477946 }: 476670 477947 mkDerivation { 476671 477948 pname = "no-recursion"; 476672 - version = "0.1.2.2"; 476673 - sha256 = "0vdj0j29xlynv2n1z9gqk7yxh3kfynpyvj59kmpkbg8z3qhcrcg3"; 477949 + version = "0.1.2.3"; 477950 + sha256 = "1zds0fz29k5iypksqkizhggsxw1ndc5y8ilf4j9hsm084kqidfhz"; 476674 477951 setupHaskellDepends = [ 476675 477952 base 476676 477953 Cabal ··· 484753 486030 }: 484754 486031 mkDerivation { 484755 486032 pname = "om-elm"; 484756 - version = "2.0.0.7"; 484757 - sha256 = "0xf775929s76galzqfaq2zx0ks1wkcfqzqi3a1z3zg6w4fswiw67"; 486033 + version = "2.0.0.8"; 486034 + sha256 = "094yrsxv9fnag30azj0gm4vnb5s29516q35pgr7jyz13i06fjx5w"; 484758 486035 libraryHaskellDepends = [ 484759 486036 base 484760 486037 bytestring ··· 484784 486061 }: 484785 486062 mkDerivation { 484786 486063 pname = "om-fail"; 484787 - version = "0.1.0.5"; 484788 - sha256 = "0a3h016vy2czq0bdkagljz9dpy1133ym07a61sk5drq76jcq5byn"; 486064 + version = "0.1.0.6"; 486065 + sha256 = "1zxb3k29wvr97bdirvnnansj3insvwc0zsi6p9smblrdasydl117"; 484789 486066 libraryHaskellDepends = [ 484790 486067 base 484791 486068 monad-logger ··· 484811 486088 }: 484812 486089 mkDerivation { 484813 486090 pname = "om-fork"; 484814 - version = "0.7.1.11"; 484815 - sha256 = "03gln694nn2v16ccljgqr9a795skw5js9j76mamc803qgnrdsdj1"; 486091 + version = "0.7.1.12"; 486092 + sha256 = "1zrq2mwpx9f8z4x2xkp33zqzbiczgw92xdfxd3xwjfc8r0rag0p6"; 484816 486093 libraryHaskellDepends = [ 484817 486094 aeson 484818 486095 base ··· 484867 486144 }: 484868 486145 mkDerivation { 484869 486146 pname = "om-http"; 484870 - version = "0.5.0.0"; 484871 - sha256 = "165m5dijcwa9knrn4lfk86l8gs30b98xbmp75vm6y0wc3my0dhsq"; 486147 + version = "0.5.0.1"; 486148 + sha256 = "0sq6kjb0axdcx0j2cfmrx1vfl56svcs5rgp9gk4nnhysm9zcslky"; 484872 486149 libraryHaskellDepends = [ 484873 486150 aeson 484874 486151 async ··· 485044 486321 ]; 485045 486322 description = "Legion Framework"; 485046 486323 license = lib.licenses.mit; 485047 - hydraPlatforms = lib.platforms.none; 485048 486324 } 485049 486325 ) { }; 485050 486326 ··· 485063 486339 }: 485064 486340 mkDerivation { 485065 486341 pname = "om-logging"; 485066 - version = "1.1.0.9"; 485067 - sha256 = "0k8yw4v1xxh2vm5507wxxfl3dvxfaz8nip3apri22aqyxjg05w45"; 486342 + version = "1.1.0.10"; 486343 + sha256 = "0s2yj64mvqf7agm8xlvrb407ir4i89giyd70475yaza6nixmm9r5"; 485068 486344 libraryHaskellDepends = [ 485069 486345 aeson 485070 486346 base ··· 485092 486368 }: 485093 486369 mkDerivation { 485094 486370 pname = "om-plugin-imports"; 485095 - version = "0.4.0.1.9.10"; 485096 - sha256 = "1qkgfxsd4vpxd0fbhkfz5636zc5mbhcxh80h98h67hdxkkc69ad4"; 486371 + version = "0.4.0.1.9.12"; 486372 + sha256 = "0jywx9qz6xws3504z6gby42zzz9d4qj9v62xfg9zmp0faypbbdh6"; 485097 486373 libraryHaskellDepends = [ 485098 486374 base 485099 486375 containers ··· 485103 486379 ]; 485104 486380 description = "Plugin-based explicit import generation"; 485105 486381 license = lib.licenses.mit; 486382 + hydraPlatforms = lib.platforms.none; 486383 + broken = true; 485106 486384 } 485107 486385 ) { }; 485108 486386 ··· 485115 486393 }: 485116 486394 mkDerivation { 485117 486395 pname = "om-show"; 485118 - version = "0.1.2.10"; 485119 - sha256 = "1ngwdci1pqf2wmhqfn54372wv7w7v8p5hr56k37kb0aslkdci8qa"; 486396 + version = "0.1.2.11"; 486397 + sha256 = "1abp4yygjcgpr92d767fgzqn1zp67j71mhfwaq6rvsbvqy3pi5zi"; 485120 486398 libraryHaskellDepends = [ 485121 486399 aeson 485122 486400 base ··· 485152 486430 }: 485153 486431 mkDerivation { 485154 486432 pname = "om-socket"; 485155 - version = "1.0.0.3"; 485156 - sha256 = "0slvcxz4s81w8wagqyrlawlss4sgwcxqnpjaayvxgf8d0rq5add6"; 486433 + version = "1.0.0.4"; 486434 + sha256 = "01lxvngyx28qk3s4f7ix0grl45jy3zgki1l32dkqan69nklzzgln"; 485157 486435 libraryHaskellDepends = [ 485158 486436 aeson 485159 486437 base ··· 485188 486466 ]; 485189 486467 description = "Socket utilities"; 485190 486468 license = lib.licenses.mit; 485191 - hydraPlatforms = lib.platforms.none; 485192 - broken = true; 485193 486469 } 485194 486470 ) { }; 485195 486471 ··· 485205 486481 }: 485206 486482 mkDerivation { 485207 486483 pname = "om-time"; 485208 - version = "0.3.1.0"; 485209 - sha256 = "1ri7hp3jb0nnc5j02n5wh0ninsng58w79hx9rmmq9z972m4vbqfn"; 486484 + version = "0.3.1.1"; 486485 + sha256 = "03g2yipal5v5rnvzrljn0gvy3jn6fk0hqwy84vi13qwy6crbxnrr"; 485210 486486 libraryHaskellDepends = [ 485211 486487 aeson 485212 486488 base ··· 486497 487773 } 486498 487774 ) { }; 486499 487775 486500 - "open-browser_0_3_0_1" = callPackage ( 487776 + "open-browser_0_4_0_0" = callPackage ( 486501 487777 { 486502 487778 mkDerivation, 486503 487779 base, ··· 486505 487781 }: 486506 487782 mkDerivation { 486507 487783 pname = "open-browser"; 486508 - version = "0.3.0.1"; 486509 - sha256 = "0gnckivfyv131f342nziyj0p57m9arq0ds8b6jylxga31snj3icn"; 487784 + version = "0.4.0.0"; 487785 + sha256 = "0pgqrdwmzw70yfqvbssc01b8n3aqw3l6a92j16vby9x0cv803zyy"; 486510 487786 isLibrary = true; 486511 487787 isExecutable = true; 486512 487788 libraryHaskellDepends = [ ··· 486818 488094 }: 486819 488095 mkDerivation { 486820 488096 pname = "openai"; 486821 - version = "1.0.1"; 486822 - sha256 = "0yjy6a77ss20clfga83785asj32752v315rv93043927lsjacnh5"; 488097 + version = "1.1.0"; 488098 + sha256 = "1kja27qbdy5zxczswrn53k1lgxf2y9hw77pj4jlc7arkpl6nndai"; 486823 488099 isLibrary = true; 486824 488100 isExecutable = true; 486825 488101 libraryHaskellDepends = [ ··· 487356 488632 }: 487357 488633 mkDerivation { 487358 488634 pname = "openapi3-code-generator"; 487359 - version = "0.1.0.7"; 487360 - sha256 = "18g7xca0q4l4zn5k1wvx3zvnvidagab7vjwb4g68xy18rxh3q2ap"; 488635 + version = "0.2.0.0"; 488636 + sha256 = "13nfdm8qvajcls4dmrrimr5c7py6d58jywmlz2c7shf9rg0mckdq"; 487361 488637 isLibrary = true; 487362 488638 isExecutable = true; 487363 488639 libraryHaskellDepends = [ ··· 487450 488726 ]; 487451 488727 description = "OpenAPI3 Haskell Client Code Generator"; 487452 488728 license = lib.licenses.mit; 487453 - hydraPlatforms = lib.platforms.none; 487454 488729 mainProgram = "openapi3-code-generator-exe"; 487455 - broken = true; 487456 488730 } 487457 488731 ) { }; 487458 488732 ··· 487465 488739 }: 487466 488740 mkDerivation { 487467 488741 pname = "opencascade-hs"; 487468 - version = "0.4.0.0"; 487469 - sha256 = "1dhasjjhcg54qihcihid69z70l75dn7xsbsd765lsgzc35m1qbrl"; 488742 + version = "0.5.0.0"; 488743 + sha256 = "104h4fzzyw457g2lxvhshaw711bc6zl3gd5zwg629hwqwm96b356"; 487470 488744 libraryHaskellDepends = [ 487471 488745 base 487472 488746 resourcet ··· 490522 491796 } 490523 491797 ) { }; 490524 491798 491799 + "optima_0_4_0_6" = callPackage ( 491800 + { 491801 + mkDerivation, 491802 + attoparsec, 491803 + attoparsec-data, 491804 + base, 491805 + optparse-applicative, 491806 + rerebase, 491807 + text, 491808 + text-builder, 491809 + }: 491810 + mkDerivation { 491811 + pname = "optima"; 491812 + version = "0.4.0.6"; 491813 + sha256 = "06wy9d3zidly70d3n9bbxfl9yx2hx03xw8k9p8vhjb0xj526vpgk"; 491814 + libraryHaskellDepends = [ 491815 + attoparsec 491816 + attoparsec-data 491817 + base 491818 + optparse-applicative 491819 + text 491820 + text-builder 491821 + ]; 491822 + testHaskellDepends = [ 491823 + attoparsec-data 491824 + rerebase 491825 + ]; 491826 + description = "Simple command line interface arguments parser"; 491827 + license = lib.licenses.mit; 491828 + hydraPlatforms = lib.platforms.none; 491829 + } 491830 + ) { }; 491831 + 490525 491832 "optima-for-hasql" = callPackage ( 490526 491833 { 490527 491834 mkDerivation, ··· 494636 495943 bytestring, 494637 495944 bytestring-strict-builder, 494638 495945 cassava, 494639 - Chart, 494640 - Chart-diagrams, 494641 495946 criterion, 494642 495947 deepseq, 494643 495948 directory, ··· 494647 495952 listsafe, 494648 495953 mtl, 494649 495954 optparse-applicative, 495955 + process, 495956 + scientific, 494650 495957 split, 494651 495958 template-haskell, 494652 - time, 494653 495959 vector, 494654 495960 }: 494655 495961 mkDerivation { 494656 495962 pname = "packed-data"; 494657 - version = "0.1.0.1"; 494658 - sha256 = "0hpqqvxhf6jy6g9g7ngy2dirc9ppbakgmylikd10xa8rsy5ff7sy"; 495963 + version = "0.1.0.3"; 495964 + sha256 = "1h0aqcpfygj29mij5ln7zaypf4a6v37ycnlhh5shb7pvh0nfajn3"; 494659 495965 isLibrary = true; 494660 495966 isExecutable = true; 494661 495967 libraryHaskellDepends = [ ··· 494667 495973 mtl 494668 495974 template-haskell 494669 495975 ]; 494670 - executableHaskellDepends = [ 494671 - base 494672 - deepseq 494673 - mtl 494674 - time 494675 - ]; 495976 + executableHaskellDepends = [ base ]; 494676 495977 testHaskellDepends = [ 494677 495978 base 494678 495979 bytestring ··· 494684 495985 base 494685 495986 bytestring 494686 495987 cassava 494687 - Chart 494688 - Chart-diagrams 494689 495988 criterion 494690 495989 deepseq 494691 495990 directory ··· 494693 495992 listsafe 494694 495993 mtl 494695 495994 optparse-applicative 495995 + process 495996 + scientific 494696 495997 split 494697 495998 vector 494698 495999 ]; 494699 496000 license = lib.licenses.bsd3; 494700 - mainProgram = "packed-exe"; 496001 + mainProgram = "examples"; 494701 496002 } 494702 496003 ) { }; 494703 496004 ··· 498663 499964 }: 498664 499965 mkDerivation { 498665 499966 pname = "pantry"; 498666 - version = "0.10.0"; 498667 - sha256 = "1f0ck7j82km4sy1ia2iqv9aqkdr3p2h8sarbksrsx2dq68552xym"; 498668 - revision = "3"; 498669 - editedCabalFile = "1icnsp0j6dbbqsp2wkxbq0nwfv55fl95anh0xsl6x5gx2q4wg1gc"; 499967 + version = "0.10.1"; 499968 + sha256 = "1cn9lzgjk4gw8sk5pmzkcs9xwnrbqs70vslfcfv1cyfmdgh0w2il"; 498670 499969 isLibrary = true; 498671 499970 isExecutable = true; 498672 499971 libraryHaskellDepends = [ ··· 501488 502787 }: 501489 502788 mkDerivation { 501490 502789 pname = "parser-regex"; 501491 - version = "0.2.0.2"; 501492 - sha256 = "1aqx5krvmz2mdwlpbpnwlk50c3v02lxarv6p2si23qy26v7ra22f"; 502790 + version = "0.3.0.0"; 502791 + sha256 = "1vf8r4wwx97cj2dwd20znqbzp4svczw1hk9rjhpqh257l7b217pi"; 501493 502792 libraryHaskellDepends = [ 501494 502793 base 501495 502794 containers ··· 503032 504331 }: 503033 504332 mkDerivation { 503034 504333 pname = "patat"; 503035 - version = "0.14.2.0"; 503036 - sha256 = "0shfw876xfw6xcaf4xjjj8gq2ky7k16fl6wvas952j87b5bhd7gf"; 504334 + version = "0.15.0.0"; 504335 + sha256 = "1vamp3m0567fvm1ghjjjmhpfw0pbp2aardhgr1n0fsmamjq8zgbz"; 503037 504336 isLibrary = true; 503038 504337 isExecutable = true; 503039 504338 libraryHaskellDepends = [ ··· 507945 509244 pname = "persistent"; 507946 509245 version = "2.14.6.3"; 507947 509246 sha256 = "1nqmd1ml1s4cm9hwfz9cz5qj4i9zm8ip69gmgysfgbs0h64f7w2d"; 509247 + revision = "1"; 509248 + editedCabalFile = "1rx07qblwxaq9fcl8z66lvmqd48widnlqcg3hgdd8ni9yrvwfmxi"; 507948 509249 libraryHaskellDepends = [ 507949 509250 aeson 507950 509251 attoparsec ··· 508024 509325 } 508025 509326 ) { }; 508026 509327 508027 - "persistent_2_15_0_1" = callPackage ( 509328 + "persistent_2_15_1_0" = callPackage ( 508028 509329 { 508029 509330 mkDerivation, 508030 509331 aeson, ··· 508066 509367 }: 508067 509368 mkDerivation { 508068 509369 pname = "persistent"; 508069 - version = "2.15.0.1"; 508070 - sha256 = "12lb7b3yx07yc8adhm8f58wspnngy9x6djnly7032r01pm3w9xfj"; 509370 + version = "2.15.1.0"; 509371 + sha256 = "142c91xplnm9fbzm7gkd1dl3p5da74nxr4bv5a921hhpsrwm0p9g"; 508071 509372 libraryHaskellDepends = [ 508072 509373 aeson 508073 509374 attoparsec ··· 509836 511137 }: 509837 511138 mkDerivation { 509838 511139 pname = "persistent-sql-lifted"; 509839 - version = "0.4.2.0"; 509840 - sha256 = "1yd0fx23ww2q4dgjzqk9dicqzggcxh27jgx26hy7wd6mj88hcbh5"; 511140 + version = "0.4.3.1"; 511141 + sha256 = "1lcr99d84pyvcz7b0vln2q1ai98g8n44afp0xb0zfgmhal2zidic"; 509841 511142 libraryHaskellDepends = [ 509842 511143 annotated-exception 509843 511144 base ··· 510138 511439 pname = "persistent-typed-db"; 510139 511440 version = "0.1.0.7"; 510140 511441 sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; 511442 + revision = "1"; 511443 + editedCabalFile = "19l1nfd82l8lsjsi00virsapwlnany5cdwgzw9hmm9bkwxfsk9v8"; 510141 511444 libraryHaskellDepends = [ 510142 511445 aeson 510143 511446 base ··· 514485 515788 } 514486 515789 ) { }; 514487 515790 515791 + "pinecone" = callPackage ( 515792 + { 515793 + mkDerivation, 515794 + aeson, 515795 + base, 515796 + containers, 515797 + http-api-data, 515798 + http-client, 515799 + http-client-tls, 515800 + scientific, 515801 + servant, 515802 + servant-client, 515803 + servant-client-core, 515804 + tasty, 515805 + tasty-hunit, 515806 + text, 515807 + time, 515808 + vector, 515809 + }: 515810 + mkDerivation { 515811 + pname = "pinecone"; 515812 + version = "1.0.0"; 515813 + sha256 = "0q30rj2rcvfmakxzra8jcywqihy6gz5r6b0jdxbjfw56m8drnc25"; 515814 + isLibrary = true; 515815 + isExecutable = true; 515816 + libraryHaskellDepends = [ 515817 + aeson 515818 + base 515819 + containers 515820 + http-api-data 515821 + http-client 515822 + http-client-tls 515823 + scientific 515824 + servant 515825 + servant-client 515826 + servant-client-core 515827 + text 515828 + time 515829 + vector 515830 + ]; 515831 + executableHaskellDepends = [ 515832 + base 515833 + text 515834 + ]; 515835 + testHaskellDepends = [ 515836 + base 515837 + tasty 515838 + tasty-hunit 515839 + text 515840 + vector 515841 + ]; 515842 + description = "Servant bindings to Pinecone"; 515843 + license = lib.licenses.bsd3; 515844 + mainProgram = "pinecone-example"; 515845 + } 515846 + ) { }; 515847 + 514488 515848 "ping" = callPackage ( 514489 515849 { 514490 515850 mkDerivation, ··· 516083 517443 pname = "pipes-http"; 516084 517444 version = "1.0.6"; 516085 517445 sha256 = "00579dpb7mh8nli5gfr100w0mrn6nvqhbj50qzxc2m5cvw4gncd2"; 516086 - revision = "3"; 516087 - editedCabalFile = "0m38lrmr356gfrv6gnrncwiy1hnh882084yn7vgmjsqssgvhbz8a"; 517446 + revision = "4"; 517447 + editedCabalFile = "10i497dksdnfayzij3dn42pnz6ldklyiz0rd6zjkpn1hfz94ygv9"; 516088 517448 libraryHaskellDepends = [ 516089 517449 base 516090 517450 bytestring ··· 521123 522483 }: 521124 522484 mkDerivation { 521125 522485 pname = "pollock"; 521126 - version = "0.1.0.2"; 521127 - sha256 = "112knjwg24mq9gigh3jmnhn3mgv51kawy0k8b7ys856429zpbflk"; 522486 + version = "0.1.0.3"; 522487 + sha256 = "14nvwjb0bsddkp34wm0cvqz7jrs4505p5c1yb2lm7fdw63mb0lb5"; 521128 522488 libraryHaskellDepends = [ 521129 522489 attoparsec 521130 522490 base ··· 526508 527868 doHaddock = false; 526509 527869 description = "low-level binding to libpq: configure based provider"; 526510 527870 license = lib.licenses.bsd3; 526511 - hydraPlatforms = lib.platforms.none; 526512 - broken = true; 526513 527871 } 526514 527872 ) { }; 526515 527873 ··· 527717 529075 }: 527718 529076 mkDerivation { 527719 529077 pname = "postgresql-syntax"; 527720 - version = "0.4.1.1"; 527721 - sha256 = "1xzvp3ix75y8f3zwpm50dz1zafbyc0x311a2fc9dxb3v4vbcvwvl"; 529078 + version = "0.4.1.2"; 529079 + sha256 = "0z2mnx8npickm5h208mqm76ybr37cmqqf3q1nfy3kh19xdgqhfy7"; 527722 529080 libraryHaskellDepends = [ 527723 529081 base 527724 529082 bytestring ··· 527742 529100 } 527743 529101 ) { }; 527744 529102 529103 + "postgresql-syntax_0_4_1_3" = callPackage ( 529104 + { 529105 + mkDerivation, 529106 + base, 529107 + bytestring, 529108 + case-insensitive, 529109 + hashable, 529110 + headed-megaparsec, 529111 + hedgehog, 529112 + megaparsec, 529113 + parser-combinators, 529114 + rerebase, 529115 + tasty, 529116 + tasty-hunit, 529117 + text, 529118 + text-builder, 529119 + unordered-containers, 529120 + }: 529121 + mkDerivation { 529122 + pname = "postgresql-syntax"; 529123 + version = "0.4.1.3"; 529124 + sha256 = "0fg4zicn3kwdvvpf3si9pi6pmnsm9k5ph3drqd57jp8xz16b1rzl"; 529125 + libraryHaskellDepends = [ 529126 + base 529127 + bytestring 529128 + case-insensitive 529129 + hashable 529130 + headed-megaparsec 529131 + megaparsec 529132 + parser-combinators 529133 + text 529134 + text-builder 529135 + unordered-containers 529136 + ]; 529137 + testHaskellDepends = [ 529138 + hedgehog 529139 + rerebase 529140 + tasty 529141 + tasty-hunit 529142 + ]; 529143 + description = "PostgreSQL AST parsing and rendering"; 529144 + license = lib.licenses.mit; 529145 + hydraPlatforms = lib.platforms.none; 529146 + } 529147 + ) { }; 529148 + 527745 529149 "postgresql-transactional" = callPackage ( 527746 529150 { 527747 529151 mkDerivation, ··· 533108 534512 mkDerivation, 533109 534513 base, 533110 534514 base-orphans, 534515 + containers, 533111 534516 deepseq, 533112 - ghc-prim, 533113 534517 QuickCheck, 533114 534518 quickcheck-classes-base, 533115 534519 tagged, ··· 533122 534526 }: 533123 534527 mkDerivation { 533124 534528 pname = "primitive"; 533125 - version = "0.9.0.0"; 533126 - sha256 = "1iwr176mx2xc96vgvzlby8z8s9d4vhbj266n89hp6kf9j794nvb9"; 533127 - revision = "2"; 533128 - editedCabalFile = "0nc7cd9921bzf31k48pnmx3k2bfaxakgv3jchn4215qzzx7by86y"; 534529 + version = "0.9.1.0"; 534530 + sha256 = "0xixplp2b5sh2sx6hqllhr8bcsd028v7ry2pibdwayrwh50xxd24"; 533129 534531 libraryHaskellDepends = [ 533130 534532 base 533131 534533 deepseq ··· 533135 534537 testHaskellDepends = [ 533136 534538 base 533137 534539 base-orphans 533138 - ghc-prim 533139 534540 QuickCheck 533140 534541 quickcheck-classes-base 533141 534542 tagged ··· 533146 534547 ]; 533147 534548 benchmarkHaskellDepends = [ 533148 534549 base 534550 + containers 533149 534551 deepseq 533150 534552 tasty-bench 533151 534553 transformers ··· 534645 536047 } 534646 536048 ) { }; 534647 536049 534648 - "process_1_6_25_0" = callPackage ( 536050 + "process_1_6_26_0" = callPackage ( 534649 536051 { 534650 536052 mkDerivation, 534651 536053 base, ··· 534656 536058 }: 534657 536059 mkDerivation { 534658 536060 pname = "process"; 534659 - version = "1.6.25.0"; 534660 - sha256 = "0rbfwyz2418nw15fb5a8l1f8vsyzcz4wjakpx49b259rdibf0vs9"; 534661 - revision = "1"; 534662 - editedCabalFile = "15ml3j10ahwmbiml8dm6llwalksclw394bmahccx4579jqavcah9"; 536061 + version = "1.6.26.0"; 536062 + sha256 = "18gxjw88qs4vgxyiq7srxmj0jy6kn2c5dwpq8a1wdgbbpwd920ys"; 534663 536063 libraryHaskellDepends = [ 534664 536064 base 534665 536065 deepseq ··· 536216 537616 criterion, 536217 537617 cryptohash-sha256, 536218 537618 curryer-rpc, 537619 + data-default, 536219 537620 data-interval, 536220 537621 deepseq, 536221 537622 deepseq-generics, ··· 536286 537687 }: 536287 537688 mkDerivation { 536288 537689 pname = "project-m36"; 536289 - version = "1.1.0"; 536290 - sha256 = "1nqdfvzq4pm8dgds0r7k5fv4sw10nfygnz0w9dvb118s14sap1fi"; 537690 + version = "1.1.1"; 537691 + sha256 = "1hn6zfnymgknvi2crn6pmr7h24dpm0wky8iq0sqi5nyzx72pilj8"; 536291 537692 isLibrary = true; 536292 537693 isExecutable = true; 536293 537694 libraryHaskellDepends = [ ··· 536371 537772 containers 536372 537773 cryptohash-sha256 536373 537774 curryer-rpc 537775 + data-default 536374 537776 data-interval 536375 537777 deepseq 536376 537778 deepseq-generics 536377 537779 directory 536378 537780 either 537781 + exceptions 536379 537782 filepath 536380 537783 ghc 536381 537784 ghc-paths ··· 537684 539087 }: 537685 539088 mkDerivation { 537686 539089 pname = "property-matchers"; 537687 - version = "0.4.0.0"; 537688 - sha256 = "04gfxskd5gagpfh21532d0kk89zrkmgxky3j9aqlw6s90ba02pr5"; 539090 + version = "0.7.0.0"; 539091 + sha256 = "0qry7qrf6dm86cvh3s2z9zdjdi7wpxmvxvrlhsl7sn3ybwphnk0f"; 537689 539092 libraryHaskellDepends = [ 537690 539093 adjunctions 537691 539094 base ··· 539840 541243 dlist, 539841 541244 hashable, 539842 541245 HUnit, 541246 + integer-logarithms, 539843 541247 megaparsec, 539844 541248 parsec, 539845 541249 QuickCheck, ··· 539852 541256 }: 539853 541257 mkDerivation { 539854 541258 pname = "pseudo-boolean"; 539855 - version = "0.1.11.0"; 539856 - sha256 = "04hkg7nlyrziq3pm44sqr6b5zjb5x3d70xqzblp3h7f1sc6839rr"; 539857 - revision = "2"; 539858 - editedCabalFile = "10rrnb6ih4lhck257iz0sx7az36ijcxiaxn29cnjvbc2ngv5m8v9"; 541259 + version = "0.1.12.0"; 541260 + sha256 = "1imnlqbfzqk80zkcbqqprfyynh1b10akgiafpbqd1cp7abgz3w5m"; 539859 541261 libraryHaskellDepends = [ 539860 541262 attoparsec 539861 541263 base ··· 539865 541267 deepseq 539866 541268 dlist 539867 541269 hashable 541270 + integer-logarithms 539868 541271 megaparsec 539869 541272 parsec 539870 541273 void ··· 546074 547477 }: 546075 547478 mkDerivation { 546076 547479 pname = "quic"; 546077 - version = "0.2.7"; 546078 - sha256 = "0x6x7xdknwa80ikclfn8mq8jyqgy73l0g8qy82jcgj3jqd4631zq"; 546079 - revision = "1"; 546080 - editedCabalFile = "1yvg2v2g1bv8yjc9qlpm60qg97443c0d035wb6blrp3xd6d885ms"; 547480 + version = "0.2.10"; 547481 + sha256 = "1ki26dcd3bkgiln8ww52w1azvjpw2c32cv9lczzwijq50hnkqs93"; 546081 547482 isLibrary = true; 546082 547483 isExecutable = true; 546083 547484 libraryHaskellDepends = [ ··· 546121 547522 testToolDepends = [ hspec-discover ]; 546122 547523 description = "QUIC"; 546123 547524 license = lib.licenses.bsd3; 547525 + hydraPlatforms = lib.platforms.none; 547526 + broken = true; 546124 547527 } 546125 547528 ) { }; 546126 547529 ··· 546728 548131 pname = "quickcheck-lockstep"; 546729 548132 version = "0.6.0"; 546730 548133 sha256 = "1s1z146l00v5hlcmwq9w9dpvs0mblld8h15xicxb619fbl1hrg5x"; 548134 + revision = "1"; 548135 + editedCabalFile = "00mlph661br03khrpzl9f1wvwmr2mrv6y3hqp7i371rm1dl83xd5"; 546731 548136 libraryHaskellDepends = [ 546732 548137 base 546733 548138 constraints ··· 550218 551623 } 550219 551624 ) { }; 550220 551625 550221 - "random_1_3_0" = callPackage ( 551626 + "random_1_3_1" = callPackage ( 550222 551627 { 550223 551628 mkDerivation, 550224 551629 base, ··· 550242 551647 }: 550243 551648 mkDerivation { 550244 551649 pname = "random"; 550245 - version = "1.3.0"; 550246 - sha256 = "1cgisk7y2r58lai3q61jx2fis2aiqg75y7qm3zipgmr5avk6fl3b"; 551650 + version = "1.3.1"; 551651 + sha256 = "0d8snwlrq8x4r197q1igpvwhrdbyc9wfry3qlsiczc35ya1sqh6q"; 550247 551652 libraryHaskellDepends = [ 550248 551653 base 550249 551654 bytestring ··· 558182 559587 }: 558183 559588 mkDerivation { 558184 559589 pname = "reflex-dom"; 558185 - version = "0.6.3.3"; 558186 - sha256 = "0b9mgnbgljcasd621mw5cj5g1li8dpxiksjqjk45lilzycm1xcxs"; 559590 + version = "0.6.3.4"; 559591 + sha256 = "1l6phafpnngnjj406p0k84kcfangcpf144h2w25b7gfc8ihi2vkm"; 558187 559592 isLibrary = true; 558188 559593 isExecutable = true; 558189 559594 libraryHaskellDepends = [ ··· 558394 559799 }: 558395 559800 mkDerivation { 558396 559801 pname = "reflex-dom-core"; 558397 - version = "0.8.1.2"; 558398 - sha256 = "1ljv45i2byb28963flwllzvf2k0xizpsjrkpys3qsbhipyx0gc5m"; 559802 + version = "0.8.1.3"; 559803 + sha256 = "0g2sg068mchc0di8agxdcj1wxrc1qfhcnz4qcl3p0sc6h298sf0n"; 558399 559804 libraryHaskellDepends = [ 558400 559805 aeson 558401 559806 base ··· 562843 564248 description = "The connector of relational-record and postgresql-pure"; 562844 564249 license = lib.licenses.bsd3; 562845 564250 hydraPlatforms = lib.platforms.none; 564251 + broken = true; 562846 564252 } 562847 564253 ) { }; 562848 564254 ··· 565143 566549 pname = "req"; 565144 566550 version = "3.13.4"; 565145 566551 sha256 = "0s80kl29b7d35v044yvkfa6ja40k4sm3wh26qpnscqzv2n6w8zzk"; 565146 - revision = "3"; 565147 - editedCabalFile = "1vfy9adansxpk8ldmmv8iycpgdnf5wdipfxvvpricjsj6lr0zv6k"; 566552 + revision = "4"; 566553 + editedCabalFile = "14r4xkchdpwcvsmsqx6wq77wj79yd6xa0lxf5rphl21gpsdcym4k"; 565148 566554 enableSeparateDataOutput = true; 565149 566555 libraryHaskellDepends = [ 565150 566556 aeson ··· 588087 589493 hspec-discover, 588088 589494 hspec-wai, 588089 589495 http-client, 589496 + http-conduit, 589497 + http-media, 588090 589498 http-types, 588091 589499 mockery, 588092 589500 mtl, 588093 589501 network, 589502 + pretty, 588094 589503 process, 588095 589504 QuickCheck, 588096 589505 stm, ··· 588099 589508 time, 588100 589509 transformers, 588101 589510 unix, 589511 + vcr, 588102 589512 wai, 589513 + wai-extra, 588103 589514 warp, 588104 589515 yaml, 588105 589516 }: 588106 589517 mkDerivation { 588107 589518 pname = "sensei"; 588108 - version = "0.8.0"; 588109 - sha256 = "0qmi9qzfbsx9xxkczwjx1pzwmkwpl1dq1c80f4nmjgqh4mm21aw5"; 588110 - revision = "1"; 588111 - editedCabalFile = "1vafgazhxamvwp1ihjhyn2q6v8y57a6hzjvahd10bxdb1ng3mlbx"; 588112 - isLibrary = false; 589519 + version = "0.9.0"; 589520 + sha256 = "0fw6s5c5fmiji9rw84i891zfbvzw6w2cx6jdhdkbijx1lksnh9mj"; 589521 + isLibrary = true; 588113 589522 isExecutable = true; 588114 - enableSeparateDataOutput = true; 589523 + libraryHaskellDepends = [ 589524 + aeson 589525 + ansi-terminal 589526 + async 589527 + base 589528 + bytestring 589529 + casing 589530 + containers 589531 + directory 589532 + filepath 589533 + fsnotify 589534 + http-client 589535 + http-conduit 589536 + http-media 589537 + http-types 589538 + mtl 589539 + network 589540 + pretty 589541 + process 589542 + stm 589543 + temporary 589544 + text 589545 + time 589546 + transformers 589547 + unix 589548 + wai 589549 + warp 589550 + yaml 589551 + ]; 588115 589552 executableHaskellDepends = [ 588116 589553 aeson 588117 589554 ansi-terminal ··· 588124 589561 filepath 588125 589562 fsnotify 588126 589563 http-client 589564 + http-conduit 589565 + http-media 588127 589566 http-types 588128 589567 mtl 588129 589568 network 589569 + pretty 588130 589570 process 588131 589571 stm 589572 + temporary 588132 589573 text 588133 589574 time 588134 589575 transformers ··· 588152 589593 hspec-contrib 588153 589594 hspec-wai 588154 589595 http-client 589596 + http-conduit 589597 + http-media 588155 589598 http-types 588156 589599 mockery 588157 589600 mtl 588158 589601 network 589602 + pretty 588159 589603 process 588160 589604 QuickCheck 588161 589605 stm ··· 588164 589608 time 588165 589609 transformers 588166 589610 unix 589611 + vcr 588167 589612 wai 589613 + wai-extra 588168 589614 warp 588169 589615 yaml 588170 589616 ]; ··· 592431 593877 pname = "servant-event-stream"; 592432 593878 version = "0.3.0.1"; 592433 593879 sha256 = "1nd9v3dmpnqwj63psm6zikgcd635fc80a7bhn0azzlgi551s5kf2"; 593880 + revision = "1"; 593881 + editedCabalFile = "1dw8rknp2a2b92ri6f4qgvz93r99c7jzrhdmll3n7kkz0lyk9z28"; 592434 593882 libraryHaskellDepends = [ 592435 593883 base 592436 593884 bytestring ··· 605765 607213 } 605766 607214 ) { }; 605767 607215 607216 + "simple-get-opt_0_4" = callPackage ( 607217 + { mkDerivation, base }: 607218 + mkDerivation { 607219 + pname = "simple-get-opt"; 607220 + version = "0.4"; 607221 + sha256 = "0xr5gi22ifq6nw0q0w1rf66djsns4gfv2l9yjvxhbxr4j8bqmwik"; 607222 + libraryHaskellDepends = [ base ]; 607223 + description = "A simple library for processing command-line options"; 607224 + license = lib.licenses.bsd3; 607225 + hydraPlatforms = lib.platforms.none; 607226 + } 607227 + ) { }; 607228 + 605768 607229 "simple-get-opt" = callPackage ( 605769 607230 { mkDerivation, base }: 605770 607231 mkDerivation { ··· 609627 611088 ]; 609628 611089 description = "A very quick-and-dirty WebSocket server"; 609629 611090 license = lib.licenses.bsd3; 609630 - hydraPlatforms = lib.platforms.none; 609631 - broken = true; 609632 611091 } 609633 611092 ) { }; 609634 611093 ··· 620440 621899 } 620441 621900 ) { }; 620442 621901 621902 + "sparse-set" = callPackage ( 621903 + { 621904 + mkDerivation, 621905 + base, 621906 + criterion, 621907 + deepseq, 621908 + sparse-vector, 621909 + vector, 621910 + }: 621911 + mkDerivation { 621912 + pname = "sparse-set"; 621913 + version = "0.1.0"; 621914 + sha256 = "0yy5n4dli33s6hqlpaifi7p81bp656lymlk3zfw97ijz8ac07dsn"; 621915 + isLibrary = true; 621916 + isExecutable = true; 621917 + libraryHaskellDepends = [ 621918 + base 621919 + deepseq 621920 + sparse-vector 621921 + vector 621922 + ]; 621923 + executableHaskellDepends = [ base ]; 621924 + testHaskellDepends = [ base ]; 621925 + benchmarkHaskellDepends = [ 621926 + base 621927 + criterion 621928 + deepseq 621929 + vector 621930 + ]; 621931 + description = "Sparse set data structure"; 621932 + license = lib.licenses.bsd3; 621933 + mainProgram = "sparse-set"; 621934 + } 621935 + ) { }; 621936 + 620443 621937 "sparse-tensor" = callPackage ( 620444 621938 { 620445 621939 mkDerivation, ··· 620498 621992 } 620499 621993 ) { }; 620500 621994 621995 + "sparse-vector" = callPackage ( 621996 + { 621997 + mkDerivation, 621998 + base, 621999 + deepseq, 622000 + hspec, 622001 + mtl, 622002 + vector, 622003 + }: 622004 + mkDerivation { 622005 + pname = "sparse-vector"; 622006 + version = "0.1.0"; 622007 + sha256 = "0q01fjip1lql62kpqia23mhhv906n3hr7axs760gj7sclqgvcmyr"; 622008 + isLibrary = true; 622009 + isExecutable = true; 622010 + libraryHaskellDepends = [ 622011 + base 622012 + deepseq 622013 + mtl 622014 + vector 622015 + ]; 622016 + executableHaskellDepends = [ base ]; 622017 + testHaskellDepends = [ 622018 + base 622019 + hspec 622020 + ]; 622021 + description = "Sparse vector data structures"; 622022 + license = lib.licenses.bsd3; 622023 + mainProgram = "sparse-vector"; 622024 + } 622025 + ) { }; 622026 + 620501 622027 "sparsebit" = callPackage ( 620502 622028 { 620503 622029 mkDerivation, ··· 621180 622706 }: 621181 622707 mkDerivation { 621182 622708 pname = "specup"; 621183 - version = "0.2.0.4"; 621184 - sha256 = "1y57jx5mr1pz0zxmqg3277ba455v47s52ijnvlkr6mqiyy04rawy"; 622709 + version = "0.2.0.5"; 622710 + sha256 = "1b84drxgqaij48rwwannnkms1mzd5mw4i4r442am6wz4y7v45309"; 621185 622711 isLibrary = true; 621186 622712 isExecutable = true; 621187 622713 libraryHaskellDepends = [ ··· 624609 626135 } 624610 626136 ) { inherit (pkgs) nlopt; }; 624611 626137 624612 - "srtree_2_0_0_4" = callPackage ( 626138 + "srtree_2_0_1_2" = callPackage ( 624613 626139 { 624614 626140 mkDerivation, 624615 626141 ad, ··· 624647 626173 }: 624648 626174 mkDerivation { 624649 626175 pname = "srtree"; 624650 - version = "2.0.0.4"; 624651 - sha256 = "0k9204jjgr8h08jdqb11zi5pbvrz38638nlc0nhj7zn0nwi6nsqw"; 626176 + version = "2.0.1.2"; 626177 + sha256 = "102ii4lmix7crryci80f04mpyk2iw4wlwc81kqqq0xf9yd40ycfn"; 624652 626178 isLibrary = true; 624653 626179 isExecutable = true; 624654 626180 libraryHaskellDepends = [ ··· 631143 632669 ]; 631144 632670 description = "An implementation of a real-time concurrent queue"; 631145 632671 license = lib.licenses.mit; 631146 - hydraPlatforms = lib.platforms.none; 631147 - broken = true; 631148 632672 } 631149 632673 ) { }; 631150 632674 ··· 635715 637239 pname = "string-interpolate"; 635716 637240 version = "0.3.4.0"; 635717 637241 sha256 = "13hb3spabggr6gsn9xhwpwldjvpl2l7z4lgssis82c40n108b0w8"; 635718 - revision = "1"; 635719 - editedCabalFile = "164afgw0mxnyx5vjwshxphzkw1c4wqm93f3r89rwa5f3w93js7d2"; 637242 + revision = "2"; 637243 + editedCabalFile = "0mw6ws7ixdcfhn7pkgci8v1pk26wnid123pi5f1y88hnmnrzs13k"; 635720 637244 libraryHaskellDepends = [ 635721 637245 base 635722 637246 bytestring ··· 635900 637424 }: 635901 637425 mkDerivation { 635902 637426 pname = "string-random"; 635903 - version = "0.1.4.4"; 635904 - sha256 = "03bqbmijqmggc2dvl20an79f75z1bh15zfjndpc08sv3nnw1fz5c"; 637427 + version = "0.1.4.5"; 637428 + sha256 = "1k5kwr8q33c7ziwcwgi4v8srnpbw72ar7immx72mh4h2pkqmnmfy"; 635905 637429 isLibrary = true; 635906 637430 isExecutable = true; 635907 637431 libraryHaskellDepends = [ ··· 638179 639703 ]; 638180 639704 description = "Haskell code prettifier"; 638181 639705 license = lib.licenses.bsd3; 639706 + mainProgram = "stylish-haskell"; 639707 + } 639708 + ) { }; 639709 + 639710 + "stylish-haskell_0_15_1_0" = callPackage ( 639711 + { 639712 + mkDerivation, 639713 + aeson, 639714 + base, 639715 + bytestring, 639716 + Cabal, 639717 + containers, 639718 + directory, 639719 + file-embed, 639720 + filepath, 639721 + ghc-lib-parser, 639722 + ghc-lib-parser-ex, 639723 + HsYAML, 639724 + HsYAML-aeson, 639725 + HUnit, 639726 + mtl, 639727 + optparse-applicative, 639728 + random, 639729 + regex-tdfa, 639730 + strict, 639731 + syb, 639732 + test-framework, 639733 + test-framework-hunit, 639734 + text, 639735 + }: 639736 + mkDerivation { 639737 + pname = "stylish-haskell"; 639738 + version = "0.15.1.0"; 639739 + sha256 = "06y6f7bv5j5k7q81194v9jqcbmmqcv7h8ii3lq1783bpfnyd6h19"; 639740 + isLibrary = true; 639741 + isExecutable = true; 639742 + libraryHaskellDepends = [ 639743 + aeson 639744 + base 639745 + bytestring 639746 + Cabal 639747 + containers 639748 + directory 639749 + file-embed 639750 + filepath 639751 + ghc-lib-parser 639752 + ghc-lib-parser-ex 639753 + HsYAML 639754 + HsYAML-aeson 639755 + mtl 639756 + regex-tdfa 639757 + syb 639758 + text 639759 + ]; 639760 + executableHaskellDepends = [ 639761 + aeson 639762 + base 639763 + bytestring 639764 + Cabal 639765 + containers 639766 + directory 639767 + file-embed 639768 + filepath 639769 + ghc-lib-parser 639770 + ghc-lib-parser-ex 639771 + HsYAML 639772 + HsYAML-aeson 639773 + mtl 639774 + optparse-applicative 639775 + regex-tdfa 639776 + strict 639777 + syb 639778 + text 639779 + ]; 639780 + testHaskellDepends = [ 639781 + aeson 639782 + base 639783 + bytestring 639784 + Cabal 639785 + containers 639786 + directory 639787 + file-embed 639788 + filepath 639789 + ghc-lib-parser 639790 + ghc-lib-parser-ex 639791 + HsYAML 639792 + HsYAML-aeson 639793 + HUnit 639794 + mtl 639795 + random 639796 + regex-tdfa 639797 + syb 639798 + test-framework 639799 + test-framework-hunit 639800 + text 639801 + ]; 639802 + description = "Haskell code prettifier"; 639803 + license = lib.licenses.bsd3; 639804 + hydraPlatforms = lib.platforms.none; 638182 639805 mainProgram = "stylish-haskell"; 638183 639806 } 638184 639807 ) { }; ··· 651526 653149 }: 651527 653150 mkDerivation { 651528 653151 pname = "taskwarrior"; 651529 - version = "0.6.0.6"; 651530 - sha256 = "12kxadpdw5k702j1p1bvgjy763gdhsy9wzx249apzqjgh0x766jc"; 653152 + version = "0.6.0.7"; 653153 + sha256 = "0qajc8vbp2misk5hyfx3sxa8yjlnnwix2cib1nvd598mkfwmbm15"; 651531 653154 libraryHaskellDepends = [ 651532 653155 aeson 651533 653156 base ··· 657452 659075 }: 657453 659076 mkDerivation { 657454 659077 pname = "termbox"; 657455 - version = "2.0.0.1"; 657456 - sha256 = "0kynby25arx6hcq64cklw9qhw87qxy6vrz9z40d7k7j817gkzccq"; 657457 - revision = "1"; 657458 - editedCabalFile = "049mnzqwdsxa9ninv38nbbmwfh092wgp055nq4fkl97g1wkmd0w7"; 659078 + version = "2.0.0.2"; 659079 + sha256 = "0r6nfw75k3qbbmihm9l42xfc7a4ilhyv1cw8w8r4sv57pah6gcq7"; 657459 659080 libraryHaskellDepends = [ 657460 659081 base 657461 659082 termbox-bindings-hs ··· 657474 659095 }: 657475 659096 mkDerivation { 657476 659097 pname = "termbox-banana"; 657477 - version = "2.0.0"; 657478 - sha256 = "1izf90r6idfspi06q3vwjipawpdcz5ag5qw3l45khn7js520rapn"; 657479 - revision = "2"; 657480 - editedCabalFile = "19xpkxjz8ay0wzy0nszfswvkyl5m2hchg7w05izcjkwl8skm0sjp"; 659098 + version = "2.0.0.1"; 659099 + sha256 = "0cgd6qfirgbgw50sln13ql9n4rzbx1vbr9w43va2nbviliim0ark"; 657481 659100 isLibrary = true; 657482 659101 isExecutable = true; 657483 659102 libraryHaskellDepends = [ ··· 657517 659136 { mkDerivation, base }: 657518 659137 mkDerivation { 657519 659138 pname = "termbox-bindings-c"; 657520 - version = "0.1.0.1"; 657521 - sha256 = "1rq695y6491f0nydgm64r6v2l8mkpvzgcrb2gxfdy6g0bwarimxw"; 657522 - revision = "1"; 657523 - editedCabalFile = "01n2013v0il3g1mm6lqjl01c0yqhpvsr86v7jcqpbj32rvkrg68v"; 659139 + version = "0.1.0.2"; 659140 + sha256 = "1n1z66xwnvrmvb3qd5wx8rwf2v54zvy3bzqrqcwp43jjii4mjqkh"; 657524 659141 libraryHaskellDepends = [ base ]; 657525 659142 description = "termbox bindings"; 657526 659143 license = lib.licenses.bsd3; ··· 657535 659152 }: 657536 659153 mkDerivation { 657537 659154 pname = "termbox-bindings-hs"; 657538 - version = "1.0.0"; 657539 - sha256 = "1j90pjqrngyygwwwk9zh2ah4sfdz9sv6222k21lmrql60md85g8i"; 657540 - revision = "1"; 657541 - editedCabalFile = "0qhmbx42njzbb7awvh7wgsgj52yxbcq8lrpj9dr8qpqzwprpnj2i"; 659155 + version = "1.0.0.1"; 659156 + sha256 = "10yzipc5g6diwb4kxkwwdh9x3v24n0pibmdlma34k1qnhhman54z"; 657542 659157 libraryHaskellDepends = [ 657543 659158 base 657544 659159 termbox-bindings-c ··· 657557 659172 }: 657558 659173 mkDerivation { 657559 659174 pname = "termbox-tea"; 657560 - version = "1.0.0"; 657561 - sha256 = "0wya0fkjialv7hs6iw230x5ryx79s12pwig28mwrvgzvxmgm383a"; 657562 - revision = "1"; 657563 - editedCabalFile = "0zdpssg28lg5vwi61r2bp8c6p9b1phsxr8qz5gycg1yddd01n961"; 659175 + version = "1.0.0.1"; 659176 + sha256 = "1zpfv817yhx0wsb9s4ww9wb3rzfxj1ix9j60whwn458cchk37l2w"; 657564 659177 isLibrary = true; 657565 659178 isExecutable = true; 657566 659179 libraryHaskellDepends = [ ··· 658336 659949 containers, 658337 659950 hostname, 658338 659951 HUnit, 658339 - libxml, 658340 659952 old-locale, 658341 659953 QuickCheck, 658342 659954 random, 658343 659955 regex-posix, 658344 659956 semigroups, 658345 659957 time, 658346 - utf8-string, 658347 659958 xml, 658348 659959 }: 658349 659960 mkDerivation { 658350 659961 pname = "test-framework"; 658351 - version = "0.8.2.1"; 658352 - sha256 = "1yyfzf38n37yssqxm8mlzvp60n9vqkmprf1yfb9qmsya7kq53dkh"; 658353 - revision = "1"; 658354 - editedCabalFile = "0imq173blmc5nd77j82pxq8zskwrfcm38zik9zplp220fng2kn12"; 659962 + version = "0.8.2.2"; 659963 + sha256 = "04ijf5x6xx8i5lqv9ir33zs1rfzc4qkwwz8c1fdycnzvydcv4dnp"; 658355 659964 libraryHaskellDepends = [ 658356 659965 ansi-terminal 658357 659966 ansi-wl-pprint ··· 658372 659981 containers 658373 659982 hostname 658374 659983 HUnit 658375 - libxml 658376 659984 old-locale 658377 659985 QuickCheck 658378 659986 random 658379 659987 regex-posix 658380 659988 semigroups 658381 659989 time 658382 - utf8-string 658383 659990 xml 658384 659991 ]; 658385 659992 description = "Framework for running and organising tests, with HUnit and QuickCheck support"; ··· 660210 661817 }: 660211 661818 mkDerivation { 660212 661819 pname = "text-builder"; 660213 - version = "0.6.7.3"; 660214 - sha256 = "1d64f4ans02wyk06kb0li6bi79hkdwc3zsi9dsmhsi1578cx96jx"; 661820 + version = "0.6.10"; 661821 + sha256 = "0laz4mpxq4zxr4zy6q4s0l368f5lyvf3ck7549mfw0m2978i2c86"; 660215 661822 libraryHaskellDepends = [ 660216 661823 base 660217 661824 bytestring ··· 660233 661840 } 660234 661841 ) { }; 660235 661842 661843 + "text-builder_1_0_0_3" = callPackage ( 661844 + { 661845 + mkDerivation, 661846 + base, 661847 + bytestring, 661848 + QuickCheck, 661849 + quickcheck-classes, 661850 + quickcheck-instances, 661851 + tasty, 661852 + tasty-bench, 661853 + tasty-quickcheck, 661854 + text, 661855 + text-builder-core, 661856 + text-builder-linear, 661857 + time, 661858 + transformers, 661859 + }: 661860 + mkDerivation { 661861 + pname = "text-builder"; 661862 + version = "1.0.0.3"; 661863 + sha256 = "1r5v28029hwxl4pkyss5vrxm95ndz0ja4bmcglnsbgpqsj6ia96k"; 661864 + libraryHaskellDepends = [ 661865 + base 661866 + bytestring 661867 + text 661868 + text-builder-core 661869 + time 661870 + transformers 661871 + ]; 661872 + testHaskellDepends = [ 661873 + base 661874 + bytestring 661875 + QuickCheck 661876 + quickcheck-classes 661877 + quickcheck-instances 661878 + tasty 661879 + tasty-quickcheck 661880 + text 661881 + ]; 661882 + benchmarkHaskellDepends = [ 661883 + base 661884 + tasty-bench 661885 + text 661886 + text-builder-linear 661887 + ]; 661888 + description = "Efficient and flexible strict text builder"; 661889 + license = lib.licenses.mit; 661890 + hydraPlatforms = lib.platforms.none; 661891 + } 661892 + ) { }; 661893 + 661894 + "text-builder-core" = callPackage ( 661895 + { 661896 + mkDerivation, 661897 + base, 661898 + QuickCheck, 661899 + quickcheck-classes, 661900 + quickcheck-instances, 661901 + tasty, 661902 + tasty-bench, 661903 + tasty-quickcheck, 661904 + text, 661905 + text-builder-linear, 661906 + }: 661907 + mkDerivation { 661908 + pname = "text-builder-core"; 661909 + version = "0.1.1.1"; 661910 + sha256 = "11kx5lgvmhfqzsqg239w6mjjzkwdd9ydz49r4hmvvy2rvhq0k8x9"; 661911 + libraryHaskellDepends = [ 661912 + base 661913 + QuickCheck 661914 + text 661915 + ]; 661916 + testHaskellDepends = [ 661917 + base 661918 + QuickCheck 661919 + quickcheck-classes 661920 + quickcheck-instances 661921 + tasty 661922 + tasty-quickcheck 661923 + text 661924 + ]; 661925 + benchmarkHaskellDepends = [ 661926 + base 661927 + tasty-bench 661928 + text 661929 + text-builder-linear 661930 + ]; 661931 + description = "Internals of \"text-builder\""; 661932 + license = lib.licenses.mit; 661933 + } 661934 + ) { }; 661935 + 660236 661936 "text-builder-dev" = callPackage ( 660237 661937 { 660238 661938 mkDerivation, ··· 660257 661957 }: 660258 661958 mkDerivation { 660259 661959 pname = "text-builder-dev"; 660260 - version = "0.3.9.1"; 660261 - sha256 = "1l9jhbkgzxf4ppqw8gsychw613pq26f9xy0g4q136v6x1q40yci6"; 661960 + version = "0.3.10"; 661961 + sha256 = "0m4lsbx0vkad0jx8lvdj69k7nlmhqc2sxayq8c657c202sbwngs3"; 660262 661962 libraryHaskellDepends = [ 660263 661963 base 660264 661964 bytestring ··· 660291 661991 } 660292 661992 ) { }; 660293 661993 661994 + "text-builder-dev_0_4" = callPackage ( 661995 + { 661996 + mkDerivation, 661997 + base, 661998 + bytestring, 661999 + QuickCheck, 662000 + quickcheck-classes, 662001 + quickcheck-instances, 662002 + split, 662003 + tasty, 662004 + tasty-quickcheck, 662005 + text, 662006 + text-builder, 662007 + text-builder-core, 662008 + time, 662009 + transformers, 662010 + }: 662011 + mkDerivation { 662012 + pname = "text-builder-dev"; 662013 + version = "0.4"; 662014 + sha256 = "1b8lxbd10d29lvlxwmcyljrgpcw2vb2a2xzacah5ys9ivp9i9xi9"; 662015 + libraryHaskellDepends = [ 662016 + base 662017 + bytestring 662018 + split 662019 + text 662020 + text-builder 662021 + text-builder-core 662022 + time 662023 + transformers 662024 + ]; 662025 + testHaskellDepends = [ 662026 + base 662027 + QuickCheck 662028 + quickcheck-classes 662029 + quickcheck-instances 662030 + tasty 662031 + tasty-quickcheck 662032 + text 662033 + time 662034 + ]; 662035 + description = "Edge of developments for \"text-builder\""; 662036 + license = lib.licenses.mit; 662037 + hydraPlatforms = lib.platforms.none; 662038 + } 662039 + ) { }; 662040 + 660294 662041 "text-builder-linear" = callPackage ( 660295 662042 { 660296 662043 mkDerivation, ··· 660332 662079 } 660333 662080 ) { }; 660334 662081 662082 + "text-builder-time" = callPackage ( 662083 + { 662084 + mkDerivation, 662085 + base, 662086 + text-builder, 662087 + time, 662088 + }: 662089 + mkDerivation { 662090 + pname = "text-builder-time"; 662091 + version = "0.1"; 662092 + sha256 = "0whlk4qh9kx1pnzwbblsys0ijlwanpb5rwapf9k2h20nc27yfc6i"; 662093 + libraryHaskellDepends = [ 662094 + base 662095 + text-builder 662096 + time 662097 + ]; 662098 + description = "Various formats for \"time\" in terms of \"text-builder\""; 662099 + license = lib.licenses.mit; 662100 + hydraPlatforms = lib.platforms.none; 662101 + broken = true; 662102 + } 662103 + ) { }; 662104 + 660335 662105 "text-compression" = callPackage ( 660336 662106 { 660337 662107 mkDerivation, ··· 670458 672228 mkDerivation, 670459 672229 auto-update, 670460 672230 base, 670461 - basement, 670462 - bytestring, 670463 - clock, 670464 - crypto-token, 670465 - memory, 670466 - psqueues, 670467 - serialise, 670468 - tls, 670469 - }: 670470 - mkDerivation { 670471 - pname = "tls-session-manager"; 670472 - version = "0.0.7"; 670473 - sha256 = "0n88cnwcaz86izp0x004pbjm2nnr1x6lc75kjc26j9m4k9h266nc"; 670474 - revision = "1"; 670475 - editedCabalFile = "16ipngf44pbzf9xdvh6khkjrjz860nd48f5lrzbi5dnbjhcd6vi2"; 670476 - libraryHaskellDepends = [ 670477 - auto-update 670478 - base 670479 - basement 670480 - bytestring 670481 - clock 670482 - crypto-token 670483 - memory 670484 - psqueues 670485 - serialise 670486 - tls 670487 - ]; 670488 - description = "In-memory TLS session DB and session ticket"; 670489 - license = lib.licenses.bsd3; 670490 - } 670491 - ) { }; 670492 - 670493 - "tls-session-manager_0_0_8" = callPackage ( 670494 - { 670495 - mkDerivation, 670496 - auto-update, 670497 - base, 670498 672231 bytestring, 670499 672232 clock, 670500 672233 crypto-token, ··· 670520 672253 ]; 670521 672254 description = "In-memory TLS session DB and session ticket"; 670522 672255 license = lib.licenses.bsd3; 670523 - hydraPlatforms = lib.platforms.none; 670524 672256 } 670525 672257 ) { }; 670526 672258 ··· 675232 676964 } 675233 676965 ) { }; 675234 676966 675235 - "transformers_0_6_1_2" = callPackage ( 676967 + "transformers_0_6_2_0" = callPackage ( 675236 676968 { mkDerivation, base }: 675237 676969 mkDerivation { 675238 676970 pname = "transformers"; 675239 - version = "0.6.1.2"; 675240 - sha256 = "1db1gr4dkz1gi5q3fvqlv83qg5r5x89cmk8y9affa3n433xmrn1z"; 676971 + version = "0.6.2.0"; 676972 + sha256 = "0qr8ysnr6s4ky04qw9qsmysx64a9pvcp7hc5qaps0gffnx127gk5"; 675241 676973 libraryHaskellDepends = [ base ]; 675242 676974 description = "Concrete functor and monad transformers"; 675243 676975 license = lib.licenses.bsd3; ··· 683656 685388 description = "Admin console framework"; 683657 685389 license = lib.licenses.bsd3; 683658 685390 hydraPlatforms = lib.platforms.none; 685391 + broken = true; 683659 685392 } 683660 685393 ) { }; 683661 685394 ··· 683871 685604 process, 683872 685605 stm, 683873 685606 temporary, 685607 + text, 683874 685608 transformers, 683875 685609 unliftio-core, 683876 685610 }: 683877 685611 mkDerivation { 683878 685612 pname = "typed-process"; 683879 - version = "0.2.12.0"; 683880 - sha256 = "1q8v2vn1p2sygjym4aamfv53hyabq081aryf807p5pjix0x3vvjc"; 685613 + version = "0.2.13.0"; 685614 + sha256 = "1823mbibn4wgx5y7d1xywayjiz3hlv1mg3dcahpdyhdm2dh9c04l"; 683881 685615 libraryHaskellDepends = [ 683882 685616 async 683883 685617 base 683884 685618 bytestring 683885 685619 process 683886 685620 stm 685621 + text 683887 685622 transformers 683888 685623 unliftio-core 683889 685624 ]; ··· 683896 685631 process 683897 685632 stm 683898 685633 temporary 685634 + text 683899 685635 transformers 683900 685636 unliftio-core 683901 685637 ]; ··· 690013 691749 pname = "units-parser"; 690014 691750 version = "0.1.1.5"; 690015 691751 sha256 = "16q7q9c27wy8hx7rp34d2nhywpdkn8rb43hljx1j20kydyp0m2sb"; 690016 - revision = "1"; 690017 - editedCabalFile = "1rgsv7x0g150f9js092hp384vz55gc8wbsja164l7ia5qjbjxl7z"; 691752 + revision = "2"; 691753 + editedCabalFile = "0dr7zqz8cw7zj9p16xpdjqk07sn283q72ac2fd0dr1dzpp331jlh"; 690018 691754 libraryHaskellDepends = [ 690019 691755 base 690020 691756 containers ··· 691158 692894 }: 691159 692895 mkDerivation { 691160 692896 pname = "unlifted"; 691161 - version = "0.2.2.0"; 691162 - sha256 = "06phlykja7x0xn07d78sik6rkzl0qwwihk310nfc3r22j4wym4kx"; 692897 + version = "0.2.3.0"; 692898 + sha256 = "19sqhx3sxnahafji04r40slbz6c8ws3fx5qpfkb2w2q1s4r2fmyx"; 691163 692899 libraryHaskellDepends = [ 691164 692900 base 691165 692901 bytestring ··· 692949 694685 } 692950 694686 ) { }; 692951 694687 692952 - "uri-bytestring_0_4_0_0" = callPackage ( 694688 + "uri-bytestring_0_4_0_1" = callPackage ( 692953 694689 { 692954 694690 mkDerivation, 692955 694691 attoparsec, ··· 692974 694710 }: 692975 694711 mkDerivation { 692976 694712 pname = "uri-bytestring"; 692977 - version = "0.4.0.0"; 692978 - sha256 = "09xwwljhb75nsxx0059ni5mkijr794z35vfvpb14710gp46wmz3z"; 694713 + version = "0.4.0.1"; 694714 + sha256 = "0xbrm2q7smj0ar7bz7c1nw510si8bfnb9kd4pvdrxbcpyj9zsg12"; 692979 694715 libraryHaskellDepends = [ 692980 694716 attoparsec 692981 694717 base ··· 695342 697078 pname = "uuid"; 695343 697079 version = "1.3.16"; 695344 697080 sha256 = "1xhdf8zw2n2h4c0f8xf76c2gsjvldz34zgc4sn6wqpzcnk7pjihs"; 695345 - revision = "2"; 695346 - editedCabalFile = "1ka9hr7naddpdrnr6nfr81ansfqhgf02f0yvsddzwv3k7crc1qjl"; 697081 + revision = "3"; 697082 + editedCabalFile = "153pkkljg08pdv6hjdzzq67dzwy0k4c4k68ha110ak4d96iibc6r"; 695347 697083 libraryHaskellDepends = [ 695348 697084 base 695349 697085 binary ··· 695563 697299 pname = "uuid-types"; 695564 697300 version = "1.0.6"; 695565 697301 sha256 = "0zimp0v7hx073rcb4y9l463jfg4y3yqxdbmw975d6vrx919xj3by"; 695566 - revision = "2"; 695567 - editedCabalFile = "0gg1mr480k5y5q92a1p9ii8vs8i4m3719yaaa8lvi7391c88rrw8"; 697302 + revision = "3"; 697303 + editedCabalFile = "183dz7p96r7da14064xkvdzxs66gzlxi26xca5m6yrypm20vdhjs"; 695568 697304 libraryHaskellDepends = [ 695569 697305 base 695570 697306 binary ··· 697361 699097 }: 697362 699098 mkDerivation { 697363 699099 pname = "vary"; 697364 - version = "0.1.1.1"; 697365 - sha256 = "0qqhsld11qbv9d5rai2gkglb25jihkzcr0vif6x32njy27q1irb2"; 699100 + version = "0.1.1.2"; 699101 + sha256 = "1snil2rmlhbjrlazjycririwr9w4irznf5g4mgmjadb0xny9gwyx"; 697366 699102 libraryHaskellDepends = [ 697367 699103 aeson 697368 699104 base ··· 700084 701820 pname = "verset"; 700085 701821 version = "0.0.1.9"; 700086 701822 sha256 = "1ygsqr6qhcfv71v0jgbh17ayrg1fkf63dl851zl3p745jjr2sxk2"; 701823 + revision = "1"; 701824 + editedCabalFile = "01dlq868938286b8a6ydvffzxaab9q8vg88mcavq25b6hfpr4ca1"; 700087 701825 libraryHaskellDepends = [ 700088 701826 base 700089 701827 bytestring ··· 700419 702157 }: 700420 702158 mkDerivation { 700421 702159 pname = "vext"; 700422 - version = "0.1.6.0"; 700423 - sha256 = "1kf9yvpwf9pnqap11pirk6k5y7mw52a4xlvl7qpsnr7vbs1gilyl"; 702160 + version = "0.1.7.0"; 702161 + sha256 = "0ynwgb2d3xs6qn99qhdz417p1pjc6y1mjllk6v17rvxiim88yd36"; 700424 702162 libraryHaskellDepends = [ 700425 702163 base 700426 702164 natural-arithmetic ··· 708963 710701 ]; 708964 710702 description = "Warp based on QUIC"; 708965 710703 license = lib.licenses.bsd3; 710704 + hydraPlatforms = lib.platforms.none; 708966 710705 } 708967 710706 ) { }; 708968 710707 ··· 709410 711149 }: 709411 711150 mkDerivation { 709412 711151 pname = "waterfall-cad"; 709413 - version = "0.4.0.0"; 709414 - sha256 = "062q7ip6ifk8si1nk0brmbd7qh6b05xar7dds9wrjbbhz1fyjcs5"; 711152 + version = "0.5.0.0"; 711153 + sha256 = "0yk6wwqwzna6g8al15pdd4mqc3jpbxbvg0jrgvqfcxh86idfcixx"; 709415 711154 libraryHaskellDepends = [ 709416 711155 base 709417 711156 filepath ··· 709437 711176 optparse-applicative, 709438 711177 parsec, 709439 711178 parser-combinators, 711179 + raw-strings-qq, 711180 + svg-tree, 709440 711181 waterfall-cad, 711182 + waterfall-cad-svg, 711183 + xml, 709441 711184 }: 709442 711185 mkDerivation { 709443 711186 pname = "waterfall-cad-examples"; 709444 - version = "0.4.0.0"; 709445 - sha256 = "046k22r5q32y21r7fpg07301x12xmc8nwj9m4xgw100sxy66vvdg"; 711187 + version = "0.5.0.0"; 711188 + sha256 = "1fwyxnjphfcdf3qvmvszd2k78aiscdb47x9mm17kr11l1lnbn88i"; 709446 711189 isLibrary = true; 709447 711190 isExecutable = true; 709448 711191 libraryHaskellDepends = [ ··· 709453 711196 optparse-applicative 709454 711197 parsec 709455 711198 parser-combinators 711199 + raw-strings-qq 711200 + svg-tree 709456 711201 waterfall-cad 711202 + waterfall-cad-svg 711203 + xml 709457 711204 ]; 709458 711205 executableHaskellDepends = [ 709459 711206 base ··· 709463 711210 optparse-applicative 709464 711211 parsec 709465 711212 parser-combinators 711213 + raw-strings-qq 711214 + svg-tree 709466 711215 waterfall-cad 711216 + waterfall-cad-svg 711217 + xml 709467 711218 ]; 709468 711219 description = "Examples for Waterfall CAD, a Declarative CAD/Solid Modeling Library"; 709469 711220 license = lib.licenses.lgpl21Only; 709470 711221 mainProgram = "waterfall-cad-examples"; 711222 + } 711223 + ) { }; 711224 + 711225 + "waterfall-cad-svg" = callPackage ( 711226 + { 711227 + mkDerivation, 711228 + attoparsec, 711229 + base, 711230 + JuicyPixels, 711231 + lens, 711232 + linear, 711233 + opencascade-hs, 711234 + resourcet, 711235 + svg-tree, 711236 + text, 711237 + waterfall-cad, 711238 + }: 711239 + mkDerivation { 711240 + pname = "waterfall-cad-svg"; 711241 + version = "0.5.0.0"; 711242 + sha256 = "1x7q7zk2kzlgchsrdybzw26hny8lpignzbm3zdk29vskhpg381fk"; 711243 + libraryHaskellDepends = [ 711244 + attoparsec 711245 + base 711246 + JuicyPixels 711247 + lens 711248 + linear 711249 + opencascade-hs 711250 + resourcet 711251 + svg-tree 711252 + text 711253 + waterfall-cad 711254 + ]; 711255 + description = "Declarative CAD/Solid Modeling Library, SVG Support"; 711256 + license = lib.licenses.lgpl21Only; 709471 711257 } 709472 711258 ) { }; 709473 711259 ··· 709918 711704 } 709919 711705 ) { }; 709920 711706 711707 + "web-cookiejar" = callPackage ( 711708 + { 711709 + mkDerivation, 711710 + attoparsec, 711711 + base, 711712 + bytestring, 711713 + hspec, 711714 + http-client, 711715 + QuickCheck, 711716 + temporary, 711717 + time, 711718 + }: 711719 + mkDerivation { 711720 + pname = "web-cookiejar"; 711721 + version = "0.1.0.0"; 711722 + sha256 = "0hc9cpqs2h7kcxlrvlsmqm7xxq1cdi7zax3c7md5ldbzgzwiwr28"; 711723 + libraryHaskellDepends = [ 711724 + attoparsec 711725 + base 711726 + bytestring 711727 + http-client 711728 + time 711729 + ]; 711730 + testHaskellDepends = [ 711731 + base 711732 + bytestring 711733 + hspec 711734 + http-client 711735 + QuickCheck 711736 + temporary 711737 + time 711738 + ]; 711739 + description = "Parsing/printing of persistent web cookies"; 711740 + license = lib.licenses.bsd3; 711741 + } 711742 + ) { }; 711743 + 709921 711744 "web-css" = callPackage ( 709922 711745 { 709923 711746 mkDerivation, ··· 716942 718765 pname = "wl-pprint-annotated"; 716943 718766 version = "0.1.0.1"; 716944 718767 sha256 = "1br7qyf27iza213inwhf9bm2k6in0zbmfw6w4clqlc9f9cj2nrkb"; 716945 - revision = "3"; 716946 - editedCabalFile = "1g6qbs7lc6ng873ql5gflg62acn3pzy17dvck2hbxj02fdnjxlbr"; 718768 + revision = "4"; 718769 + editedCabalFile = "0via6f17s80d2kgw5ir7ii9ahmgp5ppky7pxschx4jrj3a88rypy"; 716947 718770 libraryHaskellDepends = [ 716948 718771 base 716949 718772 containers ··· 722651 724474 }: 722652 724475 mkDerivation { 722653 724476 pname = "xlsx"; 722654 - version = "1.1.3"; 722655 - sha256 = "1ar4lk8xcxkqd9k553sp9zzygk4lxzhah7d5z1hzj4l570mvdps4"; 724477 + version = "1.1.4"; 724478 + sha256 = "11n6zc5wsk491fqzyn7davml84clbpnhvdw2gwsz4vq86fy69g0s"; 722656 724479 libraryHaskellDepends = [ 722657 724480 attoparsec 722658 724481 base ··· 723728 725551 bytestring, 723729 725552 containers, 723730 725553 hashable, 723731 - QuickCheck, 723732 725554 quickcheck-instances, 723733 725555 rerebase, 723734 725556 tasty, ··· 723742 725564 }: 723743 725565 mkDerivation { 723744 725566 pname = "xml-parser"; 723745 - version = "0.1.1.1"; 723746 - sha256 = "13af7yfxn1m7clhzxsbkd6q1nr8dslv39w4hvyhca0l7adplyyw3"; 725567 + version = "0.1.1.2"; 725568 + sha256 = "0hhrjaqykc43b07w6yn6q59rk4z0awm9c50917kif4iqxm92z07q"; 723747 725569 libraryHaskellDepends = [ 723748 725570 attoparsec 723749 725571 base ··· 723757 725579 xml-conduit 723758 725580 ]; 723759 725581 testHaskellDepends = [ 723760 - attoparsec 723761 - QuickCheck 723762 725582 quickcheck-instances 723763 725583 rerebase 723764 725584 tasty ··· 724899 726719 }: 724900 726720 mkDerivation { 724901 726721 pname = "xmobar"; 724902 - version = "0.48.1"; 724903 - sha256 = "1infcisv7l00a4z4byjwjisg4yndk0cymibfii1c7yzyzrlvavhl"; 726722 + version = "0.49"; 726723 + sha256 = "0mw01jxkcvm186csg71y21zig9rkxkp304i3ym4pgr3rilhp3p5z"; 724904 726724 configureFlags = [ 724905 726725 "-fwith_alsa" 724906 726726 "-fwith_conduit" ··· 726665 728485 { mkDerivation }: 726666 728486 mkDerivation { 726667 728487 pname = "xz-clib"; 726668 - version = "5.8.0.1"; 726669 - sha256 = "0dw7lfkgjikawycwp1nglbdak9ay57nnidac5fdakyhg2paw8fpl"; 728488 + version = "5.8.1"; 728489 + sha256 = "0cycldc04ffkm5kvhb9x9mjgcw9vhzlbh34idpapv9bin9b594ic"; 726670 728490 doHaddock = false; 726671 728491 description = "LZMA/XZ clibs"; 726672 728492 license = lib.licenses.bsd0; ··· 728407 730227 } 728408 730228 ) { }; 728409 730229 730230 + "yaml-unscrambler_0_1_0_20" = callPackage ( 730231 + { 730232 + mkDerivation, 730233 + acc, 730234 + attoparsec, 730235 + attoparsec-data, 730236 + attoparsec-time, 730237 + base, 730238 + base64-bytestring, 730239 + bytestring, 730240 + conduit, 730241 + containers, 730242 + foldl, 730243 + hashable, 730244 + libyaml, 730245 + mtl, 730246 + neat-interpolation, 730247 + quickcheck-instances, 730248 + rerebase, 730249 + scientific, 730250 + selective, 730251 + tasty, 730252 + tasty-hunit, 730253 + text, 730254 + text-builder, 730255 + time, 730256 + transformers, 730257 + unordered-containers, 730258 + uuid, 730259 + vector, 730260 + yaml, 730261 + }: 730262 + mkDerivation { 730263 + pname = "yaml-unscrambler"; 730264 + version = "0.1.0.20"; 730265 + sha256 = "0s73nmvmnd1gn7hvmcbpvg1l10vwlzb5xfg7ljiwbp1dsfmqyzkw"; 730266 + libraryHaskellDepends = [ 730267 + acc 730268 + attoparsec 730269 + attoparsec-data 730270 + attoparsec-time 730271 + base 730272 + base64-bytestring 730273 + bytestring 730274 + conduit 730275 + containers 730276 + foldl 730277 + hashable 730278 + libyaml 730279 + mtl 730280 + scientific 730281 + selective 730282 + text 730283 + text-builder 730284 + time 730285 + transformers 730286 + unordered-containers 730287 + uuid 730288 + vector 730289 + yaml 730290 + ]; 730291 + testHaskellDepends = [ 730292 + foldl 730293 + neat-interpolation 730294 + quickcheck-instances 730295 + rerebase 730296 + tasty 730297 + tasty-hunit 730298 + ]; 730299 + description = "Flexible declarative YAML parsing toolkit"; 730300 + license = lib.licenses.mit; 730301 + hydraPlatforms = lib.platforms.none; 730302 + } 730303 + ) { }; 730304 + 728410 730305 "yaml2owl" = callPackage ( 728411 730306 { 728412 730307 mkDerivation, ··· 729297 731192 }: 729298 731193 mkDerivation { 729299 731194 pname = "yaya"; 729300 - version = "0.6.2.2"; 729301 - sha256 = "0b6sd8rdp6qys45s2lps0nhmqbs9x63axmhh3k71y81lmzyq1cax"; 731195 + version = "0.6.2.3"; 731196 + sha256 = "0xvn1zbg2r40wsld55bmw5j0slc4jwdsfpsha1zijsk2zw2vz5kw"; 729302 731197 setupHaskellDepends = [ 729303 731198 base 729304 731199 Cabal ··· 729339 731234 }: 729340 731235 mkDerivation { 729341 731236 pname = "yaya-containers"; 729342 - version = "0.1.2.1"; 729343 - sha256 = "17akwh7inlcnizhx600ydf5j6fgbl25cnwm2fr2f6rlabkxvraki"; 731237 + version = "0.1.2.2"; 731238 + sha256 = "05qxk350hslwwa78hqbrwvd5bzz98l7cpf5syxcfjr85v0da04x9"; 729344 731239 setupHaskellDepends = [ 729345 731240 base 729346 731241 Cabal ··· 729374 731269 }: 729375 731270 mkDerivation { 729376 731271 pname = "yaya-hedgehog"; 729377 - version = "0.3.0.4"; 729378 - sha256 = "13dfs72bwf6gdlbjmcfqi4hz4q2z21wmp0i5adk1arp8kgfypmf3"; 731272 + version = "0.3.0.5"; 731273 + sha256 = "0fsfb5gj8yri80yxax48z2z7yncg80fzlqxami13sa2pwszxfzii"; 729379 731274 setupHaskellDepends = [ 729380 731275 base 729381 731276 Cabal ··· 729412 731307 }: 729413 731308 mkDerivation { 729414 731309 pname = "yaya-quickcheck"; 729415 - version = "0.2.0.2"; 729416 - sha256 = "13c8zyv83sik5ms2p49850jrpvhmr4wacz27ib79pbgp2lh538n9"; 731310 + version = "0.2.0.3"; 731311 + sha256 = "0fmy2qwqva413j89hz52pa00c7rf52qbd9z4klhavnm0w6j56bzj"; 729417 731312 setupHaskellDepends = [ 729418 731313 base 729419 731314 Cabal ··· 729479 731374 }: 729480 731375 mkDerivation { 729481 731376 pname = "yaya-unsafe"; 729482 - version = "0.4.1.3"; 729483 - sha256 = "183hc024drdha6j8sqij9mv412yz0bc8mxv5jicg0qx3q1ldxr4y"; 731377 + version = "0.4.1.4"; 731378 + sha256 = "1nrwhpalhmbdzh5fj61vhfigjc1rszg1k904jw34z94xasv08qdh"; 729484 731379 setupHaskellDepends = [ 729485 731380 base 729486 731381 Cabal
+1 -1
pkgs/development/tools/haskell/hadrian/make-hadrian.nix
··· 64 64 } 65 65 // lib.optionalAttrs (lib.versionAtLeast ghcVersion "9.11") { 66 66 # See https://gitlab.haskell.org/ghc/ghc/-/commit/145a6477854d4003a07573d5e7ffa0c9a64ae29c 67 - Cabal = bootPkgs.Cabal_3_14_1_1; 67 + Cabal = bootPkgs.Cabal_3_14_2_0; 68 68 } 69 69 )
+1 -1
pkgs/top-level/release-haskell.nix
··· 574 574 compilerNames.ghc9122 575 575 ] released; 576 576 Cabal_3_12_1_0 = released; 577 - Cabal_3_14_1_1 = released; 577 + Cabal_3_14_2_0 = released; 578 578 cabal2nix = released; 579 579 cabal2nix-unstable = released; 580 580 funcmp = released;