haskellPackages: stackage LTS 23.24 -> LTS 23.27 (#424162)

authored by sternenseemann and committed by GitHub 764408b4 37a41901

+6888 -2010
+14 -31
doc/languages-frameworks/agda.section.md
··· 125 125 126 126 ## Writing Agda packages {#writing-agda-packages} 127 127 128 - To write a nix derivation for an Agda library, first check that the library has a `*.agda-lib` file. 128 + To write a nix derivation for an Agda library, first check that the library has a (single) `*.agda-lib` file. 129 129 130 130 A derivation can then be written using `agdaPackages.mkDerivation`. This has similar arguments to `stdenv.mkDerivation` with the following additions: 131 131 132 - * `everythingFile` can be used to specify the location of the `Everything.agda` file, defaulting to `./Everything.agda`. If this file does not exist then either it should be patched in or the `buildPhase` should be overridden (see below). 133 132 * `libraryName` should be the name that appears in the `*.agda-lib` file, defaulting to `pname`. 134 133 * `libraryFile` should be the file name of the `*.agda-lib` file, defaulting to `${libraryName}.agda-lib`. 135 134 ··· 150 149 151 150 ### Building Agda packages {#building-agda-packages} 152 151 153 - The default build phase for `agdaPackages.mkDerivation` runs `agda` on the `Everything.agda` file. 152 + The default build phase for `agdaPackages.mkDerivation` runs `agda --build-library`. 154 153 If something else is needed to build the package (e.g. `make`) then the `buildPhase` should be overridden. 155 - Additionally, a `preBuild` or `configurePhase` can be used if there are steps that need to be done prior to checking the `Everything.agda` file. 154 + Additionally, a `preBuild` or `configurePhase` can be used if there are steps that need to be done prior to checking the library. 156 155 `agda` and the Agda libraries contained in `buildInputs` are made available during the build phase. 157 156 158 157 ### Installing Agda packages {#installing-agda-packages} ··· 180 179 181 180 ### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs} 182 181 183 - To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the top line of the `default.nix` can look like: 182 + To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/default.nix` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the derivation could look like: 184 183 185 184 ```nix 186 185 { ··· 188 187 standard-library, 189 188 fetchFromGitHub, 190 189 }: 191 - { } 192 - ``` 193 190 194 - Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you 195 - could use a similar set as in your `default.nix` from [Writing Agda Packages](#writing-agda-packages) with 196 - `agdaPackages.mkDerivation` replaced with `mkDerivation`. 197 - 198 - Here is an example skeleton derivation for iowa-stdlib: 199 - 200 - ```nix 201 191 mkDerivation { 202 - version = "1.5.0"; 203 - pname = "iowa-stdlib"; 204 - 192 + pname = "my-library"; 193 + version = "1.0"; 205 194 src = <...>; 206 - 207 - libraryFile = ""; 208 - libraryName = "IAL-1.3"; 209 - 210 - buildPhase = '' 211 - runHook preBuild 212 - 213 - patchShebangs find-deps.sh 214 - make 215 - 216 - runHook postBuild 217 - ''; 195 + buildInputs = [ standard-library ]; 196 + meta = <...>; 218 197 } 219 198 ``` 220 199 221 - This library has a file called `.agda-lib`, and so we give an empty string to `libraryFile` as nothing precedes `.agda-lib` in the filename. This file contains `name: IAL-1.3`, and so we let `libraryName = "IAL-1.3"`. This library does not use an `Everything.agda` file and instead has a Makefile, so there is no need to set `everythingFile` and we set a custom `buildPhase`. 200 + You can look at other files under `pkgs/development/libraries/agda/` for more inspiration. 201 + 202 + Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you 203 + could use a similar set as in your `default.nix` from [Writing Agda Packages](#writing-agda-packages) with 204 + `agdaPackages.mkDerivation` replaced with `mkDerivation`. 222 205 223 206 When writing an Agda package it is essential to make sure that no `.agda-lib` file gets added to the store as a single file (for example by using `writeText`). This causes Agda to think that the nix store is a Agda library and it will attempt to write to it whenever it typechecks something. See [https://github.com/agda/agda/issues/4613](https://github.com/agda/agda/issues/4613). 224 207 ··· 226 209 you can test whether it builds correctly by writing in a comment: 227 210 228 211 ``` 229 - @ofborg build agdaPackages.iowa-stdlib 212 + @ofborg build agdaPackages.my-library 230 213 ``` 231 214 232 215 ### Maintaining Agda packages {#agda-maintaining-packages}
+1 -7
maintainers/scripts/haskell/merge-and-open-pr.sh
··· 80 80 gh pr merge --repo NixOS/nixpkgs --merge "$curr_haskell_updates_pr_num" 81 81 82 82 # Update stackage, Hackage hashes, and regenerate Haskell package set 83 - echo "Updating Stackage..." 84 - ./maintainers/scripts/haskell/update-stackage.sh --do-commit 85 - echo "Updating Hackage hashes..." 86 - ./maintainers/scripts/haskell/update-hackage.sh --do-commit 87 - echo "Regenerating Hackage packages..." 88 - # Using fast here because after the hackage-update eval errors will likely break the transitive dependencies check. 89 - ./maintainers/scripts/haskell/regenerate-hackage-packages.sh --fast --do-commit 83 + ./maintainers/scripts/haskell/update-package-set.sh 90 84 91 85 # Push these new commits to the haskell-updates branch 92 86 echo "Pushing commits just created to the remote $push_remote/haskell-updates branch..."
+2 -2
maintainers/scripts/haskell/regenerate-hackage-packages.sh
··· 107 107 if [[ "$DO_COMMIT" -eq 1 ]]; then 108 108 git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml 109 109 git add pkgs/development/haskell-modules/hackage-packages.nix 110 - git commit -F - << EOF 110 + git commit --edit -F - << EOF 111 111 haskellPackages: regenerate package set based on current config 112 112 113 - This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh 113 + (generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh) 114 114 EOF 115 115 fi 116 116
+31 -10
maintainers/scripts/haskell/update-hackage.sh
··· 1 1 #! /usr/bin/env nix-shell 2 2 #! nix-shell -i bash -p curl jq git gnused -I nixpkgs=. 3 - 4 - # See regenerate-hackage-packages.sh for details on the purpose of this script. 3 + # 4 + # SYNOPSIS 5 + # 6 + # Update Hackage index and hashes data exposed via pkgs.all-cabal-hashes. 7 + # 8 + # DESCRIPTION 9 + # 10 + # Find latest revision of the commercialhaskell/all-cabal-hashes repository's 11 + # hackage branch and update pkgs/data/misc/hackage/pin.json accordingly. 12 + # 13 + # This data is used by hackage2nix to generate hackage-packages.nix. Since 14 + # hackage2nix uses the latest version of a package unless an explicit 15 + # constraint is configured, running this script indirectly updates packages 16 + # (when hackage2nix is executed afterwards). 17 + # 18 + # Prints a version difference to stdout if the pin has been updated, nothing 19 + # otherwise. 20 + # 21 + # EXIT STATUS 22 + # 23 + # Always exit with zero (even if nothing changed) unless there was an error. 5 24 6 25 set -euo pipefail 7 26 27 + if [[ "${1:-}" == "--do-commit" ]]; then 28 + echo "$0: --do-commit is no longer supported. Use update-package-set.sh instead." 29 + exit 100 30 + fi 31 + 8 32 pin_file=pkgs/data/misc/hackage/pin.json 9 33 current_commit="$(jq -r .commit $pin_file)" 10 34 old_date="$(jq -r .msg $pin_file | sed 's/Update from Hackage at //')" ··· 14 38 new_date="$(echo "$commit_msg" | sed 's/Update from Hackage at //')" 15 39 16 40 if [ "$current_commit" != "$head_commit" ]; then 41 + echo "Updating all-cabal-hashes from $old_date to $new_date" >&2 17 42 url="https://github.com/commercialhaskell/all-cabal-hashes/archive/$head_commit.tar.gz" 18 43 hash="$(nix-prefetch-url "$url")" 19 44 jq -n \ ··· 23 48 --arg commit_msg "$commit_msg" \ 24 49 '{commit: $commit, url: $url, sha256: $hash, msg: $commit_msg}' \ 25 50 > $pin_file 51 + else 52 + echo "No new all-cabal-hashes version" >&2 53 + exit 0 26 54 fi 27 55 28 - if [[ "${1:-}" == "--do-commit" ]]; then 29 - git add pkgs/data/misc/hackage/pin.json 30 - git commit -F - << EOF 31 - all-cabal-hashes: $old_date -> $new_date 32 - 33 - This commit has been generated by maintainers/scripts/haskell/update-hackage.sh 34 - EOF 35 - fi 56 + echo "$old_date -> $new_date"
+53
maintainers/scripts/haskell/update-package-set.sh
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -i bash 3 + #! nix-shell -p git -I nixpkgs=. 4 + set -euo pipefail 5 + 6 + filesToStage=( 7 + 'pkgs/data/misc/hackage/pin.json' 8 + 'pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml' 9 + 'pkgs/development/haskell-modules/hackage-packages.nix' 10 + ) 11 + 12 + if ! git diff --quiet --cached; then 13 + echo "Please commit staged changes before running $0" >&2 14 + exit 100 15 + fi 16 + 17 + if ! git diff --quiet -- "${filesToStage[@]}"; then 18 + echo -n "Please commit your changes to the following files before running $0: " >&2 19 + echo "${filesToStage[@]}" >&2 20 + exit 100 21 + fi 22 + 23 + stackage_diff="$(./maintainers/scripts/haskell/update-stackage.sh)" 24 + hackage_diff="$(./maintainers/scripts/haskell/update-hackage.sh)" 25 + readonly stackage_diff hackage_diff 26 + 27 + # Prefer Stackage version diff in the commit header, fall back to Hackage 28 + if [[ -n "$stackage_diff" ]]; then 29 + commit_message="haskellPackages: stackage $stackage_diff" 30 + if [[ -n "$hackage_diff" ]]; then 31 + commit_message="$commit_message 32 + 33 + all-cabal-hashes: $hackage_diff" 34 + fi 35 + elif [[ -n "$hackage_diff" ]]; then 36 + commit_message="haskellPackages: hackage $hackage_diff 37 + 38 + all-cabal-hashes: $hackage_diff" 39 + else 40 + echo "Neither Hackage nor Stackage changed. Nothing to do." >&2 41 + exit 0 42 + fi 43 + 44 + commit_message="$commit_message 45 + 46 + (generated by maintainers/scripts/haskell/update-package-set.sh)" 47 + 48 + # Using fast here because after the hackage-update eval errors will likely break the transitive dependencies check. 49 + ./maintainers/scripts/haskell/regenerate-hackage-packages.sh --fast 50 + 51 + # A --do-commit flag probably doesn't make much sense 52 + git add -- "${filesToStage[@]}" 53 + git commit -m "$commit_message"
+30 -10
maintainers/scripts/haskell/update-stackage.sh
··· 1 1 #! /usr/bin/env nix-shell 2 2 #! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=. 3 3 # shellcheck shell=bash 4 + # 5 + # SYNOPSIS 6 + # 7 + # Update version constraints in hackage2nix config file from Stackage. 8 + # 9 + # DESCRIPTION 10 + # 11 + # Fetches the latest snapshot of the configured Stackage solver which is 12 + # configured via the SOLVER (either LTS or Nightly) and VERSION variables in 13 + # the script. 14 + # 15 + # VERSION is only applicable if SOLVER is LTS. SOLVER=LTS and VERSION=22 16 + # will cause update-stackage.sh to fetch the latest LTS-22.XX version. 17 + # If empty, the latest version of the solver is used. 18 + # 19 + # If the configuration file has been updated, update-stackage.sh prints a 20 + # version difference to stdout, e.g. 23.11 -> 23.13. Otherwise, stdout remains 21 + # empty. 22 + # 23 + # EXIT STATUS 24 + # 25 + # Always exit with zero (even if nothing changed) unless there was an error. 4 26 5 27 set -eu -o pipefail 28 + 29 + if [[ "${1:-}" == "--do-commit" ]]; then 30 + echo "$0: --do-commit is no longer supported. Use update-package-set.sh instead." 31 + exit 100 32 + fi 6 33 7 34 # Stackage solver to use, LTS or Nightly 8 35 # (should be capitalized like the display name) ··· 31 58 version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")" 32 59 33 60 if [[ "$old_version" == "$version" ]]; then 34 - echo "No new stackage version" 61 + echo "No new stackage version" >&2 35 62 exit 0 # Nothing to do 36 63 fi 37 64 38 - echo "Updating Stackage from $old_version to $version." 65 + echo "Updating Stackage from $old_version to $version." >&2 39 66 40 67 # Create a simple yaml version of the file. 41 68 sed -r \ ··· 78 105 # ShellCheck: latest version of command-line dev tool. 79 106 # Agda: The Agda community is fast-moving; we strive to always include the newest versions of Agda and the Agda packages in nixpkgs. 80 107 81 - if [[ "${1:-}" == "--do-commit" ]]; then 82 - git add $stackage_config 83 - git commit -F - << EOF 84 - haskellPackages: stackage $old_version -> $version 85 - 86 - This commit has been generated by maintainers/scripts/haskell/update-stackage.sh 87 - EOF 88 - fi 108 + echo "$old_version -> $version"
+3 -9
pkgs/build-support/agda/default.nix
··· 90 90 pname, 91 91 meta, 92 92 buildInputs ? [ ], 93 - everythingFile ? "./Everything.agda", 94 - includePaths ? [ ], 95 93 libraryName ? pname, 96 94 libraryFile ? "${libraryName}.agda-lib", 97 95 buildPhase ? null, ··· 100 98 ... 101 99 }: 102 100 let 103 - agdaWithArgs = withPackages (filter (p: p ? isAgdaDerivation) buildInputs); 104 - includePathArgs = concatMapStrings (path: "-i" + path + " ") ( 105 - includePaths ++ [ (dirOf everythingFile) ] 106 - ); 101 + agdaWithPkgs = withPackages (filter (p: p ? isAgdaDerivation) buildInputs); 107 102 in 108 103 { 109 104 inherit libraryName libraryFile; 110 105 111 106 isAgdaDerivation = true; 112 107 113 - buildInputs = buildInputs ++ [ agdaWithArgs ]; 108 + buildInputs = buildInputs ++ [ agdaWithPkgs ]; 114 109 115 110 buildPhase = 116 111 if buildPhase != null then ··· 118 113 else 119 114 '' 120 115 runHook preBuild 121 - agda ${includePathArgs} ${everythingFile} 122 - rm ${everythingFile} ${lib.interfaceFile Agda.version everythingFile} 116 + agda --build-library 123 117 runHook postBuild 124 118 ''; 125 119
+2 -2
pkgs/build-support/agda/lib.nix
··· 6 6 * The resulting path may not be normalized. 7 7 * 8 8 * Examples: 9 - * interfaceFile pkgs.agda.version "./Everything.agda" == "_build/2.6.4.3/agda/./Everything.agdai" 10 - * interfaceFile pkgs.agda.version "src/Everything.lagda.tex" == "_build/2.6.4.3/agda/src/Everything.agdai" 9 + * interfaceFile pkgs.agda.version "./Foo.agda" == "_build/AGDA_VERSION/agda/./Foo.agdai" 10 + * interfaceFile pkgs.agda.version "src/Foo.lagda.tex" == "_build/AGDA_VERSION/agda/src/Foo.agdai" 11 11 */ 12 12 interfaceFile = 13 13 agdaVersion: agdaFile:
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878.tar.gz", 4 - "sha256": "03mjsvybfh8bq5v475pqqs5bs9xdb0pm2qrw9w892q0q0ir5b6na", 5 - "msg": "Update from Hackage at 2025-06-01T18:10:16Z" 2 + "commit": "e184dedb360769d6e8e041e711559185f39ab55c", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e184dedb360769d6e8e041e711559185f39ab55c.tar.gz", 4 + "sha256": "16qlwrw96lf52yvmmhfl948wpimbnqm9z87j27agcdmigf5icg1s", 5 + "msg": "Update from Hackage at 2025-07-07T21:33:55Z" 6 6 }
+23 -3
pkgs/development/compilers/ghc/8.10.7.nix
··· 69 69 || (stdenv.hostPlatform != stdenv.targetPlatform) 70 70 ), 71 71 72 + # Enable NUMA support in RTS 73 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 74 + numactl, 75 + 72 76 # What flavour to build. An empty string indicates no 73 77 # specific flavour and falls back to ghc default values. 74 78 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 265 269 basePackageSet = if hostPlatform != targetPlatform then targetPackages else pkgsHostTarget; 266 270 in 267 271 { 268 - inherit (basePackageSet) gmp ncurses; 272 + inherit (basePackageSet) gmp ncurses numactl; 269 273 # dynamic inherits are not possible in Nix 270 274 libffi = basePackageSet.${libffi_name}; 271 275 }; ··· 363 367 sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9"; 364 368 includes = [ "libraries/ghci/ghci.cabal.in" ]; 365 369 }) 370 + 371 + # Correctly record libnuma's library and include directories in the 372 + # package db. This fixes linking whenever stdenv and propagation won't 373 + # quite pass the correct -L flags to the linker, e.g. when using GHC 374 + # outside of stdenv/nixpkgs or build->build compilation in pkgsStatic. 375 + ./ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch 366 376 ] 367 377 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 368 378 # Make Block.h compile with c++ compilers. Remove with the next release ··· 511 521 ++ lib.optionals (disableLargeAddressSpace) [ 512 522 "--disable-large-address-space" 513 523 ] 524 + ++ lib.optionals enableNuma [ 525 + "--enable-numa" 526 + "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include" 527 + "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib" 528 + ] 514 529 ++ lib.optionals enableUnregisterised [ 515 530 "--enable-unregisterised" 516 531 ]; ··· 562 577 563 578 buildInputs = [ bash ] ++ (libDeps hostPlatform); 564 579 565 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 566 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 580 + # stage1 GHC doesn't need to link against libnuma, so it's target specific 581 + depsTargetTarget = map lib.getDev ( 582 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 583 + ); 584 + depsTargetTargetPropagated = map (lib.getOutput "out") ( 585 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 586 + ); 567 587 568 588 # required, because otherwise all symbols from HSffi.o are stripped, and 569 589 # that in turn causes GHCi to abort
+39 -4
pkgs/development/compilers/ghc/common-hadrian.nix
··· 91 91 && !stdenv.hostPlatform.isStatic, 92 92 elfutils, 93 93 94 + # Enable NUMA support in RTS 95 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 96 + numactl, 97 + 94 98 # What flavour to build. Flavour string may contain a flavour and flavour 95 99 # transformers as accepted by hadrian. 96 100 ghcFlavour ? ··· 110 114 # While split sections are now enabled by default in ghc 8.8 for windows, 111 115 # they seem to lead to `too many sections` errors when building base for 112 116 # profiling. 113 - ++ lib.optionals (!stdenv.targetPlatform.isWindows) [ "split_sections" ]; 117 + ++ (if stdenv.targetPlatform.isWindows then [ "no_split_sections" ] else [ "split_sections" ]); 114 118 in 115 119 baseFlavour + lib.concatMapStrings (t: "+${t}") transformers, 116 120 ··· 248 252 ./Cabal-3.12-paths-fix-cycle-aarch64-darwin.patch 249 253 ) 250 254 ] 255 + ++ lib.optionals stdenv.targetPlatform.isWindows [ 256 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13919 257 + (fetchpatch { 258 + name = "include-modern-utimbuf.patch"; 259 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/7e75928ed0f1c4654de6ddd13d0b00bf4b5c6411.patch"; 260 + hash = "sha256-sb+AHdkGkCu8MW0xoQIpD5kEc0zYX8udAMDoC+TWc0Q="; 261 + }) 262 + ] 251 263 # Prevents passing --hyperlinked-source to haddock. Note that this can 252 264 # be configured via a user defined flavour now. Unfortunately, it is 253 265 # impossible to import an existing flavour in UserSettings, so patching ··· 291 303 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 292 304 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 293 305 }) 306 + ] 307 + 308 + # Missing ELF symbols 309 + ++ lib.optionals stdenv.targetPlatform.isAndroid [ 310 + ./ghc-define-undefined-elf-st-visibility.patch 294 311 ]; 295 312 296 313 stdenv = stdenvNoCC; ··· 329 346 assert stdenv.buildPlatform == stdenv.hostPlatform || stdenv.hostPlatform == stdenv.targetPlatform; 330 347 331 348 # It is currently impossible to cross-compile GHC with Hadrian. 332 - assert stdenv.buildPlatform == stdenv.hostPlatform; 349 + assert lib.assertMsg (stdenv.buildPlatform == stdenv.hostPlatform) 350 + "GHC >= 9.6 can't be cross-compiled. If you meant to build a GHC cross-compiler, use `buildPackages`."; 333 351 334 352 let 335 353 inherit (stdenv) buildPlatform hostPlatform targetPlatform; ··· 407 425 ld = cc.bintools; 408 426 "ld.gold" = cc.bintools; 409 427 428 + windres = cc.bintools; 429 + 410 430 otool = cc.bintools.bintools; 411 431 412 432 # GHC needs install_name_tool on all darwin platforms. The same one can ··· 465 485 gmp 466 486 libffi 467 487 ncurses 488 + numactl 468 489 ; 469 490 }; 470 491 ··· 649 670 "--with-libdw-includes=${lib.getDev targetLibs.elfutils}/include" 650 671 "--with-libdw-libraries=${lib.getLib targetLibs.elfutils}/lib" 651 672 ] 673 + ++ lib.optionals enableNuma [ 674 + "--enable-numa" 675 + "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include" 676 + "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib" 677 + ] 652 678 ++ lib.optionals targetPlatform.isDarwin [ 653 679 # Darwin uses llvm-ar. GHC will try to use `-L` with `ar` when it is `llvm-ar` 654 680 # but it doesn’t currently work because Cabal never uses `-L` on Darwin. See: ··· 715 741 716 742 buildInputs = [ bash ] ++ (libDeps hostPlatform); 717 743 718 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 719 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 744 + # stage0:ghc (i.e. stage1) doesn't need to link against libnuma, so it's target specific 745 + depsTargetTarget = map lib.getDev ( 746 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 747 + ); 748 + depsTargetTargetPropagated = map (lib.getOutput "out") ( 749 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 750 + ); 720 751 721 752 hadrianFlags = [ 722 753 "--flavour=${ghcFlavour}" ··· 819 850 else 820 851 "${llvmPackages.clang}/bin/${llvmPackages.clang.targetPrefix}clang" 821 852 }" 853 + '' 854 + + lib.optionalString stdenv.targetPlatform.isWindows '' 855 + ghc-settings-edit "$settingsFile" \ 856 + "windres command" "${toolPath "windres" installCC}" 822 857 '' 823 858 + '' 824 859
+101 -76
pkgs/development/compilers/ghc/common-make-native-bignum.nix
··· 68 68 || (stdenv.hostPlatform != stdenv.targetPlatform) 69 69 ), 70 70 71 + # Enable NUMA support in RTS 72 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 73 + numactl, 74 + 71 75 # What flavour to build. An empty string indicates no 72 76 # specific flavour and falls back to ghc default values. 73 77 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 261 265 gmp 262 266 libffi 263 267 ncurses 268 + numactl 264 269 ; 265 270 }; 266 271 ··· 296 301 stripLen = 1; 297 302 extraPrefix = "libraries/unix/"; 298 303 }) 299 - ] 300 - ++ lib.optionals (lib.versionOlder version "9.4") [ 301 - # fix hyperlinked haddock sources: https://github.com/haskell/haddock/pull/1482 302 - (fetchpatch { 303 - url = "https://patch-diff.githubusercontent.com/raw/haskell/haddock/pull/1482.patch"; 304 - sha256 = "sha256-8w8QUCsODaTvknCDGgTfFNZa8ZmvIKaKS+2ZJZ9foYk="; 305 - extraPrefix = "utils/haddock/"; 306 - stripLen = 1; 307 - }) 308 - ] 309 304 310 - ++ lib.optionals (lib.versionOlder version "9.4.6") [ 311 - # Fix docs build with sphinx >= 6.0 312 - # https://gitlab.haskell.org/ghc/ghc/-/issues/22766 313 - (fetchpatch { 314 - name = "ghc-docs-sphinx-6.0.patch"; 315 - url = "https://gitlab.haskell.org/ghc/ghc/-/commit/10e94a556b4f90769b7fd718b9790d58ae566600.patch"; 316 - sha256 = "0kmhfamr16w8gch0lgln2912r8aryjky1hfcda3jkcwa5cdzgjdv"; 317 - }) 318 - ] 319 - 320 - ++ [ 321 305 # Fix docs build with Sphinx >= 7 https://gitlab.haskell.org/ghc/ghc/-/issues/24129 322 306 ./docs-sphinx-7.patch 323 - ] 324 307 325 - ++ lib.optionals (lib.versionOlder version "9.2.2") [ 326 - # Add flag that fixes C++ exception handling; opt-in. Merged in 9.4 and 9.2.2. 327 - # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7423 328 - (fetchpatch { 329 - name = "ghc-9.0.2-fcompact-unwind.patch"; 330 - # Note that the test suite is not packaged. 331 - url = "https://gitlab.haskell.org/ghc/ghc/-/commit/c6132c782d974a7701e7f6447bdcd2bf6db4299a.patch?merge_request_iid=7423"; 332 - sha256 = "sha256-b4feGZIaKDj/UKjWTNY6/jH4s2iate0wAgMxG3rAbZI="; 333 - }) 334 - ] 335 - 336 - ++ lib.optionals (lib.versionAtLeast version "9.2") [ 337 - # Don't generate code that doesn't compile when --enable-relocatable is passed to Setup.hs 338 - # Can be removed if the Cabal library included with ghc backports the linked fix 339 - (fetchpatch { 340 - url = "https://github.com/haskell/cabal/commit/6c796218c92f93c95e94d5ec2d077f6956f68e98.patch"; 341 - stripLen = 1; 342 - extraPrefix = "libraries/Cabal/"; 343 - sha256 = "sha256-yRQ6YmMiwBwiYseC5BsrEtDgFbWvst+maGgDtdD0vAY="; 344 - }) 345 - ] 346 - 347 - ++ lib.optionals (version == "9.4.6") [ 348 - # Work around a type not being defined when including Rts.h in bytestring's cbits 349 - # due to missing feature macros. See https://gitlab.haskell.org/ghc/ghc/-/issues/23810. 350 - ./9.4.6-bytestring-posix-source.patch 351 - ] 352 - 353 - ++ lib.optionals (stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64) [ 354 - # Prevent the paths module from emitting symbols that we don't use 355 - # when building with separate outputs. 356 - # 357 - # These cause problems as they're not eliminated by GHC's dead code 358 - # elimination on aarch64-darwin. (see 359 - # https://github.com/NixOS/nixpkgs/issues/140774 for details). 308 + # Correctly record libnuma's library and include directories in the 309 + # package db. This fixes linking whenever stdenv and propagation won't 310 + # quite pass the correct -L flags to the linker, e.g. when using GHC 311 + # outside of stdenv/nixpkgs or build->build compilation in pkgsStatic. 360 312 ( 361 - if lib.versionAtLeast version "9.2" then 362 - ./Cabal-at-least-3.6-paths-fix-cycle-aarch64-darwin.patch 313 + if lib.versionAtLeast version "9.4" then 314 + ./ghc-9.4-rts-package-db-libnuma-dirs.patch 363 315 else 364 - ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch 316 + ./ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch 365 317 ) 366 - ] 367 - 368 - # Fixes stack overrun in rts which crashes an process whenever 369 - # freeHaskellFunPtr is called with nixpkgs' hardening flags. 370 - # https://gitlab.haskell.org/ghc/ghc/-/issues/25485 371 - # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13599 372 - # TODO: patch doesn't apply for < 9.4, but may still be necessary? 373 - ++ lib.optionals (lib.versionAtLeast version "9.4") [ 374 - (fetchpatch { 375 - name = "ghc-rts-adjustor-fix-i386-stack-overrun.patch"; 376 - url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 377 - sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 378 - }) 379 318 ] 380 319 381 320 # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first ··· 414 353 [ 415 354 # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible 416 355 ] 417 - ); 356 + ) 357 + 358 + ++ lib.optionals (lib.versionAtLeast version "9.2") [ 359 + # Don't generate code that doesn't compile when --enable-relocatable is passed to Setup.hs 360 + # Can be removed if the Cabal library included with ghc backports the linked fix 361 + (fetchpatch { 362 + url = "https://github.com/haskell/cabal/commit/6c796218c92f93c95e94d5ec2d077f6956f68e98.patch"; 363 + stripLen = 1; 364 + extraPrefix = "libraries/Cabal/"; 365 + sha256 = "sha256-yRQ6YmMiwBwiYseC5BsrEtDgFbWvst+maGgDtdD0vAY="; 366 + }) 367 + ] 368 + 369 + ++ lib.optionals (lib.versionOlder version "9.2.2") [ 370 + # Add flag that fixes C++ exception handling; opt-in. Merged in 9.4 and 9.2.2. 371 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7423 372 + (fetchpatch { 373 + name = "ghc-9.0.2-fcompact-unwind.patch"; 374 + # Note that the test suite is not packaged. 375 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/c6132c782d974a7701e7f6447bdcd2bf6db4299a.patch?merge_request_iid=7423"; 376 + sha256 = "sha256-b4feGZIaKDj/UKjWTNY6/jH4s2iate0wAgMxG3rAbZI="; 377 + }) 378 + ] 379 + 380 + # fix hyperlinked haddock sources: https://github.com/haskell/haddock/pull/1482 381 + ++ lib.optionals (lib.versionOlder version "9.4") [ 382 + (fetchpatch { 383 + url = "https://patch-diff.githubusercontent.com/raw/haskell/haddock/pull/1482.patch"; 384 + sha256 = "sha256-8w8QUCsODaTvknCDGgTfFNZa8ZmvIKaKS+2ZJZ9foYk="; 385 + extraPrefix = "utils/haddock/"; 386 + stripLen = 1; 387 + }) 388 + ] 389 + 390 + # Fixes stack overrun in rts which crashes an process whenever 391 + # freeHaskellFunPtr is called with nixpkgs' hardening flags. 392 + # https://gitlab.haskell.org/ghc/ghc/-/issues/25485 393 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13599 394 + # TODO: patch doesn't apply for < 9.4, but may still be necessary? 395 + ++ lib.optionals (lib.versionAtLeast version "9.4") [ 396 + (fetchpatch { 397 + name = "ghc-rts-adjustor-fix-i386-stack-overrun.patch"; 398 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 399 + sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 400 + }) 401 + ] 402 + 403 + ++ lib.optionals (lib.versionOlder version "9.4.6") [ 404 + # Fix docs build with sphinx >= 6.0 405 + # https://gitlab.haskell.org/ghc/ghc/-/issues/22766 406 + (fetchpatch { 407 + name = "ghc-docs-sphinx-6.0.patch"; 408 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/10e94a556b4f90769b7fd718b9790d58ae566600.patch"; 409 + sha256 = "0kmhfamr16w8gch0lgln2912r8aryjky1hfcda3jkcwa5cdzgjdv"; 410 + }) 411 + ] 412 + 413 + ++ lib.optionals (version == "9.4.6") [ 414 + # Work around a type not being defined when including Rts.h in bytestring's cbits 415 + # due to missing feature macros. See https://gitlab.haskell.org/ghc/ghc/-/issues/23810. 416 + ./9.4.6-bytestring-posix-source.patch 417 + ] 418 + 419 + ++ lib.optionals (stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64) [ 420 + # Prevent the paths module from emitting symbols that we don't use 421 + # when building with separate outputs. 422 + # 423 + # These cause problems as they're not eliminated by GHC's dead code 424 + # elimination on aarch64-darwin. (see 425 + # https://github.com/NixOS/nixpkgs/issues/140774 for details). 426 + ( 427 + if lib.versionAtLeast version "9.2" then 428 + ./Cabal-at-least-3.6-paths-fix-cycle-aarch64-darwin.patch 429 + else 430 + ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch 431 + ) 432 + ]; 418 433 419 434 postPatch = "patchShebangs ."; 420 435 ··· 563 578 ++ lib.optionals (disableLargeAddressSpace) [ 564 579 "--disable-large-address-space" 565 580 ] 581 + ++ lib.optionals enableNuma [ 582 + "--enable-numa" 583 + "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include" 584 + "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib" 585 + ] 566 586 ++ lib.optionals enableUnregisterised [ 567 587 "--enable-unregisterised" 568 588 ]; ··· 618 638 619 639 buildInputs = [ bash ] ++ (libDeps hostPlatform); 620 640 621 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 622 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 641 + # stage1 GHC doesn't need to link against libnuma, so it's target specific 642 + depsTargetTarget = map lib.getDev ( 643 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 644 + ); 645 + depsTargetTargetPropagated = map (lib.getOutput "out") ( 646 + libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ] 647 + ); 623 648 624 649 # required, because otherwise all symbols from HSffi.o are stripped, and 625 650 # that in turn causes GHCi to abort
+100
pkgs/development/compilers/ghc/ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch
··· 1 + From 3d17e6fa39fb18d4300fbf2a0c4b9ddb4adf746b Mon Sep 17 00:00:00 2001 2 + From: sterni <sternenseemann@systemli.org> 3 + Date: Thu, 17 Jul 2025 21:21:29 +0200 4 + Subject: [PATCH] rts: record libnuma include and lib dirs in package conf 5 + MIME-Version: 1.0 6 + Content-Type: text/plain; charset=UTF-8 7 + Content-Transfer-Encoding: 8bit 8 + 9 + The --with-libnuma-libraries and --with-libnuma-includes flags were 10 + originally introduced for hadrian in def486c90ef6f37d81d0d9c6df7544 11 + and curiously never supported by the make build system — even though 12 + the addition was made in the 9.0 series and even backported to the 13 + 8.10 series. 14 + 15 + While the make build system knows when to link against libnuma, it won't 16 + enforce its specific directories by adding them to rts.conf in the 17 + package db. This commit implements this retroactively for the make build 18 + system, modeled after how make does the same sort of thing for Libdw. 19 + The Libdw logic also affects the bindist configure file in 20 + distrib/configure.ac which isn't replicate since we don't need it. 21 + --- 22 + mk/config.mk.in | 4 ++++ 23 + rts/ghc.mk | 8 ++++++++ 24 + rts/package.conf.in | 5 +++-- 25 + rts/rts.cabal.in | 1 + 26 + 4 files changed, 16 insertions(+), 2 deletions(-) 27 + 28 + diff --git a/mk/config.mk.in b/mk/config.mk.in 29 + index 35f6e2d087..d2b1329eb5 100644 30 + --- a/mk/config.mk.in 31 + +++ b/mk/config.mk.in 32 + @@ -333,6 +333,10 @@ LibdwIncludeDir=@LibdwIncludeDir@ 33 + # rts/Libdw.c:set_initial_registers() 34 + GhcRtsWithLibdw=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 s390x),@UseLibdw@,NO)) 35 + 36 + +UseLibNuma=@UseLibNuma@ 37 + +LibNumaLibDir=@LibNumaLibDir@ 38 + +LibNumaIncludeDir=@LibNumaIncludeDir@ 39 + + 40 + ################################################################################ 41 + # 42 + # Paths (see paths.mk) 43 + diff --git a/rts/ghc.mk b/rts/ghc.mk 44 + index 9c535def5a..7782c4b768 100644 45 + --- a/rts/ghc.mk 46 + +++ b/rts/ghc.mk 47 + @@ -576,6 +576,14 @@ rts_PACKAGE_CPP_OPTS += -DLIBDW_INCLUDE_DIR= 48 + rts_PACKAGE_CPP_OPTS += -DLIBDW_LIB_DIR= 49 + endif 50 + 51 + +ifeq "$(UseLibNuma)" "YES" 52 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_INCLUDE_DIR=$(LibNumaIncludeDir) 53 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_LIB_DIR=$(LibNumaLibDir) 54 + +else 55 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_INCLUDE_DIR= 56 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_LIB_DIR= 57 + +endif 58 + + 59 + # ----------------------------------------------------------------------------- 60 + # dependencies 61 + 62 + diff --git a/rts/package.conf.in b/rts/package.conf.in 63 + index 9bdbf3659a..46f728b09a 100644 64 + --- a/rts/package.conf.in 65 + +++ b/rts/package.conf.in 66 + @@ -18,9 +18,9 @@ hidden-modules: 67 + import-dirs: 68 + 69 + #if defined(INSTALLING) 70 + -library-dirs: LIB_DIR"/rts" FFI_LIB_DIR LIBDW_LIB_DIR 71 + +library-dirs: LIB_DIR"/rts" FFI_LIB_DIR LIBDW_LIB_DIR LIBNUMA_LIB_DIR 72 + #else /* !INSTALLING */ 73 + -library-dirs: TOP"/rts/dist/build" FFI_LIB_DIR LIBDW_LIB_DIR 74 + +library-dirs: TOP"/rts/dist/build" FFI_LIB_DIR LIBDW_LIB_DIR LIBNUMA_LIB_DIR 75 + #endif 76 + 77 + hs-libraries: "HSrts" FFI_LIB 78 + @@ -76,6 +76,7 @@ include-dirs: TOP"/rts/dist/build" 79 + FFI_INCLUDE_DIR 80 + LIBDW_INCLUDE_DIR 81 + TOP"/includes/dist-install/build" 82 + + LIBNUMA_INCLUDE_DIR 83 + #endif 84 + 85 + includes: Stg.h 86 + diff --git a/rts/rts.cabal.in b/rts/rts.cabal.in 87 + index 0a06414d95..f71fb079ec 100644 88 + --- a/rts/rts.cabal.in 89 + +++ b/rts/rts.cabal.in 90 + @@ -150,6 +150,7 @@ library 91 + include-dirs: build ../includes includes 92 + includes/dist-derivedconstants/header @FFIIncludeDir@ 93 + @LibdwIncludeDir@ 94 + + @LibNumaIncludeDir@ 95 + includes: Stg.h 96 + install-includes: Cmm.h HsFFI.h MachDeps.h Rts.h RtsAPI.h Stg.h 97 + ghcautoconf.h ghcconfig.h ghcplatform.h ghcversion.h 98 + -- 99 + 2.50.0 100 +
+100
pkgs/development/compilers/ghc/ghc-9.4-rts-package-db-libnuma-dirs.patch
··· 1 + From a0b547f41939304adfc0c430314c342dd69306ae Mon Sep 17 00:00:00 2001 2 + From: sterni <sternenseemann@systemli.org> 3 + Date: Thu, 17 Jul 2025 21:21:29 +0200 4 + Subject: [PATCH] rts: record libnuma include and lib dirs in package conf 5 + MIME-Version: 1.0 6 + Content-Type: text/plain; charset=UTF-8 7 + Content-Transfer-Encoding: 8bit 8 + 9 + The --with-libnuma-libraries and --with-libnuma-includes flags were 10 + originally introduced for hadrian in def486c90ef6f37d81d0d9c6df7544 11 + and curiously never supported by the make build system — even though 12 + the addition was made in the 9.0 series and even backported to the 13 + 8.10 series. 14 + 15 + While the make build system knows when to link against libnuma, it won't 16 + enforce its specific directories by adding them to rts.conf in the 17 + package db. This commit implements this retroactively for the make build 18 + system, modeled after how make does the same sort of thing for Libdw. 19 + The Libdw logic also affects the bindist configure file in 20 + distrib/configure.ac which isn't replicate since we don't need it. 21 + --- 22 + mk/config.mk.in | 4 ++++ 23 + rts/ghc.mk | 8 ++++++++ 24 + rts/package.conf.in | 5 +++-- 25 + rts/rts.cabal.in | 1 + 26 + 4 files changed, 16 insertions(+), 2 deletions(-) 27 + 28 + diff --git a/mk/config.mk.in b/mk/config.mk.in 29 + index 2ff2bea9b6..d95f927dbd 100644 30 + --- a/mk/config.mk.in 31 + +++ b/mk/config.mk.in 32 + @@ -324,6 +324,10 @@ LibdwIncludeDir=@LibdwIncludeDir@ 33 + # rts/Libdw.c:set_initial_registers() 34 + GhcRtsWithLibdw=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 s390x),@UseLibdw@,NO)) 35 + 36 + +UseLibNuma=@UseLibNuma@ 37 + +LibNumaLibDir=@LibNumaLibDir@ 38 + +LibNumaIncludeDir=@LibNumaIncludeDir@ 39 + + 40 + ################################################################################ 41 + # 42 + # Paths (see paths.mk) 43 + diff --git a/rts/ghc.mk b/rts/ghc.mk 44 + index 36a82f9f2c..854bb8e013 100644 45 + --- a/rts/ghc.mk 46 + +++ b/rts/ghc.mk 47 + @@ -573,6 +573,14 @@ rts_PACKAGE_CPP_OPTS += -DLIBDW_INCLUDE_DIR= 48 + rts_PACKAGE_CPP_OPTS += -DLIBDW_LIB_DIR= 49 + endif 50 + 51 + +ifeq "$(UseLibNuma)" "YES" 52 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_INCLUDE_DIR=$(LibNumaIncludeDir) 53 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_LIB_DIR=$(LibNumaLibDir) 54 + +else 55 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_INCLUDE_DIR= 56 + +rts_PACKAGE_CPP_OPTS += -DLIBNUMA_LIB_DIR= 57 + +endif 58 + + 59 + # ----------------------------------------------------------------------------- 60 + # dependencies 61 + 62 + diff --git a/rts/package.conf.in b/rts/package.conf.in 63 + index cb5a436f5c..9e5ae48adb 100644 64 + --- a/rts/package.conf.in 65 + +++ b/rts/package.conf.in 66 + @@ -18,9 +18,9 @@ hidden-modules: 67 + import-dirs: 68 + 69 + #if defined(INSTALLING) 70 + -library-dirs: LIB_DIR FFI_LIB_DIR LIBDW_LIB_DIR 71 + +library-dirs: LIB_DIR FFI_LIB_DIR LIBDW_LIB_DIR LIBNUMA_LIB_DIR 72 + #else /* !INSTALLING */ 73 + -library-dirs: TOP"/rts/dist-install/build" FFI_LIB_DIR LIBDW_LIB_DIR 74 + +library-dirs: TOP"/rts/dist-install/build" FFI_LIB_DIR LIBDW_LIB_DIR LIBNUMA_LIB_DIR 75 + #endif 76 + 77 + hs-libraries: "HSrts" FFI_LIB 78 + @@ -74,6 +74,7 @@ include-dirs: TOP"/rts/include" 79 + TOP"/rts/dist-install/build/include" 80 + FFI_INCLUDE_DIR 81 + LIBDW_INCLUDE_DIR 82 + + LIBNUMA_INCLUDE_DIR 83 + #endif 84 + 85 + includes: Rts.h 86 + diff --git a/rts/rts.cabal.in b/rts/rts.cabal.in 87 + index a8882268ac..debf2ba0a0 100644 88 + --- a/rts/rts.cabal.in 89 + +++ b/rts/rts.cabal.in 90 + @@ -154,6 +154,7 @@ library 91 + include-dirs: include 92 + @FFIIncludeDir@ 93 + @LibdwIncludeDir@ 94 + + @LibNumaIncludeDir@ 95 + includes: Rts.h 96 + install-includes: Cmm.h HsFFI.h MachDeps.h Rts.h RtsAPI.h Stg.h 97 + ghcautoconf.h ghcconfig.h ghcplatform.h ghcversion.h 98 + -- 99 + 2.50.0 100 +
+24
pkgs/development/compilers/ghc/ghc-define-undefined-elf-st-visibility.patch
··· 1 + diff --git a/rts/linker/ElfTypes.h b/rts/linker/ElfTypes.h 2 + index f5e2f819d9..7f75087738 100644 3 + --- a/rts/linker/ElfTypes.h 4 + +++ b/rts/linker/ElfTypes.h 5 + @@ -33,6 +33,9 @@ 6 + #define Elf_Sym Elf64_Sym 7 + #define Elf_Rel Elf64_Rel 8 + #define Elf_Rela Elf64_Rela 9 + +#if !defined(ELF64_ST_VISIBILITY) 10 + +#define ELF64_ST_VISIBILITY(o) ((o)&0x3) 11 + +#endif 12 + #if !defined(ELF_ST_VISIBILITY) 13 + #define ELF_ST_VISIBILITY ELF64_ST_VISIBILITY 14 + #endif 15 + @@ -60,6 +63,9 @@ 16 + #define Elf_Sym Elf32_Sym 17 + #define Elf_Rel Elf32_Rel 18 + #define Elf_Rela Elf32_Rela 19 + +#if !defined(ELF32_ST_VISIBILITY) 20 + +#define ELF32_ST_VISIBILITY(o) ((o)&0x3) 21 + +#endif 22 + #if !defined(ELF_ST_VISIBILITY) 23 + #define ELF_ST_VISIBILITY ELF32_ST_VISIBILITY 24 + #endif /* ELF_ST_VISIBILITY */
+371 -108
pkgs/development/haskell-modules/configuration-common.nix
··· 102 102 cabalInstallOverlay = cself: csuper: { 103 103 Cabal = cself.Cabal_3_14_2_0; 104 104 Cabal-syntax = cself.Cabal-syntax_3_14_2_0; 105 + 106 + # Only needed for cabal2nix, hpack < 0.37 forbids Cabal >= 3.14 107 + hpack = cself.hpack_0_38_1; 105 108 }; 106 109 in 107 110 { ··· 166 169 # May as well… 167 170 (self.generateOptparseApplicativeCompletions [ "guardian" ]) 168 171 ]; 172 + 173 + cabal2nix-unstable = super.cabal2nix-unstable.overrideScope cabalInstallOverlay; 169 174 } 170 175 ) 171 176 cabal-install 172 177 cabal-install-solver 173 178 guardian 179 + cabal2nix-unstable 174 180 ; 175 181 176 182 # Expected test output for these accidentally checks the absolute location of the source directory ··· 309 315 sha256 = "10zkvclyir3zf21v41zdsvg68vrkq89n64kv9k54742am2i4aygf"; 310 316 }) super.weeder; 311 317 312 - # Version 2.1.1 is deprecated, but part of Stackage LTS at the moment. 313 - # https://github.com/commercialhaskell/stackage/issues/7500 314 - # https://github.com/yesodweb/shakespeare/issues/280 315 - shakespeare = doDistribute self.shakespeare_2_1_0_1; 318 + # Test suite doesn't find necessary test files when compiling 319 + # https://github.com/yesodweb/shakespeare/issues/294 320 + shakespeare = dontCheck super.shakespeare; 316 321 317 322 # Work around -Werror failures until a more permanent solution is released 318 323 # https://github.com/haskell-cryptography/HsOpenSSL/issues/88 ··· 543 548 name = "git-annex-${super.git-annex.version}-src"; 544 549 url = "git://git-annex.branchable.com/"; 545 550 rev = "refs/tags/" + super.git-annex.version; 546 - sha256 = "0d968aciaxmblahk79x2m708rvbg19flj5naxzg0zdp9j2jwlcqf"; 551 + sha256 = "sha256-whpBFmOHBTm1clXoAwInsQw7mnxrQOyaUj7byogku5c="; 547 552 # delete android and Android directories which cause issues on 548 553 # darwin (case insensitive directory). Since we don't need them 549 554 # during the build process, we can delete it to prevent a hash ··· 558 563 # TODO(@sternenseemann): submit upstreamable patch resolving this 559 564 # (this should be possible by also taking PREFIX into account). 560 565 ./patches/git-annex-no-usr-prefix.patch 561 - 562 - # Pick fix for git 2.50 related test suite failures from 10.20250630 563 - # https://git-annex.branchable.com/bugs/test_suite_fail_with_git_2.50/ 564 - (pkgs.fetchpatch { 565 - name = "git-annex-workaround-for-git-2.50.patch"; 566 - url = "https://git.joeyh.name/index.cgi/git-annex.git/patch/?id=fb155b1e3e59cc1f9cf8a4fe7d47cba49d1c81af"; 567 - sha256 = "sha256-w6eXW0JqshXTd0/tNPZ0fOW2SVmA90G5eFhsd9y05BI="; 568 - excludes = [ 569 - "doc/**" 570 - "CHANGELOG" 571 - ]; 572 - }) 573 566 ]; 574 567 575 568 postPatch = '' ··· 1381 1374 VulkanMemoryAllocator = addExtraLibrary pkgs.vulkan-headers super.VulkanMemoryAllocator; 1382 1375 vulkan-utils = addExtraLibrary pkgs.vulkan-headers super.vulkan-utils; 1383 1376 1384 - # Support for vulkan-headers 1.4.313.0 1385 - # https://github.com/YoshikuniJujo/gpu-vulkan-middle/issues/10 1386 - gpu-vulkan-middle = overrideCabal (drv: { 1387 - version = 1388 - let 1389 - fixed = "0.1.0.76"; 1390 - in 1391 - lib.warnIf (lib.versionAtLeast drv.version fixed) 1392 - "haskellPackages.gpu-vulkan-middle: default version ${drv.version} >= ${fixed}, consider dropping override" 1393 - fixed; 1394 - sha256 = "sha256-VQAVo/84qPBFkQSmY3pT4WXOK9zrFMpK7WN9/UdED6E="; 1395 - revision = null; 1396 - editedCabalFile = null; 1397 - }) super.gpu-vulkan-middle; 1398 - 1399 1377 # Generate cli completions for dhall. 1400 1378 dhall = self.generateOptparseApplicativeCompletions [ "dhall" ] super.dhall; 1401 1379 # 2025-01-27: allow aeson >= 2.2, 9.8 versions of text and bytestring ··· 1578 1556 # https://github.com/haskell-servant/servant-ekg/issues/15 1579 1557 servant-ekg = doJailbreak super.servant-ekg; 1580 1558 1581 - # Fixes bug in an Ord instance that was causing the test suite to fail 1582 - # https://github.com/fpringle/servant-routes/issues/33 1583 - servant-routes = appendPatches [ 1584 - (pkgs.fetchpatch { 1585 - name = "servant-routes-fix-ord.patch"; 1586 - url = "https://github.com/fpringle/servant-routes/commit/d1ef071f11c6a0810637beb8ea0b08f8e524b48a.patch"; 1587 - sha256 = "1c2xpi7sz0621fj9r1010587d1l39j6mm8l4vqmz9pldccmcb0f2"; 1588 - }) 1589 - ] super.servant-routes; 1590 - 1591 - # Fix test suite with text >= 2.1.2 1592 - servant-client = 1593 - appendPatches 1594 - [ 1595 - (pkgs.fetchpatch { 1596 - name = "servant-client-text-2.1.2.patch"; 1597 - url = "https://github.com/haskell-servant/servant/commit/9cda0cfb356a01ad402ee949e0b0d5c0494eace2.patch"; 1598 - sha256 = "19vpn7h108wra9b84r642zxg0mii66rq4vjbqhi7ackkdb0mx9yn"; 1599 - relative = "servant-client"; 1600 - # patch to servant-client.cabal doesn't apply on 0.20.2 1601 - includes = [ "README.md" ]; 1602 - }) 1603 - ] 1604 - ( 1605 - overrideCabal (drv: { 1606 - postPatch = super.postPatch or "" + '' 1607 - # Restore the symlink (to the file we patch) which becomes a regular file 1608 - # in the hackage tarball 1609 - ln -sf README.md README.lhs 1610 - ''; 1611 - }) super.servant-client 1612 - ); 1613 - 1614 1559 # it wants to build a statically linked binary by default 1615 1560 hledger-flow = overrideCabal (drv: { 1616 1561 postPatch = (drv.postPatch or "") + '' ··· 1660 1605 }) 1661 1606 # https://github.com/NixOS/nixpkgs/issues/198495 1662 1607 (dontCheckIf (pkgs.postgresqlTestHook.meta.broken) super.persistent-postgresql); 1663 - 1664 - # Downgrade persistent-test to a version that's compatible with 1665 - # persistent < 2.16 (which Stackage prescribed). Unfortunately, the 1666 - # bad version of persistent-test slipped into Stackage LTS because 1667 - # PVP allows it and LTS doesn't continuously run test suites (contrary 1668 - # to nightly). 1669 - # See also https://github.com/yesodweb/persistent/pull/1584#issuecomment-2939756529 1670 - # https://github.com/commercialhaskell/stackage/issues/7768 1671 - persistent-test_2_13_1_4 = dontDistribute super.persistent-test; 1672 - persistent-test = doDistribute self.persistent-test_2_13_1_3; 1673 1608 1674 1609 # Needs matching lsp-types 1675 1610 # Allow lens >= 5.3 ··· 2084 2019 # https://github.com/obsidiansystems/database-id/issues/1 2085 2020 database-id-class = doJailbreak super.database-id-class; 2086 2021 2087 - cabal2nix-unstable = overrideCabal { 2088 - passthru = { 2089 - updateScript = ../../../maintainers/scripts/haskell/update-cabal2nix-unstable.sh; 2090 - 2091 - # This is used by regenerate-hackage-packages.nix to supply the configuration 2092 - # values we can easily generate automatically without checking them in. 2093 - compilerConfig = 2094 - pkgs.runCommand "hackage2nix-${self.ghc.haskellCompilerName}-config.yaml" 2095 - { 2096 - nativeBuildInputs = [ 2097 - self.ghc 2098 - ]; 2099 - } 2100 - '' 2101 - cat > "$out" << EOF 2102 - # generated by haskellPackages.cabal2nix-unstable.compilerConfig 2103 - compiler: ${self.ghc.haskellCompilerName} 2104 - 2105 - core-packages: 2106 - EOF 2107 - 2108 - ghc-pkg list \ 2109 - | tail -n '+2' \ 2110 - | sed -e 's/[()]//g' -e 's/\s\+/ - /' \ 2111 - >> "$out" 2112 - ''; 2113 - }; 2114 - } super.cabal2nix-unstable; 2115 - 2116 2022 # Too strict version bounds on base 2117 2023 # https://github.com/gibiansky/IHaskell/issues/1217 2118 2024 ihaskell-display = doJailbreak super.ihaskell-display; ··· 2194 2100 self: super: { 2195 2101 # stack needs to be built with the same hpack version that the upstream releases use. 2196 2102 # https://github.com/NixOS/nixpkgs/issues/223390 2197 - hpack = self.hpack_0_38_0; 2103 + hpack = self.hpack_0_38_1; 2198 2104 } 2199 2105 ); 2200 2106 ··· 3047 2953 # https://github.com/snoyberg/http-client/pull/563 3048 2954 http-client-tls = doJailbreak super.http-client-tls; 3049 2955 2956 + # agda2hs 1.3 is not compatible with Agda 2.8.0 2957 + agda2hs = lib.pipe super.agda2hs [ 2958 + (warnAfterVersion "1.3") 2959 + (overrideSrc { 2960 + version = "1.3-unstable-2025-07-25"; 2961 + src = pkgs.fetchFromGitHub { 2962 + owner = "agda"; 2963 + repo = "agda2hs"; 2964 + rev = "01cc0532b522f64223782617cbde1a6f21b8880e"; 2965 + hash = "sha256-SXhnkZa8OmgpYRTb2IVTfebtX+GG5mkVcqKchl2Noic="; 2966 + }; 2967 + }) 2968 + ]; 2969 + 3050 2970 bsb-http-chunked = lib.pipe super.bsb-http-chunked [ 3051 2971 (warnAfterVersion "0.0.0.4") 3052 2972 # Last released in 2018 ··· 3318 3238 src = amazonkaSrc + "/${dir}"; 3319 3239 }) 3320 3240 drv; 3321 - isAmazonkaService = 3322 - name: lib.hasPrefix "amazonka-" name && name != "amazonka-test" && name != "amazonka-s3-streaming"; 3323 - amazonkaServices = lib.filter isAmazonkaService (lib.attrNames super); 3241 + # To get the list of amazonka services run: 3242 + # > nix eval --impure --expr 'builtins.attrNames (import ./. {}).haskellPackages' --json | jq '.[]' | grep '^"amazonka' 3243 + # NB: we exclude amazonka-test and amazonka-s3-streaming 3244 + amazonkaServices = [ 3245 + "amazonka" 3246 + "amazonka-accessanalyzer" 3247 + "amazonka-account" 3248 + "amazonka-alexa-business" 3249 + "amazonka-amp" 3250 + "amazonka-amplify" 3251 + "amazonka-amplifybackend" 3252 + "amazonka-amplifyuibuilder" 3253 + "amazonka-apigateway" 3254 + "amazonka-apigatewaymanagementapi" 3255 + "amazonka-apigatewayv2" 3256 + "amazonka-appconfig" 3257 + "amazonka-appconfigdata" 3258 + "amazonka-appflow" 3259 + "amazonka-appintegrations" 3260 + "amazonka-application-autoscaling" 3261 + "amazonka-application-insights" 3262 + "amazonka-applicationcostprofiler" 3263 + "amazonka-appmesh" 3264 + "amazonka-apprunner" 3265 + "amazonka-appstream" 3266 + "amazonka-appsync" 3267 + "amazonka-arc-zonal-shift" 3268 + "amazonka-athena" 3269 + "amazonka-auditmanager" 3270 + "amazonka-autoscaling" 3271 + "amazonka-autoscaling-plans" 3272 + "amazonka-backup" 3273 + "amazonka-backup-gateway" 3274 + "amazonka-backupstorage" 3275 + "amazonka-batch" 3276 + "amazonka-billingconductor" 3277 + "amazonka-braket" 3278 + "amazonka-budgets" 3279 + "amazonka-certificatemanager" 3280 + "amazonka-certificatemanager-pca" 3281 + "amazonka-chime" 3282 + "amazonka-chime-sdk-identity" 3283 + "amazonka-chime-sdk-media-pipelines" 3284 + "amazonka-chime-sdk-meetings" 3285 + "amazonka-chime-sdk-messaging" 3286 + "amazonka-chime-sdk-voice" 3287 + "amazonka-cloud9" 3288 + "amazonka-cloudcontrol" 3289 + "amazonka-clouddirectory" 3290 + "amazonka-cloudformation" 3291 + "amazonka-cloudfront" 3292 + "amazonka-cloudhsm" 3293 + "amazonka-cloudhsmv2" 3294 + "amazonka-cloudsearch" 3295 + "amazonka-cloudsearch-domains" 3296 + "amazonka-cloudtrail" 3297 + "amazonka-cloudwatch" 3298 + "amazonka-cloudwatch-events" 3299 + "amazonka-cloudwatch-logs" 3300 + "amazonka-codeartifact" 3301 + "amazonka-codebuild" 3302 + "amazonka-codecommit" 3303 + "amazonka-codedeploy" 3304 + "amazonka-codeguru-reviewer" 3305 + "amazonka-codeguruprofiler" 3306 + "amazonka-codepipeline" 3307 + "amazonka-codestar" 3308 + "amazonka-codestar-connections" 3309 + "amazonka-codestar-notifications" 3310 + "amazonka-cognito-identity" 3311 + "amazonka-cognito-idp" 3312 + "amazonka-cognito-sync" 3313 + "amazonka-comprehend" 3314 + "amazonka-comprehendmedical" 3315 + "amazonka-compute-optimizer" 3316 + "amazonka-config" 3317 + "amazonka-connect" 3318 + "amazonka-connect-contact-lens" 3319 + "amazonka-connectcampaigns" 3320 + "amazonka-connectcases" 3321 + "amazonka-connectparticipant" 3322 + "amazonka-contrib-rds-utils" 3323 + "amazonka-controltower" 3324 + "amazonka-core" 3325 + "amazonka-cost-explorer" 3326 + "amazonka-cur" 3327 + "amazonka-customer-profiles" 3328 + "amazonka-databrew" 3329 + "amazonka-dataexchange" 3330 + "amazonka-datapipeline" 3331 + "amazonka-datasync" 3332 + "amazonka-detective" 3333 + "amazonka-devicefarm" 3334 + "amazonka-devops-guru" 3335 + "amazonka-directconnect" 3336 + "amazonka-discovery" 3337 + "amazonka-dlm" 3338 + "amazonka-dms" 3339 + "amazonka-docdb" 3340 + "amazonka-docdb-elastic" 3341 + "amazonka-drs" 3342 + "amazonka-ds" 3343 + "amazonka-dynamodb" 3344 + "amazonka-dynamodb-dax" 3345 + "amazonka-dynamodb-streams" 3346 + "amazonka-ebs" 3347 + "amazonka-ec2" 3348 + "amazonka-ec2-instance-connect" 3349 + "amazonka-ecr" 3350 + "amazonka-ecr-public" 3351 + "amazonka-ecs" 3352 + "amazonka-efs" 3353 + "amazonka-eks" 3354 + "amazonka-elastic-inference" 3355 + "amazonka-elasticache" 3356 + "amazonka-elasticbeanstalk" 3357 + "amazonka-elasticsearch" 3358 + "amazonka-elastictranscoder" 3359 + "amazonka-elb" 3360 + "amazonka-elbv2" 3361 + "amazonka-emr" 3362 + "amazonka-emr-containers" 3363 + "amazonka-emr-serverless" 3364 + "amazonka-evidently" 3365 + "amazonka-finspace" 3366 + "amazonka-finspace-data" 3367 + "amazonka-fis" 3368 + "amazonka-fms" 3369 + "amazonka-forecast" 3370 + "amazonka-forecastquery" 3371 + "amazonka-frauddetector" 3372 + "amazonka-fsx" 3373 + "amazonka-gamelift" 3374 + "amazonka-gamesparks" 3375 + "amazonka-glacier" 3376 + "amazonka-globalaccelerator" 3377 + "amazonka-glue" 3378 + "amazonka-grafana" 3379 + "amazonka-greengrass" 3380 + "amazonka-greengrassv2" 3381 + "amazonka-groundstation" 3382 + "amazonka-guardduty" 3383 + "amazonka-health" 3384 + "amazonka-healthlake" 3385 + "amazonka-honeycode" 3386 + "amazonka-iam" 3387 + "amazonka-iam-policy" 3388 + "amazonka-identitystore" 3389 + "amazonka-imagebuilder" 3390 + "amazonka-importexport" 3391 + "amazonka-inspector" 3392 + "amazonka-inspector2" 3393 + "amazonka-iot" 3394 + "amazonka-iot-analytics" 3395 + "amazonka-iot-dataplane" 3396 + "amazonka-iot-jobs-dataplane" 3397 + "amazonka-iot-roborunner" 3398 + "amazonka-iot1click-devices" 3399 + "amazonka-iot1click-projects" 3400 + "amazonka-iotdeviceadvisor" 3401 + "amazonka-iotevents" 3402 + "amazonka-iotevents-data" 3403 + "amazonka-iotfleethub" 3404 + "amazonka-iotfleetwise" 3405 + "amazonka-iotsecuretunneling" 3406 + "amazonka-iotsitewise" 3407 + "amazonka-iotthingsgraph" 3408 + "amazonka-iottwinmaker" 3409 + "amazonka-iotwireless" 3410 + "amazonka-ivs" 3411 + "amazonka-ivschat" 3412 + "amazonka-kafka" 3413 + "amazonka-kafkaconnect" 3414 + "amazonka-kendra" 3415 + "amazonka-keyspaces" 3416 + "amazonka-kinesis" 3417 + "amazonka-kinesis-analytics" 3418 + "amazonka-kinesis-firehose" 3419 + "amazonka-kinesis-video" 3420 + "amazonka-kinesis-video-archived-media" 3421 + "amazonka-kinesis-video-media" 3422 + "amazonka-kinesis-video-signaling" 3423 + "amazonka-kinesis-video-webrtc-storage" 3424 + "amazonka-kinesisanalyticsv2" 3425 + "amazonka-kms" 3426 + "amazonka-lakeformation" 3427 + "amazonka-lambda" 3428 + "amazonka-lex-models" 3429 + "amazonka-lex-runtime" 3430 + "amazonka-lexv2-models" 3431 + "amazonka-license-manager" 3432 + "amazonka-license-manager-linux-subscriptions" 3433 + "amazonka-license-manager-user-subscriptions" 3434 + "amazonka-lightsail" 3435 + "amazonka-location" 3436 + "amazonka-lookoutequipment" 3437 + "amazonka-lookoutmetrics" 3438 + "amazonka-lookoutvision" 3439 + "amazonka-m2" 3440 + "amazonka-macie" 3441 + "amazonka-maciev2" 3442 + "amazonka-managedblockchain" 3443 + "amazonka-marketplace-analytics" 3444 + "amazonka-marketplace-catalog" 3445 + "amazonka-marketplace-entitlement" 3446 + "amazonka-marketplace-metering" 3447 + "amazonka-mechanicalturk" 3448 + "amazonka-mediaconnect" 3449 + "amazonka-mediaconvert" 3450 + "amazonka-medialive" 3451 + "amazonka-mediapackage" 3452 + "amazonka-mediapackage-vod" 3453 + "amazonka-mediastore" 3454 + "amazonka-mediastore-dataplane" 3455 + "amazonka-mediatailor" 3456 + "amazonka-memorydb" 3457 + "amazonka-mgn" 3458 + "amazonka-migration-hub-refactor-spaces" 3459 + "amazonka-migrationhub" 3460 + "amazonka-migrationhub-config" 3461 + "amazonka-migrationhuborchestrator" 3462 + "amazonka-migrationhubstrategy" 3463 + "amazonka-ml" 3464 + "amazonka-mobile" 3465 + "amazonka-mq" 3466 + "amazonka-mtl" 3467 + "amazonka-mwaa" 3468 + "amazonka-neptune" 3469 + "amazonka-network-firewall" 3470 + "amazonka-networkmanager" 3471 + "amazonka-nimble" 3472 + "amazonka-oam" 3473 + "amazonka-omics" 3474 + "amazonka-opensearch" 3475 + "amazonka-opensearchserverless" 3476 + "amazonka-opsworks" 3477 + "amazonka-opsworks-cm" 3478 + "amazonka-organizations" 3479 + "amazonka-outposts" 3480 + "amazonka-panorama" 3481 + "amazonka-personalize" 3482 + "amazonka-personalize-events" 3483 + "amazonka-personalize-runtime" 3484 + "amazonka-pi" 3485 + "amazonka-pinpoint" 3486 + "amazonka-pinpoint-email" 3487 + "amazonka-pinpoint-sms-voice" 3488 + "amazonka-pinpoint-sms-voice-v2" 3489 + "amazonka-pipes" 3490 + "amazonka-polly" 3491 + "amazonka-pricing" 3492 + "amazonka-privatenetworks" 3493 + "amazonka-proton" 3494 + "amazonka-qldb" 3495 + "amazonka-qldb-session" 3496 + "amazonka-quicksight" 3497 + "amazonka-ram" 3498 + "amazonka-rbin" 3499 + "amazonka-rds" 3500 + "amazonka-rds-data" 3501 + "amazonka-redshift" 3502 + "amazonka-redshift-data" 3503 + "amazonka-redshift-serverless" 3504 + "amazonka-rekognition" 3505 + "amazonka-resiliencehub" 3506 + "amazonka-resource-explorer-v2" 3507 + "amazonka-resourcegroups" 3508 + "amazonka-resourcegroupstagging" 3509 + "amazonka-robomaker" 3510 + "amazonka-rolesanywhere" 3511 + "amazonka-route53" 3512 + "amazonka-route53-autonaming" 3513 + "amazonka-route53-domains" 3514 + "amazonka-route53-recovery-cluster" 3515 + "amazonka-route53-recovery-control-config" 3516 + "amazonka-route53-recovery-readiness" 3517 + "amazonka-route53resolver" 3518 + "amazonka-rum" 3519 + "amazonka-s3" 3520 + "amazonka-s3-encryption" 3521 + #"amazonka-s3-streaming" 3522 + "amazonka-s3outposts" 3523 + "amazonka-sagemaker" 3524 + "amazonka-sagemaker-a2i-runtime" 3525 + "amazonka-sagemaker-edge" 3526 + "amazonka-sagemaker-featurestore-runtime" 3527 + "amazonka-sagemaker-geospatial" 3528 + "amazonka-sagemaker-metrics" 3529 + "amazonka-sagemaker-runtime" 3530 + "amazonka-savingsplans" 3531 + "amazonka-scheduler" 3532 + "amazonka-schemas" 3533 + "amazonka-sdb" 3534 + "amazonka-secretsmanager" 3535 + "amazonka-securityhub" 3536 + "amazonka-securitylake" 3537 + "amazonka-serverlessrepo" 3538 + "amazonka-service-quotas" 3539 + "amazonka-servicecatalog" 3540 + "amazonka-servicecatalog-appregistry" 3541 + "amazonka-ses" 3542 + "amazonka-sesv2" 3543 + "amazonka-shield" 3544 + "amazonka-signer" 3545 + "amazonka-simspaceweaver" 3546 + "amazonka-sms" 3547 + "amazonka-sms-voice" 3548 + "amazonka-snow-device-management" 3549 + "amazonka-snowball" 3550 + "amazonka-sns" 3551 + "amazonka-sqs" 3552 + "amazonka-ssm" 3553 + "amazonka-ssm-contacts" 3554 + "amazonka-ssm-incidents" 3555 + "amazonka-ssm-sap" 3556 + "amazonka-sso" 3557 + "amazonka-sso-admin" 3558 + "amazonka-sso-oidc" 3559 + "amazonka-stepfunctions" 3560 + "amazonka-storagegateway" 3561 + "amazonka-sts" 3562 + "amazonka-support" 3563 + "amazonka-support-app" 3564 + "amazonka-swf" 3565 + "amazonka-synthetics" 3566 + #"amazonka-test" 3567 + "amazonka-textract" 3568 + "amazonka-timestream-query" 3569 + "amazonka-timestream-write" 3570 + "amazonka-transcribe" 3571 + "amazonka-transfer" 3572 + "amazonka-translate" 3573 + "amazonka-voice-id" 3574 + "amazonka-waf" 3575 + "amazonka-waf-regional" 3576 + "amazonka-wafv2" 3577 + "amazonka-wellarchitected" 3578 + "amazonka-wisdom" 3579 + "amazonka-workdocs" 3580 + "amazonka-worklink" 3581 + "amazonka-workmail" 3582 + "amazonka-workmailmessageflow" 3583 + "amazonka-workspaces" 3584 + "amazonka-workspaces-web" 3585 + "amazonka-xray" 3586 + ]; 3324 3587 amazonkaServiceOverrides = ( 3325 3588 lib.genAttrs amazonkaServices ( 3326 3589 name:
+6 -2
pkgs/development/haskell-modules/configuration-darwin.nix
··· 383 383 libraryHaskellDepends = drv.libraryHaskellDepends ++ [ self.file-embed ]; 384 384 }) (disableCabalFlag "fixity-th" super.fourmolu); 385 385 386 - # https://github.com/NixOS/nixpkgs/issues/149692 387 - Agda = disableCabalFlag "optimise-heavily" super.Agda; 386 + Agda = lib.pipe super.Agda [ 387 + # https://github.com/NixOS/nixpkgs/issues/149692 388 + (disableCabalFlag "optimise-heavily") 389 + # https://github.com/agda/agda/issues/8016 390 + (appendConfigureFlag "--ghc-option=-Wwarn=deprecations") 391 + ]; 388 392 389 393 # https://github.com/NixOS/nixpkgs/issues/198495 390 394 eventsourcing-postgresql = dontCheck super.eventsourcing-postgresql;
+3
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 133 133 134 134 hlint = self.hlint_3_4_1; 135 135 136 + # test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021 137 + hpack_0_38_1 = dontCheck super.hpack_0_38_1; 138 + 136 139 mime-string = disableOptimization super.mime-string; 137 140 138 141 # weeder 2.3.* no longer supports GHC 8.10
+3
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 117 117 "haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version" 118 118 (markBroken super.haskell-language-server); 119 119 120 + # test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021 121 + hpack_0_38_1 = dontCheck super.hpack_0_38_1; 122 + 120 123 # Needs to use ghc-lib due to incompatible GHC 121 124 ghc-tags = doDistribute self.ghc-tags_1_5; 122 125
+4 -4
pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix
··· 78 78 tagged = doDistribute self.tagged_0_8_9; 79 79 time-compat = doDistribute self.time-compat_1_9_8; 80 80 extensions = doDistribute self.extensions_0_1_0_3; 81 - doctest = doDistribute self.doctest_0_24_0; 81 + doctest = doDistribute self.doctest_0_24_2; # see :/doctest_0_24_2 =/ below 82 82 ghc-syntax-highlighter = doDistribute self.ghc-syntax-highlighter_0_0_13_0; 83 83 ghc-lib = doDistribute self.ghc-lib_9_12_2_20250421; 84 84 ghc-exactprint = doDistribute self.ghc-exactprint_1_12_0_0; ··· 128 128 129 129 relude = dontCheck super.relude; 130 130 131 - doctest_0_24_0 = overrideCabal (drv: { 131 + doctest_0_24_2 = overrideCabal (drv: { 132 132 testFlags = drv.testFlags or [ ] ++ [ 133 133 # These tests require cabal-install (would cause infinite recursion) 134 134 "--skip=/Cabal.Options" 135 135 "--skip=/Cabal.Paths/paths" 136 136 "--skip=/Cabal.ReplOptions" # >= 0.23 137 137 ]; 138 - }) super.doctest_0_24_0; 138 + }) super.doctest_0_24_2; 139 139 140 140 # https://gitlab.haskell.org/ghc/ghc/-/issues/25930 141 141 generic-lens = dontCheck super.generic-lens; ··· 178 178 }; 179 179 180 180 # Allow Cabal 3.14 181 - hpack = doDistribute self.hpack_0_38_0; 181 + hpack = doDistribute self.hpack_0_38_1; 182 182 }
+36 -33
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 16 16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 17 17 - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 18 18 - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02 19 + - ac-library-hs # failure in job https://hydra.nixos.org/build/302800699 at 2025-07-27 19 20 - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 20 21 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 21 22 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 ··· 256 257 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 257 258 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 258 259 - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02 260 + - ascii85x # failure in job https://hydra.nixos.org/build/302801241 at 2025-07-27 259 261 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02 260 262 - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02 261 263 - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02 ··· 313 315 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 314 316 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 315 317 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 318 + - autodocodec-exact # failure in job https://hydra.nixos.org/build/302801281 at 2025-07-27 316 319 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 317 320 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 318 321 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 ··· 326 329 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 327 330 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 328 331 - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02 332 + - aws-academy-grade-exporter # failure in job https://hydra.nixos.org/build/302801316 at 2025-07-27 329 333 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16 330 334 - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02 331 335 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21 ··· 375 379 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02 376 380 - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02 377 381 - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02 378 - - base64-bytes # failure in job https://hydra.nixos.org/build/295091866 at 2025-04-22 379 382 - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02 380 383 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02 381 384 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02 ··· 515 518 - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02 516 519 - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02 517 520 - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02 521 + - blockio-uring # failure in job https://hydra.nixos.org/build/302801498, https://github.com/well-typed/blockio-uring/issues/44 at 2025-07-27 522 + - blockio-uring # https://github.com/well-typed/blockio-uring/issues/44, added 2025-07-27 518 523 - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02 519 524 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02 520 525 - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21 ··· 718 723 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 719 724 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 720 725 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 721 - - cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02 722 726 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 723 727 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 724 728 - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02 ··· 726 730 - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 727 731 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 728 732 - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02 733 + - cauldron # failure in job https://hydra.nixos.org/build/302801682 at 2025-07-27 729 734 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 730 735 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 731 736 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 ··· 871 876 - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 872 877 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 873 878 - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02 874 - - co-log-concurrent # failure in job https://hydra.nixos.org/build/295092333 at 2025-04-22 875 - - co-log-json # failure in job https://hydra.nixos.org/build/295092337 at 2025-04-22 876 879 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 877 880 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 878 881 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 ··· 1015 1018 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 1016 1019 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 1017 1020 - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02 1018 - - control-block # failure in job https://hydra.nixos.org/build/295092490 at 2025-04-22 1019 1021 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02 1020 1022 - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02 1021 1023 - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02 ··· 1024 1026 - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02 1025 1027 - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 1026 1028 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22 1029 + - convex-schema-parser # failure in job https://hydra.nixos.org/build/302801971 at 2025-07-27 1027 1030 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22 1028 1031 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22 1029 1032 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 ··· 1116 1119 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 1117 1120 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 1118 1121 - cudd # failure in job https://hydra.nixos.org/build/252716117 at 2024-03-16 1122 + - cuddle # failure in job https://hydra.nixos.org/build/302802065 at 2025-07-27 1119 1123 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 1120 1124 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 1121 1125 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 ··· 1305 1309 - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02 1306 1310 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02 1307 1311 - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02 1308 - - diagrams-gtk # failure in job https://hydra.nixos.org/build/295092833 at 2025-04-22 1309 1312 - diagrams-haddock # failure in job https://hydra.nixos.org/build/295092844 at 2025-04-22 1310 - - diagrams-pandoc # failure in job https://hydra.nixos.org/build/295092840 at 2025-04-22 1311 1313 - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02 1312 1314 - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02 1313 1315 - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02 ··· 1349 1351 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 1350 1352 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01 1351 1353 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02 1352 - - discord-haskell # failure in job https://hydra.nixos.org/build/295092870 at 2025-04-22 1353 1354 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22 1354 1355 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 1355 1356 - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 ··· 1401 1402 - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02 1402 1403 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22 1403 1404 - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02 1404 - - dom-parser # failure in job https://hydra.nixos.org/build/233235797 at 2023-09-02 1405 1405 - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02 1406 1406 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 1407 1407 - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 ··· 1409 1409 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02 1410 1410 - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02 1411 1411 - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02 1412 - - double-x-encoding # failure in job https://hydra.nixos.org/build/253694746 at 2024-03-31 1413 1412 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02 1414 1413 - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02 1415 1414 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16 ··· 1446 1445 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 1447 1446 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 1448 1447 - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02 1449 - - dumb-cas # failure in job https://hydra.nixos.org/build/252730634 at 2024-03-16 1450 1448 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02 1451 1449 - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02 1452 1450 - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02 ··· 1507 1505 - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 1508 1506 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 1509 1507 - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 1510 - - effect-stack # failure in job https://hydra.nixos.org/build/233212358 at 2023-09-02 1511 1508 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 1512 1509 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 1513 1510 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 ··· 1656 1653 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 1657 1654 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 1658 1655 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02 1656 + - exotic-list-monads # failure in job https://hydra.nixos.org/build/302802593 at 2025-07-27 1659 1657 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 1660 1658 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 1661 1659 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 ··· 1905 1903 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 1906 1904 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 1907 1905 - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02 1908 - - fs-api # failure in job https://hydra.nixos.org/build/299137683 at 2025-06-23 1909 1906 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 1910 1907 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 1911 1908 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 ··· 1926 1923 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 1927 1924 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 1928 1925 - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 1929 - - functor-combinators # failure in job https://hydra.nixos.org/build/252714438 at 2024-03-16 1930 1926 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 1931 1927 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 1932 1928 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 ··· 1952 1948 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 1953 1949 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 1954 1950 - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22 1955 - - fxpak # failure in job https://hydra.nixos.org/build/265955610 at 2024-07-14 1956 1951 - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 1957 1952 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 1958 1953 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16 ··· 1980 1975 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 1981 1976 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 1982 1977 - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02 1983 - - generic-aeson # failure in job https://hydra.nixos.org/build/233198064 at 2023-09-02 1984 1978 - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02 1985 1979 - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02 1986 1980 - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02 ··· 2010 2004 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 2011 2005 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 2012 2006 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 2013 - - genvalidity-network-uri # failure in job https://hydra.nixos.org/build/299137822 at 2025-06-23 2014 2007 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 2015 2008 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 2016 2009 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 ··· 2078 2071 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 2079 2072 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 2080 2073 - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02 2074 + - gi-gtk4-layer-shell # failure in job https://hydra.nixos.org/build/302803068 at 2025-07-27 2081 2075 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 2082 2076 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 2083 2077 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 ··· 2086 2080 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 2087 2081 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 2088 2082 - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02 2083 + - ginger2 # failure in job https://hydra.nixos.org/build/302803092 at 2025-07-27 2089 2084 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 2090 2085 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 2091 2086 - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02 ··· 2455 2450 - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02 2456 2451 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 2457 2452 - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02 2458 - - HaskellNet # failure in job https://hydra.nixos.org/build/295091001 at 2025-04-22 2459 2453 - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02 2460 2454 - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02 2461 2455 - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02 ··· 2471 2465 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 2472 2466 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 2473 2467 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 2474 - - haskoin-wallet # failure in job https://hydra.nixos.org/build/233206922 at 2023-09-02 2475 2468 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 2476 2469 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 2477 2470 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22 ··· 2522 2515 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 2523 2516 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 2524 2517 - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02 2518 + - hblosc # failure in job https://hydra.nixos.org/build/302803521 at 2025-07-27 2525 2519 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 2526 2520 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 2527 2521 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 ··· 2561 2555 - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 2562 2556 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 2563 2557 - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02 2558 + - hedgehog-extras # failure in job https://hydra.nixos.org/build/302803553, https://github.com/input-output-hk/hedgehog-extras/issues/93 at 2025-07-27 2564 2559 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 2565 2560 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 2566 2561 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 ··· 2880 2875 - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 2881 2876 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 2882 2877 - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02 2883 - - hs-speedscope # failure in job https://hydra.nixos.org/build/295094385 at 2025-04-22 2884 2878 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 2885 2879 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 2886 2880 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 ··· 3134 3128 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 3135 3129 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 3136 3130 - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02 3131 + - if-instance # failure in job https://hydra.nixos.org/build/302803982 at 2025-07-27 3137 3132 - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02 3138 3133 - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02 3139 3134 - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02 ··· 3221 3216 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16 3222 3217 - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02 3223 3218 - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02 3224 - - interval-patterns # failure in job https://hydra.nixos.org/build/239259401 at 2023-11-10 3225 3219 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02 3226 3220 - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02 3227 3221 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16 ··· 3259 3253 - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02 3260 3254 - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02 3261 3255 - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16 3262 - - iso8601-duration # failure in job https://hydra.nixos.org/build/233190968 at 2023-09-02 3263 3256 - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02 3264 3257 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 3265 3258 - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02 ··· 3332 3325 - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02 3333 3326 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02 3334 3327 - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02 3328 + - json-schema # failure in job https://hydra.nixos.org/build/303231342 at 2025-07-27 3335 3329 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02 3336 3330 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16 3337 3331 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 ··· 3658 3652 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 3659 3653 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 3660 3654 - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14 3655 + - llvm-extra # failure in job https://hydra.nixos.org/build/303481607 at 2025-07-27 3661 3656 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 3662 3657 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 3663 3658 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16 ··· 3810 3805 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 3811 3806 - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 3812 3807 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 3808 + - mcp # failure in job https://hydra.nixos.org/build/302804588 at 2025-07-27 3809 + - mcp-server # failure in job https://hydra.nixos.org/build/302804602 at 2025-07-27 3813 3810 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 3814 3811 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 3815 3812 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 ··· 3995 3992 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 3996 3993 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 3997 3994 - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22 3998 - - monoidmap-internal # failure in job https://hydra.nixos.org/build/295095513 at 2025-04-22 3999 3995 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 4000 3996 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 4001 3997 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 ··· 4017 4013 - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02 4018 4014 - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02 4019 4015 - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02 4016 + - mptcp-pm # failure in job https://hydra.nixos.org/build/303231350 at 2025-07-27 4020 4017 - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02 4021 4018 - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02 4022 4019 - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02 ··· 4026 4023 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02 4027 4024 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02 4028 4025 - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02 4029 - - msgpack # failure in job https://hydra.nixos.org/build/233258131 at 2023-09-02 4026 + - msgpack-aeson # failure in job https://hydra.nixos.org/build/303231349 at 2025-07-27 4027 + - msgpack-rpc # failure in job https://hydra.nixos.org/build/303231348 at 2025-07-27 4030 4028 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02 4031 4029 - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02 4032 4030 - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02 ··· 4273 4271 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31 4274 4272 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 4275 4273 - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 4276 - - oidc-client # failure in job https://hydra.nixos.org/build/295095776 at 2025-04-22 4277 4274 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 4278 4275 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 4279 4276 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 ··· 4331 4328 - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02 4332 4329 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02 4333 4330 - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02 4334 - - opentelemetry-plugin # failure in job https://hydra.nixos.org/build/295095836 at 2025-04-22 4335 4331 - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02 4336 4332 - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02 4337 4333 - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02 ··· 4389 4385 - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02 4390 4386 - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02 4391 4387 - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02 4388 + - ox-arrays # failure in job https://hydra.nixos.org/build/302805170 at 2025-07-27 4392 4389 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 4393 4390 - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 4394 4391 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02 4395 4392 - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02 4396 4393 - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02 4397 4394 - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02 4395 + - packed-data # failure in job https://hydra.nixos.org/build/302805203 at 2025-07-27 4398 4396 - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02 4399 4397 - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02 4400 4398 - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02 ··· 4690 4688 - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 4691 4689 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16 4692 4690 - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02 4691 + - pms-domain-model # failure in job https://hydra.nixos.org/build/302805399 at 2025-07-27 4693 4692 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02 4694 4693 - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02 4695 4694 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02 ··· 4738 4737 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 4739 4738 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 4740 4739 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 4741 - - poolboy # failure in job https://hydra.nixos.org/build/233195085 at 2023-09-02 4742 4740 - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02 4743 4741 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02 4744 4742 - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02 ··· 4978 4976 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 4979 4977 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 4980 4978 - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02 4981 - - quickcheck-lockstep # failure in job https://hydra.nixos.org/build/295096463 at 2025-04-22 4982 4979 - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02 4983 4980 - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 4984 4981 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 ··· 5129 5126 - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02 5130 5127 - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02 5131 5128 - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02 5129 + - registry-messagepack # failure in job https://hydra.nixos.org/build/303231364 at 2025-07-27 5132 5130 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 5133 5131 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 5134 5132 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 ··· 5400 5398 - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02 5401 5399 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02 5402 5400 - servant-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16 5403 - - servant-cli # failure in job https://hydra.nixos.org/build/233259212 at 2023-09-02 5404 5401 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02 5405 5402 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02 5406 5403 - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02 ··· 5408 5405 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 5409 5406 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22 5410 5407 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02 5408 + - servant-event-stream # failure in job https://hydra.nixos.org/build/302806100 at 2025-07-27 5411 5409 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 5412 5410 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 5413 5411 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 ··· 5442 5440 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31 5443 5441 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 5444 5442 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16 5445 - - servant-typescript # failure in job https://hydra.nixos.org/build/253932573 at 2024-03-31 5446 5443 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16 5447 5444 - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02 5448 5445 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01 ··· 5591 5588 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 5592 5589 - sketch-frp-copilot # copilot >=4.3 && <4.4, 5593 5590 - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22 5591 + - skews # time out in job https://hydra.nixos.org/build/302806286 at 2025-07-27 5594 5592 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 5595 5593 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 5596 5594 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 ··· 5682 5680 - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02 5683 5681 - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02 5684 5682 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22 5683 + - socks5 # failure in job https://hydra.nixos.org/build/302806344 at 2025-07-27 5685 5684 - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02 5686 5685 - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02 5687 5686 - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02 ··· 5691 5690 - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02 5692 5691 - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02 5693 5692 - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02 5693 + - sop-satisfier # failure in job https://hydra.nixos.org/build/302806351 at 2025-07-27 5694 5694 - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02 5695 5695 - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 5696 5696 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 ··· 5978 5978 - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02 5979 5979 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 5980 5980 - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22 5981 - - systranything # failure in job https://hydra.nixos.org/build/295097462 at 2025-04-22 5982 5981 - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02 5983 5982 - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02 5984 5983 - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02 ··· 6023 6022 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04 6024 6023 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 6025 6024 - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02 6025 + - tasty-papi # failure in job https://hydra.nixos.org/build/302806735, https://github.com/Shimuuar/tasty-papi/issues/4#issuecomment-3123432375 at 2025-07-27 6026 6026 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31 6027 6027 - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02 6028 6028 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02 ··· 6184 6184 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 6185 6185 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 6186 6186 - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 6187 - - tiktoken # failure in job https://hydra.nixos.org/build/273448419 at 2024-10-01 6188 6187 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 6189 6188 - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02 6190 6189 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 ··· 6328 6327 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 6329 6328 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 6330 6329 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 6330 + - twee # failure in job https://hydra.nixos.org/build/302807024 at 2025-07-27 6331 6331 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 6332 6332 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 6333 6333 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 ··· 6383 6383 - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02 6384 6384 - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 6385 6385 - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02 6386 + - typelet # failure in job https://hydra.nixos.org/build/302807072 at 2025-07-27 6386 6387 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 6387 6388 - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 6388 6389 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 ··· 6763 6764 - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02 6764 6765 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16 6765 6766 - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22 6767 + - xcframework # failure in job https://hydra.nixos.org/build/302807506 at 2025-07-27 6766 6768 - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02 6767 6769 - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02 6768 6770 - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02 ··· 6789 6791 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 6790 6792 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 6791 6793 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22 6792 - - xml-lens # failure in job https://hydra.nixos.org/build/295098347 at 2025-04-22 6794 + - xml-isogen # failure in job https://hydra.nixos.org/build/303231372 at 2025-07-27 6793 6795 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 6794 6796 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16 6795 6797 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 ··· 6809 6811 - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02 6810 6812 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02 6811 6813 - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02 6814 + - xnobar # failure in job https://hydra.nixos.org/build/302807518 at 2025-07-27 6812 6815 - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02 6813 6816 - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02 6814 6817 - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02
+2 -2
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 31 31 - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 32 32 # 2021-11-09: ghc-bignum is bundled starting with 9.0.1; only 1.0 builds with GHCs prior to 9.2.1 33 33 - ghc-bignum == 1.0 34 + # 2025-07-26: HLS doesn't support hiedb >= 0.7 yet 35 + - hiedb < 0.7 34 36 # 2024-08-17: Stackage doesn't contain hnix-store-core >= 0.8 yet, so we need to restrict hnix-store-remote 35 37 - hnix-store-remote < 0.7 36 38 # 2025-01-17: need to match stackage version of hosc ··· 94 96 - hlint == 3.4.1 # 2022-09-21: preserve for ghc 8.10 95 97 - hlint == 3.6.* # 2025-04-14: needed for hls with ghc-lib-parser 9.6 96 98 - hnix-store-core < 0.7 # 2023-12-11: required by hnix-store-remote 0.6 97 - - hpack == 0.38.0 # 2025-04-23: preserve for stack == 3.5.1 98 99 - hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 99 100 - hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 100 101 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 ··· 109 110 - ormolu == 0.5.2.0 # 2023-08-08: preserve for ghc 9.0 110 111 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 111 112 - ormolu == 0.7.7.0 # 2025-01-27: for ghc 9.10 compat 112 - - persistent-test < 2.13.1.4 # 2025-06-04: incompatible with persistent < 2.16, see conf*-common.nix 113 113 - postgresql-binary < 0.14 # 2025-01-19: Needed for building postgrest 114 114 - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 115 115 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2
+83 -82
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 23.24 1 + # Stackage LTS 23.27 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 107 107 - attoparsec-binary ==0.2 108 108 - attoparsec-data ==1.0.5.4 109 109 - attoparsec-expr ==0.1.1.2 110 - - attoparsec-framer ==0.1.0.9 110 + - attoparsec-framer ==0.1.0.10 111 111 - attoparsec-iso8601 ==1.1.1.0 112 112 - attoparsec-path ==0.0.0.1 113 113 - attoparsec-time ==1.0.3.1 ··· 133 133 - aws-xray-client ==0.1.0.2 134 134 - aws-xray-client-persistent ==0.1.0.5 135 135 - aws-xray-client-wai ==0.1.0.2 136 - - backprop ==0.2.6.5 136 + - backprop ==0.2.7.2 137 137 - backtracking ==0.1.0 138 138 - bank-holiday-germany ==1.3.1.0 139 139 - bank-holidays-england ==0.2.0.11 ··· 161 161 - bcp47 ==0.2.0.6 162 162 - bcp47-orphans ==0.1.0.6 163 163 - bcrypt ==0.0.11 164 - - beam-core ==0.10.3.1 164 + - beam-core ==0.10.4.0 165 165 - beam-migrate ==0.5.3.1 166 166 - beam-postgres ==0.5.4.2 167 167 - beam-sqlite ==0.5.4.0 168 - - bech32 ==1.1.8 169 - - bech32-th ==1.1.8 168 + - bech32 ==1.1.9 169 + - bech32-th ==1.1.9 170 170 - bench-show ==0.3.2 171 171 - benchpress ==0.2.2.25 172 172 - bencode ==0.6.1.1 ··· 252 252 - bson-lens ==0.1.1 253 253 - btrfs ==0.2.1.0 254 254 - buffer-pipe ==0.0 255 - - bugsnag ==1.1.0.1 255 + - bugsnag ==1.1.0.2 256 256 - bugsnag-hs ==0.2.0.12 257 - - bugsnag-wai ==1.0.0.1 257 + - bugsnag-wai ==1.0.1.1 258 258 - bugsnag-yesod ==1.0.1.0 259 259 - bugzilla-redhat ==1.0.1.1 260 - - burrito ==2.0.1.13 260 + - burrito ==2.0.1.14 261 261 - bv ==0.5 262 262 - bv-little ==1.3.2 263 263 - bv-sized ==1.0.6 ··· 270 270 - byteorder ==1.0.4 271 271 - bytes ==0.17.4 272 272 - byteset ==0.1.1.2 273 - - byteslice ==0.2.14.0 273 + - byteslice ==0.2.15.0 274 274 - bytesmith ==0.3.11.1 275 275 - bytestring-builder ==0.10.8.2.0 276 276 - bytestring-conversion ==0.3.2 ··· 292 292 - cabal-add ==0.1 293 293 - cabal-appimage ==0.4.1.0 294 294 - cabal-clean ==0.2.20230609 295 - - cabal-debian ==5.2.5 295 + - cabal-debian ==5.2.6 296 296 - cabal-doctest ==1.0.11 297 297 - cabal-file ==0.1.1 298 298 - cabal-fix ==0.1.0.0 299 299 - cabal-flatpak ==0.1.2 300 300 - cabal-gild ==1.5.0.3 301 301 - cabal-install-parsers ==0.6.1.1 302 - - cabal-plan ==0.7.5.0 302 + - cabal-plan ==0.7.6.0 303 303 - cabal-rpm ==2.2.1 304 304 - cabal-sort ==0.1.2.1 305 305 - cabal2spec ==2.7.1 ··· 322 322 - cased ==0.1.0.0 323 323 - cases ==0.1.4.4 324 324 - casing ==0.1.4.1 325 - - cassava ==0.5.3.2 325 + - cassava ==0.5.4.0 326 326 - cassava-conduit ==0.6.6 327 327 - cassava-megaparsec ==2.1.1 328 328 - cast ==0.1.0.2 ··· 347 347 - Chart-cairo ==1.9.4.1 348 348 - Chart-diagrams ==1.9.5.1 349 349 - chart-svg ==0.7.0.0 350 - - ChasingBottoms ==1.3.1.15 350 + - ChasingBottoms ==1.3.1.16 351 351 - check-email ==1.0.2 352 352 - checkers ==0.6.0 353 353 - checksum ==0.0.0.1 ··· 413 413 - commutative-semigroups ==0.2.0.2 414 414 - comonad ==5.0.9 415 415 - compact ==0.2.0.0 416 - - compactmap ==0.1.4.5 416 + - compactmap ==0.1.4.6 417 417 - companion ==0.1.0 418 418 - compdata ==0.13.1 419 419 - compensated ==0.8.3 ··· 437 437 - conduit-algorithms ==0.0.14.0 438 438 - conduit-combinators ==1.3.0 439 439 - conduit-concurrent-map ==0.1.4 440 - - conduit-extra ==1.3.7 440 + - conduit-extra ==1.3.8 441 441 - conduit-parse ==0.2.1.1 442 442 - conduit-zstd ==0.0.2.0 443 443 - conferer ==1.1.0.0 ··· 671 671 - doctest ==0.22.6 672 672 - doctest-discover ==0.2.0.0 673 673 - doctest-driver-gen ==0.3.0.8 674 - - doctest-exitcode-stdio ==0.0 674 + - doctest-exitcode-stdio ==0.0.0.1 675 675 - doctest-extract ==0.1.2 676 676 - doctest-lib ==0.1.1.1 677 677 - doctest-parallel ==0.3.1.1 ··· 717 717 - effectful-plugin ==1.1.0.4 718 718 - effectful-th ==1.0.0.3 719 719 - egison-pattern-src ==0.2.1.2 720 - - either ==5.0.2 720 + - either ==5.0.3 721 721 - either-unwrap ==1.1 722 722 - ekg ==0.4.1.2 723 - - ekg-core ==0.1.1.8 723 + - ekg-core ==0.1.2.0 724 724 - ekg-json ==0.1.1.1 725 725 - ekg-statsd ==0.2.6.2 726 726 - elerea ==2.9.0 ··· 792 792 - explainable-predicates ==0.1.2.4 793 793 - explicit-exception ==0.2 794 794 - express ==1.0.18 795 - - extended-reals ==0.2.6.0 795 + - extended-reals ==0.2.7.0 796 796 - extensible ==0.9.2 797 797 - extensible-effects ==5.0.0.1 798 798 - extensible-exceptions ==0.1.1.4 ··· 809 809 - falsify ==0.2.0 810 810 - fast-builder ==0.1.5.0 811 811 - fast-digits ==0.3.2.0 812 - - fast-logger ==3.2.5 812 + - fast-logger ==3.2.6 813 813 - fast-math ==1.0.2 814 814 - fast-myers-diff ==0.0.1 815 815 - fcf-family ==0.2.0.2 ··· 817 817 - feature-flags ==0.1.0.1 818 818 - fedora-krb ==0.1.0 819 819 - fedora-releases ==0.2.1 820 - - fedora-repoquery ==0.7.2 820 + - fedora-repoquery ==0.7.3 821 821 - feed ==1.3.2.1 822 822 - FenwickTree ==0.1.2.1 823 823 - fft ==0.1.8.7 ··· 867 867 - focus ==1.0.3.2 868 868 - focuslist ==0.1.1.0 869 869 - fold-debounce ==0.2.0.16 870 - - foldable1-classes-compat ==0.1.1 870 + - foldable1-classes-compat ==0.1.2 871 871 - foldl ==1.4.18 872 872 - folds ==0.7.8 873 873 - FontyFruity ==0.5.3.5 ··· 879 879 - format-numbers ==0.1.0.1 880 880 - formatn ==0.3.1.0 881 881 - formatting ==7.2.0 882 - - fortran-src ==0.16.5 882 + - fortran-src ==0.16.7 883 883 - foundation ==0.0.30 884 884 - fourmolu ==0.15.0.0 885 885 - Frames ==0.7.4.2 ··· 901 901 - funcmp ==1.9 902 902 - function-builder ==0.3.0.1 903 903 - functor-classes-compat ==2.0.0.2 904 - - functor-combinators ==0.4.1.3 904 + - functor-combinators ==0.4.1.4 905 905 - functor-products ==0.1.2.2 906 906 - fused-effects ==1.1.2.5 907 907 - fusion-plugin ==0.2.7 ··· 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.37 1015 + - gi-gio ==2.0.38 1016 1016 - gi-glib ==2.0.30 1017 1017 - gi-gmodule ==2.0.6 1018 1018 - gi-gobject ==2.0.31 ··· 1066 1066 - gpolyline ==0.1.0.1 1067 1067 - graph-core ==0.3.0.0 1068 1068 - graphite ==0.10.0.1 1069 - - graphql ==1.5.0.0 1069 + - graphql ==1.5.0.1 1070 1070 - graphql-client ==1.2.4 1071 1071 - graphql-spice ==1.0.6.0 1072 1072 - graphs ==0.7.3 1073 - - graphula ==2.1.0.1 1073 + - graphula ==2.1.2.0 1074 1074 - graphviz ==2999.20.2.1 1075 1075 - gravatar ==0.8.1 1076 1076 - greskell ==2.0.3.3 1077 - - greskell-core ==1.0.0.4 1077 + - greskell-core ==1.0.0.6 1078 1078 - greskell-websocket ==1.0.0.4 1079 1079 - gridtables ==0.1.0.0 1080 1080 - grisette ==0.9.0.0 ··· 1087 1087 - gtk2hs-buildtools ==0.13.12.0 1088 1088 - gtk3 ==0.15.10 1089 1089 - guarded-allocation ==0.0.1 1090 - - hackage-cli ==0.1.0.2 1091 - - hackage-security ==0.6.3.0 1090 + - hackage-cli ==0.1.0.3 1091 + - hackage-security ==0.6.3.1 1092 1092 - hackage-security-HTTP ==0.1.1.2 1093 1093 - haddock-library ==1.11.0 1094 1094 - haha ==0.3.1.1 1095 1095 - hakyll ==4.16.6.0 1096 1096 - hakyll-convert ==0.3.0.5 1097 1097 - hal ==1.1 1098 - - half ==0.3.2 1098 + - half ==0.3.3 1099 1099 - hall-symbols ==0.1.0.6 1100 1100 - hamlet ==1.2.0 1101 1101 - hamtsolo ==1.0.4 ··· 1115 1115 - hashids ==1.1.1.0 1116 1116 - hashmap ==1.3.3 1117 1117 - hashtables ==1.3.1 1118 - - haskell-gi ==0.26.15 1119 - - haskell-gi-base ==0.26.8 1118 + - haskell-gi ==0.26.16 1119 + - haskell-gi-base ==0.26.9 1120 1120 - haskell-gi-overloading ==1.0 1121 1121 - haskell-lexer ==1.1.2 1122 1122 - haskell-src ==1.0.4.1 ··· 1211 1211 - HMock ==0.5.1.2 1212 1212 - hmpfr ==0.4.5 1213 1213 - hnix-store-core ==0.8.0.0 1214 + - hoare ==0.1.1.0 1214 1215 - hoauth2 ==2.14.0 1215 1216 - hoogle ==5.0.18.4 1216 1217 - hopenssl ==2.2.5 ··· 1256 1257 - hslua-core ==2.3.2 1257 1258 - hslua-list ==1.1.4 1258 1259 - hslua-marshalling ==2.3.1 1259 - - hslua-module-doclayout ==1.2.0 1260 + - hslua-module-doclayout ==1.2.0.1 1260 1261 - hslua-module-path ==1.1.1 1261 1262 - hslua-module-system ==1.1.3 1262 1263 - hslua-module-text ==1.1.1 1263 1264 - hslua-module-version ==1.1.1 1264 - - hslua-module-zip ==1.1.3 1265 + - hslua-module-zip ==1.1.4 1265 1266 - hslua-objectorientation ==2.3.1 1266 1267 - hslua-packaging ==2.3.1 1267 1268 - hslua-repl ==0.1.2 ··· 1330 1331 - http-semantics ==0.3.0 1331 1332 - http-streams ==0.8.9.9 1332 1333 - http-types ==0.12.4 1333 - - http2 ==5.3.9 1334 + - http2 ==5.3.10 1334 1335 - httpd-shed ==0.4.1.2 1335 1336 - human-readable-duration ==0.2.1.4 1336 1337 - HUnit ==1.6.2.0 ··· 1433 1434 - io-streams ==1.5.2.2 1434 1435 - io-streams-haproxy ==1.0.1.0 1435 1436 - ip ==1.7.8 1436 - - ip6addr ==2.0.0 1437 + - ip6addr ==2.0.0.1 1437 1438 - iproute ==1.7.15 1438 1439 - IPv6Addr ==2.0.6.1 1439 1440 - IPv6DB ==0.3.3.4 ··· 1479 1480 - JuicyPixels-scale-dct ==0.1.2 1480 1481 - junit-xml ==0.1.0.4 1481 1482 - justified-containers ==0.3.0.0 1482 - - kan-extensions ==5.2.6 1483 + - kan-extensions ==5.2.7 1483 1484 - kansas-comet ==0.4.3 1484 1485 - katip ==0.8.8.2 1485 1486 - katip-logstash ==0.1.0.2 ··· 1543 1544 - leapseconds-announced ==2017.1.0.1 1544 1545 - learn-physics ==0.6.7 1545 1546 - leb128-cereal ==1.2 1546 - - lens ==5.3.4 1547 + - lens ==5.3.5 1547 1548 - lens-action ==0.2.6 1548 1549 - lens-aeson ==1.2.3 1549 1550 - lens-csv ==0.1.1.0 1550 1551 - lens-family ==2.1.3 1551 1552 - lens-family-core ==2.1.3 1552 - - lens-family-th ==0.5.3.1 1553 + - lens-family-th ==0.5.3.2 1553 1554 - lens-misc ==0.0.2.0 1554 1555 - lens-properties ==4.11.1 1555 1556 - lens-regex ==0.1.3 ··· 1568 1569 - lift-type ==0.1.2.0 1569 1570 - lifted-async ==0.10.2.7 1570 1571 - lifted-base ==0.2.3.12 1571 - - linear ==1.23.1 1572 + - linear ==1.23.2 1572 1573 - linear-base ==0.4.0 1573 1574 - linear-circuit ==0.1.0.4 1574 1575 - linear-generics ==0.2.3 ··· 1593 1594 - locators ==0.3.0.5 1594 1595 - loch-th ==0.2.2 1595 1596 - lockfree-queue ==0.2.4 1596 - - log-base ==0.12.0.1 1597 + - log-base ==0.12.1.0 1597 1598 - log-domain ==0.13.2 1598 1599 - logfloat ==0.14.0 1599 1600 - logger-thread ==0.1.0.2 ··· 1635 1636 - markov-chain ==0.0.3.4 1636 1637 - markov-chain-usage-model ==0.0.0 1637 1638 - markup-parse ==0.1.1.1 1638 - - massiv ==1.0.4.1 1639 + - massiv ==1.0.5.0 1639 1640 - massiv-io ==1.0.0.1 1640 1641 - massiv-serialise ==1.0.0.2 1641 1642 - massiv-test ==1.1.0.1 ··· 1709 1710 - mmark ==0.0.8.0 1710 1711 - mmark-cli ==0.0.5.2 1711 1712 - mmark-ext ==0.2.1.5 1712 - - mmorph ==1.2.0 1713 + - mmorph ==1.2.1 1713 1714 - mnist-idx ==0.1.3.2 1714 1715 - mnist-idx-conduit ==0.4.0.0 1715 1716 - mockcat ==0.5.2.0 ··· 1812 1813 - nanospec ==0.2.2 1813 1814 - nanovg ==0.8.1.0 1814 1815 - nats ==1.1.2 1815 - - natural-arithmetic ==0.2.2.0 1816 + - natural-arithmetic ==0.2.3.0 1816 1817 - natural-induction ==0.2.0.0 1817 1818 - natural-sort ==0.1.2 1818 1819 - natural-transformation ==0.4.1 ··· 1948 1949 - pandoc ==3.6 1949 1950 - pandoc-cli ==3.6 1950 1951 - pandoc-lua-engine ==0.4.1.1 1951 - - pandoc-lua-marshal ==0.3.0 1952 + - pandoc-lua-marshal ==0.3.1 1952 1953 - pandoc-plot ==1.9.1 1953 1954 - pandoc-server ==0.1.0.11 1954 1955 - pandoc-throw ==0.1.0.0 ··· 1987 1988 - pathtype ==0.8.1.3 1988 1989 - pathwalk ==0.3.1.2 1989 1990 - patience ==0.3 1990 - - patrol ==1.0.0.11 1991 + - patrol ==1.0.1.0 1991 1992 - pava ==0.1.1.4 1992 1993 - pcg-random ==0.1.4.0 1993 1994 - pcre-heavy ==1.0.0.4 ··· 2008 2009 - persistable-types-HDBC-pg ==0.0.3.5 2009 2010 - persistent ==2.14.6.3 2010 2011 - persistent-discover ==0.1.0.7 2011 - - persistent-documentation ==0.1.0.5 2012 + - persistent-documentation ==0.1.0.6 2012 2013 - persistent-lens ==1.0.0 2013 2014 - persistent-mongoDB ==2.13.1.0 2014 2015 - persistent-mtl ==0.5.1 ··· 2019 2020 - persistent-redis ==2.13.0.2 2020 2021 - persistent-sqlite ==2.13.3.0 2021 2022 - persistent-template ==2.12.0.0 2022 - - persistent-test ==2.13.1.4 2023 + - persistent-test ==2.13.1.3 2023 2024 - persistent-typed-db ==0.1.0.7 2024 2025 - pfile ==0.1.0.1 2025 2026 - pg-harness-client ==0.6.0 ··· 2121 2122 - process-extras ==0.7.4 2122 2123 - product-isomorphic ==0.0.3.4 2123 2124 - product-profunctors ==0.11.1.1 2124 - - profunctors ==5.6.2 2125 + - profunctors ==5.6.3 2125 2126 - project-template ==0.2.1.0 2126 2127 - projectroot ==0.2.0.1 2127 2128 - prometheus ==2.3.0 ··· 2166 2167 - quickcheck-assertions ==0.3.0 2167 2168 - quickcheck-classes ==0.6.5.0 2168 2169 - quickcheck-classes-base ==0.6.2.0 2169 - - quickcheck-groups ==0.0.1.4 2170 + - quickcheck-groups ==0.0.1.5 2170 2171 - quickcheck-higherorder ==0.1.0.1 2171 - - quickcheck-instances ==0.3.32 2172 + - quickcheck-instances ==0.3.33 2172 2173 - quickcheck-io ==0.2.0 2173 - - quickcheck-monoid-subclasses ==0.3.0.5 2174 - - quickcheck-quid ==0.0.1.7 2174 + - quickcheck-monoid-subclasses ==0.3.0.6 2175 + - quickcheck-quid ==0.0.1.8 2175 2176 - quickcheck-simple ==0.1.1.1 2176 2177 - quickcheck-state-machine ==0.10.1 2177 2178 - quickcheck-text ==0.1.2.1 ··· 2291 2292 - rhine-gloss ==1.5 2292 2293 - rhine-terminal ==1.5 2293 2294 - riak-protobuf ==0.25.0.0 2294 - - richenv ==0.1.0.2 2295 + - richenv ==0.1.0.3 2295 2296 - rio ==0.1.22.0 2296 2297 - rio-orphans ==0.1.2.0 2297 2298 - rio-prettyprint ==0.1.8.0 2298 2299 - rng-utils ==0.3.1 2299 - - roc-id ==0.2.0.4 2300 + - roc-id ==0.2.0.5 2300 2301 - rocksdb-haskell ==1.0.1 2301 2302 - rocksdb-haskell-jprupp ==2.1.7 2302 2303 - rocksdb-query ==0.4.3 ··· 2342 2343 - sampling ==0.3.5 2343 2344 - samsort ==0.1.0.0 2344 2345 - sandi ==0.5 2345 - - sandwich ==0.3.0.3 2346 - - sandwich-contexts ==0.3.0.2 2346 + - sandwich ==0.3.0.4 2347 + - sandwich-contexts ==0.3.0.3 2347 2348 - sandwich-hedgehog ==0.1.3.1 2348 2349 - sandwich-quickcheck ==0.1.0.7 2349 2350 - sandwich-slack ==0.1.2.0 2350 - - sandwich-webdriver ==0.3.0.0 2351 + - sandwich-webdriver ==0.3.0.1 2351 2352 - saturn ==1.0.0.8 2352 2353 - say ==0.1.0.1 2353 2354 - sayable ==1.2.5.0 ··· 2363 2364 - scientist ==0.0.0.0 2364 2365 - scotty ==0.22 2365 2366 - scrypt ==0.5.0 2366 - - search-algorithms ==0.3.3 2367 + - search-algorithms ==0.3.4 2367 2368 - secp256k1-haskell ==1.4.6 2368 2369 - securemem ==0.1.10 2369 2370 - select-rpms ==0.2.0 ··· 2383 2384 - sequence-formats ==1.10.0.0 2384 2385 - sequenceTools ==1.5.3.1 2385 2386 - serialise ==0.2.6.1 2386 - - servant ==0.20.2 2387 + - servant ==0.20.3.0 2387 2388 - servant-auth ==0.4.2.0 2388 2389 - servant-auth-client ==0.4.2.0 2389 2390 - servant-auth-docs ==0.2.11.0 2390 - - servant-auth-server ==0.4.9.0 2391 + - servant-auth-server ==0.4.9.1 2391 2392 - servant-auth-swagger ==0.2.11.0 2392 2393 - servant-blaze ==0.9.1 2393 2394 - servant-checked-exceptions ==2.2.0.1 2394 2395 - servant-checked-exceptions-core ==2.2.0.1 2395 2396 - servant-cli ==0.1.1.0 2396 - - servant-client ==0.20.2 2397 - - servant-client-core ==0.20.2 2397 + - servant-client ==0.20.3.0 2398 + - servant-client-core ==0.20.3.0 2398 2399 - servant-conduit ==0.16.1 2399 2400 - servant-docs ==0.13.1 2400 2401 - servant-elm ==0.7.3 ··· 2413 2414 - servant-quickcheck ==0.1.1.0 2414 2415 - servant-rate-limit ==0.2.0.0 2415 2416 - servant-rawm ==1.0.0.0 2416 - - servant-server ==0.20.2 2417 + - servant-server ==0.20.3.0 2417 2418 - servant-static-th ==1.0.0.1 2418 2419 - servant-swagger ==1.2.1 2419 2420 - servant-swagger-ui ==0.3.5.5.0.1 ··· 2436 2437 - SHA ==1.6.4.4 2437 2438 - shake ==0.19.8 2438 2439 - shake-plus ==0.3.4.0 2439 - - shakespeare ==2.1.1 2440 + - shakespeare ==2.1.4 2440 2441 - shakespeare-text ==1.1.0 2441 2442 - shared-memory ==0.2.0.1 2442 2443 - shell-conduit ==5.0.0 ··· 2512 2513 - soxlib ==0.0.3.2 2513 2514 - special-values ==0.1.0.0 2514 2515 - speculate ==0.4.20 2515 - - specup ==0.2.0.5 2516 + - specup ==0.2.0.6 2516 2517 - speedy-slice ==0.3.2 2517 2518 - sphinx ==0.6.1 2518 2519 - Spintax ==0.3.7.0 2519 2520 - splice ==0.6.1.1 2520 2521 - split ==0.2.5 2521 2522 - split-record ==0.1.1.4 2522 - - splitmix ==0.1.1 2523 + - splitmix ==0.1.3.1 2523 2524 - splitmix-distributions ==1.0.0 2524 2525 - Spock-api ==0.14.0.0 2525 2526 - spoon ==0.3.1 ··· 2646 2647 - tagchup ==0.4.1.2 2647 2648 - tagged ==0.8.8 2648 2649 - tagged-binary ==0.2.0.1 2649 - - tagged-identity ==0.1.4 2650 + - tagged-identity ==0.1.5 2650 2651 - tagged-transformer ==0.8.3 2651 2652 - tagsoup ==0.14.8 2652 2653 - tagstream-conduit ==0.5.6 ··· 2662 2663 - tasty-bench-fit ==0.1.1 2663 2664 - tasty-checklist ==1.0.6.0 2664 2665 - tasty-dejafu ==2.1.0.2 2665 - - tasty-discover ==5.0.1 2666 + - tasty-discover ==5.0.2 2666 2667 - tasty-expected-failure ==0.12.3 2667 2668 - tasty-fail-fast ==0.0.3 2668 2669 - tasty-focus ==1.0.1 ··· 2675 2676 - tasty-inspection-testing ==0.2.1 2676 2677 - tasty-kat ==0.0.3 2677 2678 - tasty-leancheck ==0.0.2 2678 - - tasty-lua ==1.1.1 2679 + - tasty-lua ==1.1.1.1 2679 2680 - tasty-papi ==0.1.2.0 2680 2681 - tasty-program ==1.1.0 2681 2682 - tasty-quickcheck ==0.11 ··· 2737 2738 - text-regex-replace ==0.1.1.5 2738 2739 - text-rope ==0.2 2739 2740 - text-short ==0.1.6 2740 - - text-show ==3.11.1 2741 + - text-show ==3.11.2 2741 2742 - text-show-instances ==3.9.10 2742 2743 - text-zipper ==0.13 2743 2744 - textlocal ==0.1.0.5 ··· 2810 2811 - toml-reader ==0.2.2.0 2811 2812 - toml-reader-parse ==0.1.1.1 2812 2813 - tomland ==1.3.3.3 2813 - - tools-yj ==0.1.0.27 2814 + - tools-yj ==0.1.0.45 2814 2815 - tophat ==1.0.8.0 2815 2816 - topograph ==1.0.1 2816 2817 - torrent ==10000.1.3 ··· 2913 2914 - universum ==1.8.2.2 2914 2915 - unix-bytestring ==0.4.0.3 2915 2916 - unix-compat ==0.7.4 2916 - - unix-time ==0.4.16 2917 + - unix-time ==0.4.17 2917 2918 - unjson ==0.15.4 2918 2919 - unlifted ==0.2.3.0 2919 2920 - unliftio ==0.2.25.1 ··· 2969 2970 - vector-builder ==0.3.8.6 2970 2971 - vector-bytes-instances ==0.1.1 2971 2972 - vector-extras ==0.2.8.2 2972 - - vector-hashtables ==0.1.2.0 2973 - - vector-instances ==3.4.2 2973 + - vector-hashtables ==0.1.2.1 2974 + - vector-instances ==3.4.3 2974 2975 - vector-mmap ==0.0.3 2975 2976 - vector-rotcev ==0.1.0.2 2976 2977 - vector-sized ==1.6.1 2977 2978 - vector-space ==0.16 2978 - - vector-split ==1.0.0.3 2979 + - vector-split ==1.0.0.4 2979 2980 - vector-stream ==0.1.0.1 2980 2981 - vector-th-unbox ==0.2.2 2981 2982 - verset ==0.0.1.11 ··· 2992 2993 - vty ==6.2 2993 2994 - vty-crossplatform ==0.4.0.0 2994 2995 - vty-unix ==0.2.0.0 2995 - - vty-windows ==0.2.0.3 2996 + - vty-windows ==0.2.0.4 2996 2997 - wai ==3.2.4 2997 2998 - wai-app-static ==3.1.9 2998 2999 - wai-cli ==0.2.3 ··· 3023 3024 - wai-transformers ==0.1.0 3024 3025 - wai-websockets ==3.0.1.2 3025 3026 - wakame ==0.1.0.0 3026 - - warp ==3.4.7 3027 + - warp ==3.4.8 3027 3028 - warp-tls ==3.4.9 3028 3029 - wave ==0.2.1 3029 3030 - wcwidth ==0.0.2 ··· 3049 3050 - welford-online-mean-variance ==0.2.0.0 3050 3051 - what4 ==1.6.3 3051 3052 - wherefrom-compat ==0.1.1.1 3052 - - wide-word ==0.1.7.0 3053 - - wild-bind ==0.1.2.11 3053 + - wide-word ==0.1.7.1 3054 + - wild-bind ==0.1.2.12 3054 3055 - wild-bind-x11 ==0.2.0.17 3055 3056 - Win32-notify ==0.3.0.3 3056 3057 - windns ==0.1.0.1
+18 -20
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 721 721 - dhall-secret 722 722 - dia-functions 723 723 - diagrams-html5 724 - - diagrams-reflex 725 724 - diagrams-wx 726 725 - dialog 727 726 - diff ··· 1026 1025 - frpnow-gtk 1027 1026 - frpnow-gtk3 1028 1027 - frpnow-vty 1029 - - fs-sim 1030 1028 - ftdi 1031 1029 - ftp-client-conduit 1032 1030 - FTPLine ··· 1196 1194 - gridland 1197 1195 - grisette 1198 1196 - grisette-monad-coroutine 1199 - - grisette_0_12_0_0 1197 + - grisette_0_13_0_0 1200 1198 - gross 1201 1199 - groundhog-converters 1202 1200 - groundhog-inspector ··· 1363 1361 - haskelldb-hsql-postgresql 1364 1362 - haskelldb-hsql-sqlite3 1365 1363 - haskelldb-th 1366 - - HaskellNet-SSL 1367 1364 - haskelm 1368 1365 - haskey 1369 1366 - haskey-mtl ··· 1584 1581 - HPong 1585 1582 - hpqtypes-effectful 1586 1583 - hpqtypes-extras 1587 - - hpqtypes-extras_1_17_0_1 1584 + - hpqtypes-extras_1_18_0_0 1588 1585 - hprotoc 1589 1586 - hprotoc-fork 1590 1587 - hps ··· 1872 1869 - json-pointer-hasql 1873 1870 - json-query 1874 1871 - json-rpc-client 1875 - - json-schema 1876 1872 - json-state 1877 1873 - json-togo 1878 1874 - json2-hdbc ··· 1935 1931 - kit 1936 1932 - kmeans-par 1937 1933 - kmeans-vector 1934 + - knead 1938 1935 - knit-haskell 1939 1936 - koji-install 1940 1937 - koji-tool 1938 + - koji-tool_1_3 1941 1939 - korfu 1942 1940 - ks-test 1943 - - kubernetes-api-client 1944 1941 - kubernetes-client 1945 1942 - kure-your-boilerplate 1946 1943 - kurita ··· 2010 2007 - legion-discovery 2011 2008 - legion-discovery-client 2012 2009 - legion-extra 2013 - - leksah 2014 2010 - leksah-server 2015 2011 - lens-utils 2016 2012 - lenz ··· 2062 2058 - liquidhaskell-cabal-demo 2063 2059 - list-t-attoparsec 2064 2060 - list-t-html-parser 2065 - - list1 2066 2061 - listenbrainz-client 2067 2062 - ListT 2068 2063 - liszt ··· 2073 2068 - llvm-base-types 2074 2069 - llvm-base-util 2075 2070 - llvm-data-interop 2071 + - llvm-dsl 2076 2072 - llvm-general 2077 2073 - llvm-general-quote 2078 2074 - llvm-hs-pretty ··· 2133 2129 - magic-wormhole 2134 2130 - mahoro 2135 2131 - maid 2136 - - mail-pool 2137 2132 - MailchimpSimple 2138 2133 - mailgun 2139 2134 - majordomo ··· 2281 2276 - mpretty 2282 2277 - mprover 2283 2278 - mps 2284 - - mptcp-pm 2285 2279 - mptcpanalyzer 2286 - - msgpack-aeson 2287 2280 - msgpack-arbitrary 2288 2281 - msgpack-binary 2289 2282 - msgpack-idl 2290 2283 - msgpack-persist 2291 - - msgpack-rpc 2292 2284 - msgpack-rpc-conduit 2293 2285 - msgpack-testsuite 2294 2286 - msi-kb-backlit ··· 2532 2524 - partage 2533 2525 - partial-semigroup-test 2534 2526 - passman-cli 2527 + - patch-image 2535 2528 - pathfindingcore 2536 2529 - patterns 2537 2530 - paypal-rest-client ··· 2616 2609 - Plot-ho-matic 2617 2610 - PlslTools 2618 2611 - plugins-auto 2612 + - pms-application-service 2613 + - pms-domain-service 2614 + - pms-infra-cmdrun 2615 + - pms-infra-procspawn 2616 + - pms-infra-socket 2617 + - pms-infra-watch 2618 + - pms-infrastructure 2619 + - pms-ui-notification 2620 + - pms-ui-request 2621 + - pms-ui-response 2619 2622 - png-file 2620 2623 - pngload 2621 2624 - pointless-lenses ··· 2632 2635 - polysemy-hasql 2633 2636 - polysemy-hasql-test 2634 2637 - polysemy-kvstore-jsonfile 2635 - - polysemy-log-co 2636 2638 - polysemy-methodology 2637 2639 - polysemy-methodology-co-log 2638 2640 - polysemy-methodology-composite ··· 2718 2720 - psql 2719 2721 - ptera 2720 2722 - ptera-th 2723 + - pty-mcp-server 2721 2724 - publicsuffixlist 2722 2725 - puffytools 2723 2726 - Pugs ··· 2815 2818 - rbr 2816 2819 - rc 2817 2820 - rdioh 2821 + - rds-data-polysemy 2818 2822 - react-flux-servant 2819 2823 - reactive 2820 2824 - reactive-banana-sdl ··· 2838 2842 - refh 2839 2843 - reflex-animation 2840 2844 - reflex-backend-wai 2841 - - reflex-dom-colonnade 2842 2845 - reflex-ghci 2843 2846 - reflex-gloss-scene 2844 2847 - reflex-libtelnet 2845 2848 - reflex-localize 2846 - - reflex-localize-dom 2847 2849 - reflex-monad-auth 2848 2850 - reflex-process 2849 2851 - reform-blaze ··· 2862 2864 - regions-monadsfd 2863 2865 - regions-monadstf 2864 2866 - regions-mtl 2865 - - registry-messagepack 2866 2867 - regular-extras 2867 2868 - regular-web 2868 2869 - regular-xmlpickler ··· 3256 3257 - spelling-suggest 3257 3258 - sphero 3258 3259 - spice 3259 - - spike 3260 3260 - SpinCounter 3261 3261 - splines 3262 3262 - sprinkles ··· 3490 3490 - trasa-client 3491 3491 - trasa-extra 3492 3492 - trasa-form 3493 - - trasa-reflex 3494 3493 - trasa-server 3495 3494 - trasa-th 3496 3495 - traversal-template ··· 3769 3768 - xml-catalog 3770 3769 - xml-enumerator 3771 3770 - xml-enumerator-combinators 3772 - - xml-isogen 3773 3771 - xml-monad 3774 3772 - xml-pipe 3775 3773 - xml-push
+106 -5
pkgs/development/haskell-modules/configuration-nix.nix
··· 502 502 # can't use pkg-config (LLVM has no official .pc files), we need to pass the 503 503 # `dev` and `lib` output in, or Cabal will have trouble finding the library. 504 504 # Since it looks a bit neater having it in a list, we circumvent the singular 505 - # LLVM input here. 506 - llvm-ffi = addBuildDepends [ 507 - pkgs.llvmPackages_16.llvm.lib 508 - pkgs.llvmPackages_16.llvm.dev 509 - ] (super.llvm-ffi.override { LLVM = null; }); 505 + # LLVM input that llvm-ffi declares. 506 + llvm-ffi = 507 + let 508 + chosenLlvmVersion = 20; 509 + nextLlvmAttr = "llvmPackages_${toString (chosenLlvmVersion + 1)}"; 510 + shouldUpgrade = 511 + pkgs ? ${nextLlvmAttr} && (lib.strings.match ".+rc.+" pkgs.${nextLlvmAttr}.llvm.version) == null; 512 + in 513 + lib.warnIf shouldUpgrade 514 + "haskellPackages.llvm-ffi: ${nextLlvmAttr} is available in Nixpkgs, consider updating." 515 + lib.pipe 516 + super.llvm-ffi 517 + [ 518 + # ATTN: There is no matching flag for the latest supported LLVM version, 519 + # so you may need to remove this when updating chosenLlvmVersion 520 + (enableCabalFlag "LLVM${toString chosenLlvmVersion}00") 521 + (addBuildDepends [ 522 + pkgs."llvmPackages_${toString chosenLlvmVersion}".llvm.lib 523 + pkgs."llvmPackages_${toString chosenLlvmVersion}".llvm.dev 524 + ]) 525 + ]; 510 526 511 527 # Needs help finding LLVM. 512 528 spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe; ··· 832 848 pkgs.z3 833 849 ] super.crucible-llvm; 834 850 851 + # yaml doesn't build its executables (json2yaml, yaml2json) by default: 852 + # https://github.com/snoyberg/yaml/issues/194 853 + yaml = lib.pipe super.yaml [ 854 + (disableCabalFlag "no-exe") 855 + enableSeparateBinOutput 856 + (addBuildDepend self.optparse-applicative) 857 + ]; 858 + 835 859 # Compile manpages (which are in RST and are compiled with Sphinx). 836 860 futhark = 837 861 overrideCabal ··· 1120 1144 ]; 1121 1145 }) super.relocant; 1122 1146 1147 + # https://gitlab.iscpif.fr/gargantext/haskell-pgmq/blob/9a869df2842eccc86a0f31a69fb8dc5e5ca218a8/README.md#running-test-cases 1148 + haskell-pgmq = overrideCabal (drv: { 1149 + env = drv.env or { } // { 1150 + postgresqlEnableTCP = toString true; 1151 + }; 1152 + testToolDepends = drv.testToolDepends or [ ] ++ [ 1153 + # otherwise .dev gets selected?! 1154 + (lib.getBin (pkgs.postgresql.withPackages (ps: [ ps.pgmq ]))) 1155 + pkgs.postgresqlTestHook 1156 + ]; 1157 + }) super.haskell-pgmq; 1158 + 1159 + # https://gitlab.iscpif.fr/gargantext/haskell-bee/blob/19c8775f0d960c669235bf91131053cb6f69a1c1/README.md#redis 1160 + haskell-bee-redis = overrideCabal (drv: { 1161 + testToolDepends = drv.testToolDepends or [ ] ++ [ 1162 + pkgs.redisTestHook 1163 + ]; 1164 + }) super.haskell-bee-redis; 1165 + 1123 1166 retrie = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie; 1124 1167 retrie_1_2_0_0 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_0_0; 1125 1168 retrie_1_2_1_1 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_1_1; ··· 1231 1274 ] 1232 1275 }" 1233 1276 ''; 1277 + 1278 + passthru = { 1279 + updateScript = ../../../maintainers/scripts/haskell/update-cabal2nix-unstable.sh; 1280 + 1281 + # This is used by regenerate-hackage-packages.nix to supply the configuration 1282 + # values we can easily generate automatically without checking them in. 1283 + compilerConfig = 1284 + pkgs.runCommand "hackage2nix-${self.ghc.haskellCompilerName}-config.yaml" 1285 + { 1286 + nativeBuildInputs = [ 1287 + self.ghc 1288 + ]; 1289 + } 1290 + '' 1291 + cat > "$out" << EOF 1292 + # generated by haskellPackages.cabal2nix-unstable.compilerConfig 1293 + compiler: ${self.ghc.haskellCompilerName} 1294 + 1295 + core-packages: 1296 + EOF 1297 + 1298 + ghc-pkg list \ 1299 + | tail -n '+2' \ 1300 + | sed -e 's/[()]//g' -e 's/\s\+/ - /' \ 1301 + >> "$out" 1302 + ''; 1303 + }; 1234 1304 }) (justStaticExecutables super.cabal2nix-unstable); 1235 1305 1236 1306 # test suite needs local redis daemon ··· 1291 1361 })) 1292 1362 (self.generateOptparseApplicativeCompletions [ "cloudy" ]) 1293 1363 ]; 1364 + 1365 + # We don't have multiple GHC versions to test against in PATH 1366 + ghc-hie = overrideCabal (drv: { 1367 + testFlags = drv.testFlags or [ ] ++ [ 1368 + "--skip=/GHC.Iface.Ext.Binary/readHieFile" 1369 + ]; 1370 + }) super.ghc-hie; 1294 1371 1295 1372 # Wants running postgresql database accessible over ip, so postgresqlTestHook 1296 1373 # won't work (or would need to patch test suite). ··· 1342 1419 (overrideCabal { mainProgram = "agda"; }) 1343 1420 # Split outputs to reduce closure size 1344 1421 enableSeparateBinOutput 1422 + # Build the primitive library to generate its interface files. 1423 + # These are needed in order to use Agda in Nix builds. 1424 + (overrideCabal (drv: { 1425 + postInstall = drv.postInstall or "" + '' 1426 + agdaExe=''${bin:-$out}/bin/agda 1427 + 1428 + echo "Generating Agda core library interface files..." 1429 + (cd "$("$agdaExe" --print-agda-data-dir)/lib/prim" && "$agdaExe" --build-library) 1430 + ''; 1431 + })) 1345 1432 ]; 1346 1433 1347 1434 # ats-format uses cli-setup in Setup.hs which is quite happy to write ··· 1712 1799 ]; 1713 1800 1714 1801 xmobar = enableSeparateBinOutput super.xmobar; 1802 + 1803 + # These test cases access the network 1804 + hpack_0_38_1 = doDistribute ( 1805 + overrideCabal (drv: { 1806 + testFlags = drv.testFlags or [ ] ++ [ 1807 + "--skip" 1808 + "/Hpack.Defaults/ensureFile/with 404/does not create any files/" 1809 + "--skip" 1810 + "/Hpack.Defaults/ensureFile/downloads file if missing/" 1811 + "--skip" 1812 + "/EndToEnd/hpack/defaults/fails if defaults don't exist/" 1813 + ]; 1814 + }) super.hpack_0_38_1 1815 + ); 1715 1816 1716 1817 # 2024-08-09: Disable some cabal-doctest tests pending further investigation. 1717 1818 inherit
+1 -1
pkgs/development/haskell-modules/generic-builder.nix
··· 88 88 enableSharedLibraries ? 89 89 !stdenv.hostPlatform.isStatic 90 90 && (ghc.enableShared or false) 91 - && !stdenv.hostPlatform.useAndroidPrebuilt, 91 + && !stdenv.hostPlatform.useAndroidPrebuilt, # TODO: figure out why /build leaks into RPATH 92 92 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin 93 93 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235 94 94 enableStaticLibraries ?
+5682 -1523
pkgs/development/haskell-modules/hackage-packages.nix
··· 1490 1490 blaze-html, 1491 1491 boxes, 1492 1492 bytestring, 1493 - Cabal, 1494 1493 case-insensitive, 1495 1494 containers, 1496 1495 data-hash, ··· 1499 1498 dlist, 1500 1499 edit-distance, 1501 1500 emacs, 1501 + enummapset, 1502 1502 equivalence, 1503 1503 exceptions, 1504 + filelock, 1505 + filemanip, 1504 1506 filepath, 1507 + generic-data, 1505 1508 ghc-compact, 1506 1509 gitrev, 1507 1510 happy, ··· 1510 1513 monad-control, 1511 1514 mtl, 1512 1515 murmur-hash, 1516 + nonempty-containers, 1513 1517 parallel, 1514 1518 peano, 1515 1519 pqueue, 1516 1520 pretty, 1517 1521 process, 1522 + process-extras, 1518 1523 regex-tdfa, 1519 1524 split, 1520 1525 stm, 1521 1526 STMonadTrans, 1522 1527 strict, 1528 + template-haskell, 1523 1529 text, 1524 1530 time, 1525 1531 transformers, ··· 1531 1537 }: 1532 1538 mkDerivation { 1533 1539 pname = "Agda"; 1534 - version = "2.7.0.1"; 1535 - sha256 = "13pn0mbxyfy04fcdl68l2m36b40hwk8iwpkqdfad3xsf9l5ddxil"; 1536 - revision = "3"; 1537 - editedCabalFile = "0vmsy5hjivysiqkzk65ca1y8ivbzly5z55zi12bgsmj7jqrd8vrf"; 1540 + version = "2.8.0"; 1541 + sha256 = "184vjq260zf5w9c8nz11nbhpsvq3a1yxp7mhaz7synlaww3ik146"; 1538 1542 isLibrary = true; 1539 1543 isExecutable = true; 1540 1544 enableSeparateDataOutput = true; 1541 - setupHaskellDepends = [ 1542 - base 1543 - Cabal 1544 - directory 1545 - filepath 1546 - process 1547 - ]; 1548 1545 libraryHaskellDepends = [ 1549 1546 aeson 1550 1547 ansi-terminal ··· 1562 1559 directory 1563 1560 dlist 1564 1561 edit-distance 1562 + enummapset 1565 1563 equivalence 1566 1564 exceptions 1565 + filelock 1566 + filemanip 1567 1567 filepath 1568 + generic-data 1568 1569 ghc-compact 1569 1570 gitrev 1570 1571 hashable ··· 1572 1573 monad-control 1573 1574 mtl 1574 1575 murmur-hash 1576 + nonempty-containers 1575 1577 parallel 1576 1578 peano 1577 1579 pqueue 1578 1580 pretty 1579 1581 process 1582 + process-extras 1580 1583 regex-tdfa 1581 1584 split 1582 1585 stm 1583 1586 STMonadTrans 1584 1587 strict 1588 + template-haskell 1585 1589 text 1586 1590 time 1587 1591 transformers ··· 1597 1601 ]; 1598 1602 executableHaskellDepends = [ 1599 1603 base 1604 + bytestring 1600 1605 directory 1606 + filelock 1601 1607 filepath 1608 + gitrev 1602 1609 process 1610 + template-haskell 1603 1611 ]; 1604 1612 executableToolDepends = [ emacs ]; 1605 1613 description = "A dependently typed functional programming language and proof assistant"; ··· 7005 7013 }: 7006 7014 mkDerivation { 7007 7015 pname = "ChasingBottoms"; 7008 - version = "1.3.1.15"; 7009 - sha256 = "0if8h6xq10y1xa90cwmx2jkxjn9628rzs8y6fsjmpjdcvcyr5wnj"; 7010 - revision = "2"; 7011 - editedCabalFile = "11h7gfnlxfrfpvax74lbdwaz8jazy833q6mzrgs9p8cyj6q69ibn"; 7016 + version = "1.3.1.16"; 7017 + sha256 = "08zg018arf4qvp970dcnf0nyaqp7wkp5ba2dhck3v4l49k5cax9m"; 7012 7018 libraryHaskellDepends = [ 7013 7019 base 7014 7020 containers ··· 8110 8116 } 8111 8117 ) { }; 8112 8118 8119 + "ConsoleAsk" = callPackage ( 8120 + { 8121 + mkDerivation, 8122 + base, 8123 + lens, 8124 + parsec, 8125 + regex-tdfa, 8126 + text, 8127 + }: 8128 + mkDerivation { 8129 + pname = "ConsoleAsk"; 8130 + version = "0.1.0.1"; 8131 + sha256 = "0mbrvaqdxfx7vfcqy6rbva0ml6a7a2yklgzh3vx008yaavzw4hy6"; 8132 + libraryHaskellDepends = [ 8133 + base 8134 + lens 8135 + parsec 8136 + regex-tdfa 8137 + text 8138 + ]; 8139 + description = "Simple CLI user input library"; 8140 + license = lib.licenses.mit; 8141 + } 8142 + ) { }; 8143 + 8113 8144 "ConstraintKinds" = callPackage ( 8114 8145 { 8115 8146 mkDerivation, ··· 22336 22367 }: 22337 22368 mkDerivation { 22338 22369 pname = "HaskellNet"; 22339 - version = "0.6.1.2"; 22340 - sha256 = "0yd0n6c9favb6kv37flz2cn9wz5kapx3iqljq2h7l6qvx6kd92v5"; 22341 - revision = "1"; 22342 - editedCabalFile = "1j5g09v40rvsk4crfjabs0mma5nlwsbzbny25803bc6805jh9058"; 22370 + version = "0.6.2"; 22371 + sha256 = "134gmv5b4f02f24m86ql256dssdvkgqjp2cw36p6958ydbdsx6s4"; 22343 22372 libraryHaskellDepends = [ 22344 22373 array 22345 22374 base ··· 22356 22385 ]; 22357 22386 description = "Client support for POP3, SMTP, and IMAP"; 22358 22387 license = lib.licenses.bsd3; 22359 - hydraPlatforms = lib.platforms.none; 22360 - broken = true; 22361 22388 } 22362 22389 ) { }; 22363 22390 ··· 22394 22421 ]; 22395 22422 description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; 22396 22423 license = lib.licenses.bsd3; 22397 - hydraPlatforms = lib.platforms.none; 22398 22424 mainProgram = "HaskellNet-SSL-example"; 22399 22425 } 22400 22426 ) { }; ··· 23978 24004 }: 23979 24005 mkDerivation { 23980 24006 pname = "HsSyck"; 23981 - version = "0.53"; 23982 - sha256 = "17r4jwnkjinmzpw9m2crjwccdyv9wmpljnv1ldgljkr9p9mb5ywf"; 24007 + version = "0.55"; 24008 + sha256 = "1ccm9r40898kfgkrnwz0ybcdps83li9wk565fm37gdpsvmi19faf"; 23983 24009 enableSeparateDataOutput = true; 23984 24010 libraryHaskellDepends = [ 23985 24011 base ··· 24096 24122 pname = "HsYAML"; 24097 24123 version = "0.2.1.5"; 24098 24124 sha256 = "13av46629msknp1spmcczgd2hpsyj0ca590vpiy7df8l6cfwjyk5"; 24125 + revision = "1"; 24126 + editedCabalFile = "1l5ig8a1c13rwcx530li93p0kkxcsjpjyr303v19z6n8zmdvnz6a"; 24099 24127 isLibrary = true; 24100 24128 isExecutable = true; 24101 24129 libraryHaskellDepends = [ ··· 24700 24728 pname = "IPv6DB"; 24701 24729 version = "0.3.3.4"; 24702 24730 sha256 = "1mkf2fqlg2n9q3l3p8rxdcmb7k281lz37x6hiry1wvxbn92d4pja"; 24731 + revision = "1"; 24732 + editedCabalFile = "18wx26x4nyyywbl7inwna68kmxs8sbyckmrhdz4png9gn7ix4sr0"; 24703 24733 isLibrary = true; 24704 24734 isExecutable = true; 24705 24735 libraryHaskellDepends = [ ··· 26815 26845 pname = "LPFP"; 26816 26846 version = "1.1.5"; 26817 26847 sha256 = "11mlcd1pq2vb0kwjm2z6304qslvmdcfdbly37yr27zhn860zfzz2"; 26848 + revision = "2"; 26849 + editedCabalFile = "1530y0rmj3gwhk0ghpaf0977wz0n2pq86dfcb401y0ala7f4z167"; 26818 26850 isLibrary = true; 26819 26851 isExecutable = true; 26820 26852 libraryHaskellDepends = [ ··· 29699 29731 }: 29700 29732 mkDerivation { 29701 29733 pname = "MicroHs"; 29702 - version = "0.12.6.1"; 29703 - sha256 = "145fk10clh4mmfd58212kr1b56fr4j19vrlrq6d4jdv4zrvk5iwl"; 29734 + version = "0.13.0.0"; 29735 + sha256 = "02wl86ql8xcp9w7vlhvh0m95am6ssmw8fzkbs597qlhpwp91ax3w"; 29704 29736 isLibrary = false; 29705 29737 isExecutable = true; 29706 29738 enableSeparateDataOutput = true; ··· 31721 31753 } 31722 31754 ) { }; 31723 31755 31724 - "NanoID_3_4_1" = callPackage ( 31756 + "NanoID_3_4_1_1" = callPackage ( 31725 31757 { 31726 31758 mkDerivation, 31727 31759 aeson, ··· 31736 31768 }: 31737 31769 mkDerivation { 31738 31770 pname = "NanoID"; 31739 - version = "3.4.1"; 31740 - sha256 = "1rrz4wmhba372fg9w8rg6fgynwqmy5dhyz5i74xab5mbjgv169rs"; 31771 + version = "3.4.1.1"; 31772 + sha256 = "1dfl5vj6fwxwrhgx11vzxij2p19q3kqri130fxgw2l6ajlckyh8x"; 31741 31773 isLibrary = true; 31742 31774 isExecutable = true; 31743 31775 libraryHaskellDepends = [ ··· 34971 35003 }: 34972 35004 mkDerivation { 34973 35005 pname = "PenroseKiteDart"; 34974 - version = "1.3"; 34975 - sha256 = "0yjfc7zahrf4h02xhlbhzh0r8nzns5v1a2rp2sg3gi073v59gpps"; 35006 + version = "1.4.3"; 35007 + sha256 = "1nrp9cr7jxjvplkfgp4lxh3rvzf1pms8bm7kwhc4w4fzmpy3p3p1"; 34976 35008 libraryHaskellDepends = [ 34977 35009 base 34978 35010 containers ··· 36449 36481 } 36450 36482 ) { }; 36451 36483 36452 - "QuickCheck_2_15_0_1" = callPackage ( 36484 + "QuickCheck_2_16_0_0" = callPackage ( 36453 36485 { 36454 36486 mkDerivation, 36455 36487 base, ··· 36463 36495 }: 36464 36496 mkDerivation { 36465 36497 pname = "QuickCheck"; 36466 - version = "2.15.0.1"; 36467 - sha256 = "0zvfydg44ibs1br522rzvdlxj9mpz0h62js1hay1sj5gvdnj3cm3"; 36468 - revision = "1"; 36469 - editedCabalFile = "0cgfp4s51cjphsn9cls6rndisvqmi94vn95xan9g1yz6p5xk7z8c"; 36498 + version = "2.16.0.0"; 36499 + sha256 = "1h02m26hvhfcs82rrfmfznwh4vj799gn55kysmv3sr8ixak3ymhb"; 36470 36500 libraryHaskellDepends = [ 36471 36501 base 36472 36502 containers ··· 46710 46740 { mkDerivation }: 46711 46741 mkDerivation { 46712 46742 pname = "Win32"; 46713 - version = "2.14.2.0"; 46714 - sha256 = "0qmm44py2r1z5mj12vr33s01kci5hmh479pr6v8ljqgm2imlfr4j"; 46743 + version = "2.14.2.1"; 46744 + sha256 = "0583vy22b89z4zdgg52ayga46mw8qmj0lw7qm99q6wggnjgmmlb9"; 46715 46745 description = "A binding to Windows Win32 API"; 46716 46746 license = lib.licenses.bsd3; 46717 46747 platforms = lib.platforms.windows; ··· 49364 49394 }: 49365 49395 mkDerivation { 49366 49396 pname = "ac-library-hs"; 49367 - version = "1.5.0.0"; 49368 - sha256 = "15jvxwsx50qcv58wx4a2m4f1h5ic476cnb78n757shyfm0asn9ag"; 49397 + version = "1.5.2.0"; 49398 + sha256 = "028781j64wv42j9i2gmgccmlakyjchpxqk13rk5n59xavlyv7yw9"; 49369 49399 isLibrary = true; 49370 49400 isExecutable = true; 49371 49401 libraryHaskellDepends = [ ··· 49374 49404 bytestring 49375 49405 primitive 49376 49406 random 49407 + transformers 49377 49408 vector 49378 49409 vector-algorithms 49379 49410 wide-word ··· 49384 49415 bytestring 49385 49416 primitive 49386 49417 random 49418 + transformers 49387 49419 vector 49388 49420 vector-algorithms 49389 49421 wide-word ··· 49428 49460 ]; 49429 49461 description = "Data structures and algorithms"; 49430 49462 license = lib.licenses.cc0; 49463 + hydraPlatforms = lib.platforms.none; 49431 49464 mainProgram = "example-lazy-segtree"; 49465 + broken = true; 49432 49466 } 49433 49467 ) { }; 49434 49468 ··· 52296 52330 pname = "active"; 52297 52331 version = "0.2.1"; 52298 52332 sha256 = "150kwir36aj9q219qi80mlqd0vxm4941dh6x4xp58rbd5a3mhmv1"; 52299 - revision = "4"; 52300 - editedCabalFile = "0s5aiyskly1j4wd4hs2c52bdawx9340pgdx0378xvivixd48cd8x"; 52333 + revision = "5"; 52334 + editedCabalFile = "0wxl3pfdz4krx7lg1rckvmjkm2hj5vlwx3kyzzfrpsfhc9zq7f1g"; 52301 52335 libraryHaskellDepends = [ 52302 52336 base 52303 52337 lens ··· 53708 53742 pname = "aeson"; 53709 53743 version = "2.2.3.0"; 53710 53744 sha256 = "1akbrh8iz47f0ai30yabg1n4vcf1fx0a9gzj45fx0si553s5r8ns"; 53711 - revision = "3"; 53712 - editedCabalFile = "16sajjm1fqrjjgdy651ff7hyj89di7ys9wk4qnm9h6nnpbr5krb1"; 53745 + revision = "4"; 53746 + editedCabalFile = "0yw5kahz82kls4svn0qssckvx143k73h5nqg0z1d4s7ibqww4j3x"; 53713 53747 libraryHaskellDepends = [ 53714 53748 base 53715 53749 bytestring ··· 59448 59482 pname = "align-audio"; 59449 59483 version = "0.0.0.1"; 59450 59484 sha256 = "1r1660igj6bmzhccw30vj0wsz7jjkd5k0vbr4nrcbpcwkxllshnb"; 59451 - revision = "2"; 59452 - editedCabalFile = "15hqn6q6991qp60pvykw3ryrcyqz94vhwcj1y28sxdpn5ga8mrl9"; 59485 + revision = "3"; 59486 + editedCabalFile = "1j50cp7i77dplkd3g7nnyn9xgcr8r8d4lh6nh9xcnjfkn8p6g539"; 59453 59487 isLibrary = false; 59454 59488 isExecutable = true; 59455 59489 executableHaskellDepends = [ ··· 69871 69905 }: 69872 69906 mkDerivation { 69873 69907 pname = "amazonka-mtl"; 69874 - version = "0.1.1.1"; 69875 - sha256 = "19rcmfq5ly92jm96w5770286kihd5gsdc45rmpbkhm71xl2aa0pq"; 69908 + version = "0.1.1.3"; 69909 + sha256 = "06ng492c6r0zwyjyr0h6b665sp6v17i245svdsag3ha8ni303hka"; 69876 69910 libraryHaskellDepends = [ 69877 69911 amazonka 69878 69912 amazonka-core ··· 75709 75743 }: 75710 75744 mkDerivation { 75711 75745 pname = "android-activity"; 75712 - version = "0.2.0.1"; 75713 - sha256 = "1pb250zsmh9z7h8wcqnqhbvhhdwwhmrwj8qr1w8053pxylsr5npn"; 75746 + version = "0.2.0.2"; 75747 + sha256 = "1l82k9if392682wr31b6g74wv25qwl5cgxwcmhnrp4lm8w0n428d"; 75714 75748 libraryHaskellDepends = [ 75715 75749 base 75716 75750 data-default ··· 76691 76725 pname = "ansi-terminal-game"; 76692 76726 version = "1.9.3.0"; 76693 76727 sha256 = "1yy7hzdcawdmwl8wqzabbamzjdg260xbwryj0hdjn7b0n6qlqymk"; 76694 - revision = "2"; 76695 - editedCabalFile = "1gjaa3kj05v5zyjn27y17w05nx018bx28znj7r0al0c6267n0la8"; 76728 + revision = "3"; 76729 + editedCabalFile = "0m4df8a2p18j29zsgffnyf69hjkyam3rg3xc4zvmxafidj877ykk"; 76696 76730 isLibrary = true; 76697 76731 isExecutable = true; 76698 76732 libraryHaskellDepends = [ ··· 78132 78166 }: 78133 78167 mkDerivation { 78134 78168 pname = "aoc"; 78135 - version = "0.1.0.2"; 78136 - sha256 = "0x5lpirk74zf4283gpvmw71dv8mgil80l1awv42f8sfxg5nx805g"; 78169 + version = "0.2.0.0"; 78170 + sha256 = "0hamr2sqw00njwg4sdir81fmsgc29ic21m0rzqnrfmd5jgdmg27h"; 78137 78171 libraryHaskellDepends = [ 78138 78172 base 78139 78173 containers ··· 83461 83495 pname = "arithmoi"; 83462 83496 version = "0.13.1.0"; 83463 83497 sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; 83464 - revision = "1"; 83465 - editedCabalFile = "1q36pbxsz3vcig7gjr0m38bn5d34az2cjkhcag4n2ra86zdqrnvv"; 83498 + revision = "2"; 83499 + editedCabalFile = "1q81krc6qgg495qqlnh7kbzg2fk57amgiqa5xmxwhxrhlffjsk3d"; 83466 83500 configureFlags = [ "-f-llvm" ]; 83467 83501 libraryHaskellDepends = [ 83468 83502 array ··· 85093 85127 } 85094 85128 ) { }; 85095 85129 85130 + "ascii85x" = callPackage ( 85131 + { 85132 + mkDerivation, 85133 + array, 85134 + attoparsec, 85135 + base, 85136 + bytestring, 85137 + hedgehog, 85138 + JuicyPixels, 85139 + optparse-applicative, 85140 + text, 85141 + vector, 85142 + }: 85143 + mkDerivation { 85144 + pname = "ascii85x"; 85145 + version = "0.2.4.1"; 85146 + sha256 = "1jr0qqcyx173gy5izz99z5s3v9a78ks48g7am4lfab7py3k0xri3"; 85147 + isLibrary = true; 85148 + isExecutable = true; 85149 + libraryHaskellDepends = [ 85150 + array 85151 + attoparsec 85152 + base 85153 + bytestring 85154 + JuicyPixels 85155 + text 85156 + vector 85157 + ]; 85158 + executableHaskellDepends = [ 85159 + array 85160 + attoparsec 85161 + base 85162 + bytestring 85163 + JuicyPixels 85164 + optparse-applicative 85165 + text 85166 + vector 85167 + ]; 85168 + testHaskellDepends = [ 85169 + array 85170 + attoparsec 85171 + base 85172 + bytestring 85173 + hedgehog 85174 + JuicyPixels 85175 + text 85176 + vector 85177 + ]; 85178 + description = "Displays TI-85 variable files as text"; 85179 + license = lib.licenses.bsd3; 85180 + hydraPlatforms = lib.platforms.none; 85181 + mainProgram = "ascii85x"; 85182 + broken = true; 85183 + } 85184 + ) { }; 85185 + 85096 85186 "asciichart" = callPackage ( 85097 85187 { 85098 85188 mkDerivation, ··· 88875 88965 }: 88876 88966 mkDerivation { 88877 88967 pname = "attoparsec-framer"; 88878 - version = "0.1.0.9"; 88879 - sha256 = "0kh54qdzjqa7lxd8s679b3my5nsy55rwqwd84nblmfczi73bjc0p"; 88968 + version = "0.1.0.10"; 88969 + sha256 = "1ziskifj6mly9ywsag8395ladwscrwzjpn628nbmn29x28zq0n61"; 88880 88970 isLibrary = true; 88881 88971 isExecutable = true; 88882 88972 libraryHaskellDepends = [ ··· 88988 89078 containers, 88989 89079 deepseq, 88990 89080 directory, 89081 + fail, 88991 89082 filepath, 88992 89083 ghc-prim, 88993 89084 haddock-use-refs, ··· 88996 89087 QuickCheck, 88997 89088 quickcheck-unicode, 88998 89089 scientific, 89090 + semigroups, 88999 89091 tagged, 89000 89092 tasty, 89001 89093 tasty-bench, ··· 89008 89100 }: 89009 89101 mkDerivation { 89010 89102 pname = "attoparsec-isotropic"; 89011 - version = "0.14.4"; 89012 - sha256 = "17rgqqkshn7pdyk54ac4vc3xs4p2kqh3mbd0ppsy7shyry7c1ahs"; 89103 + version = "0.14.5"; 89104 + sha256 = "1bvxy2gydz3kv0fbhp77bwk75l73kz7qc4aa7wlldga90f8y3vhj"; 89013 89105 libraryHaskellDepends = [ 89014 89106 array 89015 89107 base 89016 89108 bytestring 89017 89109 containers 89018 89110 deepseq 89111 + fail 89019 89112 ghc-prim 89020 89113 haddock-use-refs 89021 89114 scientific 89115 + semigroups 89022 89116 tagged 89023 89117 text 89024 89118 trace-embrace ··· 89028 89122 array 89029 89123 base 89030 89124 bytestring 89125 + containers 89031 89126 deepseq 89127 + fail 89128 + haddock-use-refs 89032 89129 http-types 89033 89130 QuickCheck 89034 89131 quickcheck-unicode 89035 89132 scientific 89133 + semigroups 89134 + tagged 89036 89135 tasty 89037 89136 tasty-bench 89038 89137 tasty-quickcheck ··· 89049 89148 containers 89050 89149 deepseq 89051 89150 directory 89151 + fail 89052 89152 filepath 89053 89153 ghc-prim 89154 + haddock-use-refs 89054 89155 http-types 89055 89156 parsec 89056 89157 scientific 89158 + semigroups 89159 + tagged 89057 89160 tasty-bench 89058 89161 text 89162 + trace-embrace 89059 89163 transformers 89060 89164 unordered-containers 89061 89165 vector ··· 89453 89557 pname = "audacity"; 89454 89558 version = "0.0.2.2"; 89455 89559 sha256 = "1glvk4mkq8j48s0xm86xb1l3xrb6m3cijcckdm48zq3pz7yg3hd8"; 89560 + revision = "1"; 89561 + editedCabalFile = "1zijgx43yd713czj9r5b2yv26dii4d4i6ar9n0l1c9zqaqv7vh6p"; 89456 89562 isLibrary = true; 89457 89563 isExecutable = true; 89458 89564 libraryHaskellDepends = [ ··· 90224 90330 } 90225 90331 ) { }; 90226 90332 90333 + "autodocodec_0_5_0_0" = callPackage ( 90334 + { 90335 + mkDerivation, 90336 + aeson, 90337 + base, 90338 + bytestring, 90339 + containers, 90340 + dlist, 90341 + doctest, 90342 + hashable, 90343 + mtl, 90344 + scientific, 90345 + text, 90346 + time, 90347 + unordered-containers, 90348 + validity, 90349 + validity-scientific, 90350 + vector, 90351 + }: 90352 + mkDerivation { 90353 + pname = "autodocodec"; 90354 + version = "0.5.0.0"; 90355 + sha256 = "172z14rfrl7jn0cwsbspyzb884szrmvq1rixd2b8ymc8d278l049"; 90356 + libraryHaskellDepends = [ 90357 + aeson 90358 + base 90359 + bytestring 90360 + containers 90361 + dlist 90362 + hashable 90363 + mtl 90364 + scientific 90365 + text 90366 + time 90367 + unordered-containers 90368 + validity 90369 + validity-scientific 90370 + vector 90371 + ]; 90372 + testHaskellDepends = [ 90373 + base 90374 + doctest 90375 + ]; 90376 + description = "Self-documenting encoder and decoder"; 90377 + license = lib.licenses.mit; 90378 + hydraPlatforms = lib.platforms.none; 90379 + } 90380 + ) { }; 90381 + 90382 + "autodocodec-exact" = callPackage ( 90383 + { 90384 + mkDerivation, 90385 + aeson, 90386 + aeson-pretty, 90387 + autodocodec, 90388 + base, 90389 + bytestring, 90390 + containers, 90391 + mtl, 90392 + pretty-show, 90393 + scientific, 90394 + text, 90395 + unordered-containers, 90396 + vector, 90397 + }: 90398 + mkDerivation { 90399 + pname = "autodocodec-exact"; 90400 + version = "0.0.0.1"; 90401 + sha256 = "07ljrfxhkrl7k33nhg51m30334yvjp7jrix6hlwzgfqgr4nsbdas"; 90402 + libraryHaskellDepends = [ 90403 + aeson 90404 + aeson-pretty 90405 + autodocodec 90406 + base 90407 + bytestring 90408 + containers 90409 + mtl 90410 + pretty-show 90411 + scientific 90412 + text 90413 + unordered-containers 90414 + vector 90415 + ]; 90416 + description = "Exact decoder for autodocodec"; 90417 + license = lib.licenses.mit; 90418 + hydraPlatforms = lib.platforms.none; 90419 + broken = true; 90420 + } 90421 + ) { }; 90422 + 90227 90423 "autodocodec-nix" = callPackage ( 90228 90424 { 90229 90425 mkDerivation, ··· 90394 90590 } 90395 90591 ) { }; 90396 90592 90593 + "autodocodec-servant-multipart_0_0_0_2" = callPackage ( 90594 + { 90595 + mkDerivation, 90596 + aeson, 90597 + autodocodec, 90598 + base, 90599 + bytestring, 90600 + servant-multipart, 90601 + servant-multipart-api, 90602 + text, 90603 + unordered-containers, 90604 + vector, 90605 + }: 90606 + mkDerivation { 90607 + pname = "autodocodec-servant-multipart"; 90608 + version = "0.0.0.2"; 90609 + sha256 = "0zdghkqmrr2d4lj71c3qh62bqvc5frhid8s8zkh3hwkkla7a1ld4"; 90610 + libraryHaskellDepends = [ 90611 + aeson 90612 + autodocodec 90613 + base 90614 + bytestring 90615 + servant-multipart 90616 + servant-multipart-api 90617 + text 90618 + unordered-containers 90619 + vector 90620 + ]; 90621 + description = "Autodocodec interpreters for Servant Multipart"; 90622 + license = lib.licenses.mit; 90623 + hydraPlatforms = lib.platforms.none; 90624 + } 90625 + ) { }; 90626 + 90397 90627 "autodocodec-swagger2" = callPackage ( 90398 90628 { 90399 90629 mkDerivation, ··· 90461 90691 ]; 90462 90692 description = "Autodocodec interpreters for yaml"; 90463 90693 license = lib.licenses.mit; 90694 + } 90695 + ) { }; 90696 + 90697 + "autodocodec-yaml_0_4_0_2" = callPackage ( 90698 + { 90699 + mkDerivation, 90700 + autodocodec, 90701 + autodocodec-schema, 90702 + base, 90703 + bytestring, 90704 + containers, 90705 + path, 90706 + path-io, 90707 + safe-coloured-text, 90708 + scientific, 90709 + text, 90710 + vector, 90711 + yaml, 90712 + }: 90713 + mkDerivation { 90714 + pname = "autodocodec-yaml"; 90715 + version = "0.4.0.2"; 90716 + sha256 = "17ll6bb0qs7nm9s2kf1b2zn67kjv5lwcrs2igllk5vlsajk4difl"; 90717 + libraryHaskellDepends = [ 90718 + autodocodec 90719 + autodocodec-schema 90720 + base 90721 + bytestring 90722 + containers 90723 + path 90724 + path-io 90725 + safe-coloured-text 90726 + scientific 90727 + text 90728 + vector 90729 + yaml 90730 + ]; 90731 + description = "Autodocodec interpreters for yaml"; 90732 + license = lib.licenses.mit; 90733 + hydraPlatforms = lib.platforms.none; 90464 90734 } 90465 90735 ) { }; 90466 90736 ··· 91934 92204 } 91935 92205 ) { }; 91936 92206 92207 + "aws-academy-grade-exporter" = callPackage ( 92208 + { 92209 + mkDerivation, 92210 + aeson, 92211 + base, 92212 + bytestring, 92213 + cassava, 92214 + optparse-applicative, 92215 + postgresql-simple, 92216 + req, 92217 + text, 92218 + vector, 92219 + }: 92220 + mkDerivation { 92221 + pname = "aws-academy-grade-exporter"; 92222 + version = "0.1.0.0"; 92223 + sha256 = "1wh0sz2x4kfh97yi3811r3vg2qf6i6zp2hyifzz1jy1nra93b6av"; 92224 + isLibrary = false; 92225 + isExecutable = true; 92226 + executableHaskellDepends = [ 92227 + aeson 92228 + base 92229 + bytestring 92230 + cassava 92231 + optparse-applicative 92232 + postgresql-simple 92233 + req 92234 + text 92235 + vector 92236 + ]; 92237 + description = "Export grades from AWS Academy to different formats"; 92238 + license = lib.licenses.mit; 92239 + hydraPlatforms = lib.platforms.none; 92240 + mainProgram = "aws-academy-grade-exporter"; 92241 + broken = true; 92242 + } 92243 + ) { }; 92244 + 91937 92245 "aws-arn" = callPackage ( 91938 92246 { 91939 92247 mkDerivation, ··· 93762 94070 }: 93763 94071 mkDerivation { 93764 94072 pname = "aws-spend-summary"; 93765 - version = "0.2.0.2"; 93766 - sha256 = "0zp9bdrhxl4z8fyjqcilndpj6qw5scs1byh1fzj8v9r4zzg59zsg"; 94073 + version = "0.3.0.0"; 94074 + sha256 = "0lnwlvjqjs4hxqfblrhgqjq6309c466hlnamryprgd3l8nhnpak3"; 93767 94075 isLibrary = true; 93768 94076 isExecutable = true; 93769 94077 libraryHaskellDepends = [ ··· 95451 95759 microlens, 95452 95760 microlens-th, 95453 95761 mwc-random, 95454 - primitive, 95455 95762 reflection, 95456 95763 time, 95457 95764 transformers, ··· 95460 95767 }: 95461 95768 mkDerivation { 95462 95769 pname = "backprop"; 95463 - version = "0.2.6.5"; 95464 - sha256 = "0rc6dsf0zasl9vah8kv61qk2z7s644lzsrmkd7fwxwj1480kb482"; 95770 + pname = "nat"; 95771 + sha256 = "1v7r2gr18kcrcf12dmjpg2cqg1lanpqfpjwbqqnm1sbibvf467w7"; 95465 95772 libraryHaskellDepends = [ 95466 95773 base 95467 95774 containers 95468 95775 deepseq 95469 95776 microlens 95470 - primitive 95471 95777 reflection 95472 95778 transformers 95473 95779 vector ··· 96252 96558 pname = "ban-instance"; 96253 96559 version = "0.1.0.1"; 96254 96560 sha256 = "0504qsjbqbrdf9avfrhs290baszc9dickx7wknbyxwrzpzzbpggk"; 96255 - revision = "4"; 96256 - editedCabalFile = "1ip2abbxnj2cwc3b0l88s0014zakx4g84ifnnaqq8rg6mcn5ppik"; 96561 + revision = "5"; 96562 + editedCabalFile = "1a0xh0kfdpqgppaisb0hlm4k40gssbxh5jjz2j2l8xn2bnmv95cb"; 96257 96563 libraryHaskellDepends = [ 96258 96564 base 96259 96565 template-haskell ··· 97685 97991 pname = "base64-bytes"; 97686 97992 version = "0.1.1.1"; 97687 97993 sha256 = "0gvh2yg7mqwrswcq5p0h35bifsvm18cdvsjzazz37yrwan0i31vs"; 97994 + revision = "1"; 97995 + editedCabalFile = "17kl1813wdqbh6hjrm7npm2w65d0ir4bpbklggr4bxzxabwbsg2c"; 97688 97996 libraryHaskellDepends = [ 97689 97997 base 97690 97998 byte-order ··· 97714 98022 ]; 97715 98023 description = "Base64 encoding of byte sequences"; 97716 98024 license = lib.licenses.bsd3; 97717 - hydraPlatforms = lib.platforms.none; 97718 - broken = true; 97719 98025 } 97720 98026 ) { }; 97721 98027 ··· 97785 98091 pname = "base64-bytestring-type"; 97786 98092 version = "1.0.1"; 97787 98093 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 97788 - revision = "21"; 97789 - editedCabalFile = "1y3j1lkqlqw8l4p0g8s3iac0gd84nz3pqccrzfj7n23fp19zr1q3"; 98094 + revision = "22"; 98095 + editedCabalFile = "0a5640qjbd3f96v9sf6r1laqpqk83xh073qlq75174kcg5zi4rxa"; 97790 98096 libraryHaskellDepends = [ 97791 98097 aeson 97792 98098 base ··· 99873 100179 }: 99874 100180 mkDerivation { 99875 100181 pname = "beam-automigrate"; 99876 - version = "0.1.6.0"; 99877 - sha256 = "09pq0i3zb68ad20qznvf4kqf3y3zz0pjfi84g87rxay6y4sj6vi1"; 100182 + version = "0.1.7.0"; 100183 + sha256 = "019b0kykdjqmf2xcj11pi2s67ssy2al882nsj5aq2h1mq6c7bx63"; 99878 100184 isLibrary = true; 99879 100185 isExecutable = true; 99880 100186 libraryHaskellDepends = [ ··· 99974 100280 }: 99975 100281 mkDerivation { 99976 100282 pname = "beam-core"; 99977 - version = "0.10.3.1"; 99978 - sha256 = "0n3fyjhcljd44ri7z3kb1sd3izv047v82m9n7597r7sbipv8cysc"; 100283 + version = "0.10.4.0"; 100284 + sha256 = "1zxqyxxyid186s86lfw0sq030jckh83j3rwj6ibx4wg3flslk515"; 99979 100285 libraryHaskellDepends = [ 99980 100286 aeson 99981 100287 base ··· 100489 100795 } 100490 100796 ) { }; 100491 100797 100798 + "beam-sqlite_0_5_4_1" = callPackage ( 100799 + { 100800 + mkDerivation, 100801 + aeson, 100802 + attoparsec, 100803 + base, 100804 + beam-core, 100805 + beam-migrate, 100806 + bytestring, 100807 + direct-sqlite, 100808 + dlist, 100809 + free, 100810 + hashable, 100811 + monad-control, 100812 + mtl, 100813 + network-uri, 100814 + scientific, 100815 + sqlite-simple, 100816 + tasty, 100817 + tasty-expected-failure, 100818 + tasty-hunit, 100819 + text, 100820 + time, 100821 + transformers-base, 100822 + }: 100823 + mkDerivation { 100824 + pname = "beam-sqlite"; 100825 + version = "0.5.4.1"; 100826 + sha256 = "1f5yjsx7zfbfbxs3xd64rwn2m3vjffrbdn5xadhm1axhghi6srki"; 100827 + libraryHaskellDepends = [ 100828 + aeson 100829 + attoparsec 100830 + base 100831 + beam-core 100832 + beam-migrate 100833 + bytestring 100834 + direct-sqlite 100835 + dlist 100836 + free 100837 + hashable 100838 + monad-control 100839 + mtl 100840 + network-uri 100841 + scientific 100842 + sqlite-simple 100843 + text 100844 + time 100845 + transformers-base 100846 + ]; 100847 + testHaskellDepends = [ 100848 + base 100849 + beam-core 100850 + beam-migrate 100851 + sqlite-simple 100852 + tasty 100853 + tasty-expected-failure 100854 + tasty-hunit 100855 + text 100856 + time 100857 + ]; 100858 + description = "Beam driver for SQLite"; 100859 + license = lib.licenses.mit; 100860 + hydraPlatforms = lib.platforms.none; 100861 + } 100862 + ) { }; 100863 + 100492 100864 "beam-th" = callPackage ( 100493 100865 { 100494 100866 mkDerivation, ··· 100718 101090 }: 100719 101091 mkDerivation { 100720 101092 pname = "bech32"; 100721 - version = "1.1.8"; 100722 - sha256 = "0y9k93c5rxh0wjdyz4f1qpp6kljdbsrmy5appp4aqvwq2nqz9aas"; 101093 + version = "1.1.9"; 101094 + sha256 = "0l3h4c1aqjqrlxdc4gq409dwly61i7k2d7g3gz0gya9nf39xc3f4"; 100723 101095 isLibrary = true; 100724 101096 isExecutable = true; 100725 101097 libraryHaskellDepends = [ ··· 100776 101148 }: 100777 101149 mkDerivation { 100778 101150 pname = "bech32-th"; 100779 - version = "1.1.8"; 100780 - sha256 = "0dg79llv3rrakhskzpbs1qdwjn8i1whn1fn3xqkd9scmwh26a2n2"; 101151 + version = "1.1.9"; 101152 + sha256 = "0bc3wx5np17lb1y4s843f8m65687ainiv8biqfhfg7i2gfsc60cs"; 100781 101153 libraryHaskellDepends = [ 100782 101154 base 100783 101155 bech32 ··· 102149 102521 pname = "bhoogle"; 102150 102522 version = "0.1.4.4"; 102151 102523 sha256 = "1z19h0jgnipj16rqbrflcjnqaslafq9bvwkyg8q0il76q7s4wyxa"; 102152 - revision = "1"; 102153 - editedCabalFile = "182j2bc4cqddzv5vd2fkkyx2qs9ya7vg9r234xr5gyp35waln1i9"; 102524 + revision = "2"; 102525 + editedCabalFile = "1kpzvlzydrfqjhmpjirb51xhnwircdcnmhbn82nvnvm5s4h0pajd"; 102154 102526 isLibrary = false; 102155 102527 isExecutable = true; 102156 102528 executableHaskellDepends = [ ··· 111007 111379 }: 111008 111380 mkDerivation { 111009 111381 pname = "blockfrost-api"; 111010 - version = "0.12.2.0"; 111011 - sha256 = "04w745ws2nf90yix2idd6shahqfi7mwx83j4divjrkfb57pd8v6p"; 111382 + version = "0.13.0.0"; 111383 + sha256 = "0nghxnx9kjwk2frzsy0zrskvn3yffy7xp2fa70hl25bsc4sa2zar"; 111012 111384 libraryHaskellDepends = [ 111013 111385 aeson 111014 111386 base ··· 111070 111442 }: 111071 111443 mkDerivation { 111072 111444 pname = "blockfrost-client"; 111073 - version = "0.9.2.0"; 111074 - sha256 = "04q48afris70y4j4ya52kvj9n1iy8jqn6ygydp11idr15fpjj4qh"; 111445 + version = "0.10.0.0"; 111446 + sha256 = "0jyg2mc8jmwpsix46nh8r6bc2p1j5rdrjsrcdyyvqz5a2ri6hac7"; 111075 111447 isLibrary = true; 111076 111448 isExecutable = true; 111077 111449 libraryHaskellDepends = [ ··· 111242 111614 } 111243 111615 ) { }; 111244 111616 111617 + "blockio-uring" = callPackage ( 111618 + { 111619 + mkDerivation, 111620 + async, 111621 + base, 111622 + containers, 111623 + liburing, 111624 + primitive, 111625 + quickcheck-classes, 111626 + random, 111627 + tasty, 111628 + tasty-hunit, 111629 + tasty-quickcheck, 111630 + time, 111631 + unix, 111632 + vector, 111633 + }: 111634 + mkDerivation { 111635 + pname = "blockio-uring"; 111636 + version = "0.1.0.0"; 111637 + sha256 = "1g4sd7wqxf86i1c5iqiar6mpdszk99v7p71jcrx3dm8pap69r1x7"; 111638 + libraryHaskellDepends = [ 111639 + base 111640 + primitive 111641 + vector 111642 + ]; 111643 + libraryPkgconfigDepends = [ liburing ]; 111644 + testHaskellDepends = [ 111645 + base 111646 + primitive 111647 + quickcheck-classes 111648 + tasty 111649 + tasty-hunit 111650 + tasty-quickcheck 111651 + vector 111652 + ]; 111653 + testPkgconfigDepends = [ liburing ]; 111654 + benchmarkHaskellDepends = [ 111655 + async 111656 + base 111657 + containers 111658 + primitive 111659 + random 111660 + time 111661 + unix 111662 + vector 111663 + ]; 111664 + benchmarkPkgconfigDepends = [ liburing ]; 111665 + description = "Perform batches of asynchronous disk IO operations"; 111666 + license = lib.licenses.bsd3; 111667 + hydraPlatforms = lib.platforms.none; 111668 + broken = true; 111669 + } 111670 + ) { inherit (pkgs) liburing; }; 111671 + 111245 111672 "blogination" = callPackage ( 111246 111673 { 111247 111674 mkDerivation, ··· 113624 114051 pname = "boomwhacker"; 113625 114052 version = "0.0.2"; 113626 114053 sha256 = "0q5cq5j7dy1qm5jqpcl1imwiqqm0h21yvqwnvabsjnfrvfvryqg2"; 113627 - revision = "1"; 113628 - editedCabalFile = "0hwqdahpbinw9m7h05q0fhakj4w8mlvqz0ah6609x6wgb0dggmyb"; 114054 + revision = "2"; 114055 + editedCabalFile = "0jqys322j818dc24fyb37a59qs66m3b46j05y4vswipakwm1kgmk"; 113629 114056 isLibrary = false; 113630 114057 isExecutable = true; 113631 114058 enableSeparateDataOutput = true; ··· 116865 117292 pname = "brotli"; 116866 117293 version = "0.0.0.2"; 116867 117294 sha256 = "09y460adrq6cp9d8qlf8522yb0qc1vgjxv4d56kq2rdf9khqic6z"; 117295 + revision = "1"; 117296 + editedCabalFile = "1a0lbghilwpa6hb5msivb7hjqnnxi2bxlfgiawv0mjpc7gidhbz7"; 116868 117297 libraryHaskellDepends = [ 116869 117298 base 116870 117299 bytestring ··· 116947 117376 pname = "brotli-streams"; 116948 117377 version = "0.0.0.0"; 116949 117378 sha256 = "14jc1nhm50razsl99d95amdf4njf75dnzx8vqkihgrgp7qisyz3z"; 116950 - revision = "9"; 116951 - editedCabalFile = "1rhy0d1jy3v9r1skg3bdlnjj5avxy968ih1cyg9x9yb7rbyf3za5"; 117379 + revision = "10"; 117380 + editedCabalFile = "0v0zg5q9ahf8kvfm9zwlj4ws1yd3bvdxyxkak3xk7nca49vb8mcm"; 116952 117381 libraryHaskellDepends = [ 116953 117382 base 116954 117383 brotli ··· 118142 118571 }: 118143 118572 mkDerivation { 118144 118573 pname = "bugsnag"; 118145 - version = "1.1.0.1"; 118146 - sha256 = "1n2lq9iyz5m0s1mx22cwaci18f9i37g6xgdq3nbbyysmylrw09w2"; 118574 + version = "1.1.0.2"; 118575 + sha256 = "1f0jsad9z9zsj8sbirq6h1x0s7245rxv5gpciz4p8wv9ryi8d3m3"; 118147 118576 isLibrary = true; 118148 118577 isExecutable = true; 118149 118578 libraryHaskellDepends = [ ··· 118175 118604 } 118176 118605 ) { }; 118177 118606 118607 + "bugsnag_1_2_0_0" = callPackage ( 118608 + { 118609 + mkDerivation, 118610 + aeson, 118611 + annotated-exception, 118612 + base, 118613 + bugsnag-hs, 118614 + bytestring, 118615 + containers, 118616 + Glob, 118617 + hspec, 118618 + http-client, 118619 + http-client-tls, 118620 + parsec, 118621 + template-haskell, 118622 + text, 118623 + th-lift-instances, 118624 + ua-parser, 118625 + unliftio, 118626 + unordered-containers, 118627 + }: 118628 + mkDerivation { 118629 + pname = "bugsnag"; 118630 + version = "1.2.0.0"; 118631 + sha256 = "0hhr4z1jdsbg8jx2416dgpad0lirzdjiv79s4ykhfimn2pqk9liq"; 118632 + isLibrary = true; 118633 + isExecutable = true; 118634 + libraryHaskellDepends = [ 118635 + aeson 118636 + annotated-exception 118637 + base 118638 + bugsnag-hs 118639 + bytestring 118640 + containers 118641 + Glob 118642 + http-client 118643 + http-client-tls 118644 + parsec 118645 + template-haskell 118646 + text 118647 + th-lift-instances 118648 + ua-parser 118649 + unliftio 118650 + unordered-containers 118651 + ]; 118652 + testHaskellDepends = [ 118653 + annotated-exception 118654 + base 118655 + hspec 118656 + unliftio 118657 + ]; 118658 + description = "Bugsnag error reporter for Haskell"; 118659 + license = lib.licenses.mit; 118660 + hydraPlatforms = lib.platforms.none; 118661 + } 118662 + ) { }; 118663 + 118178 118664 "bugsnag-haskell" = callPackage ( 118179 118665 { 118180 118666 mkDerivation, ··· 118303 118789 }: 118304 118790 mkDerivation { 118305 118791 pname = "bugsnag-wai"; 118306 - version = "1.0.0.1"; 118307 - sha256 = "0f3x4m9nl277rhg2pwrja9xh6fffrwl2dm1cf3jiyngkrbrfck0w"; 118792 + version = "1.0.1.1"; 118793 + sha256 = "0wi0ip7fjzk3hvw2i19wjj08pn0bvmnx9j68lh4hgc8a0bdr69bg"; 118308 118794 isLibrary = true; 118309 118795 isExecutable = true; 118310 118796 libraryHaskellDepends = [ ··· 119197 119683 }: 119198 119684 mkDerivation { 119199 119685 pname = "burrito"; 119200 - version = "2.0.1.13"; 119201 - sha256 = "1bg3nd994xrwpirqn2hsbk831fralal946sac3ljslxjlvxar8v6"; 119686 + version = "2.0.1.14"; 119687 + sha256 = "1mywmf72rsj5p6mrg3454wsihlh1b26x4acb2gp0awx4bg96j09i"; 119202 119688 libraryHaskellDepends = [ 119203 119689 base 119204 119690 bytestring ··· 120631 121117 }: 120632 121118 mkDerivation { 120633 121119 pname = "byteslice"; 120634 - version = "0.2.14.0"; 120635 - sha256 = "0s9cnb7p1wr5vh3j95a952222xf2xzli451las5il3n04n4rxq1n"; 121120 + version = "0.2.15.0"; 121121 + sha256 = "10fcb7g9m4rkd6mza2km64agsgkwrbl7crv5hdcd5yljq6gyx2fm"; 120636 121122 libraryHaskellDepends = [ 120637 121123 base 120638 121124 bytestring ··· 122728 123214 pname = "cabal-add"; 122729 123215 version = "0.1"; 122730 123216 sha256 = "1szbi0z8yf98641rwnj856gcfsvvflxwrfxraxy6rl60m7i0mab1"; 122731 - revision = "2"; 122732 - editedCabalFile = "1qb5xq7r68psc2dpp8wdfcfd1w4nls7xfla1fkc9vppd8zxmi87m"; 123217 + revision = "3"; 123218 + editedCabalFile = "0siv5ajqxcbs9c0ky94p5qk51w6cgf1zyc3rckxvlc25f4kygw4v"; 122733 123219 isLibrary = true; 122734 123220 isExecutable = true; 122735 123221 libraryHaskellDepends = [ ··· 122765 123251 } 122766 123252 ) { }; 122767 123253 123254 + "cabal-add_0_2" = callPackage ( 123255 + { 123256 + mkDerivation, 123257 + base, 123258 + bytestring, 123259 + Cabal, 123260 + cabal-install-parsers, 123261 + Cabal-syntax, 123262 + containers, 123263 + Diff, 123264 + directory, 123265 + filepath, 123266 + mtl, 123267 + optparse-applicative, 123268 + process, 123269 + string-qq, 123270 + tasty, 123271 + temporary, 123272 + }: 123273 + mkDerivation { 123274 + pname = "cabal-add"; 123275 + version = "0.2"; 123276 + sha256 = "0fd098gkfmxrhq0k4j1ll5g4xwwzgmhdx0mj9hnp5xanj7z1laxg"; 123277 + isLibrary = true; 123278 + isExecutable = true; 123279 + libraryHaskellDepends = [ 123280 + base 123281 + bytestring 123282 + Cabal 123283 + Cabal-syntax 123284 + containers 123285 + mtl 123286 + ]; 123287 + executableHaskellDepends = [ 123288 + base 123289 + bytestring 123290 + cabal-install-parsers 123291 + Cabal-syntax 123292 + directory 123293 + filepath 123294 + optparse-applicative 123295 + process 123296 + ]; 123297 + testHaskellDepends = [ 123298 + base 123299 + bytestring 123300 + Cabal 123301 + Diff 123302 + directory 123303 + process 123304 + string-qq 123305 + tasty 123306 + temporary 123307 + ]; 123308 + description = "Extend Cabal build-depends from the command line"; 123309 + license = lib.licenses.bsd3; 123310 + hydraPlatforms = lib.platforms.none; 123311 + mainProgram = "cabal-add"; 123312 + } 123313 + ) { }; 123314 + 122768 123315 "cabal-appimage" = callPackage ( 122769 123316 { 122770 123317 mkDerivation, ··· 123132 123679 }: 123133 123680 mkDerivation { 123134 123681 pname = "cabal-cargs"; 123135 - version = "1.6.0"; 123136 - sha256 = "1kn21l5w838db558nijblar6i3z5jkh12d6l1yccxmd70lrb39vv"; 123682 + version = "1.7.0"; 123683 + sha256 = "17q51lg7vhdzvy9s8f3zplxa4mij2bjclzxry5f9d2pgiq4290p9"; 123137 123684 isLibrary = true; 123138 123685 isExecutable = true; 123139 123686 libraryHaskellDepends = [ ··· 123314 123861 }: 123315 123862 mkDerivation { 123316 123863 pname = "cabal-debian"; 123317 - version = "5.2.5"; 123318 - sha256 = "0nkrvs1a9kj2nqz9pklxzni5wbirwgqim9haqn8lglqliycrdzbx"; 123864 + pname = "nat"; 123865 + sha256 = "081h14nw6spfpr6l0cd9knc2jw8g3zhlwyhq7zrxvfrlqwwwm14w"; 123319 123866 isLibrary = true; 123320 123867 isExecutable = true; 123321 123868 libraryHaskellDepends = [ ··· 123762 124309 pname = "cabal-flatpak"; 123763 124310 version = "0.1.2"; 123764 124311 sha256 = "05ig175b2glxppn5wr05pnncqkp8yhhy1m7ymmc1jk5pmiy3zvzi"; 123765 - revision = "1"; 123766 - editedCabalFile = "0fhwfjrq20zqh64cb0iv2civljacllgy3zqsyjlydmphs95v5hhv"; 124312 + revision = "2"; 124313 + editedCabalFile = "01iqpfj5nvl19580ckl4b0aljl86svplxzpkavp5r0jbwaqi0ll3"; 123767 124314 isLibrary = false; 123768 124315 isExecutable = true; 123769 124316 executableHaskellDepends = [ ··· 124659 125206 } 124660 125207 ) { }; 124661 125208 124662 - "cabal-install-parsers_0_6_2" = callPackage ( 125209 + "cabal-install-parsers_0_6_3" = callPackage ( 124663 125210 { 124664 125211 mkDerivation, 124665 125212 aeson, ··· 124691 125238 }: 124692 125239 mkDerivation { 124693 125240 pname = "cabal-install-parsers"; 124694 - version = "0.6.2"; 124695 - sha256 = "1362p021irm0kaz7n8gdjy1ppjk914zza114cmpm87ris0i1a9jn"; 125241 + version = "0.6.3"; 125242 + sha256 = "1vcy6y1p750g4v9zqmsakrcvw78p43n2b745fl02xq7xyr5lpfij"; 124696 125243 libraryHaskellDepends = [ 124697 125244 aeson 124698 125245 base ··· 125063 125610 }: 125064 125611 mkDerivation { 125065 125612 pname = "cabal-plan"; 125066 - version = "0.7.5.0"; 125067 - sha256 = "0svvsh3ir9z1pdjbbhi8fkcqv66812hixnv18vifhcw0v8w94ymi"; 125613 + version = "0.7.6.0"; 125614 + sha256 = "0n6q56gyyiflagka0bhmp077py71xdc9j921yyl7818q6b6ha3hs"; 125068 125615 configureFlags = [ "-fexe" ]; 125069 125616 isLibrary = true; 125070 125617 isExecutable = true; ··· 125553 126100 pname = "cabal-sort"; 125554 126101 version = "0.1.2.2"; 125555 126102 sha256 = "1gyx5d485mzya147d7gwh0i9bkvdqxixrb80bfv5sn710p07bfdz"; 126103 + revision = "1"; 126104 + editedCabalFile = "0hlz8y734rgcqjlncv0bwi05m30iviz6bi9bsafvsv1w25lxlpc4"; 125556 126105 isLibrary = false; 125557 126106 isExecutable = true; 125558 126107 executableHaskellDepends = [ ··· 126870 127419 }: 126871 127420 mkDerivation { 126872 127421 pname = "cachix"; 126873 - version = "1.7.8"; 126874 - sha256 = "18vp2r0q6ibk5snsys7qh65vmshp4344z29pqdp8qfwzk5yqc3hc"; 127422 + version = "1.7.9"; 127423 + sha256 = "02q0z2f668y826f9rspwwn1kw3ma1igwsh2fp291g4sz8x6z66fv"; 126875 127424 isLibrary = true; 126876 127425 isExecutable = true; 126877 127426 libraryHaskellDepends = [ ··· 127031 127580 }: 127032 127581 mkDerivation { 127033 127582 pname = "cachix-api"; 127034 - version = "1.7.8"; 127035 - sha256 = "0rvmfwmgyn6jpivq45f5v5sg0s007ansjmizflxgiqn4sfqbkndr"; 127583 + version = "1.7.9"; 127584 + sha256 = "1jp55yvih27xkpky4i6pl37ajwyql84cniz2nhgwdb67qac5nmgi"; 127036 127585 libraryHaskellDepends = [ 127037 127586 aeson 127038 127587 async ··· 131855 132404 }: 131856 132405 mkDerivation { 131857 132406 pname = "cassava"; 131858 - version = "0.5.3.2"; 131859 - sha256 = "1jd9s10z2y3hizrpy3iaw2vvqmk342zxhwkky57ba39cbli5vlis"; 132407 + version = "0.5.4.0"; 132408 + sha256 = "0vdbmvb36sg08glig1dqc8kb1s07l5fcn2n0c58iglkv5djsbpnr"; 131860 132409 revision = "1"; 131861 - editedCabalFile = "0xkqzvj5xd6d37gpf2rm9cp2p2lhkc3jgd0gvlmv99vcmy125rdj"; 132410 + editedCabalFile = "1w7mih2wpbgv0bn2cg2ip0ffsn2y7aywqixi1lig30yarsyc873x"; 131862 132411 configureFlags = [ "-f-bytestring--lt-0_10_4" ]; 131863 132412 libraryHaskellDepends = [ 131864 132413 array ··· 132182 132731 ) { }; 132183 132732 132184 132733 "cassette" = callPackage ( 132185 - { mkDerivation, base }: 132734 + { 132735 + mkDerivation, 132736 + base, 132737 + profunctors, 132738 + }: 132186 132739 mkDerivation { 132187 132740 pname = "cassette"; 132188 - version = "0.1.0"; 132189 - sha256 = "04qnk1s4bdj3wbbxdwzzvpnhkcgma8c4qfkg454ybg7f8kyv6h7x"; 132190 - libraryHaskellDepends = [ base ]; 132191 - description = "A combinator library for simultaneously defining parsers and pretty printers"; 132192 - license = lib.licenses.bsd3; 132193 - hydraPlatforms = lib.platforms.none; 132194 - broken = true; 132741 + version = "0.2.0.1"; 132742 + sha256 = "1rl5bb7bhprvnqcr55psbgws96xvjfci5nimhly3avs7pvkwxbhj"; 132743 + libraryHaskellDepends = [ 132744 + base 132745 + profunctors 132746 + ]; 132747 + description = "Combinators to simultaneously define parsers and pretty printers"; 132748 + license = lib.licenses.asl20; 132195 132749 } 132196 132750 ) { }; 132197 132751 ··· 132830 133384 "cauldron" = callPackage ( 132831 133385 { 132832 133386 mkDerivation, 132833 - algebraic-graphs, 132834 133387 base, 132835 - bytestring, 132836 133388 containers, 132837 133389 tasty, 132838 133390 tasty-hunit, 132839 - text, 132840 133391 transformers, 132841 133392 }: 132842 133393 mkDerivation { 132843 133394 pname = "cauldron"; 132844 - version = "0.6.1.0"; 132845 - sha256 = "04anjjpjvj51x27mq9n2sc88v6398bz5ljzq049d879avl0i08sj"; 133395 + version = "0.8.0.0"; 133396 + sha256 = "1vkvxkr3lr99xvd4vqga18idcpw3p1mv8hr94qagvfqdxrd68wcl"; 132846 133397 isLibrary = true; 132847 133398 isExecutable = true; 132848 133399 libraryHaskellDepends = [ 132849 - algebraic-graphs 132850 133400 base 132851 - bytestring 132852 133401 containers 132853 - text 132854 133402 ]; 132855 133403 executableHaskellDepends = [ base ]; 132856 133404 testHaskellDepends = [ 132857 - algebraic-graphs 132858 133405 base 132859 133406 containers 132860 133407 tasty 132861 133408 tasty-hunit 132862 - text 132863 133409 transformers 132864 133410 ]; 133411 + doHaddock = false; 132865 133412 description = "Dependency injection library"; 132866 133413 license = lib.licenses.bsd3; 133414 + hydraPlatforms = lib.platforms.none; 132867 133415 mainProgram = "cauldron-example-wiring"; 133416 + broken = true; 132868 133417 } 132869 133418 ) { }; 132870 133419 ··· 133244 133793 pname = "cborg"; 133245 133794 version = "0.2.10.0"; 133246 133795 sha256 = "15y7p5rsv76fpklh4rgrxlxxaivpbchxdfdw96mqqjgw7060gzhp"; 133247 - revision = "2"; 133248 - editedCabalFile = "0m1ndq1a4yya5p7093lw3ynpcw2q74s73im0bhm9jp6a19cj88m5"; 133796 + revision = "3"; 133797 + editedCabalFile = "1ahqlq51kjc8cf5sybbmrh4rf6vsbkcd67rhxhrr9rc5w6nl9h27"; 133249 133798 libraryHaskellDepends = [ 133250 133799 array 133251 133800 base ··· 133311 133860 pname = "cborg-json"; 133312 133861 version = "0.2.6.0"; 133313 133862 sha256 = "1p6xdimwypmlsc0zdyw1vyyapnhwn2g8b9n0a83ca6h4r90722yv"; 133314 - revision = "3"; 133315 - editedCabalFile = "1dlmm5jyl8a8rxpkvr2dk5dlsvxrap3x4pbwnx4mg3q7sz25rs8r"; 133863 + revision = "4"; 133864 + editedCabalFile = "06pjqx8v7j8f6rvkf84vahva8y02lykaymnjdrjqrc5rgy01c6m0"; 133316 133865 libraryHaskellDepends = [ 133317 133866 aeson 133318 133867 aeson-pretty ··· 136240 136789 } 136241 136790 ) { }; 136242 136791 136243 - "chart-svg_0_8_0_3" = callPackage ( 136792 + "chart-svg_0_8_1_0" = callPackage ( 136244 136793 { 136245 136794 mkDerivation, 136246 136795 base, ··· 136264 136813 }: 136265 136814 mkDerivation { 136266 136815 pname = "chart-svg"; 136267 - version = "0.8.0.3"; 136268 - sha256 = "0qvnxm90vka02pplz9fxncsplnsbxkh9xcp81wik0g795g7xkpsp"; 136816 + version = "0.8.1.0"; 136817 + sha256 = "1rsix6qdxhsgjg4zp7rh5di6y5mjxjv0mzv9g82ryl3vlcryyaj4"; 136269 136818 libraryHaskellDepends = [ 136270 136819 base 136271 136820 bytestring ··· 147182 147731 }: 147183 147732 mkDerivation { 147184 147733 pname = "co-log-concurrent"; 147185 - version = "0.5.1.0"; 147186 - sha256 = "07qmx9z03vmgq2cgz4352fsav7r1nx8n7svmrhg2lkdiyp0j7a59"; 147187 - revision = "3"; 147188 - editedCabalFile = "17pmkgly1882hbwa6b2qb0y1wh4x4nawhw1vl8fsy252caxkck0s"; 147734 + version = "0.5.1.1"; 147735 + sha256 = "1yw5ljanhc176k4xj1pfqkhq6c63hv5an7pm06vjiakmk6j4rqlg"; 147736 + revision = "1"; 147737 + editedCabalFile = "071xrzj7bjnb32f5dlsqa726cmw9s9q22bv7ch4gj2r83crng68g"; 147189 147738 libraryHaskellDepends = [ 147190 147739 base 147191 147740 co-log-core ··· 147193 147742 ]; 147194 147743 description = "Asynchronous backend for co-log library"; 147195 147744 license = lib.licenses.mpl20; 147196 - hydraPlatforms = lib.platforms.none; 147197 - broken = true; 147198 147745 } 147199 147746 ) { }; 147200 147747 ··· 147285 147832 }: 147286 147833 mkDerivation { 147287 147834 pname = "co-log-json"; 147288 - version = "0.1.0.0"; 147289 - sha256 = "0212dcaw4anjn569a8gpv30k09b9lk99r70bbsh7kb8hb268rk83"; 147835 + version = "0.1.0.2"; 147836 + sha256 = "0lr8599hqiyg70qw5pmdbrpm1lyps819h7anxxi4ip2r1im2p3xd"; 147290 147837 libraryHaskellDepends = [ 147291 147838 aeson 147292 147839 base ··· 147298 147845 ]; 147299 147846 description = "Structured messages support in co-log ecosystem"; 147300 147847 license = lib.licenses.mpl20; 147301 - hydraPlatforms = lib.platforms.none; 147302 - broken = true; 147303 147848 } 147304 147849 ) { }; 147305 147850 ··· 152522 153067 }: 152523 153068 mkDerivation { 152524 153069 pname = "compactmap"; 152525 - version = "0.1.4.5"; 152526 - sha256 = "1xa4wa4qjd7yjghkaakpgrz9kw4iyy0zlc9cpajyysaxdq4k7czf"; 153070 + version = "0.1.4.6"; 153071 + sha256 = "1lkvhmdz77m6jm43946q2g6ijl7w6kqs9n68g1gzfxw6akmpy39y"; 152527 153072 libraryHaskellDepends = [ 152528 153073 base 152529 153074 vector ··· 156492 157037 }: 156493 157038 mkDerivation { 156494 157039 pname = "conduit-extra"; 156495 - version = "1.3.7"; 156496 - sha256 = "0mrbaf4lrnczgn1kxjwpmzxk226wprw10y9xg621g74h4s36zgdj"; 157040 + version = "1.3.8"; 157041 + sha256 = "08l2728vyr3dppnj4z3yagi2265ixp8g8ayhz07x3x88jj73w7s9"; 157042 + revision = "1"; 157043 + editedCabalFile = "1fq0cs2fcn2kd1mvp9ygsp7rm5qridwp1wwnr60jmpahvihb4cp9"; 156497 157044 libraryHaskellDepends = [ 156498 157045 async 156499 157046 attoparsec ··· 156553 157100 conduit, 156554 157101 conduit-combinators, 156555 157102 conduit-extra, 156556 - directory, 156557 - doctest, 156558 157103 either, 156559 157104 exceptions, 156560 157105 filepath, ··· 156563 157108 monad-control, 156564 157109 mtl, 156565 157110 regex-posix, 157111 + resourcet, 156566 157112 semigroups, 156567 157113 streaming-commons, 156568 157114 text, 156569 157115 time, 156570 157116 transformers, 156571 157117 transformers-base, 157118 + transformers-either, 156572 157119 unix, 156573 157120 unix-compat, 157121 + unliftio-core, 156574 157122 }: 156575 157123 mkDerivation { 156576 157124 pname = "conduit-find"; 156577 - version = "0.1.0.3"; 156578 - sha256 = "13gbpvqxs3k2vlsbdn0vr90z4y8kaz7hlw9bywyqd8jna3ff13a9"; 157125 + version = "0.1.0.4"; 157126 + sha256 = "03mrfqmxryrv21adk6ijf3isfffjhf91qkjqqrlfkm3fxhz2xp4m"; 156579 157127 isLibrary = true; 156580 157128 isExecutable = true; 156581 157129 libraryHaskellDepends = [ ··· 156591 157139 monad-control 156592 157140 mtl 156593 157141 regex-posix 157142 + resourcet 156594 157143 semigroups 156595 157144 streaming-commons 156596 157145 text 156597 157146 time 156598 157147 transformers 156599 157148 transformers-base 157149 + transformers-either 156600 157150 unix-compat 157151 + unliftio-core 156601 157152 ]; 156602 157153 executableHaskellDepends = [ 156603 157154 attoparsec ··· 156612 157163 monad-control 156613 157164 mtl 156614 157165 regex-posix 157166 + resourcet 156615 157167 semigroups 156616 157168 streaming-commons 156617 157169 text ··· 156619 157171 transformers 156620 157172 transformers-base 156621 157173 unix 157174 + unliftio-core 156622 157175 ]; 156623 157176 testHaskellDepends = [ 156624 157177 attoparsec 156625 157178 base 156626 157179 conduit 156627 157180 conduit-combinators 156628 - directory 156629 - doctest 156630 157181 either 156631 157182 exceptions 156632 157183 filepath ··· 156635 157186 monad-control 156636 157187 mtl 156637 157188 regex-posix 157189 + resourcet 156638 157190 semigroups 156639 157191 streaming-commons 156640 157192 text ··· 156642 157194 transformers 156643 157195 transformers-base 156644 157196 unix-compat 157197 + unliftio-core 156645 157198 ]; 156646 157199 description = "A file-finding conduit that allows user control over traversals"; 156647 157200 license = lib.licenses.mit; ··· 161102 161655 }: 161103 161656 mkDerivation { 161104 161657 pname = "control-block"; 161105 - version = "0.0.1"; 161106 - sha256 = "06l9s8inrdqp9z4zsd178rk3211zmhx4acwxq1py801lpb7vgn8v"; 161658 + version = "0.0.2"; 161659 + sha256 = "0p79ic8yq9jw86jiyxs6k6z740w25ckkdn0lp3rj8rxya2h7viaw"; 161107 161660 libraryHaskellDepends = [ 161108 161661 base 161109 161662 indexed-traversable ··· 161111 161664 ]; 161112 161665 description = "Higher-order functions with their function arguments at the end, for channeling the full power of BlockArguments and LambdaCase"; 161113 161666 license = lib.licenses.bsd2; 161114 - hydraPlatforms = lib.platforms.none; 161115 - broken = true; 161116 161667 } 161117 161668 ) { }; 161118 161669 ··· 161906 162457 } 161907 162458 ) { }; 161908 162459 162460 + "convex-schema-parser" = callPackage ( 162461 + { 162462 + mkDerivation, 162463 + aeson, 162464 + base, 162465 + containers, 162466 + deepseq, 162467 + directory, 162468 + filepath, 162469 + fsnotify, 162470 + HUnit, 162471 + mtl, 162472 + optparse-applicative, 162473 + parsec, 162474 + process, 162475 + split, 162476 + stm, 162477 + yaml, 162478 + }: 162479 + mkDerivation { 162480 + pname = "convex-schema-parser"; 162481 + version = "0.1.3.0"; 162482 + sha256 = "01z32fdxzwqbn8i7izh4amqa3jv4zfkxjn2zcy3fmyc7js72az68"; 162483 + isLibrary = false; 162484 + isExecutable = true; 162485 + libraryHaskellDepends = [ 162486 + base 162487 + containers 162488 + directory 162489 + filepath 162490 + mtl 162491 + parsec 162492 + process 162493 + split 162494 + ]; 162495 + executableHaskellDepends = [ 162496 + aeson 162497 + base 162498 + deepseq 162499 + directory 162500 + filepath 162501 + fsnotify 162502 + optparse-applicative 162503 + parsec 162504 + process 162505 + stm 162506 + yaml 162507 + ]; 162508 + testHaskellDepends = [ 162509 + base 162510 + containers 162511 + HUnit 162512 + mtl 162513 + parsec 162514 + ]; 162515 + doHaddock = false; 162516 + description = "A type-safe client generator for Convex for both Rust and Python"; 162517 + license = lib.licenses.mit; 162518 + hydraPlatforms = lib.platforms.none; 162519 + mainProgram = "convex-schema-parser"; 162520 + broken = true; 162521 + } 162522 + ) { }; 162523 + 161909 162524 "convexHullNd" = callPackage ( 161910 162525 { 161911 162526 mkDerivation, ··· 164460 165075 pname = "countdown-numbers-game"; 164461 165076 version = "0.0.0.1"; 164462 165077 sha256 = "1warpkqimxjvqrm1jq4nbj3g3bz009alklqs46dh23p3lrgcif61"; 165078 + revision = "1"; 165079 + editedCabalFile = "05106icwf7kvnwj5109yim2xyx8q5lxvccbn2dqb0q571h5v1a5q"; 164463 165080 isLibrary = false; 164464 165081 isExecutable = true; 164465 165082 executableHaskellDepends = [ ··· 167180 167797 pname = "criterion"; 167181 167798 version = "1.6.4.0"; 167182 167799 sha256 = "0l9gxar759nskhm7gskr3j08bw8515amw6rr4n3zx3978dxg8aq6"; 167800 + revision = "1"; 167801 + editedCabalFile = "0wwzijzvqrv7swpalr24i3j4pjcjm266ybhhah853d783zz37vzz"; 167183 167802 isLibrary = true; 167184 167803 isExecutable = true; 167185 167804 enableSeparateDataOutput = true; ··· 172223 172842 } 172224 172843 ) { inherit (pkgs) cudd; }; 172225 172844 172845 + "cuddle" = callPackage ( 172846 + { 172847 + mkDerivation, 172848 + base, 172849 + base16-bytestring, 172850 + boxes, 172851 + bytestring, 172852 + capability, 172853 + cborg, 172854 + containers, 172855 + data-default-class, 172856 + foldable1-classes-compat, 172857 + generic-optics, 172858 + hashable, 172859 + hspec, 172860 + hspec-megaparsec, 172861 + HUnit, 172862 + megaparsec, 172863 + mtl, 172864 + mutable-containers, 172865 + optics-core, 172866 + optparse-applicative, 172867 + ordered-containers, 172868 + parser-combinators, 172869 + prettyprinter, 172870 + QuickCheck, 172871 + random, 172872 + regex-tdfa, 172873 + scientific, 172874 + string-qq, 172875 + text, 172876 + tree-diff, 172877 + }: 172878 + mkDerivation { 172879 + pname = "cuddle"; 172880 + version = "0.5.0.0"; 172881 + sha256 = "1vjm6v5wf1hbj7ikwmfxf4ah62g4j33nhqqc1xjb9dll5jlvadyn"; 172882 + isLibrary = true; 172883 + isExecutable = true; 172884 + libraryHaskellDepends = [ 172885 + base 172886 + base16-bytestring 172887 + boxes 172888 + bytestring 172889 + capability 172890 + cborg 172891 + containers 172892 + data-default-class 172893 + foldable1-classes-compat 172894 + generic-optics 172895 + hashable 172896 + megaparsec 172897 + mtl 172898 + mutable-containers 172899 + optics-core 172900 + ordered-containers 172901 + parser-combinators 172902 + prettyprinter 172903 + random 172904 + regex-tdfa 172905 + scientific 172906 + text 172907 + tree-diff 172908 + ]; 172909 + executableHaskellDepends = [ 172910 + base 172911 + base16-bytestring 172912 + bytestring 172913 + cborg 172914 + megaparsec 172915 + mtl 172916 + optparse-applicative 172917 + prettyprinter 172918 + random 172919 + text 172920 + ]; 172921 + testHaskellDepends = [ 172922 + base 172923 + bytestring 172924 + data-default-class 172925 + hspec 172926 + hspec-megaparsec 172927 + HUnit 172928 + megaparsec 172929 + prettyprinter 172930 + QuickCheck 172931 + string-qq 172932 + text 172933 + tree-diff 172934 + ]; 172935 + description = "CDDL Generator and test utilities"; 172936 + license = lib.licenses.asl20; 172937 + hydraPlatforms = lib.platforms.none; 172938 + mainProgram = "cuddle"; 172939 + broken = true; 172940 + } 172941 + ) { }; 172942 + 172226 172943 "cue-sheet" = callPackage ( 172227 172944 { 172228 172945 mkDerivation, ··· 176662 177379 } 176663 177380 ) { }; 176664 177381 177382 + "data-debruijn" = callPackage ( 177383 + { 177384 + mkDerivation, 177385 + base, 177386 + containers, 177387 + deepseq, 177388 + ghc-bignum, 177389 + ghc-prim, 177390 + QuickCheck, 177391 + }: 177392 + mkDerivation { 177393 + pname = "data-debruijn"; 177394 + version = "0.1.0.0"; 177395 + sha256 = "1zwi7wsznmhph5nljhxzk1rbz5a8qz79j8djdkqc169z5f7fkssv"; 177396 + revision = "1"; 177397 + editedCabalFile = "1njc7m4g0nwj9ww2gk2z83xbll8pcchmmix109fwgwgz9jv26ckr"; 177398 + libraryHaskellDepends = [ 177399 + base 177400 + containers 177401 + deepseq 177402 + ghc-bignum 177403 + ghc-prim 177404 + QuickCheck 177405 + ]; 177406 + doHaddock = false; 177407 + description = "Fast and safe implementation of common compiler machinery"; 177408 + license = lib.licenses.agpl3Only; 177409 + } 177410 + ) { }; 177411 + 176665 177412 "data-default" = callPackage ( 176666 177413 { 176667 177414 mkDerivation, ··· 180568 181315 }: 180569 181316 mkDerivation { 180570 181317 pname = "dataframe"; 180571 - version = "0.1.0.3"; 180572 - sha256 = "0p4syk43nz1b9x9fzm3hgrdgksjs3siqgczaf2bqmgrra61fw8nh"; 181318 + version = "0.2.0.1"; 181319 + sha256 = "1qgdlmyz4mlvqb1qicspv7yiddyla8kxczx7018myryws9861f52"; 180573 181320 isLibrary = true; 180574 181321 isExecutable = true; 180575 181322 libraryHaskellDepends = [ ··· 181759 182506 } 181760 182507 ) { }; 181761 182508 181762 - "dbus_1_4_0" = callPackage ( 182509 + "dbus_1_4_1" = callPackage ( 181763 182510 { 181764 182511 mkDerivation, 181765 182512 base, ··· 181795 182542 }: 181796 182543 mkDerivation { 181797 182544 pname = "dbus"; 181798 - version = "1.4.0"; 181799 - sha256 = "1rb5q8g0n3fj9b57wlds7ldji029fqym4dvpvq10hmn7qw313dz6"; 182545 + version = "1.4.1"; 182546 + sha256 = "016xrx8gnvldpwgalpsxzvkwagavpzw9m7j65w5msskaxk474ln7"; 181800 182547 libraryHaskellDepends = [ 181801 182548 base 181802 182549 bytestring ··· 183532 184279 containers, 183533 184280 hspec, 183534 184281 markdown-unlit, 184282 + scientific, 183535 184283 text, 183536 184284 vector, 183537 184285 }: 183538 184286 mkDerivation { 183539 184287 pname = "debug-print"; 183540 - version = "0.2.0.1"; 183541 - sha256 = "1bcdmnkxcyicw4f57vlx64iyfj3lwz1157s89k4gdyk3ilc2x8g4"; 184288 + version = "0.2.1.0"; 184289 + sha256 = "1mgl8sc69fbpcx3hrb8b1dcsgs2zzflms5ryf3zbs8j91yvpx02s"; 183542 184290 libraryHaskellDepends = [ 183543 184291 aeson 183544 184292 base 183545 184293 containers 184294 + scientific 183546 184295 text 183547 184296 vector 183548 184297 ]; ··· 183865 184614 pname = "decimal-literals"; 183866 184615 version = "0.1.0.1"; 183867 184616 sha256 = "0lbpnc4c266fbqjzzrnig648zzsqfaphlxqwyly9xd15qggzasb0"; 183868 - revision = "3"; 183869 - editedCabalFile = "1650vnqwjsqg2mghsvghiyzg5qqbz36vibkq8614adhyjpcd3w07"; 184617 + revision = "4"; 184618 + editedCabalFile = "1jiayinmqx35lm7n5dwgfqfq8pafdz7q1ysv8lqqjaiylrlm092r"; 183870 184619 libraryHaskellDepends = [ base ]; 183871 184620 testHaskellDepends = [ 183872 184621 base ··· 184304 185053 } 184305 185054 ) { }; 184306 185055 184307 - "deepseq_1_5_1_0" = callPackage ( 185056 + "deepseq_1_5_2_0" = callPackage ( 184308 185057 { 184309 185058 mkDerivation, 184310 185059 base, ··· 184312 185061 }: 184313 185062 mkDerivation { 184314 185063 pname = "deepseq"; 184315 - version = "1.5.1.0"; 184316 - sha256 = "0yz1b3c4fpa1pknwd64fba37wbr7mxzawd0han2ifq70mgiqfkiz"; 185064 + version = "1.5.2.0"; 185065 + sha256 = "1rgv1kn3igdip34bpn24syirmsjllipd98l301y5n225gw6q1mq9"; 184317 185066 libraryHaskellDepends = [ 184318 185067 base 184319 185068 ghc-prim ··· 185477 186226 pname = "deltaq"; 185478 186227 version = "1.0.0.0"; 185479 186228 sha256 = "00zpvwxar13rq84li7j21ycapdnyx128cs2yqvn6hwnrr8w25w9d"; 186229 + revision = "1"; 186230 + editedCabalFile = "1i4lkq6w34ik7csx6wpwy4by2vbdijilpynwjf9kr7dfn5ac2gz1"; 185480 186231 libraryHaskellDepends = [ 185481 186232 base 185482 186233 Chart ··· 190552 191303 pname = "diagrams-builder"; 190553 191304 version = "0.8.0.6"; 190554 191305 sha256 = "17yi5dmcxx4sgk3wha386zbv9h69pwq72j8i21vmfh35brxhs9f4"; 190555 - revision = "2"; 190556 - editedCabalFile = "1mkxn0r6wmxyvdhwly1a6j0z4j234mfv7aimirwl7jmcv55lwbs4"; 191306 + revision = "3"; 191307 + editedCabalFile = "0pi4509j5i8jgxn0a9z39ac1sr8n2n97v8pfyla9s30sc63ybjag"; 190557 191308 configureFlags = [ 190558 191309 "-fcairo" 190559 191310 "-fps" ··· 190658 191409 } 190659 191410 ) { }; 190660 191411 190661 - "diagrams-cairo_1_4_3" = callPackage ( 191412 + "diagrams-cairo_1_5" = callPackage ( 190662 191413 { 190663 191414 mkDerivation, 190664 191415 array, ··· 190685 191436 }: 190686 191437 mkDerivation { 190687 191438 pname = "diagrams-cairo"; 190688 - version = "1.4.3"; 190689 - sha256 = "0irj7jigi9dfprjilndyx0kwg7vjpbhrsxhlsqc8n1sy1b4s2aha"; 191439 + version = "1.5"; 191440 + sha256 = "1s0cq1sv158b7pszhipc4f5555zfqz1xxa7hdd13afx7jnh68z3i"; 191441 + revision = "1"; 191442 + editedCabalFile = "19daz3jx4kc4pqr0ffq4wrpfwk95xz3fnhlacba9q96aw3c1vcnd"; 190690 191443 libraryHaskellDepends = [ 190691 191444 array 190692 191445 base ··· 190780 191533 pname = "diagrams-canvas"; 190781 191534 version = "1.4.2"; 190782 191535 sha256 = "0ns1xmgcjqig7qld7r77rbcrk779cmzj7xfqj6a7sbdci3in2dgm"; 190783 - revision = "1"; 190784 - editedCabalFile = "08pm7i10k7a046jjrdbzhmlrv05wp171mblgs8y18m6vc8hw87v6"; 191536 + revision = "2"; 191537 + editedCabalFile = "0if7b5dzgrdqz491ma31kizasiyaa3pc0m570r4ccr4m2gs7jz2m"; 190785 191538 libraryHaskellDepends = [ 190786 191539 base 190787 191540 blank-canvas ··· 190919 191672 pname = "diagrams-contrib"; 190920 191673 version = "1.4.6"; 190921 191674 sha256 = "1x5z361xmqfa503brmf0zwyq3lldm9kgixx90v14s4dsz52my46k"; 190922 - revision = "1"; 190923 - editedCabalFile = "00zgzy7b3vkjd0f22hbp2lknwl1x5nd6d1ng30wq4qlncwdxqkpz"; 191675 + revision = "3"; 191676 + editedCabalFile = "07yslc0ds8sj412xgy13dxa7g2a8psgx06nds99yd55bfppias32"; 190924 191677 libraryHaskellDepends = [ 190925 191678 base 190926 191679 circle-packing ··· 191031 191784 }: 191032 191785 mkDerivation { 191033 191786 pname = "diagrams-gi-cairo"; 191034 - version = "1.4.2"; 191035 - sha256 = "0k6fw1vvqa4pra4czd90n7i7h1vf6hn08a4jip1xbqkf57d89bn6"; 191036 - revision = "1"; 191037 - editedCabalFile = "1r1ph8nc7xgh3by63dsamkvhi6bvw1bgvhnc8f664iiziaj9p08a"; 191787 + version = "1.5"; 191788 + sha256 = "1wkr52maf7320k75si6lbwds39i0zw0mhd8b4y5h262ifqfkyi1s"; 191038 191789 libraryHaskellDepends = [ 191039 191790 array 191040 191791 base ··· 191106 191857 pname = "diagrams-gtk"; 191107 191858 version = "1.4"; 191108 191859 sha256 = "1sga2wwkircjgryd4pn9i0wvvcnh3qnhpxas32crpdq939idwsxn"; 191109 - revision = "6"; 191110 - editedCabalFile = "0fiv5w3pk8rbj6d28qyay13h25px7fs1flzqdriz1n74f6prnj98"; 191860 + revision = "7"; 191861 + editedCabalFile = "065hmxb3hhaa7g1xbay0wa29zcyivxrp289l9wrak7pg610ri3j3"; 191111 191862 libraryHaskellDepends = [ 191112 191863 base 191113 191864 cairo ··· 191117 191868 ]; 191118 191869 description = "Backend for rendering diagrams directly to GTK windows"; 191119 191870 license = lib.licenses.bsd3; 191120 - hydraPlatforms = lib.platforms.none; 191121 - broken = true; 191122 191871 } 191123 191872 ) { }; 191124 191873 ··· 191591 192340 pname = "diagrams-lib"; 191592 192341 version = "1.5"; 191593 192342 sha256 = "0gp9k6cfc62j6rlfiziig6j5shf05d0vbcvss40rzjk8qi012i11"; 191594 - revision = "1"; 191595 - editedCabalFile = "092pidlcpqxrjqjmpwgiznqkjzz1qwbkxb8526k2gi7n1zy2bw3v"; 192343 + revision = "2"; 192344 + editedCabalFile = "0499yz41prmsixfq2h9virqr9fkn9akllxxf0yc2kqkv7ran2ij9"; 191596 192345 libraryHaskellDepends = [ 191597 192346 active 191598 192347 adjunctions ··· 191676 192425 }: 191677 192426 mkDerivation { 191678 192427 pname = "diagrams-pandoc"; 191679 - version = "0.4"; 191680 - sha256 = "164f0k1jk8p604h31wypy2z2jy5x0gfbkbmmrd64c9jp7j71iyc4"; 192428 + version = "0.4.1"; 192429 + sha256 = "1gil467zp3n6wymiw4d492izf1hhac01j4nafmahjh4ybvi840xr"; 191681 192430 isLibrary = true; 191682 192431 isExecutable = true; 191683 192432 libraryHaskellDepends = [ ··· 191722 192471 ]; 191723 192472 description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; 191724 192473 license = lib.licenses.bsd3; 191725 - hydraPlatforms = lib.platforms.none; 191726 192474 mainProgram = "diagrams-pandoc"; 191727 - broken = true; 191728 192475 } 191729 192476 ) { }; 191730 192477 ··· 191798 192545 pname = "diagrams-pgf"; 191799 192546 version = "1.5"; 191800 192547 sha256 = "13zm00ayyk6gvlh4l2wdmrdqic386v69i3krylgvrajhdsd050al"; 192548 + revision = "1"; 192549 + editedCabalFile = "0vzi1dim76arwjrh9yqb9l2004ffsir8rws4vx26is5wzxsqf8y1"; 191801 192550 libraryHaskellDepends = [ 191802 192551 base 191803 192552 bytestring ··· 191888 192637 pname = "diagrams-postscript"; 191889 192638 version = "1.5.2"; 191890 192639 sha256 = "08kqhnd5r60kisjraypwjfcri1v4f32rf14js413871pgic4rhy5"; 191891 - revision = "1"; 191892 - editedCabalFile = "0ndvf9nhvgwvwnc0k9in3n83l3jif1nzsyyrmpk5plif590hj1zp"; 192640 + revision = "2"; 192641 + editedCabalFile = "060zkv836i1df97nqkna8fnqkyxv4wgmk7yn74whyf1fii4rf86g"; 191893 192642 libraryHaskellDepends = [ 191894 192643 base 191895 192644 bytestring ··· 192013 192762 pname = "diagrams-rasterific"; 192014 192763 version = "1.5"; 192015 192764 sha256 = "02bq6819a8xxa20kggmg9j5wa72zh4gbcvbpv1b1pzbg57bp2s8k"; 192765 + revision = "1"; 192766 + editedCabalFile = "1f5l5w28kbnajc0kd304fs2h9svc2inb90qbjmqyii30bf0b2n15"; 192016 192767 libraryHaskellDepends = [ 192017 192768 base 192018 192769 bytestring ··· 192075 192826 ]; 192076 192827 description = "reflex backend for diagrams drawing EDSL"; 192077 192828 license = lib.licenses.bsd3; 192078 - hydraPlatforms = lib.platforms.none; 192079 192829 } 192080 192830 ) { }; 192081 192831 ··· 192211 192961 pname = "diagrams-svg"; 192212 192962 version = "1.5"; 192213 192963 sha256 = "1g11fvcgx99xg71c9sd6m7pfclnzcfx72alcx3avlb4qzz56wn52"; 192964 + revision = "2"; 192965 + editedCabalFile = "1d7n707vmcbk1l1fi956hagyyzzn3hd11wxyabm1mirv8qxrha0s"; 192214 192966 libraryHaskellDepends = [ 192215 192967 base 192216 192968 base64-bytestring ··· 195478 196230 }: 195479 196231 mkDerivation { 195480 196232 pname = "discord-haskell"; 195481 - version = "1.17.1"; 195482 - sha256 = "1lw1n8m297ad0rcbn48ysg85l35sg5bh3gwbnm2698cd051b4yad"; 196233 + version = "1.18.0"; 196234 + sha256 = "0g3xlhjfqslv6565fgzq0m0qdsf50kv9m5shb71yr4hwvar4w7qc"; 195483 196235 isLibrary = true; 195484 196236 isExecutable = true; 195485 196237 libraryHaskellDepends = [ ··· 195516 196268 ]; 195517 196269 description = "Write bots for Discord in Haskell"; 195518 196270 license = lib.licenses.mit; 195519 - hydraPlatforms = lib.platforms.none; 195520 - broken = true; 195521 196271 } 195522 196272 ) { }; 195523 196273 ··· 200287 201037 } 200288 201038 ) { }; 200289 201039 200290 - "doctest_0_24_0" = callPackage ( 201040 + "doctest_0_24_2" = callPackage ( 200291 201041 { 200292 201042 mkDerivation, 200293 201043 base, ··· 200314 201064 }: 200315 201065 mkDerivation { 200316 201066 pname = "doctest"; 200317 - version = "0.24.0"; 200318 - sha256 = "1cylb84kmlw7a38xnfyx0sxcpgahmfm7bsbv0vf2x3slsgz597kx"; 201067 + version = "0.24.2"; 201068 + sha256 = "1dpffnr24zaricmkwc13npap569crwwfha1w9vz3fhywmh0dnfjk"; 200319 201069 isLibrary = true; 200320 201070 isExecutable = true; 200321 201071 libraryHaskellDepends = [ ··· 200489 201239 }: 200490 201240 mkDerivation { 200491 201241 pname = "doctest-exitcode-stdio"; 200492 - version = "0.0"; 200493 - sha256 = "1g3c7yrqq2mwqbmvs8vkx1a3cf0p0x74b7fnn344dsk7bsfpgv0x"; 200494 - revision = "2"; 200495 - editedCabalFile = "0gfnxkbm126m0d4pnqgl5ca6ab8x5p1vpbxjxgz1sxczablsmk5b"; 201242 + version = "0.0.0.1"; 201243 + sha256 = "0kg5xiw4giyvqpcj6cxqqnysvixhxlwm0pbg3qks8dzwb5w79dvk"; 200496 201244 libraryHaskellDepends = [ 200497 201245 base 200498 201246 doctest-lib ··· 200522 201270 pname = "doctest-extract"; 200523 201271 version = "0.1.2"; 200524 201272 sha256 = "1dizs0r9pdankbv5ijfgqva5ha8p5xxl7x8y1sjql6h7ch8pz0p6"; 201273 + revision = "1"; 201274 + editedCabalFile = "1m71h2iwizh9rms2dq29wwzbsfz8qzqw7q8vldpmk7nm1572rhss"; 200525 201275 isLibrary = false; 200526 201276 isExecutable = true; 200527 201277 executableHaskellDepends = [ ··· 200639 201389 } 200640 201390 ) { }; 200641 201391 201392 + "doctest-parallel_0_4" = callPackage ( 201393 + { 201394 + mkDerivation, 201395 + base, 201396 + base-compat, 201397 + Cabal, 201398 + code-page, 201399 + containers, 201400 + deepseq, 201401 + directory, 201402 + exceptions, 201403 + filepath, 201404 + ghc, 201405 + ghc-exactprint, 201406 + ghc-paths, 201407 + Glob, 201408 + hspec, 201409 + hspec-core, 201410 + HUnit, 201411 + mockery, 201412 + process, 201413 + QuickCheck, 201414 + random, 201415 + setenv, 201416 + silently, 201417 + stringbuilder, 201418 + syb, 201419 + template-haskell, 201420 + transformers, 201421 + unordered-containers, 201422 + }: 201423 + mkDerivation { 201424 + pname = "doctest-parallel"; 201425 + version = "0.4"; 201426 + sha256 = "1y907fg2y7ayddwv38rjv6nyc18w682dxwkq3msqnlkddglqlxfx"; 201427 + libraryHaskellDepends = [ 201428 + base 201429 + base-compat 201430 + Cabal 201431 + code-page 201432 + containers 201433 + deepseq 201434 + directory 201435 + exceptions 201436 + filepath 201437 + ghc 201438 + ghc-exactprint 201439 + ghc-paths 201440 + Glob 201441 + process 201442 + random 201443 + syb 201444 + template-haskell 201445 + transformers 201446 + unordered-containers 201447 + ]; 201448 + testHaskellDepends = [ 201449 + base 201450 + base-compat 201451 + code-page 201452 + containers 201453 + deepseq 201454 + directory 201455 + exceptions 201456 + filepath 201457 + ghc 201458 + ghc-paths 201459 + hspec 201460 + hspec-core 201461 + HUnit 201462 + mockery 201463 + process 201464 + QuickCheck 201465 + setenv 201466 + silently 201467 + stringbuilder 201468 + syb 201469 + transformers 201470 + ]; 201471 + doHaddock = false; 201472 + description = "Test interactive Haskell examples"; 201473 + license = lib.licenses.mit; 201474 + hydraPlatforms = lib.platforms.none; 201475 + } 201476 + ) { }; 201477 + 200642 201478 "doctest-prop" = callPackage ( 200643 201479 { 200644 201480 mkDerivation, ··· 201141 201977 }: 201142 201978 mkDerivation { 201143 201979 pname = "dollaridoos"; 201144 - version = "0.1.0.0"; 201145 - sha256 = "1pipbyfpny8mq540rpfkgkwbc3mc13yf6xm1h9vxm0fnaa8kcbw9"; 201980 + version = "0.2.0.0"; 201981 + sha256 = "09hbm1dkgg8qb4y22hbqwmy858nbaxjn9vizv7z58gd2756gia7s"; 201146 201982 libraryHaskellDepends = [ 201147 201983 base 201148 201984 profunctors ··· 201263 202099 ]; 201264 202100 description = "Simple monadic DOM parser"; 201265 202101 license = lib.licenses.mit; 201266 - hydraPlatforms = lib.platforms.none; 201267 - broken = true; 201268 202102 } 201269 202103 ) { }; 201270 202104 ··· 202391 203225 }: 202392 203226 mkDerivation { 202393 203227 pname = "double-x-encoding"; 202394 - version = "1.2.1"; 202395 - sha256 = "0sg8sh9a1krzfhdwxcd3ja56kzr6hif11s4iqicrdqz3qgi905ia"; 203228 + version = "1.2.2"; 203229 + sha256 = "0wzawzwsw2dkmw5yvnva8la6v2iwr5ni353imi0qmsgssvg0va6s"; 202396 203230 libraryHaskellDepends = [ 202397 203231 base 202398 203232 Cabal-syntax ··· 202405 203239 ]; 202406 203240 description = "Encoding scheme to encode any Unicode string with only [0-9a-zA-Z_]"; 202407 203241 license = lib.licenses.isc; 202408 - hydraPlatforms = lib.platforms.none; 202409 - broken = true; 202410 203242 } 202411 203243 ) { }; 202412 203244 ··· 204970 205802 pname = "dumb-cas"; 204971 205803 version = "0.2.1.1"; 204972 205804 sha256 = "0rqh1sy500gbgqr69z220yb8g7gp117z0iw1kly9zxqhrzn3sv9f"; 204973 - revision = "1"; 204974 - editedCabalFile = "031hcc34r20gpvsicllwcvvzirx2bm5nsdabp75a0m05rj3wzmvv"; 205805 + revision = "2"; 205806 + editedCabalFile = "0gg7yxb8r8f53pw6j33ifm9l5a934q7x261kbydj1kf8zbq0pwfd"; 204975 205807 libraryHaskellDepends = [ 204976 205808 base 204977 205809 containers ··· 204987 205819 ]; 204988 205820 description = "A computer “algebra” system that knows nothing about algebra, at the core"; 204989 205821 license = lib.licenses.gpl3Only; 204990 - hydraPlatforms = lib.platforms.none; 204991 - broken = true; 204992 205822 } 204993 205823 ) { }; 204994 205824 ··· 205706 206536 }: 205707 206537 mkDerivation { 205708 206538 pname = "dwergaz"; 205709 - version = "0.3.0.2"; 205710 - sha256 = "0849adznjgfg4z1llq5kfwi3ypjj9bj1jw7anax6g86izzvs75jj"; 206539 + version = "0.3.1.0"; 206540 + sha256 = "1c40js81v95hl90zv7nbsmdn8z05s8f2arjhzvsbimckvjrg03x9"; 205711 206541 libraryHaskellDepends = [ 205712 206542 base 205713 206543 pretty ··· 209173 210003 }: 209174 210004 mkDerivation { 209175 210005 pname = "effect-stack"; 209176 - version = "0.3"; 209177 - sha256 = "08zalj8svp78ykqbf5nhd6khgygz8dplcvjd19w3hvgm08y4kxqi"; 210006 + version = "0.3.0.1"; 210007 + sha256 = "04y5rqvjzz5fsvlkwqwjlwngz3j3p83anzh77d7fbmkii8fb9g87"; 209178 210008 libraryHaskellDepends = [ 209179 210009 base 209180 210010 constraints ··· 209183 210013 ]; 209184 210014 description = "Reducing the pain of transformer stacks with duplicated effects"; 209185 210015 license = lib.licenses.bsd3; 209186 - hydraPlatforms = lib.platforms.none; 209187 - broken = true; 209188 210016 } 209189 210017 ) { }; 209190 210018 ··· 209254 210082 } 209255 210083 ) { }; 209256 210084 210085 + "effectful_2_6_0_0" = callPackage ( 210086 + { 210087 + mkDerivation, 210088 + async, 210089 + base, 210090 + bytestring, 210091 + containers, 210092 + directory, 210093 + effectful-core, 210094 + exceptions, 210095 + lifted-base, 210096 + primitive, 210097 + process, 210098 + safe-exceptions, 210099 + stm, 210100 + strict-mutable-base, 210101 + tasty, 210102 + tasty-bench, 210103 + tasty-hunit, 210104 + text, 210105 + time, 210106 + unix, 210107 + unliftio, 210108 + }: 210109 + mkDerivation { 210110 + pname = "effectful"; 210111 + version = "2.6.0.0"; 210112 + sha256 = "1k850pgslnfdhfwqcwr4hv2ymab4cszklrh4rxmwhwixrbb7m3l8"; 210113 + libraryHaskellDepends = [ 210114 + async 210115 + base 210116 + bytestring 210117 + directory 210118 + effectful-core 210119 + process 210120 + stm 210121 + strict-mutable-base 210122 + time 210123 + unliftio 210124 + ]; 210125 + testHaskellDepends = [ 210126 + base 210127 + containers 210128 + effectful-core 210129 + exceptions 210130 + lifted-base 210131 + primitive 210132 + safe-exceptions 210133 + strict-mutable-base 210134 + tasty 210135 + tasty-hunit 210136 + unliftio 210137 + ]; 210138 + benchmarkHaskellDepends = [ 210139 + async 210140 + base 210141 + tasty-bench 210142 + text 210143 + unix 210144 + unliftio 210145 + ]; 210146 + description = "An easy to use, performant extensible effects library"; 210147 + license = lib.licenses.bsd3; 210148 + hydraPlatforms = lib.platforms.none; 210149 + } 210150 + ) { }; 210151 + 209257 210152 "effectful-core" = callPackage ( 209258 210153 { 209259 210154 mkDerivation, ··· 209287 210182 } 209288 210183 ) { }; 209289 210184 210185 + "effectful-core_2_6_0_0" = callPackage ( 210186 + { 210187 + mkDerivation, 210188 + base, 210189 + containers, 210190 + deepseq, 210191 + exceptions, 210192 + monad-control, 210193 + primitive, 210194 + strict-mutable-base, 210195 + transformers-base, 210196 + unliftio-core, 210197 + }: 210198 + mkDerivation { 210199 + pname = "effectful-core"; 210200 + version = "2.6.0.0"; 210201 + sha256 = "1zi1cgnyfzz5csml8saf9zxixrc7q074ywgh0cjd5k2v3zj79rw1"; 210202 + libraryHaskellDepends = [ 210203 + base 210204 + containers 210205 + deepseq 210206 + exceptions 210207 + monad-control 210208 + primitive 210209 + strict-mutable-base 210210 + transformers-base 210211 + unliftio-core 210212 + ]; 210213 + description = "An easy to use, performant extensible effects library"; 210214 + license = lib.licenses.bsd3; 210215 + hydraPlatforms = lib.platforms.none; 210216 + } 210217 + ) { }; 210218 + 209290 210219 "effectful-plugin" = callPackage ( 209291 210220 { 209292 210221 mkDerivation, ··· 209313 210242 ]; 209314 210243 description = "A GHC plugin for improving disambiguation of effects"; 209315 210244 license = lib.licenses.bsd3; 210245 + } 210246 + ) { }; 210247 + 210248 + "effectful-plugin_2_0_0_0" = callPackage ( 210249 + { 210250 + mkDerivation, 210251 + base, 210252 + containers, 210253 + effectful-core, 210254 + ghc, 210255 + }: 210256 + mkDerivation { 210257 + pname = "effectful-plugin"; 210258 + version = "2.0.0.0"; 210259 + sha256 = "11xy98k20r9bw2436digcn3mjdk5qlf12i0h7d0xizsqsdazyvy6"; 210260 + libraryHaskellDepends = [ 210261 + base 210262 + containers 210263 + effectful-core 210264 + ghc 210265 + ]; 210266 + testHaskellDepends = [ 210267 + base 210268 + effectful-core 210269 + ]; 210270 + description = "A GHC plugin for improving disambiguation of effects"; 210271 + license = lib.licenses.bsd3; 210272 + hydraPlatforms = lib.platforms.none; 209316 210273 } 209317 210274 ) { }; 209318 210275 ··· 210247 211204 profunctors, 210248 211205 QuickCheck, 210249 211206 semigroupoids, 210250 - test-framework, 210251 - test-framework-quickcheck2, 211207 + tasty, 211208 + tasty-quickcheck, 210252 211209 }: 210253 211210 mkDerivation { 210254 211211 pname = "either"; 210255 - version = "5.0.2"; 210256 - sha256 = "1gl748ia68bldbqb2fl7vjv44g0y8ivn659fjmy1qyypgyb5p95z"; 210257 - revision = "2"; 210258 - editedCabalFile = "1lx6ls938vssg75ib2fr1ww4nsig2rkhjc6x57yfinx1yb9r62vz"; 211212 + version = "5.0.3"; 211213 + sha256 = "00a8h2jgrpqdlsi8vjrm2qa6rmw33ksirxv9s6i90nlmhhg6jrkd"; 210259 211214 libraryHaskellDepends = [ 210260 211215 base 210261 211216 bifunctors ··· 210266 211221 testHaskellDepends = [ 210267 211222 base 210268 211223 QuickCheck 210269 - test-framework 210270 - test-framework-quickcheck2 211224 + tasty 211225 + tasty-quickcheck 210271 211226 ]; 210272 211227 description = "Combinators for working with sums"; 210273 211228 license = lib.licenses.bsd3; ··· 210612 211567 mkDerivation, 210613 211568 base, 210614 211569 containers, 211570 + ghc-prim, 210615 211571 text, 210616 211572 unordered-containers, 210617 211573 }: 210618 211574 mkDerivation { 210619 211575 pname = "ekg-core"; 210620 - version = "0.1.1.8"; 210621 - sha256 = "028c3g1fz0rfxpfn98wxxmklnxx3szwvjxl9n9ls2w011vqslvia"; 210622 - revision = "1"; 210623 - editedCabalFile = "1lwss6aha8bjmjb3xji58jznca7k7nss76qva5pihgb20j7xs7vi"; 211576 + version = "0.1.2.0"; 211577 + sha256 = "12d4xzkdczbrmhhpgymf9brjn0kpq5645dq57xw05sylalfyslzz"; 210624 211578 libraryHaskellDepends = [ 210625 211579 base 210626 211580 containers 211581 + ghc-prim 210627 211582 text 210628 211583 unordered-containers 210629 211584 ]; ··· 216854 217809 }: 216855 217810 mkDerivation { 216856 217811 pname = "erebos-tester"; 216857 - version = "0.3.2"; 216858 - sha256 = "0m3fi03q0l55r6amxcq0l01sqcg8m6hqbx1zhdaq75s3yyx4wb71"; 217812 + version = "0.3.3"; 217813 + sha256 = "0xcwijr034dw5s4f6jyb727449wayyd31lv8afmfr49i0jmwhgay"; 216859 217814 isLibrary = false; 216860 217815 isExecutable = true; 216861 217816 executableHaskellDepends = [ ··· 217766 218721 } 217767 218722 ) { }; 217768 218723 218724 + "ersatz_0_6" = callPackage ( 218725 + { 218726 + mkDerivation, 218727 + array, 218728 + attoparsec, 218729 + base, 218730 + bytestring, 218731 + containers, 218732 + data-default, 218733 + fail, 218734 + lens, 218735 + mtl, 218736 + optparse-applicative, 218737 + parsec, 218738 + process, 218739 + semigroups, 218740 + streams, 218741 + tasty, 218742 + tasty-hunit, 218743 + temporary, 218744 + transformers, 218745 + unordered-containers, 218746 + }: 218747 + mkDerivation { 218748 + pname = "ersatz"; 218749 + version = "0.6"; 218750 + sha256 = "05wg6hvrxijdw6pnzpzdcf85ybjdhax731f70gxl1hvwfllrp43j"; 218751 + isLibrary = true; 218752 + isExecutable = true; 218753 + enableSeparateDataOutput = true; 218754 + libraryHaskellDepends = [ 218755 + array 218756 + attoparsec 218757 + base 218758 + bytestring 218759 + containers 218760 + data-default 218761 + lens 218762 + mtl 218763 + process 218764 + semigroups 218765 + streams 218766 + temporary 218767 + transformers 218768 + unordered-containers 218769 + ]; 218770 + executableHaskellDepends = [ 218771 + array 218772 + base 218773 + bytestring 218774 + containers 218775 + fail 218776 + lens 218777 + mtl 218778 + optparse-applicative 218779 + parsec 218780 + semigroups 218781 + ]; 218782 + testHaskellDepends = [ 218783 + array 218784 + base 218785 + containers 218786 + data-default 218787 + tasty 218788 + tasty-hunit 218789 + ]; 218790 + description = "A monad for expressing SAT or QSAT problems using observable sharing"; 218791 + license = lib.licenses.bsd3; 218792 + hydraPlatforms = lib.platforms.none; 218793 + broken = true; 218794 + } 218795 + ) { }; 218796 + 217769 218797 "ersatz-toysat" = callPackage ( 217770 218798 { 217771 218799 mkDerivation, ··· 220820 221848 }: 220821 221849 mkDerivation { 220822 221850 pname = "eventlog2html"; 220823 - version = "0.11.1"; 220824 - sha256 = "1rfyw285g48c7dck8kjykx9n4brw7ngm275n64g1wwwkm4ybn43n"; 220825 - revision = "1"; 220826 - editedCabalFile = "0kxb0990f8x394j2l7y5y2xz43lqdlm4bc6gihfqnkc6w5qsqhji"; 221851 + version = "0.12.0"; 221852 + sha256 = "1jbp46hcx4kcnkln9vd8b36fjwhxlmlcv08narr6w5bfxz1dpzy6"; 220827 221853 isLibrary = true; 220828 221854 isExecutable = true; 220829 221855 libraryHaskellDepends = [ ··· 222220 223246 } 222221 223247 ) { }; 222222 223248 222223 - "exceptions_0_10_9" = callPackage ( 223249 + "exceptions_0_10_10" = callPackage ( 222224 223250 { 222225 223251 mkDerivation, 222226 223252 base, 222227 223253 mtl, 222228 223254 QuickCheck, 222229 223255 stm, 223256 + tasty, 223257 + tasty-hunit, 223258 + tasty-quickcheck, 222230 223259 template-haskell, 222231 - test-framework, 222232 - test-framework-hunit, 222233 - test-framework-quickcheck2, 222234 223260 transformers, 222235 223261 }: 222236 223262 mkDerivation { 222237 223263 pname = "exceptions"; 222238 - version = "0.10.9"; 222239 - sha256 = "0h5y2rqg7kz4ic59n5i7619766mzfpqcdill3l712nihs3q2nk4v"; 222240 - revision = "1"; 222241 - editedCabalFile = "11p0d1gd3ybgbyplhr18wy2k7cy3hf6ab288ymy3ddayc4a927k6"; 223264 + version = "0.10.10"; 223265 + sha256 = "1cddmj2y5h2hqjgmk14c698g8hhq0x2rycdl5vgz8vvzzsg83zq8"; 222242 223266 libraryHaskellDepends = [ 222243 223267 base 222244 223268 mtl ··· 222251 223275 mtl 222252 223276 QuickCheck 222253 223277 stm 223278 + tasty 223279 + tasty-hunit 223280 + tasty-quickcheck 222254 223281 template-haskell 222255 - test-framework 222256 - test-framework-hunit 222257 - test-framework-quickcheck2 222258 223282 transformers 222259 223283 ]; 222260 223284 description = "Extensible optionally-pure exceptions"; ··· 223438 224462 }: 223439 224463 mkDerivation { 223440 224464 pname = "exotic-list-monads"; 223441 - version = "1.1.1"; 223442 - sha256 = "063nmcqp9swzmhbdbdvl63kll1mqw3gywwrzx64s5hdk893rzkrf"; 224465 + version = "1.2.0"; 224466 + sha256 = "1wxdhh869v69schj88xz9anzmj4qly3wrh8jmkwga6h5krhvqkgh"; 223443 224467 libraryHaskellDepends = [ base ]; 223444 224468 testHaskellDepends = [ 223445 224469 base ··· 223450 224474 testToolDepends = [ hspec-discover ]; 223451 224475 description = "Non-standard monads on lists and non-empty lists"; 223452 224476 license = lib.licenses.mit; 224477 + hydraPlatforms = lib.platforms.none; 224478 + broken = true; 223453 224479 } 223454 224480 ) { }; 223455 224481 ··· 224609 225635 }: 224610 225636 mkDerivation { 224611 225637 pname = "extended-reals"; 224612 - version = "0.2.6.0"; 224613 - sha256 = "0cy5fb6b9kidxqadpymy0pqvswlsqxwxqqhfx9di1l66ynks2b6z"; 225638 + version = "0.2.7.0"; 225639 + sha256 = "0q9k3fl8n30mlsv1c459470bjd4bqyg0vqycjc76qkzxwljl6pwk"; 225640 + revision = "1"; 225641 + editedCabalFile = "1w69ym1cpsdxh7344j6j0kabrdazfx7n9yzqgxcjplsd92gwr97k"; 224614 225642 libraryHaskellDepends = [ 224615 225643 base 224616 225644 deepseq ··· 227092 228120 }: 227093 228121 mkDerivation { 227094 228122 pname = "fast-logger"; 227095 - version = "3.2.5"; 227096 - sha256 = "0cddv18k0n1hdbjf0szqq7pl5r0h4srzxy8pmr66a4pc1w410lii"; 228123 + version = "3.2.6"; 228124 + sha256 = "1hy5cczg64q6cafahfcfjsij48w80zskgjnn3ks0w5w4vqiccrmx"; 227097 228125 libraryHaskellDepends = [ 227098 228126 array 227099 228127 auto-update ··· 228555 229583 }: 228556 229584 mkDerivation { 228557 229585 pname = "fbrnch"; 228558 - version = "1.6.2"; 228559 - sha256 = "0yqpxma3qgdkacbabaffz0498phl79yvn2pbhn10gb6f18lzxcsf"; 229586 + version = "1.7.1"; 229587 + sha256 = "1xsq70xpd0qgz0krlmm31b821ir94sc8qa0qpshjlcfja882p11l"; 228560 229588 isLibrary = false; 228561 229589 isExecutable = true; 228562 229590 executableHaskellDepends = [ ··· 229609 230637 } 229610 230638 ) { }; 229611 230639 230640 + "fedora-releases_0_3_0" = callPackage ( 230641 + { 230642 + mkDerivation, 230643 + aeson, 230644 + base, 230645 + bodhi, 230646 + cached-json-file, 230647 + extra, 230648 + safe, 230649 + }: 230650 + mkDerivation { 230651 + pname = "fedora-releases"; 230652 + version = "0.3.0"; 230653 + sha256 = "1lipp022kxj72i9d25f8if4dppa706zvb1a62lx3gw1xw1p55j8b"; 230654 + libraryHaskellDepends = [ 230655 + aeson 230656 + base 230657 + bodhi 230658 + cached-json-file 230659 + extra 230660 + safe 230661 + ]; 230662 + description = "Library for Fedora release versions"; 230663 + license = lib.licenses.gpl3Only; 230664 + hydraPlatforms = lib.platforms.none; 230665 + } 230666 + ) { }; 230667 + 229612 230668 "fedora-repoquery" = callPackage ( 229613 230669 { 229614 230670 mkDerivation, ··· 229630 230686 }: 229631 230687 mkDerivation { 229632 230688 pname = "fedora-repoquery"; 229633 - version = "0.7.2"; 229634 - sha256 = "0glmc6fqcw7r400nczlnalbdp98ddvvywrxng9jz5y7bindy1vh7"; 230689 + version = "0.7.3"; 230690 + sha256 = "1sdyvbvrh1z32y8hsbfwzyrffl57niri0rgpp580syh11l621sj1"; 229635 230691 isLibrary = false; 229636 230692 isExecutable = true; 229637 230693 executableHaskellDepends = [ ··· 232470 233526 pname = "filepath"; 232471 233527 version = "1.5.4.0"; 232472 233528 sha256 = "1bswvf1hrsslb8xlwvsccz12h5habrdpqq4zgcyjg4zm6b28dajl"; 233529 + revision = "1"; 233530 + editedCabalFile = "0b7hmqygr29ppazwbmrrl60bshpqg7zhvzq5g4wl3pgj19iw55ql"; 232473 233531 libraryHaskellDepends = [ 232474 233532 base 232475 233533 bytestring ··· 232732 233790 pname = "filestore"; 232733 233791 version = "0.6.5"; 232734 233792 sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; 232735 - revision = "2"; 232736 - editedCabalFile = "1m6qi647v475gcim8nfb6cgahhc99rszc8k1z2mpzm797qxg9xbs"; 233793 + revision = "3"; 233794 + editedCabalFile = "003vfb6j47vihjba1py9ls9l269gkg89rf732gb5lwdximxg7wf0"; 232737 233795 libraryHaskellDepends = [ 232738 233796 base 232739 233797 bytestring ··· 233622 234680 }: 233623 234681 mkDerivation { 233624 234682 pname = "finite"; 233625 - version = "1.4.1.2"; 233626 - sha256 = "10hnqz4klgrpfbvla07h8yghpv22bsyijf0cibfzwl9j779vb4nc"; 234683 + version = "1.5.0.0"; 234684 + sha256 = "02fw2m1qn4rpz25jnd9vb16417srpzwz0lhzin04dwc6gjq74i8g"; 233627 234685 libraryHaskellDepends = [ 233628 234686 array 233629 234687 base ··· 238635 239693 QuickCheck, 238636 239694 quickcheck-instances, 238637 239695 tagged, 239696 + tasty, 238638 239697 tasty-bench, 238639 - test-framework, 238640 - test-framework-quickcheck2, 239698 + tasty-quickcheck, 238641 239699 transformers, 238642 239700 }: 238643 239701 mkDerivation { 238644 239702 pname = "foldable1-classes-compat"; 238645 - version = "0.1.1"; 238646 - sha256 = "17xmc3525crnd86rrl2c50rfnhibwh5xbqrnmvzvyns4d3l4vvdg"; 238647 - revision = "2"; 238648 - editedCabalFile = "0m1cd2g2f2983nb9h4d3amq058k2yri6hbh5v026y5lxhg9fq0i8"; 239703 + version = "0.1.2"; 239704 + sha256 = "1n6a8ga07gdwnhy485qzy23algcmnzppfcxfy8c6qipamn4hw5p3"; 238649 239705 libraryHaskellDepends = [ 238650 239706 base 238651 239707 ghc-prim ··· 238656 239712 containers 238657 239713 QuickCheck 238658 239714 quickcheck-instances 238659 - test-framework 238660 - test-framework-quickcheck2 239715 + tasty 239716 + tasty-quickcheck 238661 239717 transformers 238662 239718 ]; 238663 239719 benchmarkHaskellDepends = [ ··· 240593 241649 }: 240594 241650 mkDerivation { 240595 241651 pname = "fortran-src"; 240596 - version = "0.16.5"; 240597 - sha256 = "1adqczpb1d2zclgvg03z3izcmmncgxj7bff9zz5p8zc77v8865m4"; 241652 + version = "0.16.7"; 241653 + sha256 = "12d46b232aks34nvb3jc66dhz0nxq3z8ngbs6rfn71paj2mfj5cv"; 240598 241654 isLibrary = true; 240599 241655 isExecutable = true; 240600 241656 libraryHaskellDepends = [ ··· 242435 243491 }: 242436 243492 mkDerivation { 242437 243493 pname = "freckle-app"; 242438 - version = "1.23.1.0"; 242439 - sha256 = "0ik1ay4vm0qw5jg1zvbdfl1p0gxawlrah9lphg9y2cqq48yj4zql"; 243494 + version = "1.23.3.0"; 243495 + sha256 = "0405dj2isvhgib85km2fppq32aan5sghsny2ilwv39pr2g6kkwkm"; 242440 243496 libraryHaskellDepends = [ 242441 243497 aeson 242442 243498 annotated-exception ··· 242677 243733 }: 242678 243734 mkDerivation { 242679 243735 pname = "freckle-http"; 242680 - version = "0.1.0.0"; 242681 - sha256 = "1a8isx1z9injzmbcfj19i4m8cccbl754chx8ayxww76ahd1s6v81"; 243736 + version = "0.2.0.0"; 243737 + sha256 = "0an1bqpsslr8zlpmvvp5hjw5fwpwqjr6w0m4ib7sa1d0218xzdnz"; 242682 243738 libraryHaskellDepends = [ 242683 243739 aeson 242684 243740 annotated-exception ··· 243796 244852 pname = "free-vector-spaces"; 243797 244853 version = "0.1.5.2"; 243798 244854 sha256 = "0p0flpai3n9ism9dd3kyf1fa8s8rpb4cc00m3bplb9s8zb6aghpb"; 243799 - revision = "2"; 243800 - editedCabalFile = "1jlaljmfhsb4yb8iqmw1zaa3kkiayg6li6bk04a3camh2jc8k22m"; 244855 + revision = "3"; 244856 + editedCabalFile = "1nhbj4ch0fayqbd90qzwhlda929rny81422grdqifghqrr1lq4lv"; 243801 244857 libraryHaskellDepends = [ 243802 244858 base 243803 244859 lens ··· 245403 246459 }: 245404 246460 mkDerivation { 245405 246461 pname = "fs-api"; 245406 - version = "0.3.0.1"; 245407 - sha256 = "0yjfldwmxqg4fgcymyb9bb9axwsfsnldnxxfmk54spkmiab8kr49"; 245408 - revision = "1"; 245409 - editedCabalFile = "17z9clqfs0hm8jl2hdgk0jqvjdxm8i4lk0av489nhsj2qp6ikvmy"; 246462 + version = "0.4.0.0"; 246463 + sha256 = "1aw9x4cgflm2fy5ps3cgpwfzgfp7r7r9fps2vkzbqz03gjpql0dm"; 245410 246464 libraryHaskellDepends = [ 245411 246465 base 245412 246466 bytestring ··· 245434 246488 ]; 245435 246489 description = "Abstract interface for the file system"; 245436 246490 license = lib.licenses.asl20; 245437 - hydraPlatforms = lib.platforms.none; 245438 - broken = true; 245439 246491 } 245440 246492 ) { }; 245441 246493 ··· 245461 246513 bifunctors, 245462 246514 bytestring, 245463 246515 containers, 246516 + deepseq, 245464 246517 fs-api, 245465 246518 generics-sop, 245466 246519 io-classes, ··· 245479 246532 }: 245480 246533 mkDerivation { 245481 246534 pname = "fs-sim"; 245482 - version = "0.3.1.0"; 245483 - sha256 = "0qq7fc9b37haz2dcywyxhkszy58i3fr7z8nyrrp16x46v5cs6jwq"; 245484 - revision = "1"; 245485 - editedCabalFile = "1pbpi5hngw723z2nr9zwp9rzfxh1p1q8jk8ln01brm7xf3kkq2pb"; 246535 + version = "0.4.0.0"; 246536 + sha256 = "0wirx3mk2dmjw13adbf4d9qpgx7b9kk0y5my7s3yx1lsm2z9m4pw"; 245486 246537 libraryHaskellDepends = [ 245487 246538 base 245488 246539 base16-bytestring ··· 245501 246552 bifunctors 245502 246553 bytestring 245503 246554 containers 246555 + deepseq 245504 246556 fs-api 245505 246557 generics-sop 245506 246558 io-classes ··· 245517 246569 ]; 245518 246570 description = "Simulated file systems"; 245519 246571 license = lib.licenses.asl20; 245520 - hydraPlatforms = lib.platforms.none; 245521 246572 } 245522 246573 ) { }; 245523 246574 ··· 246985 248036 }: 246986 248037 mkDerivation { 246987 248038 pname = "functor-combinators"; 246988 - version = "0.4.1.3"; 246989 - sha256 = "0123y4n01rga8kb86w74hzjwvz8jfr15c1abkrrngacp60bd25rl"; 248039 + version = "0.4.1.4"; 248040 + sha256 = "1yqfbnwv649viy1qpzvk8f9xip0id1k7q6m0j2ssiapfpig43xys"; 246990 248041 libraryHaskellDepends = [ 246991 248042 assoc 246992 248043 base ··· 247031 248082 ]; 247032 248083 description = "Tools for functor combinator-based program design"; 247033 248084 license = lib.licenses.bsd3; 247034 - hydraPlatforms = lib.platforms.none; 247035 - broken = true; 247036 248085 } 247037 248086 ) { }; 247038 248087 ··· 249083 250132 }: 249084 250133 mkDerivation { 249085 250134 pname = "fxpak"; 249086 - version = "0.1.2"; 249087 - sha256 = "1mrpbz32aczrh5aw550p1vzvj8zqhcnmj574sc012r3z1c0g1cin"; 250135 + version = "0.1.3"; 250136 + sha256 = "1fn88wzhazx9jwddjxq4l4q1xr9g9yl5dsbc9slizb8mnkrkacd9"; 249088 250137 libraryHaskellDepends = [ 249089 250138 base 249090 250139 bytestring ··· 249092 250141 ]; 249093 250142 description = "Interface to the FXPak/FXPak Pro USB interface"; 249094 250143 license = lib.licenses.bsd3; 249095 - hydraPlatforms = lib.platforms.none; 249096 - broken = true; 249097 250144 } 249098 250145 ) { }; 249099 250146 ··· 252083 253130 pname = "generic-aeson"; 252084 253131 version = "0.2.0.14"; 252085 253132 sha256 = "0ssras2db9fqgyfhhw2pk827xf4dd4g9s9vwj8g85vaqxyvzyd8x"; 253133 + revision = "1"; 253134 + editedCabalFile = "047mgqq08f1zmnw9400b246bjgpg1r5barz53kbqhfqiaq7ybz85"; 252086 253135 libraryHaskellDepends = [ 252087 253136 aeson 252088 253137 attoparsec ··· 252096 253145 ]; 252097 253146 description = "Derivation of Aeson instances using GHC generics"; 252098 253147 license = lib.licenses.bsd3; 252099 - hydraPlatforms = lib.platforms.none; 252100 - broken = true; 252101 253148 } 252102 253149 ) { }; 252103 253150 ··· 252486 253533 { mkDerivation, base }: 252487 253534 mkDerivation { 252488 253535 pname = "generic-enumeration"; 252489 - version = "0.1.0.3"; 252490 - sha256 = "02ywn0byg4g42hl28mqc07jifj48jxzmnjm4plfdz4pnxs40kwzg"; 253536 + version = "0.1.0.4"; 253537 + sha256 = "0f83fnvmmi4yvdn9i2r1vkpk6cy4lqpxgjv26f380akyf30av90p"; 252491 253538 libraryHaskellDepends = [ base ]; 252492 253539 description = "Generically derived enumerations"; 252493 253540 license = lib.licenses.mit; ··· 252656 253703 pname = "generic-lens-lite"; 252657 253704 version = "0.1.1"; 252658 253705 sha256 = "1ldc13g7l5jjgca80c2hymkbgq9pf8b5j4x3dr83kz6wq2p76q12"; 253706 + revision = "1"; 253707 + editedCabalFile = "1wg3qxik9mgd49jkrgzargpncj6d1pg1zy13xg9yck5w4i10rixw"; 252659 253708 libraryHaskellDepends = [ base ]; 252660 253709 testHaskellDepends = [ base ]; 252661 253710 description = "Monomorphic field lens like with generic-lens"; ··· 252667 253716 { mkDerivation, base }: 252668 253717 mkDerivation { 252669 253718 pname = "generic-lexicographic-order"; 252670 - version = "0.1.0.0"; 252671 - sha256 = "096c1fan7isxynyk968llm3p204kgcmh8xp4krnmspz0xvcn7sh0"; 253719 + version = "0.1.0.1"; 253720 + sha256 = "01vylkficx9ylri9200pvqgqc89lm9x4iy3s4bfal96pv8q59knx"; 252672 253721 libraryHaskellDepends = [ base ]; 252673 253722 testHaskellDepends = [ base ]; 252674 253723 description = "Derive Bounded and Enum for sum types and Enum for product types"; ··· 252845 253894 pname = "generic-optics-lite"; 252846 253895 version = "0.1.1"; 252847 253896 sha256 = "1dd2dw72fyyimnyq8bw57k7lbh0lnjipvk08dyj87h357ykjv3ql"; 253897 + revision = "1"; 253898 + editedCabalFile = "1z3bf20fj03bfp4zigdxzw4v30hmxgwkdzdmgbn4hibpcz2j24p0"; 252848 253899 libraryHaskellDepends = [ 252849 253900 base 252850 253901 generic-lens-lite ··· 254849 255900 ]; 254850 255901 description = "GenValidity support for URI"; 254851 255902 license = lib.licenses.mit; 254852 - hydraPlatforms = lib.platforms.none; 254853 - broken = true; 254854 255903 } 254855 255904 ) { }; 254856 255905 ··· 256507 257556 } 256508 257557 ) { }; 256509 257558 256510 - "ghc_9_12_1" = 257559 + "ghc_9_12_2" = 256511 257560 callPackage 256512 257561 ( 256513 257562 { ··· 256541 257590 }: 256542 257591 mkDerivation { 256543 257592 pname = "ghc"; 256544 - version = "9.12.1"; 256545 - sha256 = "179gp0lqrxhvzc0pyxwmkvxpilm6c201s1pjws3dl8qqyddliiqs"; 257593 + version = "9.12.2"; 257594 + sha256 = "0l5rrnfv933m37dziqaf5iv4nqirig1mfaj037by94s486ggx5f7"; 256546 257595 setupHaskellDepends = [ 256547 257596 base 256548 257597 Cabal ··· 257217 258266 }: 257218 258267 mkDerivation { 257219 258268 pname = "ghc-debugger"; 257220 - version = "0.2.0.0"; 257221 - sha256 = "0k02y36kz9412i0fk9vvdidcyc5qh0cq47jbgk78i8c7276dm4j3"; 258269 + version = "0.4.0.0"; 258270 + sha256 = "0nzmlnhv5liwkibva0djvc06c0d2wwpqa9x4lvpb2snkid0yliyl"; 257222 258271 isLibrary = true; 257223 258272 isExecutable = true; 257224 258273 libraryHaskellDepends = [ ··· 257228 258277 binary 257229 258278 bytestring 257230 258279 containers 258280 + directory 257231 258281 exceptions 257232 258282 filepath 257233 258283 ghc 257234 258284 ghci 258285 + hie-bios 257235 258286 mtl 257236 258287 process 257237 258288 unix ··· 258123 259174 } 258124 259175 ) { }; 258125 259176 259177 + "ghc-hie" = callPackage ( 259178 + { 259179 + mkDerivation, 259180 + array, 259181 + base, 259182 + bytestring, 259183 + containers, 259184 + deepseq, 259185 + directory, 259186 + filepath, 259187 + ghc, 259188 + ghc-boot, 259189 + hspec, 259190 + hspec-discover, 259191 + process, 259192 + QuickCheck, 259193 + temporary, 259194 + transformers, 259195 + }: 259196 + mkDerivation { 259197 + pname = "ghc-hie"; 259198 + version = "0.0.2"; 259199 + sha256 = "1z51fbm0n9knqrp01gqd7xx0pkfwyr9kgaginvqmdw45gi8rqhm7"; 259200 + libraryHaskellDepends = [ 259201 + array 259202 + base 259203 + bytestring 259204 + containers 259205 + deepseq 259206 + directory 259207 + filepath 259208 + ghc 259209 + ghc-boot 259210 + transformers 259211 + ]; 259212 + testHaskellDepends = [ 259213 + array 259214 + base 259215 + bytestring 259216 + containers 259217 + deepseq 259218 + directory 259219 + filepath 259220 + ghc 259221 + ghc-boot 259222 + hspec 259223 + process 259224 + QuickCheck 259225 + temporary 259226 + transformers 259227 + ]; 259228 + testToolDepends = [ hspec-discover ]; 259229 + description = "HIE-file parsing machinery that supports multiple versions of GHC"; 259230 + license = lib.licenses.mit; 259231 + } 259232 + ) { }; 259233 + 258126 259234 "ghc-hotswap" = callPackage ( 258127 259235 { 258128 259236 mkDerivation, ··· 259807 260915 }: 259808 260916 mkDerivation { 259809 260917 pname = "ghc-prof"; 259810 - version = "1.4.1.13"; 259811 - sha256 = "0g85216s10pm515wi0dl95znq3vdac3zvagizg8vy82zfmsgxwcp"; 260918 + version = "1.4.1.14"; 260919 + sha256 = "16zl8x8abkh2fbyzsd6k48vm2na0bbm0cv2b9sfi3jac7mi3v3kq"; 259812 260920 isLibrary = true; 259813 260921 isExecutable = true; 259814 260922 libraryHaskellDepends = [ ··· 260654 261762 base, 260655 261763 containers, 260656 261764 ghc, 261765 + template-haskell, 260657 261766 transformers, 260658 261767 }: 260659 261768 mkDerivation { 260660 261769 pname = "ghc-tcplugin-api"; 260661 - version = "0.14.0.0"; 260662 - sha256 = "089lw1gjxrk54s1agl5gxkwg49368z6i6m260snz05nfia4m7fak"; 261770 + version = "0.15.0.0"; 261771 + sha256 = "024gwhs575rirrizlriigxvz0b9az2c63vbbdfm3dd4qa5ln3jmq"; 260663 261772 libraryHaskellDepends = [ 260664 261773 base 260665 261774 containers 260666 261775 ghc 261776 + template-haskell 260667 261777 transformers 260668 261778 ]; 260669 261779 description = "An API for type-checker plugins"; ··· 261489 262599 } 261490 262600 ) { }; 261491 262601 262602 + "ghci4luatex" = callPackage ( 262603 + { 262604 + mkDerivation, 262605 + aeson, 262606 + base, 262607 + bytestring, 262608 + cmdargs, 262609 + containers, 262610 + hspec, 262611 + network-simple, 262612 + process, 262613 + QuickCheck, 262614 + stm, 262615 + text, 262616 + }: 262617 + mkDerivation { 262618 + pname = "ghci4luatex"; 262619 + version = "0.1"; 262620 + sha256 = "1x3kdwxcallnyvssbxaj4scf6rc0f5yx3js1bzzwmi9p3imxj4x8"; 262621 + isLibrary = true; 262622 + isExecutable = true; 262623 + libraryHaskellDepends = [ 262624 + aeson 262625 + base 262626 + bytestring 262627 + cmdargs 262628 + containers 262629 + network-simple 262630 + process 262631 + stm 262632 + text 262633 + ]; 262634 + executableHaskellDepends = [ 262635 + aeson 262636 + base 262637 + bytestring 262638 + cmdargs 262639 + containers 262640 + network-simple 262641 + process 262642 + stm 262643 + text 262644 + ]; 262645 + testHaskellDepends = [ 262646 + aeson 262647 + base 262648 + bytestring 262649 + cmdargs 262650 + containers 262651 + hspec 262652 + network-simple 262653 + process 262654 + QuickCheck 262655 + stm 262656 + text 262657 + ]; 262658 + description = "A GHCi session in LaTeX"; 262659 + license = lib.licenses.bsd3; 262660 + mainProgram = "ghci4luatex"; 262661 + } 262662 + ) { }; 262663 + 261492 262664 "ghcid" = callPackage ( 261493 262665 { 261494 262666 mkDerivation, ··· 261896 263068 }: 261897 263069 mkDerivation { 261898 263070 pname = "ghcitui"; 261899 - version = "0.4.1.0"; 261900 - sha256 = "05c9s43qhzxc280xycicwrm95kl1jpz14pzlcnv0a29i8589gpdz"; 263071 + version = "0.4.1.1"; 263072 + sha256 = "1s7imyvv7pg3yyrajgl5fqv1q35188ianm8y689mzb5ikbwr5wq4"; 261901 263073 isLibrary = true; 261902 263074 isExecutable = true; 261903 263075 libraryHaskellDepends = [ ··· 261969 263141 { mkDerivation }: 261970 263142 mkDerivation { 261971 263143 pname = "ghcjs-base"; 261972 - version = "0.8.0.3"; 261973 - sha256 = "1cff0sgcwdas30dgxg9mdab5rk0s1v2qkkb9cr47dl3d5wmc4add"; 263144 + version = "0.8.0.4"; 263145 + sha256 = "081w3234jramsmafnl86v37lwbckr2vc93gr9pdwc31yzni9kbml"; 261974 263146 description = "base library for GHCJS"; 261975 263147 license = lib.licenses.mit; 261976 263148 platforms = [ "javascript-ghcjs" ]; ··· 262755 263927 pname = "ghostscript-parallel"; 262756 263928 version = "0.0.1"; 262757 263929 sha256 = "1sja6nhp8p9h2z0yr5qwxd8d59zzpb11ybmsbargza6ddaplpxny"; 263930 + revision = "1"; 263931 + editedCabalFile = "1sd1rh0fm29c3h4vm42fv6vbqplcm32ilqzimdp7vxfp3mhbblpr"; 262758 263932 isLibrary = false; 262759 263933 isExecutable = true; 262760 263934 executableHaskellDepends = [ ··· 264011 265185 }: 264012 265186 mkDerivation { 264013 265187 pname = "gi-gio"; 264014 - version = "2.0.37"; 264015 - sha256 = "0a3z1aj1fqnpwxcf27anjcp2wpg3mbn86xybk150260bb00jzxpb"; 264016 - setupHaskellDepends = [ 264017 - base 264018 - Cabal 264019 - gi-glib 264020 - gi-gobject 264021 - haskell-gi 264022 - ]; 264023 - libraryHaskellDepends = [ 264024 - base 264025 - bytestring 264026 - containers 264027 - gi-glib 264028 - gi-gobject 264029 - haskell-gi 264030 - haskell-gi-base 264031 - haskell-gi-overloading 264032 - text 264033 - transformers 264034 - ]; 264035 - libraryPkgconfigDepends = [ glib ]; 264036 - description = "Gio bindings"; 264037 - license = lib.licenses.lgpl21Only; 264038 - } 264039 - ) { inherit (pkgs) glib; }; 264040 - 264041 - "gi-gio_2_0_38" = callPackage ( 264042 - { 264043 - mkDerivation, 264044 - base, 264045 - bytestring, 264046 - Cabal, 264047 - containers, 264048 - gi-glib, 264049 - gi-gobject, 264050 - glib, 264051 - haskell-gi, 264052 - haskell-gi-base, 264053 - haskell-gi-overloading, 264054 - text, 264055 - transformers, 264056 - }: 264057 - mkDerivation { 264058 - pname = "gi-gio"; 264059 265188 version = "2.0.38"; 264060 265189 sha256 = "12bmpafy5w85y7mzww0l5ilimbdmaabpxz7ry9sacg37kjm3kidf"; 264061 265190 setupHaskellDepends = [ ··· 264080 265209 libraryPkgconfigDepends = [ glib ]; 264081 265210 description = "Gio bindings"; 264082 265211 license = lib.licenses.lgpl21Only; 264083 - hydraPlatforms = lib.platforms.none; 264084 265212 } 264085 265213 ) { inherit (pkgs) glib; }; 264086 265214 ··· 265129 266257 } 265130 266258 ) { inherit (pkgs) gtk4; }; 265131 266259 266260 + "gi-gtk4-layer-shell" = callPackage ( 266261 + { 266262 + mkDerivation, 266263 + base, 266264 + bytestring, 266265 + Cabal, 266266 + containers, 266267 + gi-gdk4, 266268 + gi-gtk4, 266269 + gtk4-layer-shell, 266270 + haskell-gi, 266271 + haskell-gi-base, 266272 + haskell-gi-overloading, 266273 + text, 266274 + transformers, 266275 + }: 266276 + mkDerivation { 266277 + pname = "gi-gtk4-layer-shell"; 266278 + version = "0.1.0"; 266279 + sha256 = "0x1bafara3nq2f76lmmzvkm51i16za0fymh0zpvqx4mvac8lhpzz"; 266280 + setupHaskellDepends = [ 266281 + base 266282 + Cabal 266283 + gi-gdk4 266284 + gi-gtk4 266285 + haskell-gi 266286 + ]; 266287 + libraryHaskellDepends = [ 266288 + base 266289 + bytestring 266290 + containers 266291 + gi-gdk4 266292 + gi-gtk4 266293 + haskell-gi 266294 + haskell-gi-base 266295 + haskell-gi-overloading 266296 + text 266297 + transformers 266298 + ]; 266299 + libraryPkgconfigDepends = [ gtk4-layer-shell ]; 266300 + description = "gtk4-layer-shell bindings"; 266301 + license = lib.licenses.lgpl21Only; 266302 + hydraPlatforms = lib.platforms.none; 266303 + broken = true; 266304 + } 266305 + ) { inherit (pkgs) gtk4-layer-shell; }; 266306 + 265132 266307 "gi-gtkosxapplication" = callPackage ( 265133 266308 { 265134 266309 mkDerivation, ··· 266539 267714 }: 266540 267715 mkDerivation { 266541 267716 pname = "gi-webkit"; 266542 - version = "6.0.4"; 266543 - sha256 = "0cabpym4p654psrck548wpkdf43wbm8zn0r2lrqiijx72f6xwij5"; 267717 + version = "6.0.5"; 267718 + sha256 = "1a7nmzry1h24i35imhp2d9x32bn32fwswpvrp72lk8yyb12v7i5g"; 266544 267719 setupHaskellDepends = [ 266545 267720 base 266546 267721 Cabal ··· 267143 268318 pname = "ginger"; 267144 268319 version = "0.10.6.0"; 267145 268320 sha256 = "0j5arz8x2ksbcwy5iq8p7pzy71rl0nhadlv2d6933ibdgvzbsb7j"; 268321 + revision = "1"; 268322 + editedCabalFile = "1226x5dlcpaczy3kx5h27fmq4g03h4aa1nc1aw9r7x18h8rjay04"; 267146 268323 isLibrary = true; 267147 268324 isExecutable = true; 267148 268325 enableSeparateDataOutput = true; ··· 267203 268380 } 267204 268381 ) { }; 267205 268382 268383 + "ginger2" = callPackage ( 268384 + { 268385 + mkDerivation, 268386 + aeson, 268387 + array, 268388 + base, 268389 + base64-bytestring, 268390 + bytestring, 268391 + cmark, 268392 + containers, 268393 + directory, 268394 + filepath, 268395 + megaparsec, 268396 + mtl, 268397 + optparse-applicative, 268398 + quickcheck-instances, 268399 + random, 268400 + regex-tdfa, 268401 + scientific, 268402 + SHA, 268403 + tasty, 268404 + tasty-hunit, 268405 + tasty-quickcheck, 268406 + template-haskell, 268407 + text, 268408 + time, 268409 + vector, 268410 + yaml, 268411 + }: 268412 + mkDerivation { 268413 + pname = "ginger2"; 268414 + version = "2.2.0.0"; 268415 + sha256 = "0a8aa944v7b8qlwqykkrvm334ic8c8lfb8zwls7wx1cyh68kif66"; 268416 + isLibrary = true; 268417 + isExecutable = true; 268418 + libraryHaskellDepends = [ 268419 + aeson 268420 + array 268421 + base 268422 + base64-bytestring 268423 + bytestring 268424 + containers 268425 + filepath 268426 + megaparsec 268427 + mtl 268428 + random 268429 + regex-tdfa 268430 + scientific 268431 + SHA 268432 + tasty 268433 + tasty-quickcheck 268434 + template-haskell 268435 + text 268436 + time 268437 + vector 268438 + ]; 268439 + executableHaskellDepends = [ 268440 + aeson 268441 + base 268442 + cmark 268443 + containers 268444 + directory 268445 + filepath 268446 + optparse-applicative 268447 + random 268448 + text 268449 + vector 268450 + yaml 268451 + ]; 268452 + testHaskellDepends = [ 268453 + base 268454 + base64-bytestring 268455 + bytestring 268456 + containers 268457 + megaparsec 268458 + mtl 268459 + quickcheck-instances 268460 + random 268461 + tasty 268462 + tasty-hunit 268463 + tasty-quickcheck 268464 + text 268465 + vector 268466 + ]; 268467 + description = "Jinja templates for Haskell"; 268468 + license = lib.licenses.mit; 268469 + hydraPlatforms = lib.platforms.none; 268470 + mainProgram = "ginger2"; 268471 + broken = true; 268472 + } 268473 + ) { }; 268474 + 267206 268475 "gingersnap" = callPackage ( 267207 268476 { 267208 268477 mkDerivation, ··· 267727 268996 }: 267728 268997 mkDerivation { 267729 268998 pname = "git-annex"; 267730 - version = "10.20250520"; 267731 - sha256 = "15qb4pm3chhb5x0halx5qd4s1rcbci1q22sskm0mw4xjn2yfhc99"; 268999 + version = "10.20250630"; 269000 + sha256 = "1varfir2vmnr29kfsjpqc5vd6msansch6xiag1d0s4bj5wpn1pq3"; 267732 269001 configureFlags = [ 267733 269002 "-fassistant" 267734 269003 "-f-benchmark" ··· 269183 270452 } 269184 270453 ) { }; 269185 270454 270455 + "github-actions" = callPackage ( 270456 + { 270457 + mkDerivation, 270458 + aeson, 270459 + base, 270460 + bytestring, 270461 + containers, 270462 + filepath, 270463 + hedgehog, 270464 + hoist-error, 270465 + pretty-show, 270466 + string-interpolate, 270467 + tasty, 270468 + tasty-discover, 270469 + tasty-golden, 270470 + tasty-golden-extra, 270471 + tasty-hedgehog, 270472 + tasty-hunit, 270473 + text, 270474 + vector, 270475 + yaml, 270476 + }: 270477 + mkDerivation { 270478 + pname = "github-actions"; 270479 + version = "0.1.0.0"; 270480 + sha256 = "0aa4j8cbij6ags49pmdlfjgwfhj4w1960cjijfhncjm1dr5gij1z"; 270481 + revision = "1"; 270482 + editedCabalFile = "13n5nxpqgak96fqyywp1kx0yvzp7m2r19fn84z0khb5bq5nglv01"; 270483 + libraryHaskellDepends = [ 270484 + aeson 270485 + base 270486 + containers 270487 + hedgehog 270488 + hoist-error 270489 + string-interpolate 270490 + text 270491 + vector 270492 + ]; 270493 + testHaskellDepends = [ 270494 + aeson 270495 + base 270496 + bytestring 270497 + containers 270498 + filepath 270499 + hedgehog 270500 + hoist-error 270501 + pretty-show 270502 + string-interpolate 270503 + tasty 270504 + tasty-discover 270505 + tasty-golden 270506 + tasty-golden-extra 270507 + tasty-hedgehog 270508 + tasty-hunit 270509 + text 270510 + vector 270511 + yaml 270512 + ]; 270513 + testToolDepends = [ tasty-discover ]; 270514 + description = "Github Actions"; 270515 + license = lib.licenses.bsd3; 270516 + } 270517 + ) { }; 270518 + 269186 270519 "github-app-token" = callPackage ( 269187 270520 { 269188 270521 mkDerivation, ··· 278547 279880 }: 278548 279881 mkDerivation { 278549 279882 pname = "gothic"; 278550 - version = "0.1.8.2"; 278551 - sha256 = "1mqkkla4ipibp7y7aiy466qrqcapra4n2xx8an07c1inwkpsxzw1"; 279883 + version = "0.1.8.3"; 279884 + sha256 = "0lf0yhq4q2vcw9b69l7ixdscmz5drxiag9l31iz1ypb8cyjspi1q"; 278552 279885 libraryHaskellDepends = [ 278553 279886 aeson 278554 279887 base ··· 279307 280640 }: 279308 280641 mkDerivation { 279309 280642 pname = "gpu-vulkan-middle"; 279310 - version = "0.1.0.75"; 279311 - sha256 = "1m22f7p78pwpipkvlsg95izivhz4z2cxiww4l4qy329s1cyyy0w6"; 280643 + version = "0.1.0.76"; 280644 + sha256 = "188g8i3zszb3xm5cl57bvhmwwrg1adx679h4j52z1a1qzyiia02m"; 279312 280645 enableSeparateDataOutput = true; 279313 280646 libraryHaskellDepends = [ 279314 280647 base ··· 281254 282587 }: 281255 282588 mkDerivation { 281256 282589 pname = "graphql"; 281257 - version = "1.5.0.0"; 281258 - sha256 = "1vgvrk225fgn94cmdk5yy6a6d8p10igwx1fbvll94x4izkq57h9y"; 282590 + version = "1.5.0.1"; 282591 + sha256 = "0kx0pnf16zwdjxc1ig46mbv7px7r7v6xn6kmlypl0d73ik8jfzrq"; 281259 282592 libraryHaskellDepends = [ 281260 282593 base 281261 282594 conduit ··· 281392 282725 pname = "graphql-client"; 281393 282726 version = "1.2.4"; 281394 282727 sha256 = "0rm7x5hrjz7fqfixpaab2c8fmwpn6m3p14zr0wq2bll8qf0hj15c"; 282728 + revision = "1"; 282729 + editedCabalFile = "0fi7q2zxfm85pdpn9b4jzh49rnakm5dvcmjkr0g39738zprgwaph"; 281395 282730 isLibrary = true; 281396 282731 isExecutable = true; 281397 282732 libraryHaskellDepends = [ ··· 281653 282988 }: 281654 282989 mkDerivation { 281655 282990 pname = "graphula"; 281656 - version = "2.1.0.1"; 281657 - sha256 = "1bc8nr6m9lahbfg5h1i9y25kv5ikr7dcqs4ga4hzii07zvq6ks84"; 282991 + version = "2.1.2.0"; 282992 + sha256 = "11w4sp6jpygpqd0xjnhwdrj5gizz4nrn01md2hc98fxm19a0la03"; 281658 282993 libraryHaskellDepends = [ 281659 282994 base 281660 282995 containers ··· 282557 283892 }: 282558 283893 mkDerivation { 282559 283894 pname = "greskell-core"; 282560 - version = "1.0.0.4"; 282561 - sha256 = "0cvqrbpfa0flsvjvmdg6pf1m0dd1gxgk22n8wqbnvwak8c528hff"; 283895 + version = "1.0.0.6"; 283896 + sha256 = "14xsjs4xf3db8ppz4xypshzvyvxsn7s7syr8vqkrbll8vz9laab8"; 282562 283897 libraryHaskellDepends = [ 282563 283898 aeson 282564 283899 base ··· 283127 284462 } 283128 284463 ) { }; 283129 284464 283130 - "grisette_0_12_0_0" = callPackage ( 284465 + "grisette_0_13_0_0" = callPackage ( 283131 284466 { 283132 284467 mkDerivation, 283133 284468 array, ··· 283167 284502 }: 283168 284503 mkDerivation { 283169 284504 pname = "grisette"; 283170 - version = "0.12.0.0"; 283171 - sha256 = "0dcwbc53321jg6jfmsr72kmsx8w7c6x9aq4yllwfvbzh092ljlib"; 284505 + version = "0.13.0.0"; 284506 + sha256 = "0115al5kw0vfsp11cndra6qrjiakm2w0gpi8ai4g47fysn8xbx6p"; 283172 284507 libraryHaskellDepends = [ 283173 284508 array 283174 284509 async ··· 289225 290560 }: 289226 290561 mkDerivation { 289227 290562 pname = "hackage-cli"; 289228 - version = "0.1.0.2"; 289229 - sha256 = "1q7k8fy6mqb7h4q4bm8qp0ma2nhspszkwy8d606hb66sdiw7k73k"; 290563 + version = "0.1.0.3"; 290564 + sha256 = "19mnvvhhcagq1l3qc37qxxv7pwzfw6p15194f21z7harj5y1ly5c"; 289230 290565 isLibrary = false; 289231 290566 isExecutable = true; 289232 290567 libraryHaskellDepends = [ ··· 289607 290942 pname = "hackage-repo-tool"; 289608 290943 version = "0.1.1.4"; 289609 290944 sha256 = "1nqm6rri8rkhrqvppyzy04s3875c4wjcay8gny4ygbr65c6iw81v"; 289610 - revision = "1"; 289611 - editedCabalFile = "09fx1z32m36riv3hmjrv36knlmmrrjq2hbl30i2qfk7pfcbcjlgw"; 290945 + revision = "2"; 290946 + editedCabalFile = "0ghjpd02ccv6xdp0n6mxylq09ff5w7yzvpw3v3w4i62l43fi9j7q"; 289612 290947 isLibrary = false; 289613 290948 isExecutable = true; 289614 290949 executableHaskellDepends = [ ··· 289655 290990 pname = "hackage-revdeps"; 289656 290991 version = "0.1.1"; 289657 290992 sha256 = "0ckkcp2ndzv219hpl42vfzw0hvb5vblsx2bvdsa98wikkxnmn47j"; 290993 + revision = "1"; 290994 + editedCabalFile = "078lhc7lzs24qqizplyf4ipggxkqqsfmgq6vnrgbyhxiia2smc4b"; 289658 290995 isLibrary = true; 289659 290996 isExecutable = true; 289660 290997 libraryHaskellDepends = [ ··· 289722 291059 }: 289723 291060 mkDerivation { 289724 291061 pname = "hackage-security"; 289725 - version = "0.6.3.0"; 289726 - sha256 = "0w0d94gbqpi8b3ddkb32px8xj0qxaaxwdbl8x45y55331b23a7a0"; 291062 + version = "0.6.3.1"; 291063 + sha256 = "05sckvvwj10krkhp1457mgp1hgq45p7r2sp850g3b5689i91mvqx"; 291064 + revision = "1"; 291065 + editedCabalFile = "1si6mkc8gimkpqkdl2wyzxp14v7yphp40hxvp77im7bhr8brsa77"; 289727 291066 libraryHaskellDepends = [ 289728 291067 base 289729 291068 base16-bytestring ··· 291361 292700 aeson, 291362 292701 attoparsec, 291363 292702 base, 292703 + bytestring, 291364 292704 data-default, 291365 292705 doctest, 291366 292706 filepath, ··· 291379 292719 }: 291380 292720 mkDerivation { 291381 292721 pname = "haiji"; 291382 - version = "0.3.4.0"; 291383 - sha256 = "1m97lnd993xpxcbm3n2qgqzqjb5j3jvkzkdcb1h9qjd3lr88j1cf"; 292722 + version = "0.4.0.0"; 292723 + sha256 = "1r6bzh95a4qg0waday49qqrm1kmss667hksp0wcl749w5g32jnaq"; 291384 292724 libraryHaskellDepends = [ 291385 292725 aeson 291386 292726 attoparsec ··· 291398 292738 testHaskellDepends = [ 291399 292739 aeson 291400 292740 base 292741 + bytestring 291401 292742 data-default 291402 292743 doctest 291403 292744 filepath ··· 292095 293436 pname = "hakyll"; 292096 293437 version = "4.16.6.0"; 292097 293438 sha256 = "1933k6aiawa0kdws7ajm9picjchnfrkkd0qd8xb9l2yv1fvcywg2"; 292098 - revision = "1"; 292099 - editedCabalFile = "0w6z4dq378aai39n9samlfahqr5s1p0fz1xl6kgfp9z8bvq9daa7"; 293439 + revision = "3"; 293440 + editedCabalFile = "0q2yl6vqf6qqc7azqwsls7b2pm3y42shhdcpyszrpi16zgx9y137"; 292100 293441 isLibrary = true; 292101 293442 isExecutable = true; 292102 293443 enableSeparateDataOutput = true; ··· 293291 294632 bytestring, 293292 294633 deepseq, 293293 294634 QuickCheck, 294635 + tasty, 294636 + tasty-quickcheck, 293294 294637 template-haskell, 293295 - test-framework, 293296 - test-framework-quickcheck2, 293297 294638 }: 293298 294639 mkDerivation { 293299 294640 pname = "half"; 293300 - version = "0.3.2"; 293301 - sha256 = "0f7hgnfy8qpjsjv78gk01di3riwfbrb961msn19qmsplnsgjx68r"; 294641 + version = "0.3.3"; 294642 + sha256 = "00mb2xfz0q8sq8zxqpw3ycp1p8gjhlgc0wxh5xr7kzyn52b08xpl"; 293302 294643 libraryHaskellDepends = [ 293303 294644 base 293304 294645 binary ··· 293310 294651 binary 293311 294652 bytestring 293312 294653 QuickCheck 293313 - test-framework 293314 - test-framework-quickcheck2 294654 + tasty 294655 + tasty-quickcheck 293315 294656 ]; 293316 294657 description = "Half-precision floating-point"; 293317 294658 license = lib.licenses.bsd3; ··· 297629 298970 } 297630 298971 ) { }; 297631 298972 298973 + "harpie_0_1_3_0" = callPackage ( 298974 + { 298975 + mkDerivation, 298976 + adjunctions, 298977 + base, 298978 + distributive, 298979 + doctest-parallel, 298980 + first-class-families, 298981 + prettyprinter, 298982 + QuickCheck, 298983 + quickcheck-instances, 298984 + random, 298985 + vector, 298986 + vector-algorithms, 298987 + }: 298988 + mkDerivation { 298989 + pname = "harpie"; 298990 + version = "0.1.3.0"; 298991 + sha256 = "1agkp62rcgk705hp8hlppfiidv5vsz0ps6pq3pvlnn1g73vv5ivr"; 298992 + isLibrary = true; 298993 + isExecutable = true; 298994 + libraryHaskellDepends = [ 298995 + adjunctions 298996 + base 298997 + distributive 298998 + first-class-families 298999 + prettyprinter 299000 + QuickCheck 299001 + quickcheck-instances 299002 + random 299003 + vector 299004 + vector-algorithms 299005 + ]; 299006 + executableHaskellDepends = [ 299007 + adjunctions 299008 + base 299009 + first-class-families 299010 + ]; 299011 + testHaskellDepends = [ 299012 + base 299013 + doctest-parallel 299014 + ]; 299015 + description = "Haskell array programming"; 299016 + license = lib.licenses.bsd3; 299017 + hydraPlatforms = lib.platforms.none; 299018 + mainProgram = "harpie-bug-issue1"; 299019 + } 299020 + ) { }; 299021 + 297632 299022 "harpie-numhask" = callPackage ( 297633 299023 { 297634 299024 mkDerivation, ··· 298632 300022 }: 298633 300023 mkDerivation { 298634 300024 pname = "hash-string"; 298635 - version = "0.1.0.1"; 298636 - sha256 = "136a5pkygam99fx52r1dhrxydkzk1v83n0ip5iaczdx99cwki0gb"; 300025 + version = "0.1.0.2"; 300026 + sha256 = "0ri03id2jwpsn77mnnvvicx6niy5q5q7mr38r6y64am4j6yfh2q3"; 298637 300027 libraryHaskellDepends = [ 298638 300028 base 298639 300029 bytestring ··· 300562 301952 } 300563 301953 ) { }; 300564 301954 301955 + "haskell-bee" = callPackage ( 301956 + { 301957 + mkDerivation, 301958 + aeson, 301959 + base, 301960 + safe-exceptions, 301961 + stm, 301962 + tasty, 301963 + tasty-quickcheck, 301964 + text, 301965 + unbounded-delays, 301966 + }: 301967 + mkDerivation { 301968 + pname = "haskell-bee"; 301969 + version = "0.1.0.0"; 301970 + sha256 = "1wsdwfqswvq9vbsk8vpdx58bqrznqix2p8d527fwvksvg9rpq5r0"; 301971 + libraryHaskellDepends = [ 301972 + aeson 301973 + base 301974 + safe-exceptions 301975 + stm 301976 + text 301977 + unbounded-delays 301978 + ]; 301979 + testHaskellDepends = [ 301980 + aeson 301981 + base 301982 + tasty 301983 + tasty-quickcheck 301984 + ]; 301985 + description = "A lightweight library for asynchronous job workers with multiple broker backends"; 301986 + license = lib.licenses.agpl3Plus; 301987 + } 301988 + ) { }; 301989 + 301990 + "haskell-bee-pgmq" = callPackage ( 301991 + { 301992 + mkDerivation, 301993 + aeson, 301994 + base, 301995 + bytestring, 301996 + containers, 301997 + deepseq, 301998 + haskell-bee, 301999 + haskell-bee-tests, 302000 + haskell-pgmq, 302001 + hspec, 302002 + mtl, 302003 + postgresql-libpq, 302004 + postgresql-simple, 302005 + random-strings, 302006 + safe, 302007 + safe-exceptions, 302008 + scientific, 302009 + tasty, 302010 + tasty-hspec, 302011 + text, 302012 + time, 302013 + units, 302014 + unix-time, 302015 + }: 302016 + mkDerivation { 302017 + pname = "haskell-bee-pgmq"; 302018 + version = "0.1.0.0"; 302019 + sha256 = "1cf8mc1ddl1vhh7nyjsla5ccymy3963sz2j9l337pvpm492lxf0a"; 302020 + isLibrary = true; 302021 + isExecutable = true; 302022 + libraryHaskellDepends = [ 302023 + aeson 302024 + base 302025 + bytestring 302026 + containers 302027 + deepseq 302028 + haskell-bee 302029 + haskell-pgmq 302030 + postgresql-libpq 302031 + postgresql-simple 302032 + safe 302033 + safe-exceptions 302034 + scientific 302035 + text 302036 + time 302037 + units 302038 + unix-time 302039 + ]; 302040 + executableHaskellDepends = [ 302041 + aeson 302042 + base 302043 + haskell-bee 302044 + haskell-pgmq 302045 + mtl 302046 + postgresql-simple 302047 + text 302048 + ]; 302049 + testHaskellDepends = [ 302050 + aeson 302051 + base 302052 + containers 302053 + haskell-bee 302054 + haskell-bee-tests 302055 + hspec 302056 + postgresql-simple 302057 + random-strings 302058 + tasty 302059 + tasty-hspec 302060 + text 302061 + ]; 302062 + description = "PostgreSQL/PGMQ broker implementation for haskell-bee"; 302063 + license = lib.licenses.agpl3Plus; 302064 + mainProgram = "simple-worker"; 302065 + } 302066 + ) { }; 302067 + 302068 + "haskell-bee-redis" = callPackage ( 302069 + { 302070 + mkDerivation, 302071 + aeson, 302072 + base, 302073 + bytestring, 302074 + containers, 302075 + deepseq, 302076 + haskell-bee, 302077 + haskell-bee-tests, 302078 + hedis, 302079 + hspec, 302080 + random-strings, 302081 + safe, 302082 + safe-exceptions, 302083 + scientific, 302084 + stm, 302085 + tasty, 302086 + tasty-hspec, 302087 + tasty-hunit, 302088 + tasty-quickcheck, 302089 + text, 302090 + time, 302091 + units, 302092 + unix-time, 302093 + }: 302094 + mkDerivation { 302095 + pname = "haskell-bee-redis"; 302096 + version = "0.1.0.0"; 302097 + sha256 = "19qq0gkpqb0ywchsz0z2q5qpvj3f260k1175zkjc49mzwl6q26x4"; 302098 + libraryHaskellDepends = [ 302099 + aeson 302100 + base 302101 + bytestring 302102 + containers 302103 + deepseq 302104 + haskell-bee 302105 + hedis 302106 + safe 302107 + safe-exceptions 302108 + scientific 302109 + stm 302110 + text 302111 + time 302112 + units 302113 + unix-time 302114 + ]; 302115 + testHaskellDepends = [ 302116 + aeson 302117 + base 302118 + containers 302119 + haskell-bee 302120 + haskell-bee-tests 302121 + hedis 302122 + hspec 302123 + random-strings 302124 + stm 302125 + tasty 302126 + tasty-hspec 302127 + tasty-hunit 302128 + tasty-quickcheck 302129 + text 302130 + unix-time 302131 + ]; 302132 + description = "Redis broker implementation for haskell-bee"; 302133 + license = lib.licenses.agpl3Plus; 302134 + } 302135 + ) { }; 302136 + 302137 + "haskell-bee-stm" = callPackage ( 302138 + { 302139 + mkDerivation, 302140 + aeson, 302141 + base, 302142 + bytestring, 302143 + containers, 302144 + deepseq, 302145 + haskell-bee, 302146 + haskell-bee-tests, 302147 + hspec, 302148 + random-strings, 302149 + safe, 302150 + safe-exceptions, 302151 + scientific, 302152 + stm, 302153 + tasty, 302154 + tasty-hspec, 302155 + tasty-hunit, 302156 + tasty-quickcheck, 302157 + text, 302158 + time, 302159 + units, 302160 + unix-time, 302161 + }: 302162 + mkDerivation { 302163 + pname = "haskell-bee-stm"; 302164 + version = "0.1.0.0"; 302165 + sha256 = "1m34642h4nkl03yrvpgrhnprkj09xylg5rfg169gadwk8jm6w0bw"; 302166 + libraryHaskellDepends = [ 302167 + aeson 302168 + base 302169 + bytestring 302170 + containers 302171 + deepseq 302172 + haskell-bee 302173 + safe 302174 + safe-exceptions 302175 + scientific 302176 + stm 302177 + text 302178 + time 302179 + units 302180 + unix-time 302181 + ]; 302182 + testHaskellDepends = [ 302183 + aeson 302184 + base 302185 + containers 302186 + haskell-bee 302187 + haskell-bee-tests 302188 + hspec 302189 + random-strings 302190 + stm 302191 + tasty 302192 + tasty-hspec 302193 + tasty-hunit 302194 + tasty-quickcheck 302195 + text 302196 + unix-time 302197 + ]; 302198 + description = "STM broker implementation for haskell-bee"; 302199 + license = lib.licenses.agpl3Plus; 302200 + } 302201 + ) { }; 302202 + 302203 + "haskell-bee-tests" = callPackage ( 302204 + { 302205 + mkDerivation, 302206 + aeson, 302207 + base, 302208 + containers, 302209 + haskell-bee, 302210 + hedis, 302211 + hspec, 302212 + postgresql-simple, 302213 + random-strings, 302214 + stm, 302215 + tasty, 302216 + tasty-hspec, 302217 + text, 302218 + }: 302219 + mkDerivation { 302220 + pname = "haskell-bee-tests"; 302221 + version = "0.1.0.0"; 302222 + sha256 = "1bcg8c8fm9yaq4k3v8m79qq6miqjgbmc3xbdnr4mn5z8ayi1s2cr"; 302223 + libraryHaskellDepends = [ 302224 + aeson 302225 + base 302226 + containers 302227 + haskell-bee 302228 + hedis 302229 + hspec 302230 + postgresql-simple 302231 + random-strings 302232 + stm 302233 + tasty 302234 + tasty-hspec 302235 + text 302236 + ]; 302237 + description = "Reusable test suite for any haskell-bee Broker implementation"; 302238 + license = lib.licenses.agpl3Plus; 302239 + } 302240 + ) { }; 302241 + 300565 302242 "haskell-bitmex-client" = callPackage ( 300566 302243 { 300567 302244 mkDerivation, ··· 301754 303431 }: 301755 303432 mkDerivation { 301756 303433 pname = "haskell-gi"; 301757 - version = "0.26.15"; 301758 - sha256 = "07lpd31j582czgvrivyh0fp3bbjmhvqicgy47pv2j69x450q2wsa"; 303434 + version = "0.26.16"; 303435 + sha256 = "0v5pjysap2v5a9njc1z9c6by2sv18p9kkqcpzpxwqjs9hh4mxq5q"; 301759 303436 setupHaskellDepends = [ 301760 303437 base 301761 303438 Cabal ··· 301799 303476 inherit (pkgs) gobject-introspection; 301800 303477 }; 301801 303478 303479 + "haskell-gi_0_26_17" = 303480 + callPackage 303481 + ( 303482 + { 303483 + mkDerivation, 303484 + ansi-terminal, 303485 + attoparsec, 303486 + base, 303487 + bytestring, 303488 + Cabal, 303489 + cabal-doctest, 303490 + containers, 303491 + directory, 303492 + doctest, 303493 + filepath, 303494 + glib, 303495 + gobject-introspection, 303496 + haskell-gi-base, 303497 + mtl, 303498 + pretty-show, 303499 + process, 303500 + regex-tdfa, 303501 + safe, 303502 + text, 303503 + transformers, 303504 + xdg-basedir, 303505 + xml-conduit, 303506 + }: 303507 + mkDerivation { 303508 + pname = "haskell-gi"; 303509 + version = "0.26.17"; 303510 + sha256 = "0vg75z5qgf0km59gv6dvpzckyxdli3i5d8lk8xck55smaf9h6f6i"; 303511 + setupHaskellDepends = [ 303512 + base 303513 + Cabal 303514 + cabal-doctest 303515 + ]; 303516 + libraryHaskellDepends = [ 303517 + ansi-terminal 303518 + attoparsec 303519 + base 303520 + bytestring 303521 + Cabal 303522 + containers 303523 + directory 303524 + filepath 303525 + haskell-gi-base 303526 + mtl 303527 + pretty-show 303528 + process 303529 + regex-tdfa 303530 + safe 303531 + text 303532 + transformers 303533 + xdg-basedir 303534 + xml-conduit 303535 + ]; 303536 + libraryPkgconfigDepends = [ 303537 + glib 303538 + gobject-introspection 303539 + ]; 303540 + testHaskellDepends = [ 303541 + base 303542 + doctest 303543 + process 303544 + ]; 303545 + description = "Generate Haskell bindings for GObject Introspection capable libraries"; 303546 + license = lib.licenses.lgpl21Only; 303547 + hydraPlatforms = lib.platforms.none; 303548 + } 303549 + ) 303550 + { 303551 + inherit (pkgs) glib; 303552 + inherit (pkgs) gobject-introspection; 303553 + }; 303554 + 301802 303555 "haskell-gi-base" = callPackage ( 301803 303556 { 301804 303557 mkDerivation, ··· 301806 303559 bytestring, 301807 303560 containers, 301808 303561 glib, 303562 + optics-core, 301809 303563 text, 301810 303564 }: 301811 303565 mkDerivation { 301812 303566 pname = "haskell-gi-base"; 301813 - version = "0.26.8"; 301814 - sha256 = "19sp8yi9inxq7vqw6zpf2rlk56algxajkf8gyl0iqbx95kb4x1bb"; 303567 + version = "0.26.9"; 303568 + sha256 = "1li1q8k5zn7yxqn3rdh5sjkq4lsr9gsbhkvxh6wzca39n37vnnf3"; 301815 303569 libraryHaskellDepends = [ 301816 303570 base 301817 303571 bytestring 301818 303572 containers 303573 + optics-core 301819 303574 text 301820 303575 ]; 301821 303576 libraryPkgconfigDepends = [ glib ]; ··· 301859 303614 hydraPlatforms = lib.platforms.none; 301860 303615 mainProgram = "haskell-go-checkers"; 301861 303616 broken = true; 303617 + } 303618 + ) { }; 303619 + 303620 + "haskell-google-genai-client" = callPackage ( 303621 + { 303622 + mkDerivation, 303623 + aeson, 303624 + base, 303625 + base64-bytestring, 303626 + bytestring, 303627 + case-insensitive, 303628 + containers, 303629 + deepseq, 303630 + exceptions, 303631 + hspec, 303632 + http-api-data, 303633 + http-client, 303634 + http-client-tls, 303635 + http-media, 303636 + http-types, 303637 + iso8601-time, 303638 + microlens, 303639 + monad-logger, 303640 + mtl, 303641 + network, 303642 + QuickCheck, 303643 + random, 303644 + safe-exceptions, 303645 + semigroups, 303646 + text, 303647 + time, 303648 + transformers, 303649 + unordered-containers, 303650 + vector, 303651 + }: 303652 + mkDerivation { 303653 + pname = "haskell-google-genai-client"; 303654 + version = "0.1.0"; 303655 + sha256 = "020qnab47jn1ixmwds8w4nbyzd2j1kpg7ykd71lfc71vnr4mh93h"; 303656 + libraryHaskellDepends = [ 303657 + aeson 303658 + base 303659 + base64-bytestring 303660 + bytestring 303661 + case-insensitive 303662 + containers 303663 + deepseq 303664 + exceptions 303665 + http-api-data 303666 + http-client 303667 + http-client-tls 303668 + http-media 303669 + http-types 303670 + iso8601-time 303671 + microlens 303672 + monad-logger 303673 + mtl 303674 + network 303675 + random 303676 + safe-exceptions 303677 + text 303678 + time 303679 + transformers 303680 + unordered-containers 303681 + vector 303682 + ]; 303683 + testHaskellDepends = [ 303684 + aeson 303685 + base 303686 + bytestring 303687 + containers 303688 + hspec 303689 + iso8601-time 303690 + mtl 303691 + QuickCheck 303692 + semigroups 303693 + text 303694 + time 303695 + transformers 303696 + unordered-containers 303697 + vector 303698 + ]; 303699 + description = "Auto-generated Gemini API Client for Haskell"; 303700 + license = lib.licenses.mit; 301862 303701 } 301863 303702 ) { }; 301864 303703 ··· 302308 304147 pname = "haskell-language-server"; 302309 304148 version = "2.11.0.0"; 302310 304149 sha256 = "1acd42sqa76nkrwkb6jcrimbf8va6ikkynv9ssbbamyy4vmx1aa4"; 304150 + revision = "1"; 304151 + editedCabalFile = "06ah5cdcg52azd0jx7n4n7xwrhphjc2k4k8gqda44m1kiv5z2v18"; 302311 304152 isLibrary = true; 302312 304153 isExecutable = true; 302313 304154 libraryHaskellDepends = [ ··· 303192 305033 } 303193 305034 ) { }; 303194 305035 305036 + "haskell-pgmq" = callPackage ( 305037 + { 305038 + mkDerivation, 305039 + aeson, 305040 + base, 305041 + bytestring, 305042 + containers, 305043 + hspec, 305044 + postgresql-simple, 305045 + random-strings, 305046 + safe, 305047 + stm, 305048 + tasty, 305049 + tasty-hspec, 305050 + text, 305051 + time, 305052 + units, 305053 + }: 305054 + mkDerivation { 305055 + pname = "haskell-pgmq"; 305056 + version = "0.1.0.0"; 305057 + sha256 = "1kslpx1zah97k9z2k967rwkjm01p9c0vz0if4hhpa52rprcadm7k"; 305058 + isLibrary = true; 305059 + isExecutable = true; 305060 + enableSeparateDataOutput = true; 305061 + libraryHaskellDepends = [ 305062 + aeson 305063 + base 305064 + bytestring 305065 + postgresql-simple 305066 + safe 305067 + text 305068 + time 305069 + units 305070 + ]; 305071 + executableHaskellDepends = [ 305072 + base 305073 + postgresql-simple 305074 + ]; 305075 + testHaskellDepends = [ 305076 + aeson 305077 + base 305078 + containers 305079 + hspec 305080 + postgresql-simple 305081 + random-strings 305082 + stm 305083 + tasty 305084 + tasty-hspec 305085 + text 305086 + ]; 305087 + description = "Haskell interface for Tembo's PGMQ PostgreSQL extension"; 305088 + license = lib.licenses.agpl3Plus; 305089 + } 305090 + ) { }; 305091 + 303195 305092 "haskell-platform-test" = callPackage ( 303196 305093 { 303197 305094 mkDerivation, ··· 308120 310017 testToolDepends = [ hspec-discover ]; 308121 310018 description = "Lightweight CLI wallet for Bitcoin and Bitcoin Cash"; 308122 310019 license = lib.licenses.publicDomain; 308123 - hydraPlatforms = lib.platforms.none; 308124 310020 mainProgram = "hw"; 308125 - broken = true; 308126 310021 } 308127 310022 ) { }; 308128 310023 ··· 308646 310541 }: 308647 310542 mkDerivation { 308648 310543 pname = "hasktorch"; 308649 - version = "0.2.1.3"; 308650 - sha256 = "18j3mvbag1anmkc5s8486i1a6am3iljm48aixxf5fi1bg2mkq46k"; 310544 + version = "0.2.1.4"; 310545 + sha256 = "0g5k796s66mz53cabfd0gl099rrjk1pfxc55qfg2j97mn69hgb1q"; 308651 310546 setupHaskellDepends = [ 308652 310547 base 308653 310548 Cabal ··· 311363 313258 }: 311364 313259 mkDerivation { 311365 313260 pname = "hasql-resource-pool"; 311366 - version = "1.9.1.2"; 311367 - sha256 = "1cg1wgrb7xbnqqqzy31y5lskcb66vmsr6ifmv0xi1qy0kb0c2y7i"; 313261 + version = "1.9.1.3"; 313262 + sha256 = "10hgwdpnd82yhsjflbskngwkjmkpp49qrvxspgka24ngp8q08zyz"; 311368 313263 libraryHaskellDepends = [ 311369 313264 base-prelude 311370 313265 clock ··· 313253 315148 pname = "haxr"; 313254 315149 version = "3000.11.5.1"; 313255 315150 sha256 = "1r5ipm1qzlkxk1xc9hv86kli5aa4nw7i9a6n42ixkcspwb8fjhzd"; 315151 + revision = "1"; 315152 + editedCabalFile = "0m9x1cs789qs7k3zc197zri1nbh6g1y05xraq5a1k10s0xs5sjdy"; 313256 315153 libraryHaskellDepends = [ 313257 315154 array 313258 315155 base ··· 313891 315788 } 313892 315789 ) { }; 313893 315790 315791 + "hblosc" = callPackage ( 315792 + { 315793 + mkDerivation, 315794 + base, 315795 + bytestring, 315796 + hspec, 315797 + }: 315798 + mkDerivation { 315799 + pname = "hblosc"; 315800 + version = "0.1.0.2"; 315801 + sha256 = "0xsp5cwj8mqss6rwbm5ndjkzl2yhw7x135s9gvhwm6xj36pz0gnb"; 315802 + libraryHaskellDepends = [ 315803 + base 315804 + bytestring 315805 + ]; 315806 + testHaskellDepends = [ 315807 + base 315808 + bytestring 315809 + hspec 315810 + ]; 315811 + description = "Blosc (numerical compression library) bindings for Haskell"; 315812 + license = lib.licenses.mit; 315813 + hydraPlatforms = lib.platforms.none; 315814 + broken = true; 315815 + } 315816 + ) { }; 315817 + 313894 315818 "hbro" = callPackage ( 313895 315819 { 313896 315820 mkDerivation, ··· 317179 319103 pname = "hedgehog-classes"; 317180 319104 version = "0.2.5.4"; 317181 319105 sha256 = "0z9ik5asddc2pnz430jsi1pyahkh6jy36ng0vwm7ywcq7cvhcvlz"; 317182 - revision = "5"; 317183 - editedCabalFile = "19jxkb9dszkvch4cd30n4nsp36p86xdbgqbliqv836m2qwayjmyp"; 319106 + revision = "6"; 319107 + editedCabalFile = "1gj6lrvy11bxnv26ayg1b98dv44ahwqngi8d5rxw1h1m13a7yzkk"; 317184 319108 libraryHaskellDepends = [ 317185 319109 aeson 317186 319110 base ··· 317230 319154 async, 317231 319155 base, 317232 319156 bytestring, 319157 + containers, 317233 319158 deepseq, 317234 319159 Diff, 317235 319160 directory, 317236 319161 exceptions, 317237 319162 filepath, 319163 + generic-lens, 317238 319164 hedgehog, 317239 319165 http-conduit, 319166 + hw-prelude, 317240 319167 lifted-async, 317241 319168 lifted-base, 319169 + microlens, 317242 319170 mmorph, 317243 319171 monad-control, 317244 319172 mtl, 317245 319173 network, 317246 319174 process, 317247 319175 resourcet, 317248 - retry, 317249 319176 stm, 317250 319177 tar, 317251 319178 tasty, ··· 317262 319189 }: 317263 319190 mkDerivation { 317264 319191 pname = "hedgehog-extras"; 317265 - version = "0.7.0.0"; 317266 - sha256 = "0dhkhai2q831fb8z9cyv065gdf0468x0sbns1np74v8qnzwbhgav"; 317267 - revision = "1"; 317268 - editedCabalFile = "1f8xc2dr158c3nppj4rny611vfli74fpggnx1s75ln846xq2yzkj"; 319192 + version = "0.9.0.0"; 319193 + sha256 = "0l067gvm7vvhr5jrcys9676kfhdvaivbwiqh85n0zlcnkf3mjff0"; 317269 319194 libraryHaskellDepends = [ 317270 319195 aeson 317271 319196 aeson-pretty 317272 319197 async 317273 319198 base 317274 319199 bytestring 319200 + containers 317275 319201 deepseq 317276 319202 Diff 317277 319203 directory 317278 319204 exceptions 317279 319205 filepath 319206 + generic-lens 317280 319207 hedgehog 317281 319208 http-conduit 319209 + hw-prelude 317282 319210 lifted-async 317283 319211 lifted-base 319212 + microlens 317284 319213 mmorph 317285 319214 monad-control 317286 319215 mtl 317287 319216 network 317288 319217 process 317289 319218 resourcet 317290 - retry 317291 319219 stm 317292 319220 tar 319221 + tasty 319222 + tasty-discover 319223 + tasty-hedgehog 317293 319224 temporary 317294 319225 text 317295 319226 time ··· 317302 319233 testHaskellDepends = [ 317303 319234 base 317304 319235 hedgehog 319236 + lifted-base 317305 319237 network 317306 319238 process 317307 319239 resourcet 317308 319240 tasty 319241 + tasty-discover 317309 319242 tasty-hedgehog 317310 319243 time 317311 319244 transformers ··· 317313 319246 testToolDepends = [ tasty-discover ]; 317314 319247 description = "Supplemental library for hedgehog"; 317315 319248 license = lib.licenses.asl20; 319249 + hydraPlatforms = lib.platforms.none; 319250 + broken = true; 317316 319251 } 317317 319252 ) { }; 317318 319253 ··· 317329 319264 pname = "hedgehog-fakedata"; 317330 319265 version = "0.0.1.5"; 317331 319266 sha256 = "00k26d83v0646klrg0k3cf94r4fnnx3ykxv7i8shjjgbkbzlzz78"; 317332 - revision = "2"; 317333 - editedCabalFile = "1b8v4j8zkvdfx786nfxxdkxj57b2qh4p9h16wiy0kc3l1dsj6llm"; 319267 + revision = "3"; 319268 + editedCabalFile = "1gfknhs1lslw7s00ciqn14r9b1lpph0827hhbb6bg9r52lylv9g3"; 317334 319269 libraryHaskellDepends = [ 317335 319270 base 317336 319271 fakedata ··· 318591 320526 pname = "heist"; 318592 320527 version = "1.1.1.2"; 318593 320528 sha256 = "1377740si611j0szp64axy0xj1fi2a6w8i9s3xij89h34m7rb3rz"; 318594 - revision = "4"; 318595 - editedCabalFile = "112bhvishyhknb7gzii56sqaz5gxzb1png2k73rsnfmranvzl3ka"; 320529 + revision = "5"; 320530 + editedCabalFile = "0rx4cx09zlg9kdl2sn5fn2ka7a7c26xrvbhkp60pzdnj1hdnsbqi"; 318596 320531 libraryHaskellDepends = [ 318597 320532 aeson 318598 320533 attoparsec ··· 319890 321825 } 319891 321826 ) { }; 319892 321827 321828 + "heph-sparse-set" = callPackage ( 321829 + { 321830 + mkDerivation, 321831 + base, 321832 + containers, 321833 + criterion, 321834 + deepseq, 321835 + hedgehog, 321836 + mtl, 321837 + nothunks, 321838 + primitive, 321839 + random, 321840 + tasty, 321841 + tasty-discover, 321842 + tasty-hedgehog, 321843 + tasty-hunit, 321844 + vector, 321845 + }: 321846 + mkDerivation { 321847 + pname = "heph-sparse-set"; 321848 + version = "0.1.0.0"; 321849 + sha256 = "0w1h6xa62xp1bwpz4czdr6vzml311zq76i1swq6iqpw2wch0dbvn"; 321850 + libraryHaskellDepends = [ 321851 + base 321852 + deepseq 321853 + primitive 321854 + vector 321855 + ]; 321856 + testHaskellDepends = [ 321857 + base 321858 + containers 321859 + deepseq 321860 + hedgehog 321861 + nothunks 321862 + primitive 321863 + tasty 321864 + tasty-discover 321865 + tasty-hedgehog 321866 + tasty-hunit 321867 + vector 321868 + ]; 321869 + testToolDepends = [ tasty-discover ]; 321870 + benchmarkHaskellDepends = [ 321871 + base 321872 + containers 321873 + criterion 321874 + deepseq 321875 + mtl 321876 + primitive 321877 + random 321878 + vector 321879 + ]; 321880 + description = "Really fast mutable sparse sets"; 321881 + license = lib.licenses.bsd3; 321882 + } 321883 + ) { }; 321884 + 319893 321885 "heptapod" = callPackage ( 319894 321886 { 319895 321887 mkDerivation, ··· 320995 322987 license = lib.licenses.bsd3; 320996 322988 hydraPlatforms = lib.platforms.none; 320997 322989 broken = true; 322990 + } 322991 + ) { }; 322992 + 322993 + "heredocs-r2" = callPackage ( 322994 + { 322995 + mkDerivation, 322996 + base, 322997 + bytestring, 322998 + hspec, 322999 + parsec, 323000 + template-haskell, 323001 + text, 323002 + }: 323003 + mkDerivation { 323004 + pname = "heredocs-r2"; 323005 + version = "0.1.0.2"; 323006 + sha256 = "1dzsgblbn4hijd6hgrwc951h1v6fjbg7gjbl8l3ihy79jm75ifbx"; 323007 + libraryHaskellDepends = [ 323008 + base 323009 + parsec 323010 + template-haskell 323011 + ]; 323012 + testHaskellDepends = [ 323013 + base 323014 + bytestring 323015 + hspec 323016 + text 323017 + ]; 323018 + description = "Heredocument on Haskell"; 323019 + license = lib.licenses.bsd3; 320998 323020 } 320999 323021 ) { }; 321000 323022 ··· 325473 327495 } 325474 327496 ) { }; 325475 327497 327498 + "hiedb_0_7_0_0" = callPackage ( 327499 + { 327500 + mkDerivation, 327501 + algebraic-graphs, 327502 + ansi-terminal, 327503 + array, 327504 + base, 327505 + bytestring, 327506 + containers, 327507 + directory, 327508 + extra, 327509 + filepath, 327510 + ghc, 327511 + ghc-paths, 327512 + hie-compat, 327513 + hspec, 327514 + lucid, 327515 + mtl, 327516 + optparse-applicative, 327517 + process, 327518 + sqlite-simple, 327519 + temporary, 327520 + terminal-size, 327521 + text, 327522 + }: 327523 + mkDerivation { 327524 + pname = "hiedb"; 327525 + version = "0.7.0.0"; 327526 + sha256 = "0mhajz4wlgdzg079r9dcrhkl6dx5fdwq2x1c892frq0gqd18k5ln"; 327527 + isLibrary = true; 327528 + isExecutable = true; 327529 + libraryHaskellDepends = [ 327530 + algebraic-graphs 327531 + ansi-terminal 327532 + array 327533 + base 327534 + bytestring 327535 + containers 327536 + directory 327537 + extra 327538 + filepath 327539 + ghc 327540 + hie-compat 327541 + lucid 327542 + mtl 327543 + optparse-applicative 327544 + sqlite-simple 327545 + terminal-size 327546 + text 327547 + ]; 327548 + executableHaskellDepends = [ 327549 + base 327550 + ghc-paths 327551 + ]; 327552 + testHaskellDepends = [ 327553 + algebraic-graphs 327554 + base 327555 + directory 327556 + filepath 327557 + ghc-paths 327558 + hspec 327559 + process 327560 + temporary 327561 + ]; 327562 + description = "Generates a references DB from .hie files"; 327563 + license = lib.licenses.bsd3; 327564 + hydraPlatforms = lib.platforms.none; 327565 + mainProgram = "hiedb"; 327566 + } 327567 + ) { }; 327568 + 325476 327569 "hiedb-plugin" = callPackage ( 325477 327570 { 325478 327571 mkDerivation, ··· 329806 331899 } 329807 331900 ) { }; 329808 331901 329809 - "hledger_1_42_2" = callPackage ( 331902 + "hledger_1_43_2" = callPackage ( 329810 331903 { 329811 331904 mkDerivation, 329812 331905 aeson, ··· 329825 331918 hashable, 329826 331919 haskeline, 329827 331920 hledger-lib, 331921 + http-client, 331922 + http-types, 329828 331923 lucid, 329829 331924 math-functions, 329830 331925 megaparsec, ··· 329833 331928 mtl, 329834 331929 process, 329835 331930 regex-tdfa, 331931 + req, 329836 331932 safe, 329837 331933 shakespeare, 329838 331934 split, ··· 329851 331947 }: 329852 331948 mkDerivation { 329853 331949 pname = "hledger"; 329854 - version = "1.42.2"; 329855 - sha256 = "0c6g90xdwavp23azv4b1k9sn309j96150adc5ihm4lhijvldphcr"; 331950 + version = "1.43.2"; 331951 + sha256 = "043gw3amc29fbjxlzyc4m97bw5i5462352lmk61adlxcd12l47i1"; 329856 331952 isLibrary = true; 329857 331953 isExecutable = true; 329858 331954 libraryHaskellDepends = [ ··· 329872 331968 hashable 329873 331969 haskeline 329874 331970 hledger-lib 331971 + http-client 331972 + http-types 329875 331973 lucid 329876 331974 math-functions 329877 331975 megaparsec ··· 329880 331978 mtl 329881 331979 process 329882 331980 regex-tdfa 331981 + req 329883 331982 safe 329884 331983 shakespeare 329885 331984 split ··· 329911 332010 githash 329912 332011 haskeline 329913 332012 hledger-lib 332013 + http-client 332014 + http-types 329914 332015 math-functions 329915 332016 megaparsec 329916 332017 microlens 329917 332018 mtl 329918 332019 process 329919 332020 regex-tdfa 332021 + req 329920 332022 safe 329921 332023 shakespeare 329922 332024 split ··· 329948 332050 githash 329949 332051 haskeline 329950 332052 hledger-lib 332053 + http-client 332054 + http-types 329951 332055 math-functions 329952 332056 megaparsec 329953 332057 microlens 329954 332058 mtl 329955 332059 process 329956 332060 regex-tdfa 332061 + req 329957 332062 safe 329958 332063 shakespeare 329959 332064 split ··· 329971 332076 wizards 329972 332077 ]; 329973 332078 description = "Command-line interface for the hledger accounting system"; 329974 - license = lib.licenses.gpl3Only; 332079 + license = lib.licenses.gpl3Plus; 329975 332080 hydraPlatforms = lib.platforms.none; 329976 332081 mainProgram = "hledger"; 329977 332082 maintainers = [ ··· 330208 332313 pname = "hledger-iadd"; 330209 332314 version = "1.3.21"; 330210 332315 sha256 = "00x0vbfp08kqs1nbknndk9h56hcidf6xnrk0ldz45dvjrmgcv3w2"; 330211 - revision = "8"; 330212 - editedCabalFile = "166vkhghms83x0c03m6kg6v5fx3x8wyr445zjy6vxfsbni6ks4h7"; 332316 + revision = "9"; 332317 + editedCabalFile = "0fhkk8gsqiv7mxjk8jlz43i2h0cqampr8w5f1lxcnfz9g4k0bv5l"; 330213 332318 isLibrary = true; 330214 332319 isExecutable = true; 330215 332320 libraryHaskellDepends = [ ··· 330289 332394 pname = "hledger-interest"; 330290 332395 version = "1.6.7"; 330291 332396 sha256 = "1jirygghw82zi8z160j45qzfcj1l89vckqr7hrv78h3f3pim6np4"; 330292 - revision = "1"; 330293 - editedCabalFile = "1hl3vgwhlk15xrhafmp5y017cm4y7zkn2n8l9frsc0xz67h9571z"; 332397 + revision = "2"; 332398 + editedCabalFile = "1inrlrz2rgk99sspm33r7rnfiycx8pllsh95ais9x05fp88cxhcf"; 330294 332399 isLibrary = false; 330295 332400 isExecutable = true; 330296 332401 executableHaskellDepends = [ ··· 330507 332612 } 330508 332613 ) { }; 330509 332614 330510 - "hledger-lib_1_42_2" = callPackage ( 332615 + "hledger-lib_1_43_2" = callPackage ( 330511 332616 { 330512 332617 mkDerivation, 330513 332618 aeson, ··· 330515 332620 ansi-terminal, 330516 332621 array, 330517 332622 base, 330518 - base-compat, 330519 332623 blaze-html, 330520 332624 blaze-markup, 330521 332625 bytestring, ··· 330562 332666 }: 330563 332667 mkDerivation { 330564 332668 pname = "hledger-lib"; 330565 - version = "1.42.2"; 330566 - sha256 = "0m0z70m4bm7bhrhjczdhwgz8afvjc1lrxwdr8kzgg0yyq2xrmxxx"; 332669 + version = "1.43.2"; 332670 + sha256 = "18037qwz7d0h4i86ac0w3hkrvx22vdxf04fjbg0qjlizgb3dlazf"; 330567 332671 libraryHaskellDepends = [ 330568 332672 aeson 330569 332673 aeson-pretty 330570 332674 ansi-terminal 330571 332675 array 330572 332676 base 330573 - base-compat 330574 332677 blaze-html 330575 332678 blaze-markup 330576 332679 bytestring ··· 330620 332723 ansi-terminal 330621 332724 array 330622 332725 base 330623 - base-compat 330624 332726 blaze-html 330625 332727 blaze-markup 330626 332728 bytestring ··· 330666 332768 utf8-string 330667 332769 ]; 330668 332770 description = "A library providing the core functionality of hledger"; 330669 - license = lib.licenses.gpl3Only; 332771 + license = lib.licenses.gpl3Plus; 330670 332772 hydraPlatforms = lib.platforms.none; 330671 332773 } 330672 332774 ) { }; ··· 330875 332977 } 330876 332978 ) { }; 330877 332979 330878 - "hledger-ui_1_42_2" = callPackage ( 332980 + "hledger-ui_1_43_2" = callPackage ( 330879 332981 { 330880 332982 mkDerivation, 330881 332983 ansi-terminal, ··· 330911 333013 }: 330912 333014 mkDerivation { 330913 333015 pname = "hledger-ui"; 330914 - version = "1.42.2"; 330915 - sha256 = "17jmjphvrxcmg69b3p82sapf8x14w5xw10crbpcs6ws0wmlmmq71"; 330916 - revision = "1"; 330917 - editedCabalFile = "0lh28f9pxx6zxn91wna6ywj50igraqb6dyg797qqm2q3zz0kapif"; 333016 + version = "1.43.2"; 333017 + sha256 = "1xz5ndkg5mci689n82dnmwhhr8a08qw12czsf4b82ha7zlmbkmnv"; 330918 333018 isLibrary = true; 330919 333019 isExecutable = true; 330920 333020 libraryHaskellDepends = [ ··· 330951 333051 ]; 330952 333052 executableHaskellDepends = [ base ]; 330953 333053 description = "Terminal interface for the hledger accounting system"; 330954 - license = lib.licenses.gpl3Only; 333054 + license = lib.licenses.gpl3Plus; 330955 333055 hydraPlatforms = lib.platforms.none; 330956 333056 mainProgram = "hledger-ui"; 330957 333057 maintainers = [ lib.maintainers.maralorn ]; ··· 331113 333213 } 331114 333214 ) { }; 331115 333215 331116 - "hledger-web_1_42_2" = callPackage ( 333216 + "hledger-web_1_43_2" = callPackage ( 331117 333217 { 331118 333218 mkDerivation, 331119 333219 aeson, 331120 333220 base, 331121 - base-compat, 331122 333221 base64, 331123 333222 blaze-html, 331124 333223 blaze-markup, ··· 331133 333232 Decimal, 331134 333233 directory, 331135 333234 extra, 333235 + file-embed, 331136 333236 filepath, 331137 333237 githash, 331138 333238 hjsmin, ··· 331168 333268 }: 331169 333269 mkDerivation { 331170 333270 pname = "hledger-web"; 331171 - version = "1.42.2"; 331172 - sha256 = "0ciz1y97aw7493avj8i9hnzjinc1fwj20wns036qa6yxglsj0qkm"; 333271 + version = "1.43.2"; 333272 + sha256 = "0d4sv9k3m7s0764lbq2l8w9p2p47cby177l0avl5w3fa9y8d0gyd"; 331173 333273 isLibrary = true; 331174 333274 isExecutable = true; 331175 333275 libraryHaskellDepends = [ 331176 333276 aeson 331177 333277 base 331178 - base-compat 331179 333278 base64 331180 333279 blaze-html 331181 333280 blaze-markup ··· 331190 333289 Decimal 331191 333290 directory 331192 333291 extra 333292 + file-embed 331193 333293 filepath 331194 333294 githash 331195 333295 hjsmin ··· 331223 333323 yesod-static 331224 333324 yesod-test 331225 333325 ]; 331226 - executableHaskellDepends = [ 331227 - base 331228 - base-compat 331229 - ]; 331230 - testHaskellDepends = [ 331231 - base 331232 - base-compat 331233 - ]; 333326 + executableHaskellDepends = [ base ]; 333327 + testHaskellDepends = [ base ]; 331234 333328 description = "Web user interface for the hledger accounting system"; 331235 - license = lib.licenses.gpl3Only; 333329 + license = lib.licenses.gpl3Plus; 331236 333330 hydraPlatforms = lib.platforms.none; 331237 333331 mainProgram = "hledger-web"; 331238 333332 maintainers = [ lib.maintainers.maralorn ]; ··· 337405 339499 }: 337406 339500 mkDerivation { 337407 339501 pname = "hoist-error"; 337408 - version = "0.3.0.0"; 337409 - sha256 = "160967zsp8rzsvs12crsxh3854lnhxiidv8adixb4nf9hxvdnka6"; 339502 + version = "0.3.1.0"; 339503 + sha256 = "12hq6xz6jrsjd6nc03iv033abx73m1b2baszlk6b7k6r850fw4q5"; 337410 339504 libraryHaskellDepends = [ 337411 339505 base 337412 339506 mtl ··· 339985 342079 pname = "horizontal-rule"; 339986 342080 version = "0.7.0.0"; 339987 342081 sha256 = "0s4hf7frj1gc41v83qk8fgdfn49msmvhcfw6vjklx6w7b6pkfx9x"; 339988 - revision = "1"; 339989 - editedCabalFile = "1jb71y6mxkrcnps1jdh6rkkrznhzcsyl8c7s565xjalabql56nkq"; 342082 + revision = "2"; 342083 + editedCabalFile = "02cql9yvsvbi6xf7kplidmxay7n70lxb1z2499vngn7197b6d5kh"; 339990 342084 isLibrary = true; 339991 342085 isExecutable = true; 339992 342086 libraryHaskellDepends = [ ··· 341037 343131 } 341038 343132 ) { }; 341039 343133 341040 - "hpack_0_38_0" = callPackage ( 341041 - { 341042 - mkDerivation, 341043 - aeson, 341044 - base, 341045 - bifunctors, 341046 - bytestring, 341047 - Cabal, 341048 - containers, 341049 - crypton, 341050 - deepseq, 341051 - directory, 341052 - filepath, 341053 - Glob, 341054 - hspec, 341055 - hspec-discover, 341056 - http-client, 341057 - http-client-tls, 341058 - http-types, 341059 - HUnit, 341060 - infer-license, 341061 - interpolate, 341062 - mockery, 341063 - mtl, 341064 - pretty, 341065 - QuickCheck, 341066 - scientific, 341067 - template-haskell, 341068 - temporary, 341069 - text, 341070 - transformers, 341071 - unordered-containers, 341072 - vector, 341073 - yaml, 341074 - }: 341075 - mkDerivation { 341076 - pname = "hpack"; 341077 - version = "0.38.0"; 341078 - sha256 = "0iysz3xnxhjj49hjz9gv56awaldamrbidkiw0xd873g5yfyhyljp"; 341079 - revision = "1"; 341080 - editedCabalFile = "02pqfqqijvr2z3ki2rnb9nlavhzm59qbbvhq89bfdvhcicfgmmf4"; 341081 - isLibrary = true; 341082 - isExecutable = true; 341083 - libraryHaskellDepends = [ 341084 - aeson 341085 - base 341086 - bifunctors 341087 - bytestring 341088 - Cabal 341089 - containers 341090 - crypton 341091 - deepseq 341092 - directory 341093 - filepath 341094 - Glob 341095 - http-client 341096 - http-client-tls 341097 - http-types 341098 - infer-license 341099 - mtl 341100 - pretty 341101 - scientific 341102 - text 341103 - transformers 341104 - unordered-containers 341105 - vector 341106 - yaml 341107 - ]; 341108 - executableHaskellDepends = [ 341109 - aeson 341110 - base 341111 - bifunctors 341112 - bytestring 341113 - Cabal 341114 - containers 341115 - crypton 341116 - deepseq 341117 - directory 341118 - filepath 341119 - Glob 341120 - http-client 341121 - http-client-tls 341122 - http-types 341123 - infer-license 341124 - mtl 341125 - pretty 341126 - scientific 341127 - text 341128 - transformers 341129 - unordered-containers 341130 - vector 341131 - yaml 341132 - ]; 341133 - testHaskellDepends = [ 341134 - aeson 341135 - base 341136 - bifunctors 341137 - bytestring 341138 - Cabal 341139 - containers 341140 - crypton 341141 - deepseq 341142 - directory 341143 - filepath 341144 - Glob 341145 - hspec 341146 - http-client 341147 - http-client-tls 341148 - http-types 341149 - HUnit 341150 - infer-license 341151 - interpolate 341152 - mockery 341153 - mtl 341154 - pretty 341155 - QuickCheck 341156 - scientific 341157 - template-haskell 341158 - temporary 341159 - text 341160 - transformers 341161 - unordered-containers 341162 - vector 341163 - yaml 341164 - ]; 341165 - testToolDepends = [ hspec-discover ]; 341166 - description = "A modern format for Haskell packages"; 341167 - license = lib.licenses.mit; 341168 - hydraPlatforms = lib.platforms.none; 341169 - mainProgram = "hpack"; 341170 - } 341171 - ) { }; 341172 - 341173 343134 "hpack_0_38_1" = callPackage ( 341174 343135 { 341175 343136 mkDerivation, ··· 342870 344831 } 342871 344832 ) { }; 342872 344833 342873 - "hpqtypes-extras_1_17_0_1" = callPackage ( 344834 + "hpqtypes-extras_1_18_0_0" = callPackage ( 342874 344835 { 342875 344836 mkDerivation, 342876 344837 base, ··· 342894 344855 }: 342895 344856 mkDerivation { 342896 344857 pname = "hpqtypes-extras"; 342897 - version = "1.17.0.1"; 342898 - sha256 = "1f2ipf4hwp3iqfb79bbx8h97l1cy8vyc1w5h0q1fvg2yvxl52szp"; 344858 + version = "1.18.0.0"; 344859 + sha256 = "1vqyb1izw6ascmkkqkm33iahydrabpb7rq2r3qkhxkjbhrgfk5j5"; 342899 344860 libraryHaskellDepends = [ 342900 344861 base 342901 344862 base16-bytestring ··· 343609 345570 ]; 343610 345571 description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; 343611 345572 license = "LGPL"; 345573 + } 345574 + ) { }; 345575 + 345576 + "hquantlib-time_0_1_2" = callPackage ( 345577 + { 345578 + mkDerivation, 345579 + base, 345580 + time, 345581 + }: 345582 + mkDerivation { 345583 + pname = "hquantlib-time"; 345584 + version = "0.1.2"; 345585 + sha256 = "0i0klg4l4vipw8802ghb2ddd1fpn7wrg027pqfh1yf6x1m1r2k8z"; 345586 + libraryHaskellDepends = [ 345587 + base 345588 + time 345589 + ]; 345590 + description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; 345591 + license = lib.licenses.lgpl3Plus; 345592 + hydraPlatforms = lib.platforms.none; 343612 345593 } 343613 345594 ) { }; 343614 345595 ··· 346712 348693 base, 346713 348694 extra, 346714 348695 ghc-events, 348696 + machines, 346715 348697 optparse-applicative, 346716 348698 text, 346717 348699 vector, 346718 348700 }: 346719 348701 mkDerivation { 346720 348702 pname = "hs-speedscope"; 346721 - version = "0.2.1"; 346722 - sha256 = "1qzmcn718mbg5pckvbcw2n36srmbixkyp45hrkdcdnqcsvf5agln"; 348703 + version = "0.3.0"; 348704 + sha256 = "089mg3q9f6pkvkx4zxgnv69hyzs06cr4ljkaij5kzgq35i12l4x3"; 346723 348705 isLibrary = true; 346724 348706 isExecutable = true; 346725 348707 libraryHaskellDepends = [ ··· 346727 348709 base 346728 348710 extra 346729 348711 ghc-events 348712 + machines 346730 348713 optparse-applicative 346731 348714 text 346732 348715 vector ··· 346734 348717 executableHaskellDepends = [ base ]; 346735 348718 description = "Convert an eventlog into the speedscope json format"; 346736 348719 license = lib.licenses.bsd3; 346737 - hydraPlatforms = lib.platforms.none; 346738 348720 mainProgram = "hs-speedscope"; 346739 - broken = true; 346740 348721 } 346741 348722 ) { }; 346742 348723 ··· 350604 352585 cmdargs, 350605 352586 directory, 350606 352587 filepath, 350607 - filepath-bytestring, 350608 352588 libssh2, 350609 352589 mtl, 350610 352590 tasty, ··· 350617 352597 }: 350618 352598 mkDerivation { 350619 352599 pname = "hsftp"; 350620 - version = "1.3.1"; 350621 - sha256 = "0027bmn11fl3lbyd4aw77w5b4xdf53izpxnnpp1qnwpxd8j92w82"; 352600 + version = "1.4.0"; 352601 + sha256 = "01fzgrk9w6xy7wxkpg2znw5g2wkqrcz6vj1f0pdffvg0bslfn4g0"; 350622 352602 isLibrary = true; 350623 352603 isExecutable = true; 350624 352604 libraryHaskellDepends = [ ··· 350628 352608 cmdargs 350629 352609 directory 350630 352610 filepath 350631 - filepath-bytestring 350632 352611 libssh2 350633 352612 mtl 350634 352613 time ··· 350641 352620 cmdargs 350642 352621 directory 350643 352622 filepath 350644 - filepath-bytestring 350645 352623 libssh2 350646 352624 mtl 350647 352625 time ··· 350654 352632 cmdargs 350655 352633 directory 350656 352634 filepath 350657 - filepath-bytestring 350658 352635 libssh2 350659 352636 mtl 350660 352637 tasty ··· 351568 353545 } 351569 353546 ) { }; 351570 353547 353548 + "hslua_2_4_0" = callPackage ( 353549 + { 353550 + mkDerivation, 353551 + base, 353552 + bytestring, 353553 + exceptions, 353554 + hslua-aeson, 353555 + hslua-classes, 353556 + hslua-core, 353557 + hslua-marshalling, 353558 + hslua-objectorientation, 353559 + hslua-packaging, 353560 + hslua-typing, 353561 + tasty, 353562 + tasty-hslua, 353563 + tasty-hunit, 353564 + text, 353565 + }: 353566 + mkDerivation { 353567 + pname = "hslua"; 353568 + version = "2.4.0"; 353569 + sha256 = "093cjgrzxyvd7kg7ap5bszbfpgzcggwsnypm2q2ij6hyqz8x8gqk"; 353570 + isLibrary = true; 353571 + isExecutable = true; 353572 + libraryHaskellDepends = [ 353573 + base 353574 + hslua-aeson 353575 + hslua-classes 353576 + hslua-core 353577 + hslua-marshalling 353578 + hslua-objectorientation 353579 + hslua-packaging 353580 + hslua-typing 353581 + ]; 353582 + testHaskellDepends = [ 353583 + base 353584 + bytestring 353585 + exceptions 353586 + hslua-core 353587 + tasty 353588 + tasty-hslua 353589 + tasty-hunit 353590 + text 353591 + ]; 353592 + description = "Bindings to Lua, an embeddable scripting language"; 353593 + license = lib.licenses.mit; 353594 + hydraPlatforms = lib.platforms.none; 353595 + } 353596 + ) { }; 353597 + 351571 353598 "hslua-aeson" = callPackage ( 351572 353599 { 351573 353600 mkDerivation, ··· 351881 353908 }: 351882 353909 mkDerivation { 351883 353910 pname = "hslua-module-doclayout"; 351884 - version = "1.2.0"; 351885 - sha256 = "1x3znkdz1l8p8gsvazz85936p107xscsaah1ac3padyiswhair1j"; 353911 + version = "1.2.0.1"; 353912 + sha256 = "139l4sh9pllm0zjgv3w7scbpd0cgn23r95fdlchavsdfwkpvcx17"; 351886 353913 libraryHaskellDepends = [ 351887 353914 base 351888 353915 doclayout ··· 351989 354016 } 351990 354017 ) { }; 351991 354018 354019 + "hslua-module-system_1_2_0" = callPackage ( 354020 + { 354021 + mkDerivation, 354022 + base, 354023 + bytestring, 354024 + directory, 354025 + exceptions, 354026 + hslua-core, 354027 + hslua-marshalling, 354028 + hslua-packaging, 354029 + process, 354030 + tasty, 354031 + tasty-hunit, 354032 + tasty-lua, 354033 + temporary, 354034 + text, 354035 + time, 354036 + }: 354037 + mkDerivation { 354038 + pname = "hslua-module-system"; 354039 + version = "1.2.0"; 354040 + sha256 = "0wbbz0h33wrhdpxz40gqgijkra19jg0zyy4snmj75qxcq2cc9dw2"; 354041 + libraryHaskellDepends = [ 354042 + base 354043 + bytestring 354044 + directory 354045 + exceptions 354046 + hslua-core 354047 + hslua-marshalling 354048 + hslua-packaging 354049 + process 354050 + temporary 354051 + text 354052 + time 354053 + ]; 354054 + testHaskellDepends = [ 354055 + base 354056 + hslua-core 354057 + hslua-packaging 354058 + tasty 354059 + tasty-hunit 354060 + tasty-lua 354061 + ]; 354062 + description = "Lua module wrapper around Haskell's System module"; 354063 + license = lib.licenses.mit; 354064 + hydraPlatforms = lib.platforms.none; 354065 + } 354066 + ) { }; 354067 + 351992 354068 "hslua-module-text" = callPackage ( 351993 354069 { 351994 354070 mkDerivation, ··· 352071 354147 { 352072 354148 mkDerivation, 352073 354149 base, 352074 - bytestring, 352075 - filepath, 352076 354150 hslua-core, 352077 354151 hslua-list, 352078 354152 hslua-marshalling, ··· 352088 354162 }: 352089 354163 mkDerivation { 352090 354164 pname = "hslua-module-zip"; 352091 - version = "1.1.3"; 352092 - sha256 = "1fws5jwf1zwqilgm05y28ywgxavygnjpdlj43nhfg8cmng1p0kyq"; 352093 - revision = "1"; 352094 - editedCabalFile = "1ml14hycwh4wg8351b8dq94qyppkzhw8jk0b0dgahqvy7p5w86y3"; 354165 + version = "1.1.4"; 354166 + sha256 = "1ij2rmy8m4pw7k7w5vvb3g934kms60vhzhhp8kryknbi6bsg8lsy"; 352095 354167 libraryHaskellDepends = [ 352096 354168 base 352097 - bytestring 352098 - filepath 352099 354169 hslua-core 352100 354170 hslua-list 352101 354171 hslua-marshalling ··· 352107 354177 ]; 352108 354178 testHaskellDepends = [ 352109 354179 base 352110 - bytestring 352111 - filepath 352112 354180 hslua-core 352113 - hslua-list 352114 - hslua-marshalling 352115 354181 hslua-module-system 352116 354182 hslua-packaging 352117 - hslua-typing 352118 354183 tasty 352119 354184 tasty-hunit 352120 354185 tasty-lua 352121 - text 352122 - time 352123 - zip-archive 352124 354186 ]; 352125 354187 description = "Lua module to work with file zips"; 352126 354188 license = lib.licenses.mit; ··· 352185 354247 } 352186 354248 ) { }; 352187 354249 354250 + "hslua-objectorientation_2_4_0" = callPackage ( 354251 + { 354252 + mkDerivation, 354253 + base, 354254 + bytestring, 354255 + containers, 354256 + hslua-core, 354257 + hslua-marshalling, 354258 + hslua-typing, 354259 + tasty, 354260 + tasty-hslua, 354261 + text, 354262 + }: 354263 + mkDerivation { 354264 + pname = "hslua-objectorientation"; 354265 + version = "2.4.0"; 354266 + sha256 = "0gm7l5gqbxrvniivz82wl9rmwgmrg2swji3q0wk43s2xxhajbihs"; 354267 + libraryHaskellDepends = [ 354268 + base 354269 + containers 354270 + hslua-core 354271 + hslua-marshalling 354272 + hslua-typing 354273 + text 354274 + ]; 354275 + testHaskellDepends = [ 354276 + base 354277 + bytestring 354278 + hslua-core 354279 + hslua-marshalling 354280 + hslua-typing 354281 + tasty 354282 + tasty-hslua 354283 + ]; 354284 + description = "Object orientation tools for HsLua"; 354285 + license = lib.licenses.mit; 354286 + hydraPlatforms = lib.platforms.none; 354287 + } 354288 + ) { }; 354289 + 352188 354290 "hslua-packaging" = callPackage ( 352189 354291 { 352190 354292 mkDerivation, ··· 352230 354332 ]; 352231 354333 description = "Utilities to build Lua modules"; 352232 354334 license = lib.licenses.mit; 354335 + } 354336 + ) { }; 354337 + 354338 + "hslua-packaging_2_3_2" = callPackage ( 354339 + { 354340 + mkDerivation, 354341 + base, 354342 + bytestring, 354343 + containers, 354344 + hslua-core, 354345 + hslua-marshalling, 354346 + hslua-objectorientation, 354347 + hslua-typing, 354348 + tasty, 354349 + tasty-hslua, 354350 + tasty-hunit, 354351 + text, 354352 + }: 354353 + mkDerivation { 354354 + pname = "hslua-packaging"; 354355 + version = "2.3.2"; 354356 + sha256 = "1w7929fr6pkwm9x25ags1nk5xrfq9kn3g113wi5c02a8m8zqwh8s"; 354357 + libraryHaskellDepends = [ 354358 + base 354359 + containers 354360 + hslua-core 354361 + hslua-marshalling 354362 + hslua-objectorientation 354363 + hslua-typing 354364 + text 354365 + ]; 354366 + testHaskellDepends = [ 354367 + base 354368 + bytestring 354369 + hslua-core 354370 + hslua-marshalling 354371 + tasty 354372 + tasty-hslua 354373 + tasty-hunit 354374 + text 354375 + ]; 354376 + description = "Utilities to build Lua modules"; 354377 + license = lib.licenses.mit; 354378 + hydraPlatforms = lib.platforms.none; 352233 354379 } 352234 354380 ) { }; 352235 354381 ··· 353133 355279 } 353134 355280 ) { }; 353135 355281 355282 + "hspec-annotated-exception" = callPackage ( 355283 + { 355284 + mkDerivation, 355285 + annotated-exception, 355286 + base, 355287 + hspec, 355288 + HUnit, 355289 + lens, 355290 + text, 355291 + }: 355292 + mkDerivation { 355293 + pname = "hspec-annotated-exception"; 355294 + version = "0.0.0.0"; 355295 + sha256 = "0cmhplcqqbn9ggv5fwdij3kmj52jvkm8j4z3gbrgyd66y1i9wmhb"; 355296 + libraryHaskellDepends = [ 355297 + annotated-exception 355298 + base 355299 + hspec 355300 + HUnit 355301 + lens 355302 + text 355303 + ]; 355304 + description = "Hspec hook that unwraps test failures from AnnotatedException"; 355305 + license = lib.licenses.mit; 355306 + } 355307 + ) { }; 355308 + 353136 355309 "hspec-api" = callPackage ( 353137 355310 { 353138 355311 mkDerivation, ··· 353392 355565 pname = "hspec-core"; 353393 355566 version = "2.11.12"; 353394 355567 sha256 = "030400w95775jrivbi7n1nnx6j5z717rqd3986ggklb8h9hjalfc"; 355568 + revision = "1"; 355569 + editedCabalFile = "0yq9nnawcgbgxiz4ymfa8k66jrvgrhmv8j7g880x8k6q8q4ncqlq"; 353395 355570 libraryHaskellDepends = [ 353396 355571 ansi-terminal 353397 355572 array ··· 354320 356495 pname = "hspec-meta"; 354321 356496 version = "2.11.12"; 354322 356497 sha256 = "1612pg5gihqjxrzqqvbbgckaqiwq3rmz3rg07lrjhzklg975nj69"; 356498 + revision = "2"; 356499 + editedCabalFile = "1jrk14s51psb0zjici56220iyb98i3q06sd3rsyx594s3cddgn5d"; 354323 356500 isLibrary = true; 354324 356501 isExecutable = true; 354325 356502 libraryHaskellDepends = [ ··· 355674 357851 } 355675 357852 ) { inherit (pkgs) sqlite; }; 355676 357853 355677 - "hsqml" = callPackage ( 355678 - { 355679 - mkDerivation, 355680 - base, 355681 - c2hs, 355682 - Cabal, 355683 - containers, 355684 - directory, 355685 - filepath, 355686 - qt5, 355687 - QuickCheck, 355688 - tagged, 355689 - template-haskell, 355690 - text, 355691 - transformers, 355692 - }: 355693 - mkDerivation { 355694 - pname = "hsqml"; 355695 - version = "0.3.5.1"; 355696 - sha256 = "046inz0pa5s052w653pk2km9finj44c6y2yx7iqihn4h4vnqbim0"; 355697 - setupHaskellDepends = [ 355698 - base 355699 - Cabal 355700 - filepath 355701 - template-haskell 355702 - ]; 355703 - libraryHaskellDepends = [ 355704 - base 355705 - containers 355706 - filepath 355707 - tagged 355708 - text 355709 - transformers 355710 - ]; 355711 - libraryPkgconfigDepends = [ qt5 ]; 355712 - libraryToolDepends = [ c2hs ]; 355713 - testHaskellDepends = [ 355714 - base 355715 - containers 355716 - directory 355717 - QuickCheck 355718 - tagged 355719 - text 355720 - ]; 355721 - description = "Haskell binding for Qt Quick"; 355722 - license = lib.licenses.bsd3; 355723 - hydraPlatforms = lib.platforms.none; 355724 - } 355725 - ) { qt5 = null; }; 357854 + "hsqml" = 357855 + callPackage 357856 + ( 357857 + { 357858 + mkDerivation, 357859 + base, 357860 + bytestring, 357861 + c2hs, 357862 + Cabal, 357863 + containers, 357864 + directory, 357865 + filepath, 357866 + qt5, 357867 + Qt5Network, 357868 + QuickCheck, 357869 + tagged, 357870 + template-haskell, 357871 + text, 357872 + transformers, 357873 + }: 357874 + mkDerivation { 357875 + pname = "hsqml"; 357876 + version = "0.3.6.1"; 357877 + sha256 = "0wvnxc3kad9ja4s16n9nj6nqknckal93ifbprq6nwd0x5i6zvknm"; 357878 + setupHaskellDepends = [ 357879 + base 357880 + Cabal 357881 + filepath 357882 + template-haskell 357883 + ]; 357884 + libraryHaskellDepends = [ 357885 + base 357886 + bytestring 357887 + containers 357888 + directory 357889 + filepath 357890 + QuickCheck 357891 + tagged 357892 + text 357893 + transformers 357894 + ]; 357895 + libraryPkgconfigDepends = [ 357896 + qt5 357897 + Qt5Network 357898 + ]; 357899 + libraryToolDepends = [ c2hs ]; 357900 + testHaskellDepends = [ 357901 + base 357902 + containers 357903 + directory 357904 + QuickCheck 357905 + tagged 357906 + text 357907 + ]; 357908 + description = "Haskell binding for Qt Quick"; 357909 + license = lib.licenses.bsd3; 357910 + hydraPlatforms = lib.platforms.none; 357911 + } 357912 + ) 357913 + { 357914 + Qt5Network = null; 357915 + qt5 = null; 357916 + }; 355726 357917 355727 357918 "hsqml-datamodel" = callPackage ( 355728 357919 { ··· 355787 357978 }: 355788 357979 mkDerivation { 355789 357980 pname = "hsqml-demo-manic"; 355790 - version = "0.3.4.0"; 355791 - sha256 = "09lnd6am51z98j4kwwidj4jw0bcrx8904r526w50y38afngysqx6"; 357981 + version = "0.3.5.0"; 357982 + sha256 = "1y5wfqdilmgkshvd5zz0ajpjx41rn68n6gp43nx1qamz036plklv"; 355792 357983 isLibrary = false; 355793 357984 isExecutable = true; 355794 357985 enableSeparateDataOutput = true; ··· 355819 358010 }: 355820 358011 mkDerivation { 355821 358012 pname = "hsqml-demo-morris"; 355822 - version = "0.3.1.1"; 355823 - sha256 = "166r06yhnmg063d48dh7973wg85nfmvp1c5gmy79ilycc8xgvmhm"; 358013 + version = "0.3.2.0"; 358014 + sha256 = "0bc0ll794bmz0m12y2s6pcwxlm16ppcldhr0gbs4xfwcb2mylrd2"; 355824 358015 isLibrary = false; 355825 358016 isExecutable = true; 355826 358017 enableSeparateDataOutput = true; ··· 355852 358043 }: 355853 358044 mkDerivation { 355854 358045 pname = "hsqml-demo-notes"; 355855 - version = "0.3.3.0"; 355856 - sha256 = "0gjlsqlspchav6lvc4ld15192x70j8cyzw903dgla7g9sj8fg813"; 358046 + version = "0.3.4.0"; 358047 + sha256 = "1k15v0wyv59dkd7wgzpkv8qy8g0i3sw5dpsjf003cy59rl8g8y3q"; 355857 358048 isLibrary = false; 355858 358049 isExecutable = true; 355859 358050 enableSeparateDataOutput = true; ··· 355882 358073 }: 355883 358074 mkDerivation { 355884 358075 pname = "hsqml-demo-samples"; 355885 - version = "0.3.4.0"; 355886 - sha256 = "0y82caz4fb4cz4qfmdg7h5zr959yw2q162zz980jz179188a8pr2"; 358076 + version = "0.3.5.0"; 358077 + sha256 = "0xihibxfy86ml20hhzr66mzygk0lhwhwjpz09ig47fvdlhs0239d"; 355887 358078 isLibrary = false; 355888 358079 isExecutable = true; 355889 358080 enableSeparateDataOutput = true; ··· 361594 363785 }: 361595 363786 mkDerivation { 361596 363787 pname = "http2"; 361597 - version = "5.3.9"; 361598 - sha256 = "0wcv9ziz0865j66avlax7f4i9l5k7ydcn96bacy78snmvcciblqf"; 363788 + version = "5.3.10"; 363789 + sha256 = "0rs21pgnmd0qcg1j360pm8r9c4hm18bcivhnq3krqjl32zb1frpl"; 361599 363790 isLibrary = true; 361600 363791 isExecutable = true; 361601 363792 libraryHaskellDepends = [ ··· 361880 364071 base, 361881 364072 bytestring, 361882 364073 crypton-x509-store, 364074 + crypton-x509-system, 361883 364075 crypton-x509-validation, 361884 364076 http2, 361885 364077 network, ··· 361892 364084 }: 361893 364085 mkDerivation { 361894 364086 pname = "http2-tls"; 361895 - version = "0.4.6"; 361896 - sha256 = "1fi7mk5lkpgr194da9wcwwn7hwdj5cw9kzdiqr3w8dwixnddqrl9"; 364087 + version = "0.4.8"; 364088 + sha256 = "1sy2q6zyc68fjk03fc9pnd6sshjwr6djbyw45gningpfcrw41qv6"; 361897 364089 isLibrary = true; 361898 364090 isExecutable = true; 361899 364091 libraryHaskellDepends = [ 361900 364092 base 361901 364093 bytestring 361902 364094 crypton-x509-store 364095 + crypton-x509-system 361903 364096 crypton-x509-validation 361904 364097 http2 361905 364098 network ··· 361939 364132 iproute, 361940 364133 network, 361941 364134 network-byte-order, 364135 + network-control, 364136 + psqueues, 361942 364137 quic, 361943 364138 QuickCheck, 361944 364139 sockaddr, ··· 361949 364144 }: 361950 364145 mkDerivation { 361951 364146 pname = "http3"; 361952 - version = "0.0.24"; 361953 - sha256 = "1i7dzw9ib9h0i2zjnwsqxbs188p71ly1ad1vdnjnbhyr4gq6aw77"; 364147 + version = "0.1.0"; 364148 + sha256 = "1ygm1a6ph24a84vsdqb7l2bn1ylzd3dl0bc6blvpqq6yhhm34cpa"; 361954 364149 isLibrary = true; 361955 364150 isExecutable = true; 361956 364151 libraryHaskellDepends = [ ··· 361966 364161 iproute 361967 364162 network 361968 364163 network-byte-order 364164 + network-control 364165 + psqueues 361969 364166 quic 361970 364167 sockaddr 361971 364168 stm ··· 361978 364175 base 361979 364176 base16-bytestring 361980 364177 bytestring 364178 + case-insensitive 361981 364179 conduit 361982 364180 conduit-extra 364181 + containers 361983 364182 crypton 361984 364183 hspec 361985 364184 http-semantics ··· 372048 374247 doHaddock = false; 372049 374248 description = "Branch on whether a constraint is satisfied"; 372050 374249 license = lib.licenses.bsd3; 374250 + hydraPlatforms = lib.platforms.none; 374251 + broken = true; 372051 374252 } 372052 374253 ) { }; 372053 374254 ··· 378491 380692 } 378492 380693 ) { }; 378493 380694 378494 - "inspection-testing_0_6" = callPackage ( 380695 + "inspection-testing_0_6_2" = callPackage ( 378495 380696 { 378496 380697 mkDerivation, 378497 380698 base, ··· 378503 380704 }: 378504 380705 mkDerivation { 378505 380706 pname = "inspection-testing"; 378506 - version = "0.6"; 378507 - sha256 = "13j6bqybkqd1nrhx648j0nmsjgyqnmbgssm5pxynmkqw62yylbry"; 380707 + version = "0.6.2"; 380708 + sha256 = "0zi1q86sd9jy5dpqfs2j71acdl7kvik0ps78xirpdhyldhwwyqws"; 378508 380709 libraryHaskellDepends = [ 378509 380710 base 378510 380711 containers ··· 379193 381394 pname = "int-cast"; 379194 381395 version = "0.2.0.0"; 379195 381396 sha256 = "0s8rqm5d9f4y2sskajsw8ff7q8xp52vwqa18m6bajldp11m9a1p0"; 379196 - revision = "7"; 379197 - editedCabalFile = "0z1bffrx787f2697a6gfkmbxkj3ymgs88kid9ckcla08n11zw2ql"; 381397 + revision = "8"; 381398 + editedCabalFile = "10a33fvsy4qkckw6ciqiigy4r5f1pflw16l284scsdas56lk1pqq"; 379198 381399 libraryHaskellDepends = [ base ]; 379199 381400 testHaskellDepends = [ 379200 381401 base ··· 379292 381493 }: 379293 381494 mkDerivation { 379294 381495 pname = "int-like"; 379295 - version = "0.3.0"; 379296 - sha256 = "0nyxhq5715cb5dpvs6ap6zkm08xai1ivhpvj6jsj3kiy0fxyscmw"; 381496 + version = "0.3.1"; 381497 + sha256 = "093kq89lj49wmr878i3nx4yw7x0csh7wmnbil4w7whcy7zfmfabx"; 379297 381498 libraryHaskellDepends = [ 379298 381499 algebraic-graphs 379299 381500 base ··· 380825 383026 hashable, 380826 383027 heaps, 380827 383028 hspec, 383029 + indexed-traversable, 380828 383030 lattices, 380829 383031 parsec, 380830 383032 QuickCheck, ··· 380835 383037 }: 380836 383038 mkDerivation { 380837 383039 pname = "interval-patterns"; 380838 - version = "0.8.0"; 380839 - sha256 = "1paciwq4wzl0kqkl5zzj486dsq5pg6275nj15gicv1czj7m9ncg9"; 383040 + version = "0.8.1"; 383041 + sha256 = "1wq080qvc1xbw6kd86ffl7017prz27g5658yyyvmjrshv5krxrhx"; 380840 383042 libraryHaskellDepends = [ 380841 383043 base 380842 383044 containers ··· 380844 383046 groups 380845 383047 hashable 380846 383048 heaps 383049 + indexed-traversable 380847 383050 lattices 380848 383051 semirings 380849 383052 time ··· 380857 383060 hashable 380858 383061 heaps 380859 383062 hspec 383063 + indexed-traversable 380860 383064 lattices 380861 383065 parsec 380862 383066 QuickCheck ··· 380867 383071 ]; 380868 383072 description = "Intervals, and monoids thereof"; 380869 383073 license = lib.licenses.bsd3; 380870 - hydraPlatforms = lib.platforms.none; 380871 - broken = true; 380872 383074 } 380873 383075 ) { }; 380874 383076 ··· 381726 383928 }: 381727 383929 mkDerivation { 381728 383930 pname = "io-classes"; 381729 - version = "1.8.0.0"; 381730 - sha256 = "154bpq8w65xyy4slbd12d0r02gv5bz0q09rlpxyjwx63kpzy5xw1"; 383931 + version = "1.8.0.1"; 383932 + sha256 = "0ivhs0wpl2i8fw5g2ch3ck5adzwsp1dlfl1j3vy872i3cfygcbdi"; 381731 383933 libraryHaskellDepends = [ 381732 383934 array 381733 383935 async ··· 381942 384144 }: 381943 384145 mkDerivation { 381944 384146 pname = "io-sim"; 381945 - version = "1.8.0.0"; 381946 - sha256 = "00dmqfbq9j906f5ga1vqqmrvzdmwxwrw6gcigmdspwnpaq73yydr"; 384147 + version = "1.8.0.1"; 384148 + sha256 = "1xv0j1l46n0wv76sll796avrvl3aaxnf0dsqjkp66fw0yprdbh5n"; 381947 384149 libraryHaskellDepends = [ 381948 384150 base 381949 384151 containers ··· 382552 384754 }: 382553 384755 mkDerivation { 382554 384756 pname = "ip6addr"; 382555 - version = "2.0.0"; 382556 - sha256 = "1drhjv6xmwfnx2yvxxs03ds415gxdgylzkmb5wy9g7b12q91kxf5"; 384757 + version = "2.0.0.1"; 384758 + sha256 = "18g1y923ll8sh1flg9ddf5nyi7ndngf99p3d39q6icimffnyqkfh"; 382557 384759 isLibrary = false; 382558 384760 isExecutable = true; 382559 384761 executableHaskellDepends = [ ··· 384379 386581 bytestring-lexing, 384380 386582 hspec, 384381 386583 hspec-core, 386584 + hspec-discover, 384382 386585 QuickCheck, 384383 386586 quickcheck-instances, 384384 386587 time, 384385 386588 }: 384386 386589 mkDerivation { 384387 386590 pname = "iso8601-duration"; 384388 - version = "0.1.2.0"; 384389 - sha256 = "1hzzcgc1k3dn4l5yxzqq9d62n2hfkrcg0ag14dly7ak3gx9l8l3n"; 386591 + version = "0.1.2.1"; 386592 + sha256 = "0swdzv13y0ww4vlddcfwlwdcp0n5v824dcn5hfa5lxlp06xvy86h"; 384390 386593 libraryHaskellDepends = [ 384391 386594 attoparsec 384392 386595 base ··· 384403 386606 quickcheck-instances 384404 386607 time 384405 386608 ]; 386609 + testToolDepends = [ hspec-discover ]; 384406 386610 description = "Types and parser for ISO8601 durations"; 384407 386611 license = lib.licenses.bsd3; 384408 - hydraPlatforms = lib.platforms.none; 384409 - broken = true; 384410 386612 } 384411 386613 ) { }; 384412 386614 ··· 390134 392336 base, 390135 392337 bytestring, 390136 392338 jsaddle, 392339 + template-haskell, 390137 392340 }: 390138 392341 mkDerivation { 390139 392342 pname = "nat"; 390140 - version = "0.1.1.0"; 390141 - pname = "nat"; 392343 + version = "0.1.2.0"; 392344 + sha256 = "1anr6gg5900mcywwkx8s5j4wpq7hs0zgxc8b2mxf9nlagjjparfz"; 390142 392345 libraryHaskellDepends = [ 390143 392346 base 390144 392347 bytestring 390145 392348 jsaddle 392349 + template-haskell 390146 392350 ]; 390147 392351 doHaddock = false; 390148 392352 pname = "nat"; ··· 391762 393966 pname = "nat"; 391763 393967 license = lib.licenses.bsd3; 391764 393968 hydraPlatforms = lib.platforms.none; 393969 + broken = true; 391765 393970 } 391766 393971 ) { }; 391767 393972 ··· 394032 396237 }: 394033 396238 mkDerivation { 394034 396239 pname = "nat"; 394035 - version = "0.5.5"; 394036 - pname = "nat"; 396240 + version = "0.5.8"; 396241 + sha256 = "1pb7z95cmqaxbmba2grrbf8dm56821y40v12l4402milnahzl3k9"; 394037 396242 isLibrary = true; 394038 396243 isExecutable = true; 394039 396244 libraryHaskellDepends = [ ··· 395272 397477 }: 395273 397478 mkDerivation { 395274 397479 pname = "nat"; 395275 - pname = "nat"; 395276 - pname = "nat"; 395277 - revision = "1"; 395278 - pname = "nat"; 397480 + version = "5.2.7"; 397481 + sha256 = "0n716zyihbnq3s1zhqbh3fm0qzhgy2hk79ziy8b6bvydjpzsq8y3"; 395279 397482 libraryHaskellDepends = [ 395280 397483 adjunctions 395281 397484 array ··· 400431 402634 ]; 400432 402635 pname = "nat"; 400433 402636 license = lib.licenses.bsd3; 402637 + hydraPlatforms = lib.platforms.none; 400434 402638 } 400435 402639 ) { }; 400436 402640 ··· 400831 403035 } 400832 403036 ) { }; 400833 403037 403038 + "koji-tool_1_3" = callPackage ( 403039 + { 403040 + mkDerivation, 403041 + base, 403042 + directory, 403043 + extra, 403044 + filepath, 403045 + formatting, 403046 + http-conduit, 403047 + http-directory, 403048 + koji, 403049 + pretty-simple, 403050 + rpm-nvr, 403051 + safe, 403052 + select-rpms, 403053 + simple-cmd, 403054 + simple-cmd-args, 403055 + text, 403056 + time, 403057 + utf8-string, 403058 + xdg-userdirs, 403059 + }: 403060 + mkDerivation { 403061 + pname = "nat"; 403062 + version = "1.3"; 403063 + sha256 = "0ibbkl0lvgfwh16hihgqbc9gsgxdlz2w1ra7kfjs9cmx5l8w1gpg"; 403064 + isLibrary = false; 403065 + isExecutable = true; 403066 + executableHaskellDepends = [ 403067 + base 403068 + directory 403069 + extra 403070 + filepath 403071 + formatting 403072 + http-conduit 403073 + http-directory 403074 + koji 403075 + pretty-simple 403076 + rpm-nvr 403077 + safe 403078 + select-rpms 403079 + simple-cmd 403080 + simple-cmd-args 403081 + text 403082 + time 403083 + utf8-string 403084 + xdg-userdirs 403085 + ]; 403086 + testHaskellDepends = [ 403087 + base 403088 + simple-cmd 403089 + ]; 403090 + pname = "nat"; 403091 + license = lib.licenses.bsd3; 403092 + hydraPlatforms = lib.platforms.none; 403093 + pname = "nat"; 403094 + } 403095 + ) { }; 403096 + 400834 403097 pname = "nat"; 400835 403098 { 400836 403099 mkDerivation, ··· 401705 403968 }: 401706 403969 mkDerivation { 401707 403970 pname = "nat"; 401708 - version = "0.6.0.1"; 401709 - pname = "nat"; 403971 + version = "0.6.1.1"; 403972 + sha256 = "0f3sfs6z9xwf7811s7mbh03a4jsyfcvjx1lvycs7gv1ak1jhm27z"; 401710 403973 libraryHaskellDepends = [ 401711 403974 aeson 401712 403975 attoparsec ··· 401789 404052 testToolDepends = [ hspec-discover ]; 401790 404053 pname = "nat"; 401791 404054 license = lib.licenses.asl20; 401792 - hydraPlatforms = lib.platforms.none; 401793 404055 } 401794 404056 ) { }; 401795 404057 ··· 404951 407213 pname = "langchain-hs"; 404952 407214 version = "0.0.2.0"; 404953 407215 sha256 = "0gh3gmmppfms1jg5zaxksalh90675r4pl6lmz63szkpwl9rmc9kz"; 407216 + revision = "2"; 407217 + editedCabalFile = "0qk56yswclxrf903c34ifadd8ja2l3zxfc0b2vzlgf1x7zf4cikl"; 404954 407218 libraryHaskellDepends = [ 404955 407219 aeson 404956 407220 async ··· 408492 410756 pname = "lapack-ffi-tools"; 408493 410757 version = "0.1.3.2"; 408494 410758 sha256 = "0y30qwxzbggn3aqr437j3bi1yfa1fpdq96xq7vxbi1fnll8a9432"; 408495 - revision = "1"; 408496 - editedCabalFile = "0z8ahg1bxcphdyhjaxwmfhdhwwg1d2mhx3dvl6af3c9sql9r5xjw"; 410759 + revision = "2"; 410760 + editedCabalFile = "0k96wssmadcjrhdzcd6q3n7qx9kpb2wb3i9c61xygwx6x9q13wm3"; 408497 410761 isLibrary = false; 408498 410762 isExecutable = true; 408499 410763 enableSeparateDataOutput = true; ··· 409458 411722 pname = "lattices"; 409459 411723 version = "2.2.1"; 409460 411724 sha256 = "0rknzbzwcbg87hjiz4jwqb81w14pywkipxjrrlrp0m5i8ciky1i7"; 409461 - revision = "2"; 409462 - editedCabalFile = "1y01fx2d3ad601zg13n52k8d4lcx1s3b6hhbwmyblhdj7x9xyl2i"; 411725 + revision = "3"; 411726 + editedCabalFile = "0ry6d23sy0pqgzn2cfbr0yrsxcf1mix2irhv1x9bzv99cz2az3qm"; 409463 411727 libraryHaskellDepends = [ 409464 411728 base 409465 411729 containers ··· 412174 414438 ]; 412175 414439 description = "Haskell IDE written in Haskell"; 412176 414440 license = "GPL"; 412177 - hydraPlatforms = lib.platforms.none; 412178 414441 mainProgram = "leksah"; 412179 414442 } 412180 414443 ) { inherit (pkgs) gtk3; }; ··· 412375 414638 generic-deriving, 412376 414639 ghc-prim, 412377 414640 hashable, 412378 - HUnit, 412379 414641 indexed-traversable, 412380 414642 indexed-traversable-instances, 412381 414643 kan-extensions, ··· 412388 414650 simple-reflect, 412389 414651 strict, 412390 414652 tagged, 414653 + tasty, 414654 + tasty-hunit, 414655 + tasty-quickcheck, 412391 414656 template-haskell, 412392 - test-framework, 412393 - test-framework-hunit, 412394 - test-framework-quickcheck2, 412395 414657 text, 412396 414658 th-abstraction, 412397 414659 these, ··· 412402 414664 }: 412403 414665 mkDerivation { 412404 414666 pname = "lens"; 412405 - version = "5.3.4"; 412406 - sha256 = "12n8jdwlpa5lcp2yi26a4fwncn1v1lyznaa9fasszk6qp0afvdpi"; 414667 + version = "5.3.5"; 414668 + sha256 = "1s0ziznj60l9z3z5dacq58kaq8cdfxcz0r75f5hwj25ivzrsrszg"; 412407 414669 libraryHaskellDepends = [ 412408 414670 array 412409 414671 assoc ··· 412445 414707 bytestring 412446 414708 containers 412447 414709 deepseq 412448 - HUnit 412449 414710 mtl 412450 414711 QuickCheck 412451 414712 simple-reflect 412452 - test-framework 412453 - test-framework-hunit 412454 - test-framework-quickcheck2 414713 + tasty 414714 + tasty-hunit 414715 + tasty-quickcheck 412455 414716 text 412456 414717 transformers 412457 414718 ]; ··· 412712 414973 }: 412713 414974 mkDerivation { 412714 414975 pname = "lens-family-th"; 412715 - version = "0.5.3.1"; 412716 - sha256 = "0fhv44qb3gdwiay3imhwhqhdpiczncjz2w6jiiqk11qn4a63rv7l"; 414976 + version = "0.5.3.2"; 414977 + sha256 = "1lkzrnajlgnxd5wmxaa8z4j3kxry5iwarc15n9jkxygb0b20x3rh"; 412717 414978 libraryHaskellDepends = [ 412718 414979 base 412719 414980 template-haskell ··· 412949 415210 pname = "lens-properties"; 412950 415211 version = "4.11.1"; 412951 415212 sha256 = "1caciyn75na3f25q9qxjl7ibjam22xlhl5k2pqfiak10lxsmnz2g"; 412952 - revision = "7"; 412953 - editedCabalFile = "14n9yzar4zfqigyayxhi11a0g954nb4jcz0fahgpxyl2vbg7h1ch"; 415213 + revision = "8"; 415214 + editedCabalFile = "0lp0nkbm38v2i361w79dmqq20v3gn95bh1xixbs20549k73cxxj3"; 412954 415215 libraryHaskellDepends = [ 412955 415216 base 412956 415217 lens ··· 413455 415716 pname = "lentil"; 413456 415717 version = "1.5.8.0"; 413457 415718 sha256 = "08g15kzynync0kl9f247sifzqpkjyvigc5r31w2n3vivi3pdcafn"; 413458 - revision = "1"; 413459 - editedCabalFile = "0n991bjlcjchmjlgfxg709sp6vsi6c5igzs7904i6hfabq3z47q5"; 415719 + revision = "2"; 415720 + editedCabalFile = "0qcibmqkw96658fx3dcfy90k8w4a7xdvllb8h0hk14v0lwvi4cmm"; 413460 415721 isLibrary = false; 413461 415722 isExecutable = true; 413462 415723 executableHaskellDepends = [ ··· 416841 419102 }: 416842 419103 mkDerivation { 416843 419104 pname = "libtorch-ffi"; 416844 - version = "2.0.1.3"; 416845 - sha256 = "0hamxxlf69r3m826a3x59k11cmlv4m2340mr3xmcbyqga2zs04a6"; 419105 + version = "2.0.1.5"; 419106 + sha256 = "0qk8wdfp2c3xwn8ydszxn5zpifcgbp5ns75rinyyqybz0rls1xk8"; 416846 419107 libraryHaskellDepends = [ 416847 419108 async 416848 419109 base ··· 418723 420984 distributive, 418724 420985 ghc-prim, 418725 420986 hashable, 418726 - HUnit, 418727 420987 indexed-traversable, 418728 420988 lens, 418729 420989 QuickCheck, ··· 418732 420992 semigroupoids, 418733 420993 simple-reflect, 418734 420994 tagged, 420995 + tasty, 420996 + tasty-hunit, 420997 + tasty-quickcheck, 418735 420998 template-haskell, 418736 - test-framework, 418737 - test-framework-hunit, 418738 - test-framework-quickcheck2, 418739 420999 transformers, 418740 421000 transformers-compat, 418741 421001 unordered-containers, ··· 418744 421004 }: 418745 421005 mkDerivation { 418746 421006 pname = "linear"; 418747 - version = "1.23.1"; 418748 - sha256 = "0ybch2f4yc7mhxryr5f29i7j8ryq1i1n69fgldskxjrj825qkb3x"; 421007 + version = "1.23.2"; 421008 + sha256 = "05v91is8rwm34a86gra2q03d5f1klj4nmlxx8r3cx0gbkdhrvmmv"; 418749 421009 libraryHaskellDepends = [ 418750 421010 adjunctions 418751 421011 base ··· 418776 421036 binary 418777 421037 bytestring 418778 421038 deepseq 418779 - HUnit 418780 421039 QuickCheck 418781 421040 reflection 418782 421041 simple-reflect 418783 - test-framework 418784 - test-framework-hunit 418785 - test-framework-quickcheck2 421042 + tasty 421043 + tasty-hunit 421044 + tasty-quickcheck 418786 421045 vector 418787 421046 ]; 418788 421047 description = "Linear Algebra"; ··· 422261 424520 ) { }; 422262 424521 422263 424522 "list1" = callPackage ( 422264 - { 422265 - mkDerivation, 422266 - base, 422267 - smash, 422268 - }: 424523 + { mkDerivation, base }: 422269 424524 mkDerivation { 422270 424525 pname = "list1"; 422271 - version = "0.0.2"; 422272 - sha256 = "0lxx1m2vrf14fb8r4qzfp6y8iqxai3cdpg2dzh9az383qxhy0zmh"; 422273 - libraryHaskellDepends = [ 422274 - base 422275 - smash 422276 - ]; 424526 + version = "0.1.0"; 424527 + sha256 = "1kyl7gg0prq7cyr0radwqcwdmqj3d0w2rjs1406nkryjfibsxgkh"; 424528 + libraryHaskellDepends = [ base ]; 422277 424529 description = "Helpers for working with NonEmpty lists"; 422278 424530 license = lib.licenses.bsd3; 422279 - hydraPlatforms = lib.platforms.none; 422280 424531 } 422281 424532 ) { }; 422282 424533 ··· 422644 424895 pname = "literatex"; 422645 424896 version = "0.4.0.0"; 422646 424897 sha256 = "06whn0rx1gy2pzl4678z087pfragy2sjaw34ljx6sfvxg0wn03bx"; 424898 + revision = "1"; 424899 + editedCabalFile = "1kqa99vrq35hk0n58cj5sgp6s87jgwhafz78jzrwi67v94w3hi01"; 422647 424900 isLibrary = true; 422648 424901 isExecutable = true; 422649 424902 libraryHaskellDepends = [ ··· 423457 425710 ]; 423458 425711 description = "Support for writing an EDSL with LLVM-JIT as target"; 423459 425712 license = lib.licenses.bsd3; 425713 + hydraPlatforms = lib.platforms.none; 423460 425714 } 423461 425715 ) { }; 423462 425716 ··· 423558 425812 doHaddock = false; 423559 425813 description = "Utility functions for the llvm interface"; 423560 425814 license = lib.licenses.bsd3; 425815 + hydraPlatforms = lib.platforms.none; 425816 + broken = true; 423561 425817 } 423562 425818 ) { }; 423563 425819 ··· 423566 425822 mkDerivation, 423567 425823 base, 423568 425824 enumset, 423569 - LLVM, 425825 + LLVM-21git, 423570 425826 }: 423571 425827 mkDerivation { 423572 425828 pname = "llvm-ffi"; 423573 - version = "16.0"; 423574 - sha256 = "14cf6qhdq69ggx41259ih55g6z1vn0694wrh3s8m6f7adq990ra9"; 425829 + version = "21.0"; 425830 + sha256 = "1dfl6zxcghhyyp49lgkknlq8nkvii7aag7y8b38ny93cpcczgx0g"; 423575 425831 isLibrary = true; 423576 425832 isExecutable = true; 423577 425833 libraryHaskellDepends = [ 423578 425834 base 423579 425835 enumset 423580 425836 ]; 423581 - librarySystemDepends = [ LLVM ]; 425837 + librarySystemDepends = [ LLVM-21git ]; 423582 425838 description = "FFI bindings to the LLVM compiler toolkit"; 423583 425839 license = lib.licenses.bsd3; 423584 425840 maintainers = [ lib.maintainers.thielema ]; 423585 425841 } 423586 - ) { LLVM = null; }; 425842 + ) { LLVM-21git = null; }; 423587 425843 423588 425844 "llvm-ffi-tools" = callPackage ( 423589 425845 { ··· 424249 426505 }: 424250 426506 mkDerivation { 424251 426507 pname = "llvm-tf"; 424252 - version = "16.0"; 424253 - sha256 = "1nscccmk0nf52p9r0af354p4n4vr1fbaym4x164wwwid7xc1x65g"; 426508 + version = "21.0"; 426509 + sha256 = "108a6kw5xfbxq4y613702r79bix6djyn3szi188d38vmwzs4a8qx"; 424254 426510 isLibrary = true; 424255 426511 isExecutable = true; 424256 426512 libraryHaskellDepends = [ ··· 425425 427681 }: 425426 427682 mkDerivation { 425427 427683 pname = "log-base"; 425428 - version = "0.12.0.1"; 425429 - sha256 = "021chwkggy7q5c3hysfg3aj6pv60wla1cv8iyppibx70ilqpzqs4"; 427684 + version = "0.12.1.0"; 427685 + sha256 = "1c4dimdgzbia8h201prbl1w8g4qixn9fr100d7aawr256xhi7jci"; 425430 427686 libraryHaskellDepends = [ 425431 427687 aeson 425432 427688 aeson-pretty ··· 425603 427859 bytestring, 425604 427860 deepseq, 425605 427861 http-client, 425606 - http-client-openssl, 427862 + http-client-tls, 425607 427863 http-types, 425608 427864 log-base, 425609 427865 network-uri, ··· 425618 427874 }: 425619 427875 mkDerivation { 425620 427876 pname = "log-elasticsearch"; 425621 - version = "0.13.0.1"; 425622 - sha256 = "1l9p4zpf18rkwkv485swrlwyx2l3iqd332273mkz64ybjqllsdkx"; 427877 + version = "0.13.0.2"; 427878 + sha256 = "1hnd866bcp5fqnxlh3z39d2kn9mza9vp554sm34cmaclmkzfp0cw"; 425623 427879 libraryHaskellDepends = [ 425624 427880 aeson 425625 427881 aeson-pretty ··· 425628 427884 bytestring 425629 427885 deepseq 425630 427886 http-client 425631 - http-client-openssl 427887 + http-client-tls 425632 427888 http-types 425633 427889 log-base 425634 427890 network-uri ··· 431262 433518 }: 431263 433519 mkDerivation { 431264 433520 pname = "lz4-bytes"; 431265 - version = "0.1.2.0"; 431266 - sha256 = "1jgsz96n7n7g4403w0h3zjvlhdh11vy4s7wqka0ppsikjjl7f1ni"; 433521 + version = "0.2.0.0"; 433522 + sha256 = "10g253lwwmiz7ci70lyxfjln8mczj5r3m2nmcgidh4r9h31x30yv"; 431267 433523 libraryHaskellDepends = [ 431268 433524 base 431269 433525 byte-order ··· 433266 435522 ]; 433267 435523 description = "Preconfigured email connection pool on top of smtp"; 433268 435524 license = lib.licenses.mit; 433269 - hydraPlatforms = lib.platforms.none; 433270 435525 mainProgram = "exe"; 433271 435526 } 433272 435527 ) { }; ··· 436428 438683 } 436429 438684 ) { }; 436430 438685 438686 + "markup-parse_0_2_0_0" = callPackage ( 438687 + { 438688 + mkDerivation, 438689 + base, 438690 + bytestring, 438691 + containers, 438692 + deepseq, 438693 + Diff, 438694 + doctest-parallel, 438695 + flatparse, 438696 + string-interpolate, 438697 + tasty, 438698 + tasty-golden, 438699 + these, 438700 + }: 438701 + mkDerivation { 438702 + pname = "markup-parse"; 438703 + version = "0.2.0.0"; 438704 + sha256 = "1z08d3chvgl9zk9y2crfjih0crh5dv7pih6x0n7af38l6lhsgkhz"; 438705 + libraryHaskellDepends = [ 438706 + base 438707 + bytestring 438708 + containers 438709 + deepseq 438710 + flatparse 438711 + string-interpolate 438712 + these 438713 + ]; 438714 + testHaskellDepends = [ 438715 + base 438716 + bytestring 438717 + Diff 438718 + doctest-parallel 438719 + tasty 438720 + tasty-golden 438721 + ]; 438722 + description = "A markup parser"; 438723 + license = lib.licenses.bsd3; 438724 + hydraPlatforms = lib.platforms.none; 438725 + } 438726 + ) { }; 438727 + 436431 438728 "markup-preview" = callPackage ( 436432 438729 { 436433 438730 mkDerivation, ··· 437015 439312 }: 437016 439313 mkDerivation { 437017 439314 pname = "massiv"; 437018 - version = "1.0.4.1"; 437019 - sha256 = "11gvl0z49aariw3vy8g46di1x5xibf6l7zf6b3l701hvg0hffyn7"; 437020 - libraryHaskellDepends = [ 437021 - base 437022 - bytestring 437023 - deepseq 437024 - exceptions 437025 - primitive 437026 - random 437027 - scheduler 437028 - unliftio-core 437029 - vector 437030 - vector-stream 437031 - ]; 437032 - testHaskellDepends = [ 437033 - base 437034 - doctest 437035 - ]; 437036 - description = "Massiv (Массив) is an Array Library"; 437037 - license = lib.licenses.bsd3; 437038 - maintainers = [ lib.maintainers.sheepforce ]; 437039 - } 437040 - ) { }; 437041 - 437042 - "massiv_1_0_5_0" = callPackage ( 437043 - { 437044 - mkDerivation, 437045 - base, 437046 - bytestring, 437047 - deepseq, 437048 - doctest, 437049 - exceptions, 437050 - primitive, 437051 - random, 437052 - scheduler, 437053 - unliftio-core, 437054 - vector, 437055 - vector-stream, 437056 - }: 437057 - mkDerivation { 437058 - pname = "massiv"; 437059 439315 version = "1.0.5.0"; 437060 439316 sha256 = "138y8kk2qxprlwd8isb6h7wigiymmin1sip255060ql5gzjaawcw"; 437061 439317 libraryHaskellDepends = [ ··· 437076 439332 ]; 437077 439333 description = "Massiv (Массив) is an Array Library"; 437078 439334 license = lib.licenses.bsd3; 437079 - hydraPlatforms = lib.platforms.none; 437080 439335 maintainers = [ lib.maintainers.sheepforce ]; 437081 439336 } 437082 439337 ) { }; ··· 438925 441180 }: 438926 441181 mkDerivation { 438927 441182 pname = "mattermost-api"; 438928 - version = "90000.0.0"; 438929 - sha256 = "1ka3r4bnfwlbjnkws8vkg8i9gj8wzsyss137p7hxrx4sr75s6iyv"; 441183 + version = "90000.1.0"; 441184 + sha256 = "0mp2qch4amgiixmx7zv158fb3ld1dpfad17sb43gxwadrj9afxdh"; 438930 441185 isLibrary = true; 438931 441186 isExecutable = true; 438932 441187 libraryHaskellDepends = [ ··· 438988 441243 }: 438989 441244 mkDerivation { 438990 441245 pname = "mattermost-api-qc"; 438991 - version = "90000.0.0"; 438992 - sha256 = "0lrb8l8nbrdp4y2ala8hchr8ikv5hqw710ffiiw1sz6z2dqiqbxm"; 441246 + version = "90000.1.0"; 441247 + sha256 = "08ifm97c80a8vp9cqlwk7jb7105y2q6w77zvy2p42vk1l1p6yq4m"; 438993 441248 libraryHaskellDepends = [ 438994 441249 base 438995 441250 containers ··· 439855 442110 } 439856 442111 ) { }; 439857 442112 442113 + "mcp" = callPackage ( 442114 + { 442115 + mkDerivation, 442116 + aeson, 442117 + async, 442118 + base, 442119 + base64-bytestring, 442120 + bytestring, 442121 + containers, 442122 + cryptonite, 442123 + http-conduit, 442124 + http-types, 442125 + jose, 442126 + memory, 442127 + mtl, 442128 + optparse-applicative, 442129 + random, 442130 + scientific, 442131 + servant, 442132 + servant-auth, 442133 + servant-auth-server, 442134 + servant-server, 442135 + stm, 442136 + text, 442137 + time, 442138 + transformers, 442139 + unordered-containers, 442140 + uuid, 442141 + wai, 442142 + wai-extra, 442143 + warp, 442144 + }: 442145 + mkDerivation { 442146 + pname = "mcp"; 442147 + version = "0.2.0.1"; 442148 + sha256 = "0mmm890m86dv16hw7mjbznswhw1jrm7kbn45qqhfp661k3kwlw1j"; 442149 + isLibrary = true; 442150 + isExecutable = true; 442151 + libraryHaskellDepends = [ 442152 + aeson 442153 + async 442154 + base 442155 + base64-bytestring 442156 + bytestring 442157 + containers 442158 + cryptonite 442159 + http-conduit 442160 + http-types 442161 + jose 442162 + memory 442163 + mtl 442164 + random 442165 + servant 442166 + servant-auth 442167 + servant-auth-server 442168 + servant-server 442169 + stm 442170 + text 442171 + time 442172 + transformers 442173 + unordered-containers 442174 + uuid 442175 + wai 442176 + wai-extra 442177 + warp 442178 + ]; 442179 + executableHaskellDepends = [ 442180 + aeson 442181 + base 442182 + containers 442183 + optparse-applicative 442184 + scientific 442185 + text 442186 + time 442187 + ]; 442188 + testHaskellDepends = [ base ]; 442189 + description = "A Haskell implementation of the Model Context Protocol (MCP)"; 442190 + license = lib.licenses.mit; 442191 + hydraPlatforms = lib.platforms.none; 442192 + broken = true; 442193 + } 442194 + ) { }; 442195 + 442196 + "mcp-server" = callPackage ( 442197 + { 442198 + mkDerivation, 442199 + aeson, 442200 + base, 442201 + bytestring, 442202 + containers, 442203 + hspec, 442204 + http-types, 442205 + network-uri, 442206 + QuickCheck, 442207 + template-haskell, 442208 + text, 442209 + vector, 442210 + wai, 442211 + warp, 442212 + }: 442213 + mkDerivation { 442214 + pname = "mcp-server"; 442215 + version = "0.1.0.14"; 442216 + sha256 = "0lyr19sg5cjsgiq16v0cfkf1rkwgvyacz4siflf4wapllrkr82fz"; 442217 + isLibrary = true; 442218 + isExecutable = true; 442219 + libraryHaskellDepends = [ 442220 + aeson 442221 + base 442222 + bytestring 442223 + containers 442224 + http-types 442225 + network-uri 442226 + template-haskell 442227 + text 442228 + vector 442229 + wai 442230 + warp 442231 + ]; 442232 + executableHaskellDepends = [ 442233 + base 442234 + containers 442235 + network-uri 442236 + text 442237 + ]; 442238 + testHaskellDepends = [ 442239 + aeson 442240 + base 442241 + bytestring 442242 + containers 442243 + hspec 442244 + network-uri 442245 + QuickCheck 442246 + template-haskell 442247 + text 442248 + ]; 442249 + description = "Library for building Model Context Protocol (MCP) servers"; 442250 + license = lib.licenses.bsd3; 442251 + hydraPlatforms = lib.platforms.none; 442252 + broken = true; 442253 + } 442254 + ) { }; 442255 + 439858 442256 "mcpi" = callPackage ( 439859 442257 { 439860 442258 mkDerivation, ··· 440276 442674 pname = "med-module"; 440277 442675 version = "0.1.3"; 440278 442676 sha256 = "04p1aj85hsr3wpnnfg4nxbqsgq41ga63mrg2w39d8ls8ljvajvna"; 440279 - revision = "1"; 440280 - editedCabalFile = "0m69cvm2nzx2g0y8jfkymap529fm0k65wg82dycj0dc60p9fj66r"; 442677 + revision = "2"; 442678 + editedCabalFile = "0b557rrqki2rjb922s1yqkd7gbm9cjhzg52f0h5mp19v53nds3vz"; 440281 442679 isLibrary = true; 440282 442680 isExecutable = true; 440283 442681 libraryHaskellDepends = [ ··· 441172 443570 pname = "megaparsec-tests"; 441173 443571 version = "9.7.0"; 441174 443572 sha256 = "17jwz62f8lnrfmmfrsv1jcvn9wmpk4jlhmxjwk5qqx2iyijnrpb1"; 443573 + revision = "1"; 443574 + editedCabalFile = "108nv4c045xg3ks0v7c0figqrl7v90l87cahhmn5mc24vdpxhkrj"; 441175 443575 libraryHaskellDepends = [ 441176 443576 base 441177 443577 bytestring ··· 441718 444118 } 441719 444119 ) { }; 441720 444120 441721 - "mem-info_0_4_1_0" = callPackage ( 444121 + "mem-info_0_4_1_1" = callPackage ( 441722 444122 { 441723 444123 mkDerivation, 441724 444124 base, ··· 441743 444143 }: 441744 444144 mkDerivation { 441745 444145 pname = "mem-info"; 441746 - version = "0.4.1.0"; 441747 - sha256 = "0613k5qil4j1cfh335gyjf708md9cicbhm5xji7v8fzfmzsqxx1c"; 444146 + version = "0.4.1.1"; 444147 + sha256 = "10b3lmqh4nbyfpglgjb04xx0wd65vxfyc53m3l89linhvij61kmc"; 441748 444148 isLibrary = true; 441749 444149 isExecutable = true; 441750 444150 libraryHaskellDepends = [ ··· 444460 446860 pname = "microaeson"; 444461 446861 version = "0.1.0.2"; 444462 446862 sha256 = "025vnzs4j2nmkin5x8h5hbrj25spamqppg68wfqlnbrr1519lxfz"; 444463 - revision = "1"; 444464 - editedCabalFile = "1faq5mjz8jy739lbaizy1v5wrvkxsjzp6lhjmb06a3yv71h6m594"; 446863 + revision = "2"; 446864 + editedCabalFile = "04kq6sh1fl0xgkai0d055s7hkwf21vlksgqizh4xfvsb2xbakgiz"; 444465 446865 libraryHaskellDepends = [ 444466 446866 array 444467 446867 base ··· 445557 447957 pname = "midi-music-box"; 445558 447958 version = "0.0.1.2"; 445559 447959 sha256 = "0rnjwis6y0lnyfjxnxqk3zsh78ylccq5v21avb97vybmj0pld1l9"; 445560 - revision = "6"; 445561 - editedCabalFile = "0b8039mw0wacjxxwx1ws2wczwdgxm4iiymdkykk7lp5ii75vvfww"; 447960 + revision = "7"; 447961 + editedCabalFile = "02xnldnw5ci6chpbj18mz82m8pp582zpy9z3bdy5yi7q7k415h0p"; 445562 447962 isLibrary = false; 445563 447963 isExecutable = true; 445564 447964 executableHaskellDepends = [ ··· 445705 448105 pname = "midimory"; 445706 448106 version = "0.0.2.3"; 445707 448107 sha256 = "1k9pm0ai9i66c7l4px84cf5db3nsq5ab9ndplcyfh05snbdy70vz"; 448108 + revision = "1"; 448109 + editedCabalFile = "1sq7xipm92nfcbf6cad1yclzl36gghqlnnvs1r0579njjcchbgl5"; 445708 448110 isLibrary = false; 445709 448111 isExecutable = true; 445710 448112 executableHaskellDepends = [ ··· 446101 448503 directory, 446102 448504 filepath, 446103 448505 hspec, 448506 + hspec-discover, 446104 448507 http-client, 446105 448508 http-date, 446106 448509 http-types, 448510 + http2, 446107 448511 network, 446108 448512 old-locale, 446109 448513 parsec, ··· 446124 448528 }: 446125 448529 mkDerivation { 446126 448530 pname = "mighttpd2"; 446127 - version = "4.0.8"; 446128 - sha256 = "0yqj3m7y493bzjmx1ycyid4s40h11l46w8lv1783drlw7wpakmya"; 448531 + version = "4.0.9"; 448532 + sha256 = "1qd43hlyvhnslxrvy4h0rj5qs6nbxnz8d23myqjspa9jl8rzb1bg"; 446129 448533 isLibrary = true; 446130 448534 isExecutable = true; 446131 448535 enableSeparateDataOutput = true; ··· 446143 448547 filepath 446144 448548 http-date 446145 448549 http-types 448550 + http2 446146 448551 network 446147 448552 parsec 446148 448553 resourcet ··· 446182 448587 hspec 446183 448588 http-client 446184 448589 ]; 448590 + testToolDepends = [ hspec-discover ]; 446185 448591 description = "High performance web server on WAI/warp"; 446186 448592 license = lib.licenses.bsd3; 446187 448593 hydraPlatforms = lib.platforms.none; ··· 447078 449484 }: 447079 449485 mkDerivation { 447080 449486 pname = "minici"; 447081 - version = "0.1.7"; 447082 - sha256 = "0kwlgsjn7ikddk59bksb4abb0dc262a61mh4694p8s7x3psjris1"; 449487 + version = "0.1.8"; 449488 + sha256 = "0fady7w644gcrjd9yy7ngbi1dj2rp87lnzmxjr307w8kdb2aqdcj"; 447083 449489 isLibrary = false; 447084 449490 isExecutable = true; 447085 449491 executableHaskellDepends = [ ··· 449068 451474 bytestring, 449069 451475 concurrent-output, 449070 451476 containers, 451477 + data-default, 449071 451478 directory, 451479 + extra, 449072 451480 filepath, 449073 451481 filepattern, 449074 - ghc-prim, 449075 451482 hspec, 449076 451483 HsYAML, 451484 + MissingH, 449077 451485 monad-parallel, 449078 451486 process, 449079 451487 SafeSemaphore, 449080 451488 text, 451489 + text-builder-linear, 451490 + text-display, 449081 451491 time, 449082 451492 unix-compat, 449083 - unordered-containers, 449084 451493 xdg-basedir, 449085 451494 }: 449086 451495 mkDerivation { 449087 451496 pname = "miv"; 449088 - version = "0.4.8"; 449089 - sha256 = "1b3lplsnjf992rvidj48swccl8f8aqdik1sf481g7vwv2mz7d7m6"; 451497 + version = "0.4.9"; 451498 + sha256 = "1z3hwvg3jb82hf6hrlzl9vv1fqy1llgfj2rps27fbccz50i6v6ps"; 449090 451499 isLibrary = false; 449091 451500 isExecutable = true; 449092 451501 executableHaskellDepends = [ ··· 449095 451504 bytestring 449096 451505 concurrent-output 449097 451506 containers 451507 + data-default 449098 451508 directory 451509 + extra 449099 451510 filepath 449100 451511 filepattern 449101 - ghc-prim 449102 451512 HsYAML 451513 + MissingH 449103 451514 monad-parallel 449104 451515 process 449105 451516 SafeSemaphore 449106 451517 text 451518 + text-builder-linear 451519 + text-display 449107 451520 time 449108 451521 unix-compat 449109 - unordered-containers 449110 451522 xdg-basedir 449111 451523 ]; 449112 451524 testHaskellDepends = [ 449113 451525 base 449114 - bytestring 449115 - containers 449116 - directory 449117 - ghc-prim 449118 451526 hspec 449119 - HsYAML 449120 - monad-parallel 449121 - process 449122 - text 449123 - time 449124 - unordered-containers 449125 451527 ]; 449126 451528 description = "Vim plugin manager written in Haskell"; 449127 451529 license = lib.licenses.mit; ··· 449591 451993 pname = "mmark-cli"; 449592 451994 version = "0.0.5.2"; 449593 451995 sha256 = "05i8wy3zls6fp1qmdz4ayydhgvq6jnhh2rj4r3frvp8nl70kkv26"; 451996 + revision = "1"; 451997 + editedCabalFile = "1p1ia1vxaa8qpbc4hclmavjnk8xj1b6qqzprq3gysy5l38s340aj"; 449594 451998 isLibrary = false; 449595 451999 isExecutable = true; 449596 452000 executableHaskellDepends = [ ··· 449671 452075 }: 449672 452076 mkDerivation { 449673 452077 pname = "mmorph"; 449674 - version = "1.2.0"; 449675 - sha256 = "1022d8mm523dihkf85mqsqxpm9rnyicmv91c8rm4csv7xdc80cv1"; 449676 - revision = "3"; 449677 - editedCabalFile = "1582vcpjiyimb1vwnhgq8gp805iziwa8sivv2frir0cgq4z236yz"; 452078 + version = "1.2.1"; 452079 + sha256 = "1rjclyxyr5ajnpmkrlwap77h5fmdwys8bpwfj0n87v33hh1dcn8f"; 449678 452080 libraryHaskellDepends = [ 449679 452081 base 449680 452082 mtl ··· 456467 458869 }: 456468 458870 mkDerivation { 456469 458871 pname = "monoidmap-aeson"; 456470 - version = "0.0.0.5"; 456471 - sha256 = "1m5pw94lrybjvf6hnfzl0v974fg2i53r5s8aw4qv9cbxizhh68ag"; 458872 + version = "0.0.0.6"; 458873 + sha256 = "0fd2cd4a8ncb3hibfknq0sf7j8nmmisr4bwc42yp6l0ddfsdbbd6"; 456472 458874 libraryHaskellDepends = [ 456473 458875 aeson 456474 458876 base ··· 456509 458911 }: 456510 458912 mkDerivation { 456511 458913 pname = "monoidmap-examples"; 456512 - version = "0.0.0.0"; 456513 - sha256 = "1pqswi2r41r7hrrzwg4ygj67jsgmmsyyqyn7n47lnf4q331l1hv6"; 458914 + version = "0.0.0.1"; 458915 + sha256 = "1q7vssgknncjq1f187zvg6630r6kk12mdmq1985skm98ynl1n8wx"; 456514 458916 libraryHaskellDepends = [ 456515 458917 base 456516 458918 containers ··· 456553 458955 }: 456554 458956 mkDerivation { 456555 458957 pname = "monoidmap-internal"; 456556 - version = "0.0.0.0"; 456557 - sha256 = "0di3b4x4f5mkmi71rpfa0zv5048z4hkzzdy1zw1qla46sn1646jg"; 458958 + version = "0.0.0.1"; 458959 + sha256 = "1khqa1pnxfngbay9gzjvls7hy7pddr8pd32c0z1na9mj8q8hz63c"; 456558 458960 libraryHaskellDepends = [ 456559 458961 base 456560 458962 containers ··· 456587 458989 ]; 456588 458990 description = "Internal support for monoidmap"; 456589 458991 license = lib.licenses.asl20; 456590 - hydraPlatforms = lib.platforms.none; 456591 - broken = true; 456592 458992 } 456593 458993 ) { }; 456594 458994 ··· 456603 459003 }: 456604 459004 mkDerivation { 456605 459005 pname = "monoidmap-quickcheck"; 456606 - version = "0.0.0.2"; 456607 - sha256 = "0sqgd61a6abwr7rdiqm25cs2kl496v8ji0rax9dw0sdc3zh6m4j2"; 459006 + version = "0.0.0.3"; 459007 + sha256 = "065b7rk64yg89ll546n338jny9d3y0pmp2alwf5z7z5n25nf40cq"; 456608 459008 libraryHaskellDepends = [ 456609 459009 base 456610 459010 containers ··· 460128 462528 badPlatforms = lib.platforms.darwin; 460129 462529 hydraPlatforms = lib.platforms.none; 460130 462530 mainProgram = "mptcp-pm"; 462531 + broken = true; 460131 462532 } 460132 462533 ) { }; 460133 462534 ··· 460813 463214 pname = "msgpack"; 460814 463215 version = "1.0.1.0"; 460815 463216 sha256 = "1ljb9rdhdbxqs32brrwd42c8v3z7yrl6pr4mzmid1rfqdipard77"; 460816 - revision = "2"; 460817 - editedCabalFile = "07m8xrwfxp0p6dgg7bz1vwsypcwi9ix84bxva462261ncyaayd9p"; 463217 + revision = "3"; 463218 + editedCabalFile = "10qhv3v617zq8r3b08mqb3h1h6vzmvyq2rps6kdvs8gvqb5mkiss"; 460818 463219 libraryHaskellDepends = [ 460819 463220 base 460820 463221 binary ··· 460838 463239 ]; 460839 463240 description = "A Haskell implementation of MessagePack"; 460840 463241 license = lib.licenses.bsd3; 460841 - hydraPlatforms = lib.platforms.none; 460842 - broken = true; 460843 463242 } 460844 463243 ) { }; 460845 463244 ··· 460883 463282 description = "Aeson adapter for MessagePack"; 460884 463283 license = lib.licenses.bsd3; 460885 463284 hydraPlatforms = lib.platforms.none; 463285 + broken = true; 460886 463286 } 460887 463287 ) { }; 460888 463288 ··· 461159 463559 description = "A MessagePack-RPC Implementation"; 461160 463560 license = lib.licenses.bsd3; 461161 463561 hydraPlatforms = lib.platforms.none; 463562 + broken = true; 461162 463563 } 461163 463564 ) { }; 461164 463565 ··· 464343 466744 pname = "multistate"; 464344 466745 version = "0.8.0.4"; 464345 466746 sha256 = "0y42c21ha0chqhrn40a4bikdbirsw7aqg4i866frpagz1ivr915q"; 464346 - revision = "1"; 464347 - editedCabalFile = "0m1wv2yv1isw1qkzfa2fgjx0md7irp9djcgy16739wvl8hnj1ciq"; 466747 + revision = "2"; 466748 + editedCabalFile = "1gdxarys4x4bws8d8smw219z7zrjbyl8k7d2fqv1ray1x52zxr3n"; 464348 466749 isLibrary = true; 464349 466750 isExecutable = true; 464350 466751 libraryHaskellDepends = [ ··· 469644 472045 }: 469645 472046 mkDerivation { 469646 472047 pname = "natural-arithmetic"; 469647 - version = "0.2.2.0"; 469648 - sha256 = "1ps6lcp0s3izphp3hx73p2v91cs1r2iz4rh1hwrmxd9pfar815ya"; 472048 + version = "0.2.3.0"; 472049 + sha256 = "1lf7v804lnvb63mw232qkyqrhdrbk37s6icx4wysiw8z90v6c10j"; 469649 472050 libraryHaskellDepends = [ 469650 472051 base 469651 472052 unlifted ··· 474021 476422 }: 474022 476423 mkDerivation { 474023 476424 pname = "network-protocol-xmpp"; 474024 - version = "0.5.1"; 474025 - sha256 = "1fd8rq235lbpkdlashsqk01ymxbbh6q1hng706h5lw0v49wpvd7i"; 476425 + version = "0.5.2"; 476426 + sha256 = "0jm46pkhys8a2rvyss8dv1b61im56il0kkwswg521xv6mfqk1csm"; 474026 476427 libraryHaskellDepends = [ 474027 476428 base 474028 476429 bytestring ··· 480450 482851 }: 480451 482852 mkDerivation { 480452 482853 pname = "notmuch"; 480453 - version = "0.3.1.1"; 480454 - sha256 = "18z8pbqagdyd5rqv42i6060vv40gv84dx3sf52vvrayga19k1ydw"; 482854 + version = "0.3.2"; 482855 + sha256 = "0yx7lkncs7xn3w3sdplwj7ghsblm9q4w97af9vw9rszhpd50b1cd"; 480455 482856 isLibrary = true; 480456 482857 isExecutable = true; 480457 482858 libraryHaskellDepends = [ ··· 480471 482872 ]; 480472 482873 libraryToolDepends = [ c2hs ]; 480473 482874 description = "Haskell binding to Notmuch, the mail indexer"; 480474 - license = lib.licenses.gpl3Only; 482875 + license = lib.licenses.gpl3Plus; 480475 482876 } 480476 482877 ) 480477 482878 { ··· 482726 485127 } 482727 485128 ) { }; 482728 485129 485130 + "numhask_0_13_0_0" = callPackage ( 485131 + { 485132 + mkDerivation, 485133 + base, 485134 + doctest-parallel, 485135 + QuickCheck, 485136 + }: 485137 + mkDerivation { 485138 + pname = "numhask"; 485139 + version = "0.13.0.0"; 485140 + sha256 = "13174w30c9pmmfjc5gn9yfzvlyr6ljm0diyh0q0gysiq0wspx2ni"; 485141 + libraryHaskellDepends = [ base ]; 485142 + testHaskellDepends = [ 485143 + base 485144 + doctest-parallel 485145 + QuickCheck 485146 + ]; 485147 + description = "A numeric class hierarchy"; 485148 + license = lib.licenses.bsd3; 485149 + hydraPlatforms = lib.platforms.none; 485150 + } 485151 + ) { }; 485152 + 482729 485153 "numhask-array" = callPackage ( 482730 485154 { 482731 485155 mkDerivation, ··· 485405 487829 pname = "ods2csv"; 485406 487830 version = "0.1.0.1"; 485407 487831 sha256 = "1a1qrknqh24hgv5v46vnxnaqcnx3n92rcwgh3b6h6k27kassx4xa"; 487832 + revision = "1"; 487833 + editedCabalFile = "0sb7k4sw64ld5jdsx1g522q911d4z9c92mh0vfjb0p7h4r1h71hm"; 485408 487834 isLibrary = false; 485409 487835 isExecutable = true; 485410 487836 executableHaskellDepends = [ ··· 486293 488719 pname = "oidc-client"; 486294 488720 version = "0.8.0.0"; 486295 488721 sha256 = "0fmffnf6gg99d15nn84ih36lr7qasa1zfkb62sgb0icik8dwv83m"; 488722 + revision = "1"; 488723 + editedCabalFile = "1zaaldni8i7kdxpmbpd2nlva0ygycn9955yh9qvcm08cd2wvq15d"; 486296 488724 isLibrary = true; 486297 488725 isExecutable = true; 486298 488726 libraryHaskellDepends = [ ··· 486330 488758 ]; 486331 488759 description = "OpenID Connect 1.0 library for RP"; 486332 488760 license = lib.licenses.mit; 486333 - hydraPlatforms = lib.platforms.none; 486334 - broken = true; 486335 488761 } 486336 488762 ) { }; 486337 488763 ··· 486541 488967 } 486542 488968 ) { }; 486543 488969 488970 + "ollama-haskell_0_2_0_0" = callPackage ( 488971 + { 488972 + mkDerivation, 488973 + aeson, 488974 + base, 488975 + base64-bytestring, 488976 + bytestring, 488977 + containers, 488978 + directory, 488979 + filepath, 488980 + http-client, 488981 + http-client-tls, 488982 + http-types, 488983 + mtl, 488984 + scientific, 488985 + silently, 488986 + stm, 488987 + tasty, 488988 + tasty-hunit, 488989 + text, 488990 + time, 488991 + }: 488992 + mkDerivation { 488993 + pname = "ollama-haskell"; 488994 + version = "0.2.0.0"; 488995 + sha256 = "00vgffjzhyc060x59gxrqazzclkm3bspmvzva5kc2c2319l93wy8"; 488996 + libraryHaskellDepends = [ 488997 + aeson 488998 + base 488999 + base64-bytestring 489000 + bytestring 489001 + containers 489002 + directory 489003 + filepath 489004 + http-client 489005 + http-client-tls 489006 + http-types 489007 + mtl 489008 + stm 489009 + text 489010 + time 489011 + ]; 489012 + testHaskellDepends = [ 489013 + aeson 489014 + base 489015 + base64-bytestring 489016 + bytestring 489017 + containers 489018 + directory 489019 + filepath 489020 + http-client 489021 + http-client-tls 489022 + http-types 489023 + mtl 489024 + scientific 489025 + silently 489026 + stm 489027 + tasty 489028 + tasty-hunit 489029 + text 489030 + time 489031 + ]; 489032 + description = "Haskell client for ollama"; 489033 + license = lib.licenses.mit; 489034 + hydraPlatforms = lib.platforms.none; 489035 + broken = true; 489036 + } 489037 + ) { }; 489038 + 486544 489039 "ollama-holes-plugin" = callPackage ( 486545 489040 { 486546 489041 mkDerivation, ··· 489408 491903 }: 489409 491904 mkDerivation { 489410 491905 pname = "opencascade-hs"; 489411 - version = "0.5.0.1"; 489412 - sha256 = "1a397mxry4k5hq6gwnjn1lc3q8fz5pg7ff6imr1fwyf9b6rhls9j"; 491906 + version = "0.5.1.0"; 491907 + sha256 = "12c77xnh0h0h2sw23q5v891iddnmsq5j1853b90wypm6p18kpnsw"; 489413 491908 libraryHaskellDepends = [ 489414 491909 base 489415 491910 resourcet ··· 489432 491927 }: 489433 491928 mkDerivation { 489434 491929 pname = "opencc"; 489435 - version = "0.1.1.0"; 489436 - sha256 = "06jz04352bgqnfvzds75n65x352x07ffj8aan01q6m2mjs3xidfa"; 491930 + version = "0.1.2.0"; 491931 + sha256 = "0vl57aglagq0zpxld3hhp4sda783m5sncdxwyxyjypl433yjyzgq"; 489437 491932 libraryHaskellDepends = [ 489438 491933 base 489439 491934 bytestring ··· 490821 493316 }: 490822 493317 mkDerivation { 490823 493318 pname = "opentelemetry-plugin"; 490824 - version = "1.1.1"; 490825 - sha256 = "1sp6bzy0is704x18522b2kmbbsw3nbfz9x69rvidmpz0x52cpwbg"; 493319 + version = "1.1.2"; 493320 + sha256 = "12lm7b4kjqlvc3j2i4q7xqavr0d98wazfaqyvph20afvfq90zwf8"; 490826 493321 libraryHaskellDepends = [ 490827 493322 base 490828 493323 bytestring ··· 490840 493335 ]; 490841 493336 description = "GHC plugin for open telemetry"; 490842 493337 license = lib.licenses.bsd3; 490843 - hydraPlatforms = lib.platforms.none; 490844 - broken = true; 490845 493338 } 490846 493339 ) { }; 490847 493340 ··· 492465 494958 } 492466 494959 ) { }; 492467 494960 492468 - "optima_0_4_0_6" = callPackage ( 494961 + "optima_0_4_0_7" = callPackage ( 492469 494962 { 492470 494963 mkDerivation, 492471 494964 attoparsec, ··· 492478 494971 }: 492479 494972 mkDerivation { 492480 494973 pname = "optima"; 492481 - version = "0.4.0.6"; 492482 - sha256 = "06wy9d3zidly70d3n9bbxfl9yx2hx03xw8k9p8vhjb0xj526vpgk"; 494974 + version = "0.4.0.7"; 494975 + sha256 = "0cqy4ifddmyjmp8hj5ksi7f1b2bvxlwljm6q2cjxfpp3ig6alzr6"; 492483 494976 libraryHaskellDepends = [ 492484 494977 attoparsec 492485 494978 attoparsec-data ··· 492843 495336 } 492844 495337 ) { }; 492845 495338 495339 + "optparse-applicative_0_19_0_0" = callPackage ( 495340 + { 495341 + mkDerivation, 495342 + base, 495343 + prettyprinter, 495344 + prettyprinter-ansi-terminal, 495345 + process, 495346 + QuickCheck, 495347 + text, 495348 + transformers, 495349 + }: 495350 + mkDerivation { 495351 + pname = "optparse-applicative"; 495352 + version = "0.19.0.0"; 495353 + sha256 = "0waq6i6jk0zj9vb00m62khfcm9xdnz3afzs471vhqwr1v3psw5ng"; 495354 + libraryHaskellDepends = [ 495355 + base 495356 + prettyprinter 495357 + prettyprinter-ansi-terminal 495358 + process 495359 + text 495360 + transformers 495361 + ]; 495362 + testHaskellDepends = [ 495363 + base 495364 + QuickCheck 495365 + ]; 495366 + description = "Utilities and combinators for parsing command line options"; 495367 + license = lib.licenses.bsd3; 495368 + hydraPlatforms = lib.platforms.none; 495369 + } 495370 + ) { }; 495371 + 492846 495372 "optparse-applicative-cmdline-util" = callPackage ( 492847 495373 { 492848 495374 mkDerivation, ··· 495188 497714 pname = "os-string"; 495189 497715 version = "2.0.7"; 495190 497716 sha256 = "186b4swiga0nk05np512iw50pz9w88l3bqz47pr241997bykb71k"; 497717 + revision = "1"; 497718 + editedCabalFile = "0504jf7wa84z3a8gd60cx7df6232xq31wqc532jcxrxh3hl0hm6b"; 495191 497719 libraryHaskellDepends = [ 495192 497720 base 495193 497721 bytestring ··· 495746 498274 }: 495747 498275 mkDerivation { 495748 498276 pname = "oughta"; 495749 - version = "0.2.0.0"; 495750 - sha256 = "1ls97l94jpv5mlmiqccm4z8p80vnk8z0mv2937zcl1c7bx67ra3j"; 498277 + version = "0.3.0.0"; 498278 + sha256 = "1153jnvscsc3i8zz0sih7vy42vlsgynw0hvjvh0zxxqcyx4cc27i"; 495751 498279 libraryHaskellDepends = [ 495752 498280 base 495753 498281 bytestring ··· 496134 498662 } 496135 498663 ) { }; 496136 498664 498665 + "ox-arrays" = callPackage ( 498666 + { 498667 + mkDerivation, 498668 + base, 498669 + bytestring, 498670 + deepseq, 498671 + ghc-typelits-knownnat, 498672 + ghc-typelits-natnormalise, 498673 + hedgehog, 498674 + hmatrix, 498675 + orthotope, 498676 + random, 498677 + tasty, 498678 + tasty-bench, 498679 + tasty-hedgehog, 498680 + template-haskell, 498681 + vector, 498682 + }: 498683 + mkDerivation { 498684 + pname = "ox-arrays"; 498685 + version = "0.1.0.0"; 498686 + sha256 = "0kix255p5n1dg9y3s00il3x4s1r4d3fn1v6ljm6zgy8j40lg1nzh"; 498687 + libraryHaskellDepends = [ 498688 + base 498689 + deepseq 498690 + ghc-typelits-knownnat 498691 + ghc-typelits-natnormalise 498692 + orthotope 498693 + template-haskell 498694 + vector 498695 + ]; 498696 + testHaskellDepends = [ 498697 + base 498698 + bytestring 498699 + ghc-typelits-knownnat 498700 + ghc-typelits-natnormalise 498701 + hedgehog 498702 + orthotope 498703 + random 498704 + tasty 498705 + tasty-hedgehog 498706 + vector 498707 + ]; 498708 + benchmarkHaskellDepends = [ 498709 + base 498710 + hmatrix 498711 + orthotope 498712 + tasty-bench 498713 + vector 498714 + ]; 498715 + doHaddock = false; 498716 + description = "An efficient CPU-based multidimensional array (tensor) library"; 498717 + license = lib.licenses.bsd3; 498718 + hydraPlatforms = lib.platforms.none; 498719 + broken = true; 498720 + } 498721 + ) { }; 498722 + 496137 498723 "pa-error-tree" = callPackage ( 496138 498724 { 496139 498725 mkDerivation, ··· 496661 499247 extra, 496662 499248 filepath, 496663 499249 hspec, 499250 + linear-base, 496664 499251 listsafe, 496665 499252 mtl, 496666 499253 optparse-applicative, ··· 496672 499259 }: 496673 499260 mkDerivation { 496674 499261 pname = "packed-data"; 496675 - version = "0.1.0.3"; 496676 - sha256 = "1h0aqcpfygj29mij5ln7zaypf4a6v37ycnlhh5shb7pvh0nfajn3"; 499262 + version = "0.2.0.0"; 499263 + sha256 = "07hkm3a98aadihm3zvvq299xmswf8xzdyzx06qcs7nbdqwkqx2zk"; 496677 499264 isLibrary = true; 496678 499265 isExecutable = true; 496679 499266 libraryHaskellDepends = [ 496680 499267 base 496681 499268 bytestring 496682 - bytestring-strict-builder 496683 499269 deepseq 496684 499270 extra 499271 + linear-base 496685 499272 mtl 496686 499273 template-haskell 496687 499274 ]; ··· 496710 499297 vector 496711 499298 ]; 496712 499299 license = lib.licenses.bsd3; 499300 + hydraPlatforms = lib.platforms.none; 496713 499301 mainProgram = "examples"; 499302 + broken = true; 496714 499303 } 496715 499304 ) { }; 496716 499305 ··· 497746 500335 "palindromes" = callPackage ( 497747 500336 { 497748 500337 mkDerivation, 497749 - array, 497750 500338 base, 497751 - bytestring, 497752 - containers, 500339 + conduit, 500340 + criterion, 500341 + deepseq, 500342 + directory, 500343 + filepath, 500344 + HUnit, 500345 + levenshtein, 500346 + QuickCheck, 500347 + strict, 500348 + vector, 497753 500349 }: 497754 500350 mkDerivation { 497755 500351 pname = "palindromes"; 497756 - version = "0.4"; 497757 - sha256 = "1k0kvd8p1ivwmpmf8khwmb4vyk8z0di74xn5840zy9jhf1cwx4kn"; 500352 + version = "1.1.0.0"; 500353 + sha256 = "1dfq0b2f11xwbdn9hyrrr4ywzz415nb32n4yfjrqf35myaqdbfcz"; 497758 500354 isLibrary = true; 497759 500355 isExecutable = true; 500356 + libraryHaskellDepends = [ 500357 + base 500358 + conduit 500359 + vector 500360 + ]; 497760 500361 executableHaskellDepends = [ 497761 - array 497762 500362 base 497763 - bytestring 497764 - containers 500363 + directory 500364 + ]; 500365 + testHaskellDepends = [ 500366 + base 500367 + HUnit 500368 + levenshtein 500369 + QuickCheck 500370 + vector 500371 + ]; 500372 + benchmarkHaskellDepends = [ 500373 + base 500374 + criterion 500375 + deepseq 500376 + directory 500377 + filepath 500378 + strict 497765 500379 ]; 497766 500380 description = "Finding palindromes in strings"; 497767 500381 license = lib.licenses.bsd3; ··· 499571 502185 }: 499572 502186 mkDerivation { 499573 502187 pname = "pandoc-lua-marshal"; 499574 - version = "0.3.0"; 499575 - sha256 = "0d8vfbmgd107b9lq9dq0b39v3dhznqh11j0ci0i8hsb7g3dkks5g"; 502188 + version = "0.3.1"; 502189 + sha256 = "0869amr9w5s90dha694vy6rwfni7p1wp9dyjyyk2jvh8h22gcpr0"; 499576 502190 libraryHaskellDepends = [ 499577 502191 aeson 499578 502192 base ··· 499801 502415 pname = "pandoc-plot"; 499802 502416 version = "1.9.1"; 499803 502417 sha256 = "0d6lknjnlzg4a7sx311kpdi94yq7fp19lhvwbsf7rvc3ykx0hjm3"; 502418 + revision = "1"; 502419 + editedCabalFile = "0ykgv0cxiwvcx0pkkmx841cdwv2sas033mq928mg6dlcbvw32nx1"; 499804 502420 isLibrary = true; 499805 502421 isExecutable = true; 499806 502422 libraryHaskellDepends = [ ··· 500211 502827 pname = "pandoc-types"; 500212 502828 version = "1.23.1"; 500213 502829 sha256 = "1hd18l1c5yh7x24gsligkbraadq12hn7mim16xyjnicdsa1s03xd"; 500214 - revision = "2"; 500215 - editedCabalFile = "1whymq4w5z08l5ng829kn8aslczda6svi6c6q72cnv200mlq7d1c"; 502830 + revision = "3"; 502831 + editedCabalFile = "0w2n4vzxs3jasrivaq49clxdlccnfv2gh4mkp8s7krxa1arambrz"; 500216 502832 libraryHaskellDepends = [ 500217 502833 aeson 500218 502834 base ··· 503612 506228 pname = "parser-combinators-tests"; 503613 506229 version = "1.3.0"; 503614 506230 sha256 = "0sw6ws7za93y3lbmxp6jp1k17zi3wdg7698ab133kcw82f6mzba2"; 503615 - revision = "1"; 503616 - editedCabalFile = "0h6lwj0mdlirlwcadjvyblvgqg6yksw2bnp77qkjxm2kk3rw56hn"; 506231 + revision = "2"; 506232 + editedCabalFile = "1b038wk6b1kria8627qb0nfrz4v67j2yq5rx01m3vigfxf6h4422"; 503617 506233 isLibrary = false; 503618 506234 isExecutable = false; 503619 506235 testHaskellDepends = [ ··· 506147 508763 exceptions, 506148 508764 hspec, 506149 508765 http-client, 508766 + http-client-tls, 506150 508767 http-types, 506151 508768 network-uri, 506152 508769 text, ··· 506155 508772 }: 506156 508773 mkDerivation { 506157 508774 pname = "patrol"; 506158 - version = "1.0.0.11"; 506159 - sha256 = "0adci15r7mm0ddbg4zb10kngyl0c7ipaws7drd7idmzrb0gb82kd"; 508775 + version = "1.0.1.0"; 508776 + sha256 = "1yk90shi4idxdzf82mvxpsbgslx3psrwpxgwhnqpcl0kj4sdblf1"; 508777 + libraryHaskellDepends = [ 508778 + aeson 508779 + base 508780 + bytestring 508781 + case-insensitive 508782 + containers 508783 + exceptions 508784 + http-client 508785 + http-client-tls 508786 + http-types 508787 + network-uri 508788 + text 508789 + time 508790 + uuid 508791 + ]; 508792 + testHaskellDepends = [ 508793 + aeson 508794 + base 508795 + bytestring 508796 + case-insensitive 508797 + containers 508798 + hspec 508799 + http-client 508800 + http-types 508801 + network-uri 508802 + text 508803 + time 508804 + uuid 508805 + ]; 508806 + description = "Sentry SDK"; 508807 + license = lib.licenses.mit; 508808 + } 508809 + ) { }; 508810 + 508811 + "patrol_1_1_0_0" = callPackage ( 508812 + { 508813 + mkDerivation, 508814 + aeson, 508815 + base, 508816 + bytestring, 508817 + case-insensitive, 508818 + containers, 508819 + exceptions, 508820 + hspec, 508821 + http-client, 508822 + http-client-tls, 508823 + http-types, 508824 + network-uri, 508825 + text, 508826 + time, 508827 + uuid, 508828 + }: 508829 + mkDerivation { 508830 + pname = "patrol"; 508831 + version = "1.1.0.0"; 508832 + sha256 = "0ijfflc9gv3ks5y3irng0mpsbcfwx41v59xgm8840310sz6kj4p1"; 506160 508833 libraryHaskellDepends = [ 506161 508834 aeson 506162 508835 base ··· 506165 508838 containers 506166 508839 exceptions 506167 508840 http-client 508841 + http-client-tls 506168 508842 http-types 506169 508843 network-uri 506170 508844 text ··· 506188 508862 ]; 506189 508863 description = "Sentry SDK"; 506190 508864 license = lib.licenses.mit; 508865 + hydraPlatforms = lib.platforms.none; 506191 508866 } 506192 508867 ) { }; 506193 508868 ··· 508030 510705 ]; 508031 510706 description = "Lazy Peano numbers including observable infinity value"; 508032 510707 license = lib.licenses.bsd3; 510708 + } 510709 + ) { }; 510710 + 510711 + "pear" = callPackage ( 510712 + { 510713 + mkDerivation, 510714 + base, 510715 + doctest, 510716 + markdown-unlit, 510717 + }: 510718 + mkDerivation { 510719 + pname = "pear"; 510720 + version = "1.0.0.1"; 510721 + sha256 = "1svbmj1v7y3hq9f43x4szvs6h83zz085y1h5lncci4i4yx7qfrhj"; 510722 + libraryHaskellDepends = [ base ]; 510723 + testHaskellDepends = [ 510724 + base 510725 + doctest 510726 + ]; 510727 + testToolDepends = [ markdown-unlit ]; 510728 + description = "Pear Trees: An indexed type using type-level binary numbers"; 510729 + license = lib.licenses.mit; 508033 510730 } 508034 510731 ) { }; 508035 510732 ··· 510559 513256 }: 510560 513257 mkDerivation { 510561 513258 pname = "persistent-documentation"; 510562 - version = "0.1.0.5"; 510563 - sha256 = "032mfnsz5kpy1022gc2w9y0g4fjhqwq07zb2r8arjdhzzhbirwk2"; 510564 - libraryHaskellDepends = [ 510565 - base 510566 - containers 510567 - mtl 510568 - persistent 510569 - template-haskell 510570 - text 510571 - ]; 510572 - testHaskellDepends = [ 510573 - base 510574 - containers 510575 - hspec 510576 - hspec-discover 510577 - persistent 510578 - persistent-template 510579 - text 510580 - ]; 510581 - testToolDepends = [ hspec-discover ]; 510582 - description = "Documentation DSL for persistent entities"; 510583 - license = lib.licenses.asl20; 510584 - } 510585 - ) { }; 510586 - 510587 - "persistent-documentation_0_1_0_6" = callPackage ( 510588 - { 510589 - mkDerivation, 510590 - base, 510591 - containers, 510592 - hspec, 510593 - hspec-discover, 510594 - mtl, 510595 - persistent, 510596 - persistent-template, 510597 - template-haskell, 510598 - text, 510599 - }: 510600 - mkDerivation { 510601 - pname = "persistent-documentation"; 510602 513259 version = "0.1.0.6"; 510603 513260 sha256 = "1v07vhjmim4bycl7ygg2my3qwqqz36ajm8x8gwqh0g0i83sjh5ks"; 510604 513261 libraryHaskellDepends = [ ··· 510621 513278 testToolDepends = [ hspec-discover ]; 510622 513279 description = "Documentation DSL for persistent entities"; 510623 513280 license = lib.licenses.asl20; 510624 - hydraPlatforms = lib.platforms.none; 510625 513281 } 510626 513282 ) { }; 510627 513283 ··· 511720 514376 } 511721 514377 ) { }; 511722 514378 514379 + "persistent-postgresql_2_13_7_0" = callPackage ( 514380 + { 514381 + mkDerivation, 514382 + aeson, 514383 + attoparsec, 514384 + base, 514385 + blaze-builder, 514386 + bytestring, 514387 + conduit, 514388 + containers, 514389 + fast-logger, 514390 + hspec, 514391 + hspec-expectations, 514392 + hspec-expectations-lifted, 514393 + http-api-data, 514394 + HUnit, 514395 + monad-logger, 514396 + mtl, 514397 + path-pieces, 514398 + persistent, 514399 + persistent-qq, 514400 + persistent-test, 514401 + postgresql-libpq, 514402 + postgresql-simple, 514403 + QuickCheck, 514404 + quickcheck-instances, 514405 + resource-pool, 514406 + resourcet, 514407 + string-conversions, 514408 + text, 514409 + time, 514410 + transformers, 514411 + unliftio, 514412 + unliftio-core, 514413 + unordered-containers, 514414 + vault, 514415 + vector, 514416 + }: 514417 + mkDerivation { 514418 + pname = "persistent-postgresql"; 514419 + version = "2.13.7.0"; 514420 + sha256 = "1774fh28jls2r692164ln66ipa6gl3sqj8pb04nf3sl1m498qjd7"; 514421 + isLibrary = true; 514422 + isExecutable = true; 514423 + libraryHaskellDepends = [ 514424 + aeson 514425 + attoparsec 514426 + base 514427 + blaze-builder 514428 + bytestring 514429 + conduit 514430 + containers 514431 + monad-logger 514432 + mtl 514433 + persistent 514434 + postgresql-libpq 514435 + postgresql-simple 514436 + resource-pool 514437 + resourcet 514438 + string-conversions 514439 + text 514440 + time 514441 + transformers 514442 + unliftio-core 514443 + vault 514444 + ]; 514445 + testHaskellDepends = [ 514446 + aeson 514447 + base 514448 + bytestring 514449 + containers 514450 + fast-logger 514451 + hspec 514452 + hspec-expectations 514453 + hspec-expectations-lifted 514454 + http-api-data 514455 + HUnit 514456 + monad-logger 514457 + path-pieces 514458 + persistent 514459 + persistent-qq 514460 + persistent-test 514461 + QuickCheck 514462 + quickcheck-instances 514463 + resourcet 514464 + text 514465 + time 514466 + transformers 514467 + unliftio 514468 + unliftio-core 514469 + unordered-containers 514470 + vector 514471 + ]; 514472 + description = "Backend for the persistent library using postgresql"; 514473 + license = lib.licenses.mit; 514474 + hydraPlatforms = lib.platforms.none; 514475 + } 514476 + ) { }; 514477 + 511723 514478 "persistent-postgresql-streaming" = callPackage ( 511724 514479 { 511725 514480 mkDerivation, ··· 512366 515121 } 512367 515122 ) { }; 512368 515123 512369 - "persistent-test_2_13_1_3" = callPackage ( 515124 + "persistent-test" = callPackage ( 512370 515125 { 512371 515126 mkDerivation, 512372 515127 aeson, ··· 512432 515187 ]; 512433 515188 description = "Tests for Persistent"; 512434 515189 license = lib.licenses.mit; 512435 - hydraPlatforms = lib.platforms.none; 512436 515190 } 512437 515191 ) { }; 512438 515192 512439 - "persistent-test" = callPackage ( 515193 + "persistent-test_2_13_1_4" = callPackage ( 512440 515194 { 512441 515195 mkDerivation, 512442 515196 aeson, ··· 512471 515225 pname = "persistent-test"; 512472 515226 version = "2.13.1.4"; 512473 515227 sha256 = "1k2wq6ag4jvqr1krdjfx84mmx0mg09hy38w569zxwdrd03ffcjpy"; 515228 + revision = "1"; 515229 + editedCabalFile = "1kzqhvs4h8xpx2x153gh64rc006mvjxv6fzsyxvnfknmqcx8xn19"; 512474 515230 libraryHaskellDepends = [ 512475 515231 aeson 512476 515232 base ··· 512502 515258 ]; 512503 515259 description = "Tests for Persistent"; 512504 515260 license = lib.licenses.mit; 515261 + hydraPlatforms = lib.platforms.none; 512505 515262 } 512506 515263 ) { }; 512507 515264 ··· 512529 515286 pname = "persistent-typed-db"; 512530 515287 version = "0.1.0.7"; 512531 515288 sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; 512532 - revision = "1"; 512533 - editedCabalFile = "19l1nfd82l8lsjsi00virsapwlnany5cdwgzw9hmm9bkwxfsk9v8"; 515289 + revision = "2"; 515290 + editedCabalFile = "0m5ajvfcj10k1mnlwdyd1n9s3py70g4sinzh0gkvch9q1bl6qiwz"; 512534 515291 libraryHaskellDepends = [ 512535 515292 aeson 512536 515293 base ··· 513989 516746 bytestring, 513990 516747 containers, 513991 516748 directory, 516749 + file-embed, 513992 516750 filepath, 513993 516751 hspec, 513994 516752 hspec-core, ··· 513996 516754 megaparsec, 513997 516755 optparse-applicative, 513998 516756 prettyprinter, 516757 + process, 516758 + random, 513999 516759 scientific, 514000 516760 silently, 514001 516761 text, 516762 + time, 514002 516763 utf8-string, 516764 + vector, 516765 + xml-conduit, 514003 516766 yaml, 514004 516767 }: 514005 516768 mkDerivation { 514006 516769 pname = "phino"; 514007 - version = "0.0.0.1"; 514008 - sha256 = "1sl4iqrcmmjn2gc294rz4yfj5k0hd7ngl9ax57k22h2qac90rrkc"; 516770 + version = "0.0.0.14"; 516771 + sha256 = "1nl2n0y636bdppxc29p4zyxlyra2zjiy3a1s6xw2yin64q3gqrim"; 514009 516772 isLibrary = true; 514010 516773 isExecutable = true; 514011 516774 libraryHaskellDepends = [ ··· 514015 516778 bytestring 514016 516779 containers 514017 516780 directory 516781 + file-embed 514018 516782 filepath 514019 516783 megaparsec 514020 516784 optparse-applicative 514021 516785 prettyprinter 516786 + random 514022 516787 scientific 514023 516788 text 516789 + time 514024 516790 utf8-string 516791 + vector 516792 + xml-conduit 514025 516793 yaml 514026 516794 ]; 514027 516795 executableHaskellDepends = [ base ]; ··· 514036 516804 megaparsec 514037 516805 optparse-applicative 514038 516806 prettyprinter 516807 + process 514039 516808 silently 514040 516809 text 516810 + xml-conduit 514041 516811 yaml 514042 516812 ]; 514043 516813 testToolDepends = [ hspec-discover ]; ··· 519444 522214 pname = "pipes-safe"; 519445 522215 version = "2.3.5"; 519446 522216 sha256 = "13npagy597g6zfr2f3vj4a98h2ssg2ps7lmdzrgdsvm8m28x3cph"; 519447 - revision = "3"; 519448 - editedCabalFile = "1wic8km3c17g2xrmxd4qj5qmppb76k7srxrgj8jg1vs6g2l7v6cs"; 522217 + revision = "4"; 522218 + editedCabalFile = "1x0p9fiilz21ck5n52lg2p17qi7n0mkk566qzzwd4jnvhbcsb8jf"; 519449 522219 libraryHaskellDepends = [ 519450 522220 base 519451 522221 containers ··· 522415 525185 } 522416 525186 ) { }; 522417 525187 525188 + "pms-application-service" = callPackage ( 525189 + { 525190 + mkDerivation, 525191 + aeson, 525192 + async, 525193 + async-pool, 525194 + base, 525195 + data-default, 525196 + fast-logger, 525197 + hspec, 525198 + hspec-discover, 525199 + lens, 525200 + monad-logger, 525201 + mtl, 525202 + pms-domain-model, 525203 + safe-exceptions, 525204 + stm, 525205 + text, 525206 + unix, 525207 + yaml, 525208 + }: 525209 + mkDerivation { 525210 + pname = "pms-application-service"; 525211 + version = "0.0.4.0"; 525212 + sha256 = "0a91pa5rs2vplixky8bap4gl8i8mm3j7454w7s4pihyf4h7wfhpl"; 525213 + libraryHaskellDepends = [ 525214 + aeson 525215 + async 525216 + async-pool 525217 + base 525218 + data-default 525219 + fast-logger 525220 + lens 525221 + monad-logger 525222 + mtl 525223 + pms-domain-model 525224 + safe-exceptions 525225 + text 525226 + yaml 525227 + ]; 525228 + testHaskellDepends = [ 525229 + async 525230 + base 525231 + data-default 525232 + hspec 525233 + hspec-discover 525234 + lens 525235 + monad-logger 525236 + pms-domain-model 525237 + stm 525238 + unix 525239 + ]; 525240 + testToolDepends = [ hspec-discover ]; 525241 + description = "pms-application-service"; 525242 + license = lib.licenses.asl20; 525243 + hydraPlatforms = lib.platforms.none; 525244 + } 525245 + ) { }; 525246 + 525247 + "pms-domain-model" = callPackage ( 525248 + { 525249 + mkDerivation, 525250 + aeson, 525251 + async, 525252 + base, 525253 + bytestring, 525254 + data-default, 525255 + fast-logger, 525256 + filepath, 525257 + hspec, 525258 + hspec-discover, 525259 + lens, 525260 + monad-logger, 525261 + mtl, 525262 + safe-exceptions, 525263 + stm, 525264 + strip-ansi-escape, 525265 + text, 525266 + transformers, 525267 + unix, 525268 + }: 525269 + mkDerivation { 525270 + pname = "pms-domain-model"; 525271 + version = "0.0.5.0"; 525272 + sha256 = "0z0a04j6x4jrq6xpfdd6jnbq7q7p71y51gar6i6g0apfliiydq9w"; 525273 + libraryHaskellDepends = [ 525274 + aeson 525275 + base 525276 + bytestring 525277 + data-default 525278 + fast-logger 525279 + filepath 525280 + lens 525281 + monad-logger 525282 + mtl 525283 + safe-exceptions 525284 + stm 525285 + strip-ansi-escape 525286 + text 525287 + transformers 525288 + ]; 525289 + testHaskellDepends = [ 525290 + aeson 525291 + async 525292 + base 525293 + data-default 525294 + hspec 525295 + hspec-discover 525296 + lens 525297 + monad-logger 525298 + stm 525299 + unix 525300 + ]; 525301 + testToolDepends = [ hspec-discover ]; 525302 + description = "pms-domain-model"; 525303 + license = lib.licenses.asl20; 525304 + hydraPlatforms = lib.platforms.none; 525305 + broken = true; 525306 + } 525307 + ) { }; 525308 + 525309 + "pms-domain-service" = callPackage ( 525310 + { 525311 + mkDerivation, 525312 + aeson, 525313 + async, 525314 + base, 525315 + bytestring, 525316 + conduit, 525317 + data-default, 525318 + directory, 525319 + fast-logger, 525320 + filepath, 525321 + hspec, 525322 + hspec-discover, 525323 + lens, 525324 + monad-logger, 525325 + mtl, 525326 + mustache, 525327 + network-uri, 525328 + pms-domain-model, 525329 + safe-exceptions, 525330 + stm, 525331 + template-haskell, 525332 + text, 525333 + transformers, 525334 + unix, 525335 + unordered-containers, 525336 + }: 525337 + mkDerivation { 525338 + pname = "pms-domain-service"; 525339 + version = "0.0.4.0"; 525340 + sha256 = "1akacdrh2ngyvik46sjhag8kp9hyyr7rv9grswx7i3ngy6pk64yn"; 525341 + libraryHaskellDepends = [ 525342 + aeson 525343 + base 525344 + bytestring 525345 + conduit 525346 + data-default 525347 + directory 525348 + fast-logger 525349 + filepath 525350 + lens 525351 + monad-logger 525352 + mtl 525353 + mustache 525354 + network-uri 525355 + pms-domain-model 525356 + safe-exceptions 525357 + stm 525358 + template-haskell 525359 + text 525360 + transformers 525361 + unordered-containers 525362 + ]; 525363 + testHaskellDepends = [ 525364 + async 525365 + base 525366 + data-default 525367 + hspec 525368 + hspec-discover 525369 + lens 525370 + monad-logger 525371 + pms-domain-model 525372 + stm 525373 + unix 525374 + ]; 525375 + testToolDepends = [ hspec-discover ]; 525376 + description = "pms-domain-service"; 525377 + license = lib.licenses.asl20; 525378 + hydraPlatforms = lib.platforms.none; 525379 + } 525380 + ) { }; 525381 + 525382 + "pms-infra-cmdrun" = callPackage ( 525383 + { 525384 + mkDerivation, 525385 + aeson, 525386 + async, 525387 + base, 525388 + bytestring, 525389 + conduit, 525390 + data-default, 525391 + directory, 525392 + fast-logger, 525393 + filepath, 525394 + hspec, 525395 + hspec-discover, 525396 + lens, 525397 + monad-logger, 525398 + mtl, 525399 + pms-domain-model, 525400 + process, 525401 + safe-exceptions, 525402 + stm, 525403 + text, 525404 + transformers, 525405 + unix, 525406 + }: 525407 + mkDerivation { 525408 + pname = "pms-infra-cmdrun"; 525409 + version = "0.0.2.0"; 525410 + sha256 = "0c4jhci5im04ks49if7ncbqipbln2ixw2f262qw64ir5a5hdygzy"; 525411 + libraryHaskellDepends = [ 525412 + aeson 525413 + async 525414 + base 525415 + bytestring 525416 + conduit 525417 + data-default 525418 + directory 525419 + fast-logger 525420 + filepath 525421 + lens 525422 + monad-logger 525423 + mtl 525424 + pms-domain-model 525425 + process 525426 + safe-exceptions 525427 + stm 525428 + text 525429 + transformers 525430 + ]; 525431 + testHaskellDepends = [ 525432 + async 525433 + base 525434 + data-default 525435 + hspec 525436 + hspec-discover 525437 + lens 525438 + monad-logger 525439 + pms-domain-model 525440 + stm 525441 + unix 525442 + ]; 525443 + testToolDepends = [ hspec-discover ]; 525444 + description = "pms-infra-cmdrun"; 525445 + license = lib.licenses.asl20; 525446 + hydraPlatforms = lib.platforms.none; 525447 + } 525448 + ) { }; 525449 + 525450 + "pms-infra-procspawn" = callPackage ( 525451 + { 525452 + mkDerivation, 525453 + aeson, 525454 + async, 525455 + base, 525456 + bytestring, 525457 + conduit, 525458 + data-default, 525459 + directory, 525460 + fast-logger, 525461 + filepath, 525462 + hspec, 525463 + hspec-discover, 525464 + lens, 525465 + monad-logger, 525466 + mtl, 525467 + pms-domain-model, 525468 + process, 525469 + safe-exceptions, 525470 + stm, 525471 + text, 525472 + transformers, 525473 + unix, 525474 + }: 525475 + mkDerivation { 525476 + pname = "pms-infra-procspawn"; 525477 + version = "0.0.1.0"; 525478 + sha256 = "1wg0508h2svl0pk9yrwrnmssrqnm2vnlws9w9nm5ydqlqibdr282"; 525479 + libraryHaskellDepends = [ 525480 + aeson 525481 + async 525482 + base 525483 + bytestring 525484 + conduit 525485 + data-default 525486 + directory 525487 + fast-logger 525488 + filepath 525489 + lens 525490 + monad-logger 525491 + mtl 525492 + pms-domain-model 525493 + process 525494 + safe-exceptions 525495 + stm 525496 + text 525497 + transformers 525498 + ]; 525499 + testHaskellDepends = [ 525500 + async 525501 + base 525502 + data-default 525503 + hspec 525504 + hspec-discover 525505 + lens 525506 + monad-logger 525507 + pms-domain-model 525508 + stm 525509 + unix 525510 + ]; 525511 + testToolDepends = [ hspec-discover ]; 525512 + description = "pms-infra-procspawn"; 525513 + license = lib.licenses.asl20; 525514 + hydraPlatforms = lib.platforms.none; 525515 + } 525516 + ) { }; 525517 + 525518 + "pms-infra-socket" = callPackage ( 525519 + { 525520 + mkDerivation, 525521 + aeson, 525522 + async, 525523 + base, 525524 + base16-bytestring, 525525 + bytestring, 525526 + conduit, 525527 + data-default, 525528 + directory, 525529 + fast-logger, 525530 + filepath, 525531 + hspec, 525532 + hspec-discover, 525533 + lens, 525534 + monad-logger, 525535 + mtl, 525536 + network, 525537 + pms-domain-model, 525538 + process, 525539 + safe-exceptions, 525540 + stm, 525541 + text, 525542 + transformers, 525543 + unix, 525544 + }: 525545 + mkDerivation { 525546 + pname = "pms-infra-socket"; 525547 + version = "0.0.1.0"; 525548 + sha256 = "01iz8ws1wc04k52djy37wrlyrr8g33n7zvd03md06wjycahhrri5"; 525549 + libraryHaskellDepends = [ 525550 + aeson 525551 + async 525552 + base 525553 + base16-bytestring 525554 + bytestring 525555 + conduit 525556 + data-default 525557 + directory 525558 + fast-logger 525559 + filepath 525560 + lens 525561 + monad-logger 525562 + mtl 525563 + network 525564 + pms-domain-model 525565 + process 525566 + safe-exceptions 525567 + stm 525568 + text 525569 + transformers 525570 + ]; 525571 + testHaskellDepends = [ 525572 + async 525573 + base 525574 + data-default 525575 + hspec 525576 + hspec-discover 525577 + lens 525578 + monad-logger 525579 + pms-domain-model 525580 + stm 525581 + unix 525582 + ]; 525583 + testToolDepends = [ hspec-discover ]; 525584 + description = "pms-infra-socket"; 525585 + license = lib.licenses.asl20; 525586 + hydraPlatforms = lib.platforms.none; 525587 + } 525588 + ) { }; 525589 + 525590 + "pms-infra-watch" = callPackage ( 525591 + { 525592 + mkDerivation, 525593 + aeson, 525594 + async, 525595 + base, 525596 + bytestring, 525597 + conduit, 525598 + data-default, 525599 + directory, 525600 + fast-logger, 525601 + filepath, 525602 + fsnotify, 525603 + hspec, 525604 + hspec-discover, 525605 + lens, 525606 + monad-logger, 525607 + mtl, 525608 + pms-domain-model, 525609 + process, 525610 + safe-exceptions, 525611 + stm, 525612 + text, 525613 + transformers, 525614 + unix, 525615 + }: 525616 + mkDerivation { 525617 + pname = "pms-infra-watch"; 525618 + version = "0.0.3.0"; 525619 + sha256 = "0lwiydxf9p7pvri6s3p0wg0lya9imp6rpggb2mrpb49nqknnpxpx"; 525620 + libraryHaskellDepends = [ 525621 + aeson 525622 + async 525623 + base 525624 + bytestring 525625 + conduit 525626 + data-default 525627 + directory 525628 + fast-logger 525629 + filepath 525630 + fsnotify 525631 + lens 525632 + monad-logger 525633 + mtl 525634 + pms-domain-model 525635 + process 525636 + safe-exceptions 525637 + stm 525638 + text 525639 + transformers 525640 + ]; 525641 + testHaskellDepends = [ 525642 + async 525643 + base 525644 + data-default 525645 + hspec 525646 + hspec-discover 525647 + lens 525648 + monad-logger 525649 + pms-domain-model 525650 + stm 525651 + unix 525652 + ]; 525653 + testToolDepends = [ hspec-discover ]; 525654 + description = "pms-infra-watch"; 525655 + license = lib.licenses.asl20; 525656 + hydraPlatforms = lib.platforms.none; 525657 + } 525658 + ) { }; 525659 + 525660 + "pms-infrastructure" = callPackage ( 525661 + { 525662 + mkDerivation, 525663 + aeson, 525664 + async, 525665 + base, 525666 + bytestring, 525667 + conduit, 525668 + data-default, 525669 + directory, 525670 + fast-logger, 525671 + filepath, 525672 + hie-bios, 525673 + hspec, 525674 + hspec-discover, 525675 + lens, 525676 + monad-logger, 525677 + mtl, 525678 + pms-domain-model, 525679 + posix-pty, 525680 + process, 525681 + safe-exceptions, 525682 + stm, 525683 + strip-ansi-escape, 525684 + text, 525685 + transformers, 525686 + unix, 525687 + }: 525688 + mkDerivation { 525689 + pname = "pms-infrastructure"; 525690 + version = "0.0.4.0"; 525691 + sha256 = "1vawlgs6i1rpw2266zbzxwykjsf5p61w88vi2lyj69dgl3dd0kiz"; 525692 + libraryHaskellDepends = [ 525693 + aeson 525694 + async 525695 + base 525696 + bytestring 525697 + conduit 525698 + data-default 525699 + directory 525700 + fast-logger 525701 + filepath 525702 + hie-bios 525703 + lens 525704 + monad-logger 525705 + mtl 525706 + pms-domain-model 525707 + posix-pty 525708 + process 525709 + safe-exceptions 525710 + stm 525711 + strip-ansi-escape 525712 + text 525713 + transformers 525714 + ]; 525715 + testHaskellDepends = [ 525716 + async 525717 + base 525718 + data-default 525719 + hspec 525720 + hspec-discover 525721 + lens 525722 + monad-logger 525723 + pms-domain-model 525724 + stm 525725 + unix 525726 + ]; 525727 + testToolDepends = [ hspec-discover ]; 525728 + description = "pms-infrastructure"; 525729 + license = lib.licenses.asl20; 525730 + hydraPlatforms = lib.platforms.none; 525731 + } 525732 + ) { }; 525733 + 525734 + "pms-ui-notification" = callPackage ( 525735 + { 525736 + mkDerivation, 525737 + aeson, 525738 + async, 525739 + base, 525740 + bytestring, 525741 + conduit, 525742 + data-default, 525743 + fast-logger, 525744 + hspec, 525745 + hspec-discover, 525746 + lens, 525747 + monad-logger, 525748 + mtl, 525749 + pms-domain-model, 525750 + safe-exceptions, 525751 + stm, 525752 + text, 525753 + transformers, 525754 + unix, 525755 + }: 525756 + mkDerivation { 525757 + pname = "pms-ui-notification"; 525758 + version = "0.0.3.0"; 525759 + sha256 = "1fq1kasqmghbic59v815032spcl9wahm9wqjyjmg93di92xz8mm3"; 525760 + libraryHaskellDepends = [ 525761 + aeson 525762 + base 525763 + bytestring 525764 + conduit 525765 + data-default 525766 + fast-logger 525767 + lens 525768 + monad-logger 525769 + mtl 525770 + pms-domain-model 525771 + safe-exceptions 525772 + stm 525773 + text 525774 + transformers 525775 + ]; 525776 + testHaskellDepends = [ 525777 + async 525778 + base 525779 + data-default 525780 + hspec 525781 + hspec-discover 525782 + lens 525783 + monad-logger 525784 + pms-domain-model 525785 + stm 525786 + unix 525787 + ]; 525788 + testToolDepends = [ hspec-discover ]; 525789 + description = "pms-ui-notification"; 525790 + license = lib.licenses.asl20; 525791 + hydraPlatforms = lib.platforms.none; 525792 + } 525793 + ) { }; 525794 + 525795 + "pms-ui-request" = callPackage ( 525796 + { 525797 + mkDerivation, 525798 + aeson, 525799 + async, 525800 + base, 525801 + bytestring, 525802 + conduit, 525803 + data-default, 525804 + fast-logger, 525805 + hspec, 525806 + hspec-discover, 525807 + lens, 525808 + monad-logger, 525809 + mtl, 525810 + pms-domain-model, 525811 + safe-exceptions, 525812 + stm, 525813 + text, 525814 + transformers, 525815 + unix, 525816 + }: 525817 + mkDerivation { 525818 + pname = "pms-ui-request"; 525819 + version = "0.0.4.0"; 525820 + sha256 = "1yg42dy0jrv0xhz657kys41i0prr2xn417ji2p6wahgnlfkiy6am"; 525821 + libraryHaskellDepends = [ 525822 + aeson 525823 + base 525824 + bytestring 525825 + conduit 525826 + data-default 525827 + fast-logger 525828 + lens 525829 + monad-logger 525830 + mtl 525831 + pms-domain-model 525832 + safe-exceptions 525833 + stm 525834 + text 525835 + transformers 525836 + ]; 525837 + testHaskellDepends = [ 525838 + async 525839 + base 525840 + data-default 525841 + hspec 525842 + hspec-discover 525843 + lens 525844 + monad-logger 525845 + pms-domain-model 525846 + stm 525847 + unix 525848 + ]; 525849 + testToolDepends = [ hspec-discover ]; 525850 + description = "pms-ui-request"; 525851 + license = lib.licenses.asl20; 525852 + hydraPlatforms = lib.platforms.none; 525853 + } 525854 + ) { }; 525855 + 525856 + "pms-ui-response" = callPackage ( 525857 + { 525858 + mkDerivation, 525859 + aeson, 525860 + async, 525861 + base, 525862 + bytestring, 525863 + conduit, 525864 + data-default, 525865 + fast-logger, 525866 + hspec, 525867 + hspec-discover, 525868 + lens, 525869 + monad-logger, 525870 + mtl, 525871 + pms-domain-model, 525872 + safe-exceptions, 525873 + stm, 525874 + text, 525875 + transformers, 525876 + unix, 525877 + }: 525878 + mkDerivation { 525879 + pname = "pms-ui-response"; 525880 + version = "0.0.4.0"; 525881 + sha256 = "0045ddj3v34aycvnh72fvy9159iv4vad1jghd1ndslhphav1d91b"; 525882 + libraryHaskellDepends = [ 525883 + aeson 525884 + base 525885 + bytestring 525886 + conduit 525887 + data-default 525888 + fast-logger 525889 + lens 525890 + monad-logger 525891 + mtl 525892 + pms-domain-model 525893 + safe-exceptions 525894 + stm 525895 + text 525896 + transformers 525897 + ]; 525898 + testHaskellDepends = [ 525899 + async 525900 + base 525901 + data-default 525902 + hspec 525903 + hspec-discover 525904 + lens 525905 + monad-logger 525906 + pms-domain-model 525907 + stm 525908 + unix 525909 + ]; 525910 + testToolDepends = [ hspec-discover ]; 525911 + description = "pms-ui-response"; 525912 + license = lib.licenses.asl20; 525913 + hydraPlatforms = lib.platforms.none; 525914 + } 525915 + ) { }; 525916 + 522418 525917 "png-file" = callPackage ( 522419 525918 { 522420 525919 mkDerivation, ··· 525037 528536 ]; 525038 528537 description = "Colog adapters for polysemy-log"; 525039 528538 license = "BSD-2-Clause-Patent"; 525040 - hydraPlatforms = lib.platforms.none; 525041 528539 } 525042 528540 ) { }; 525043 528541 ··· 526622 530120 "poolboy" = callPackage ( 526623 530121 { 526624 530122 mkDerivation, 526625 - async, 526626 530123 base, 526627 530124 hspec, 526628 530125 hspec-core, 526629 - stm, 530126 + timeit, 526630 530127 unliftio, 530128 + unordered-containers, 526631 530129 }: 526632 530130 mkDerivation { 526633 530131 pname = "poolboy"; 526634 - version = "0.2.2.0"; 526635 - sha256 = "0d0lxqyf73w7nvgydbgv692zzc0zg2hk8sdd3lb6xyzdqkkd0vf3"; 530132 + version = "0.4.0.1"; 530133 + sha256 = "0ifdp2p2c257k52c9prm072c1gmfx55a40gaanba083viq6cxzal"; 526636 530134 libraryHaskellDepends = [ 526637 - async 526638 530135 base 526639 - stm 526640 530136 unliftio 530137 + unordered-containers 526641 530138 ]; 526642 530139 testHaskellDepends = [ 526643 530140 base 526644 530141 hspec 526645 530142 hspec-core 530143 + timeit 526646 530144 ]; 526647 530145 description = "Simple work queue for bounded concurrency"; 526648 530146 license = lib.licenses.isc; 526649 - hydraPlatforms = lib.platforms.none; 526650 - broken = true; 526651 530147 } 526652 530148 ) { }; 526653 530149 ··· 527994 531490 { mkDerivation, base }: 527995 531491 mkDerivation { 527996 531492 pname = "positive-integer"; 527997 - version = "0.1.0.0"; 527998 - sha256 = "17vqxdmqbsp6366dipq5xdfb3aq5mrshlvkw8zv30byl7p6iaz51"; 527999 - revision = "1"; 528000 - editedCabalFile = "101bbp5zv7w5ldr7j2nxpmm21mpnpzz4knrcv5inqfs0k69w1z7c"; 531493 + version = "0.1.2.0"; 531494 + sha256 = "0m0l02v3ybsilkcvyc82ma57bbha4rhncsf5574b0m3zmxq17kaq"; 528001 531495 libraryHaskellDepends = [ base ]; 528002 531496 description = "Type of positive integers"; 528003 531497 license = lib.licenses.mit; ··· 531719 535213 base, 531720 535214 bytestring, 531721 535215 criterion, 535216 + deepseq, 531722 535217 ppad-base16, 531723 535218 ppad-chacha, 531724 535219 ppad-poly1305, ··· 531729 535224 }: 531730 535225 mkDerivation { 531731 535226 pname = "ppad-aead"; 531732 - version = "0.1.0"; 531733 - sha256 = "1vvz39m852yp3j0mdm1mx3i5rgl78z0limlgm70al34gv1gxv3mh"; 535227 + version = "0.2.0"; 535228 + sha256 = "1s14bplwjfavg50xfyy65r2f8lg4man31jc83m3l32k6h4jvg983"; 531734 535229 libraryHaskellDepends = [ 531735 535230 base 531736 535231 bytestring ··· 531751 535246 base 531752 535247 bytestring 531753 535248 criterion 535249 + deepseq 531754 535250 ppad-base16 531755 535251 ]; 531756 535252 description = "A pure AEAD-ChaCha20-Poly1305 construction"; ··· 531818 535314 }: 531819 535315 mkDerivation { 531820 535316 pname = "ppad-base58"; 531821 - version = "0.2.0"; 531822 - sha256 = "1bn0fv1vmsc698lpl8x1brgi00bl9rcnh7r8v81rcxnjqf9xfdcb"; 535317 + version = "0.2.1"; 535318 + sha256 = "0s94985p1d1zh0ip404pgi12bj97naydr525i45aac64w8iis03y"; 531823 535319 libraryHaskellDepends = [ 531824 535320 base 531825 535321 bytestring ··· 531859 535355 }: 531860 535356 mkDerivation { 531861 535357 pname = "ppad-bech32"; 531862 - version = "0.2.2"; 531863 - sha256 = "1bp4p6adfi7awy3k2fbi3akjqr5gyiijilgxg5r0hzpnzmzpxvzr"; 535358 + version = "0.2.3"; 535359 + sha256 = "0g8fk0bwx88zr4k4mijd8zn5jhi6gcsn6hvdp8jxb3r4a97a4yyv"; 531864 535360 libraryHaskellDepends = [ 531865 535361 base 531866 535362 bytestring ··· 531903 535399 }: 531904 535400 mkDerivation { 531905 535401 pname = "ppad-bip32"; 531906 - version = "0.1.1"; 531907 - sha256 = "0q76ffxzrbr0fiv18ghgfjrv0y61nvsb6971pl49377c2835qa1l"; 535402 + version = "0.2.0"; 535403 + sha256 = "1h7i6km0ai3wvyrhfhl31gpaq21vcggrgk0gvr0cjhkmmscd3d5w"; 531908 535404 libraryHaskellDepends = [ 531909 535405 base 531910 535406 bytestring ··· 531960 535456 }: 531961 535457 mkDerivation { 531962 535458 pname = "ppad-bip39"; 531963 - version = "0.2.1"; 531964 - sha256 = "1aqcjq1xika89qhxf54z25shg4kz8pmr6k70k48w7lyk85h3l97b"; 535459 + version = "0.3.0"; 535460 + sha256 = "18bshwr4hpnxk2v73kqxcsjbjffpss41whmd3scm20wq3al2xvva"; 531965 535461 libraryHaskellDepends = [ 531966 535462 base 531967 535463 bytestring ··· 532004 535500 base, 532005 535501 bytestring, 532006 535502 criterion, 535503 + deepseq, 532007 535504 ppad-base16, 532008 535505 primitive, 532009 535506 tasty, ··· 532011 535508 }: 532012 535509 mkDerivation { 532013 535510 pname = "ppad-chacha"; 532014 - version = "0.1.0"; 532015 - sha256 = "15idv1nrl2rl5rmx42dw1zwpdr7wvrr08j0k4vwy0s12cc40aka6"; 535511 + version = "0.2.0"; 535512 + sha256 = "1zqrg1af6rlflq74lamxd9f0p8sfhvmhjv3ii89mkckhizr8fqrc"; 532016 535513 libraryHaskellDepends = [ 532017 535514 base 532018 535515 bytestring ··· 532030 535527 base 532031 535528 bytestring 532032 535529 criterion 535530 + deepseq 532033 535531 ppad-base16 532034 535532 ]; 532035 535533 description = "A pure ChaCha20 stream cipher"; ··· 532053 535551 }: 532054 535552 mkDerivation { 532055 535553 pname = "ppad-hkdf"; 532056 - version = "0.2.1"; 532057 - sha256 = "1y5rmkaq8wgibsx6bvppbaqp13fb9al5yn4ni9x2ll685545m398"; 535554 + version = "0.3.0"; 535555 + sha256 = "194nwcjpdals55wf5khvl393d0q4fzdmx9424s9j2n0z70ry29pw"; 532058 535556 libraryHaskellDepends = [ 532059 535557 base 532060 535558 bytestring ··· 532145 535643 }: 532146 535644 mkDerivation { 532147 535645 pname = "ppad-pbkdf"; 532148 - version = "0.1.1"; 532149 - sha256 = "05g3k4gyjkpn9k5fhz37lq10qgzlwayf4xiy5m4kjijv7l1wcxqp"; 535646 + version = "0.2.0"; 535647 + sha256 = "1zir2zm4bgimrgiv94dzqvn794dhwywl63b4im9sg9c61gh91r9m"; 532150 535648 libraryHaskellDepends = [ 532151 535649 base 532152 535650 bytestring ··· 532188 535686 }: 532189 535687 mkDerivation { 532190 535688 pname = "ppad-poly1305"; 532191 - version = "0.2.0"; 532192 - sha256 = "1vv3ln9lzszx3h0dji4fqznh86qh40sl34msljddgyj3h709lzk6"; 535689 + version = "0.3.0"; 535690 + sha256 = "06db9qvi688nyhw8fqk8vqxhl6sddfkrg5ap15xd2lf75rl1v7kw"; 532193 535691 libraryHaskellDepends = [ 532194 535692 base 532195 535693 bytestring ··· 532322 535820 }: 532323 535821 mkDerivation { 532324 535822 pname = "ppad-secp256k1"; 532325 - version = "0.3.0"; 532326 - sha256 = "1k2glxrrpgdngzy0j5mgbkh9a0a5b0cp5c1lmvaiwipik50n9rb3"; 535823 + version = "0.4.0"; 535824 + sha256 = "0wrmbz0s19g7b6qardn7isgmkrl5svw5nf360ksvhwagicv51g7l"; 532327 535825 libraryHaskellDepends = [ 532328 535826 base 532329 535827 bytestring ··· 537158 540656 pname = "probability-polynomial"; 537159 540657 version = "1.0.0.1"; 537160 540658 sha256 = "1f06x4d2cbd9j7rxgwdpxn8ff8w32xag96qk86mwggnzlw091gib"; 537161 - revision = "1"; 537162 - editedCabalFile = "10avhbz8k3yg1hzjp5qbkhv3mmmhrvii5mpjcxqcw9pq635x0kc8"; 540659 + revision = "2"; 540660 + editedCabalFile = "039np4z6lzz81n90k1sqbr7n8bxfmh8v4xvbppzzpgk6kp5fxpfm"; 537163 540661 libraryHaskellDepends = [ 537164 540662 base 537165 540663 containers ··· 538567 542065 }: 538568 542066 mkDerivation { 538569 542067 pname = "profunctors"; 538570 - version = "5.6.2"; 538571 - sha256 = "0an9v003ivxmjid0s51qznbjhd5fsa1dkcfsrhxllnjja1xmv5b5"; 538572 - revision = "3"; 538573 - editedCabalFile = "0y2g5dhmvkbd8zsckpgxd1g4hr3g56g0iqi6crjjc8wqd12bly71"; 542068 + version = "5.6.3"; 542069 + sha256 = "1wqf3isrrgmqxz5h42phsa7lawl6442r1da89hg82bld6qkz9imr"; 538574 542070 libraryHaskellDepends = [ 538575 542071 base 538576 542072 base-orphans ··· 539849 543345 } 539850 543346 ) { }; 539851 543347 543348 + "prometheus-wai" = callPackage ( 543349 + { 543350 + mkDerivation, 543351 + autoexporter, 543352 + base, 543353 + bytestring, 543354 + containers, 543355 + http-types, 543356 + prometheus, 543357 + text, 543358 + wai, 543359 + }: 543360 + mkDerivation { 543361 + pname = "prometheus-wai"; 543362 + version = "0.0.0.0"; 543363 + sha256 = "027i17zyxk3wgzw7161h57rnmgb5iqqnlnlcg129q28dw005wg9h"; 543364 + libraryHaskellDepends = [ 543365 + base 543366 + bytestring 543367 + containers 543368 + http-types 543369 + prometheus 543370 + text 543371 + wai 543372 + ]; 543373 + libraryToolDepends = [ autoexporter ]; 543374 + license = lib.licenses.mit; 543375 + } 543376 + ) { }; 543377 + 539852 543378 "prometheus-wai-middleware" = callPackage ( 539853 543379 { 539854 543380 mkDerivation, ··· 543128 546654 } 543129 546655 ) { }; 543130 546656 546657 + "pty-mcp-server" = callPackage ( 546658 + { 546659 + mkDerivation, 546660 + base, 546661 + optparse-applicative, 546662 + pms-application-service, 546663 + pms-domain-model, 546664 + pms-domain-service, 546665 + pms-infra-cmdrun, 546666 + pms-infra-procspawn, 546667 + pms-infra-socket, 546668 + pms-infra-watch, 546669 + pms-infrastructure, 546670 + pms-ui-notification, 546671 + pms-ui-request, 546672 + pms-ui-response, 546673 + safe-exceptions, 546674 + }: 546675 + mkDerivation { 546676 + pname = "pty-mcp-server"; 546677 + version = "0.0.5.0"; 546678 + sha256 = "0vra3p8cfzijkz3m5aw3m97vf3awqfc5ga72ks7hmk4fbf7hiwkq"; 546679 + isLibrary = false; 546680 + isExecutable = true; 546681 + executableHaskellDepends = [ 546682 + base 546683 + optparse-applicative 546684 + pms-application-service 546685 + pms-domain-model 546686 + pms-domain-service 546687 + pms-infra-cmdrun 546688 + pms-infra-procspawn 546689 + pms-infra-socket 546690 + pms-infra-watch 546691 + pms-infrastructure 546692 + pms-ui-notification 546693 + pms-ui-request 546694 + pms-ui-response 546695 + safe-exceptions 546696 + ]; 546697 + description = "pty-mcp-server"; 546698 + license = lib.licenses.asl20; 546699 + hydraPlatforms = lib.platforms.none; 546700 + mainProgram = "pty-mcp-server"; 546701 + } 546702 + ) { }; 546703 + 543131 546704 "pub" = callPackage ( 543132 546705 { 543133 546706 mkDerivation, ··· 545392 548965 }: 545393 548966 mkDerivation { 545394 548967 pname = "push-notify-apn"; 545395 - version = "0.4.0.3"; 545396 - sha256 = "024xanv7wcpmbd2mv4v8gw281gsnx5z15a39zh0v07bgiq7q04wb"; 548968 + version = "0.5.0.0"; 548969 + sha256 = "128k7awxxs07lymqln224lnxvcqwcc263jzpsbsadzp6zpwpg641"; 545397 548970 isLibrary = true; 545398 548971 isExecutable = true; 545399 548972 libraryHaskellDepends = [ ··· 546720 550293 bytestring, 546721 550294 containers, 546722 550295 cryptonite, 550296 + extra, 546723 550297 hspec, 546724 550298 optparse-applicative, 546725 550299 process, 546726 550300 simple-sql-parser, 546727 - split, 546728 550301 sqlite-simple, 546729 550302 syb, 546730 550303 text, ··· 546732 550305 }: 546733 550306 mkDerivation { 546734 550307 pname = "qhs"; 546735 - version = "0.3.3"; 546736 - sha256 = "1wm11y9gnfrjrq5i5nl74vkg242mr08223kw6cracnmr4n6xqm0q"; 550308 + version = "0.4.0"; 550309 + sha256 = "10b996ymvsmcmjyiaw567idr52mc017cgppma9va8yw94xqgdx7s"; 546737 550310 isLibrary = false; 546738 550311 isExecutable = true; 546739 - executableHaskellDepends = [ 550312 + libraryHaskellDepends = [ 546740 550313 base 546741 550314 bytestring 546742 550315 containers 546743 550316 cryptonite 550317 + extra 546744 550318 optparse-applicative 546745 550319 simple-sql-parser 546746 - split 546747 550320 sqlite-simple 546748 550321 syb 546749 550322 text 546750 550323 zlib 546751 550324 ]; 550325 + executableHaskellDepends = [ base ]; 546752 550326 testHaskellDepends = [ 546753 550327 base 546754 - bytestring 546755 550328 containers 546756 - cryptonite 550329 + extra 546757 550330 hspec 546758 - optparse-applicative 546759 550331 process 546760 - simple-sql-parser 546761 - split 546762 - sqlite-simple 546763 - syb 546764 - text 546765 - zlib 546766 550332 ]; 550333 + doHaddock = false; 546767 550334 description = "Command line tool qhs, SQL queries on CSV and TSV files"; 546768 550335 license = lib.licenses.mit; 546769 550336 hydraPlatforms = lib.platforms.none; ··· 547858 551425 pname = "quantification"; 547859 551426 version = "0.8"; 547860 551427 sha256 = "1dw47hy0pvar4mkdp6xjz8ywpic2zs3q0xah9zlbnfpibhjjc1a9"; 551428 + revision = "1"; 551429 + editedCabalFile = "1abpn4sz7g9ih4c3iclpqnwng15dwa7553pxyvwvgy19x6sfgck2"; 547861 551430 libraryHaskellDepends = [ 547862 551431 base 547863 551432 binary ··· 548701 552270 crypton, 548702 552271 crypton-x509, 548703 552272 crypton-x509-system, 552273 + crypton-x509-validation, 548704 552274 fast-logger, 548705 552275 filepath, 548706 552276 hspec, ··· 548719 552289 }: 548720 552290 mkDerivation { 548721 552291 pname = "quic"; 548722 - version = "0.2.14"; 548723 - sha256 = "1f486d4mqc18pfx5krwxv9mh1zkmyjbjddkx4yixjf2yfhq6a855"; 552292 + version = "0.2.17"; 552293 + sha256 = "15fk5786rkryjixqiqk9y7zh5wazwakp6gkk5jr4ryckjdgjyyjj"; 548724 552294 isLibrary = true; 548725 552295 isExecutable = true; 548726 552296 libraryHaskellDepends = [ ··· 548734 552304 crypton 548735 552305 crypton-x509 548736 552306 crypton-x509-system 552307 + crypton-x509-validation 548737 552308 fast-logger 548738 552309 filepath 548739 552310 iproute ··· 548790 552361 "quick-process" = callPackage ( 548791 552362 { 548792 552363 mkDerivation, 552364 + array, 548793 552365 attoparsec, 548794 552366 base, 552367 + base-orphans, 548795 552368 bytestring, 548796 552369 casing, 548797 552370 conduit, ··· 548803 552376 either, 548804 552377 exceptions, 548805 552378 filepath, 552379 + generic-data, 552380 + generic-deriving, 548806 552381 generic-lens, 548807 552382 generic-random, 552383 + ghc-prim, 548808 552384 hashable, 548809 - HList, 548810 552385 lens, 548811 552386 mmorph, 548812 552387 monad-control, 552388 + monad-time, 548813 552389 mtl, 548814 - pretty, 552390 + pretty-simple, 548815 552391 process, 552392 + profunctors, 548816 552393 QuickCheck, 548817 552394 quickcheck-instances, 548818 552395 regex-compat, ··· 548824 552401 sbv, 548825 552402 semigroups, 548826 552403 streaming-commons, 552404 + tagged, 548827 552405 tasty, 548828 552406 tasty-discover, 548829 552407 tasty-hunit, ··· 548843 552421 unix-compat, 548844 552422 unliftio, 548845 552423 unliftio-core, 552424 + wl-pprint-text, 548846 552425 }: 548847 552426 mkDerivation { 548848 552427 pname = "quick-process"; 548849 - version = "0.0.1"; 548850 - sha256 = "1dgv63w8qlb35xjsyn0716xsmb9jimdwly0c7704pmlfnw5sp38s"; 552428 + version = "0.0.3"; 552429 + sha256 = "180zxzsg2xh24nw7gdzmk134hx7vl61hfc3dsvrdr0rwkp1xmngi"; 548851 552430 libraryHaskellDepends = [ 552431 + array 548852 552432 attoparsec 548853 552433 base 552434 + base-orphans 548854 552435 bytestring 548855 552436 casing 548856 552437 conduit ··· 548862 552443 either 548863 552444 exceptions 548864 552445 filepath 552446 + generic-data 552447 + generic-deriving 548865 552448 generic-lens 548866 552449 generic-random 552450 + ghc-prim 548867 552451 hashable 548868 - HList 548869 552452 lens 548870 552453 mmorph 548871 552454 monad-control 552455 + monad-time 548872 552456 mtl 548873 - pretty 552457 + pretty-simple 548874 552458 process 552459 + profunctors 548875 552460 QuickCheck 548876 552461 regex-compat 548877 552462 regex-posix ··· 548882 552467 sbv 548883 552468 semigroups 548884 552469 streaming-commons 552470 + tagged 548885 552471 template-haskell 548886 552472 temporary 548887 552473 text ··· 548895 552481 unix 548896 552482 unix-compat 548897 552483 unliftio-core 552484 + wl-pprint-text 548898 552485 ]; 548899 552486 testHaskellDepends = [ 548900 552487 base 548901 552488 bytestring 548902 552489 directory 548903 552490 generic-lens 548904 - HList 548905 552491 lens 548906 552492 QuickCheck 548907 552493 quickcheck-instances ··· 549336 552922 }: 549337 552923 mkDerivation { 549338 552924 pname = "quickcheck-groups"; 549339 - version = "0.0.1.4"; 549340 - sha256 = "1k1pbxcp8ppzyym2wavvpn6p5d74cddh1ldlg1kv55ypfszzzf21"; 552925 + version = "0.0.1.5"; 552926 + sha256 = "1ibchcgj1bqfsc6dx3n4bii6dhylxjn8zl9vhhvk48zsk99q4jaz"; 549341 552927 libraryHaskellDepends = [ 549342 552928 base 549343 552929 groups ··· 549420 553006 }: 549421 553007 mkDerivation { 549422 553008 pname = "quickcheck-instances"; 549423 - version = "0.3.32"; 549424 - sha256 = "10zz62j1jplk392c90hkg9mfk8piyp5ify94jp3rld722phg5xa8"; 553009 + version = "0.3.33"; 553010 + sha256 = "0rl8y3rb4fm4nqz122bp5f2aya4f8bc9m9i9n2vwlyq2gdacs0v8"; 549425 553011 revision = "1"; 549426 - editedCabalFile = "0d7vgsvvkipa1d1gh7z7ha12fv49frcv81dz09qy0m6kvn5lawl7"; 553012 + editedCabalFile = "1xkc7rsfgya4rwiizh0yfincws3knpdnh08m280v1dgik4kv37vh"; 549427 553013 libraryHaskellDepends = [ 549428 553014 array 549429 553015 base ··· 549508 553094 }: 549509 553095 mkDerivation { 549510 553096 pname = "quickcheck-lockstep"; 549511 - version = "0.7.0"; 549512 - sha256 = "0dcy47ab2813saml3jdiar9xlx8ml8c55awcg92i6amazhgwpyw2"; 553097 + version = "0.8.0"; 553098 + sha256 = "1y3icjvd9qbv38q1cxkn48d6fp4b7c0j0j0l3mwkfi8ph8qjg2y6"; 549513 553099 libraryHaskellDepends = [ 549514 553100 base 549515 553101 constraints ··· 549535 553121 ]; 549536 553122 description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; 549537 553123 license = lib.licenses.bsd3; 549538 - hydraPlatforms = lib.platforms.none; 549539 - broken = true; 549540 553124 } 549541 553125 ) { }; 549542 553126 ··· 549553 553137 pretty-show, 549554 553138 QuickCheck, 549555 553139 quickcheck-classes, 549556 - quickcheck-instances, 549557 553140 semigroupoids, 549558 553141 text, 549559 553142 vector, 549560 553143 }: 549561 553144 mkDerivation { 549562 553145 pname = "quickcheck-monoid-subclasses"; 549563 - version = "0.3.0.5"; 549564 - sha256 = "0hnrm69vavc2b1h4cishdvn7j0x8l8mk8fggbai3kn77w6cnf3il"; 553146 + version = "0.3.0.6"; 553147 + sha256 = "03gngckzwhln7c86dixg8szrnqwgdl9svy6hfnzgyjpn4qfqwcmv"; 549565 553148 libraryHaskellDepends = [ 549566 553149 base 549567 553150 containers ··· 549569 553152 pretty-show 549570 553153 QuickCheck 549571 553154 quickcheck-classes 549572 - quickcheck-instances 549573 553155 semigroupoids 549574 553156 ]; 549575 553157 testHaskellDepends = [ ··· 549581 553163 monoid-subclasses 549582 553164 QuickCheck 549583 553165 quickcheck-classes 549584 - quickcheck-instances 549585 553166 text 549586 553167 vector 549587 553168 ]; ··· 549701 553282 }: 549702 553283 mkDerivation { 549703 553284 pname = "quickcheck-quid"; 549704 - version = "0.0.1.7"; 549705 - sha256 = "1r0ip3a281dgvy6bplhr76wg5n0l4qz0k6i6r3fzh4848r6z9say"; 553285 + version = "0.0.1.8"; 553286 + sha256 = "0qx08f6z1y21qn63z5hkhlvj1rgn921ads03lrppmggg9kvrk5x0"; 549706 553287 libraryHaskellDepends = [ 549707 553288 base 549708 553289 containers ··· 555890 559471 }: 555891 559472 mkDerivation { 555892 559473 pname = "rdf4h"; 555893 - version = "5.2.0"; 555894 - sha256 = "03f1dcw4zii4yvq7azhcgpkf59wibjdlvkifb88jp8maiaadzr75"; 559474 + version = "5.2.1"; 559475 + sha256 = "1jah12gcmc85qpbhw6igi28rvmww38fqmj1waqw7c16y0lxnkvxb"; 555895 559476 isLibrary = true; 555896 559477 isExecutable = true; 555897 559478 libraryHaskellDepends = [ ··· 556056 559637 }: 556057 559638 mkDerivation { 556058 559639 pname = "rds-data"; 556059 - version = "0.2.0.0"; 556060 - sha256 = "08lk0m1vgvbsmbvf5gv9nlab161a05w6n964w90g7wf1rqmj54d7"; 556061 - isLibrary = false; 556062 - isExecutable = false; 559640 + version = "0.2.0.1"; 559641 + sha256 = "1kfi9qmq07v9bvs7a08221r4c7r4hl74f1iavnk6d5gaqms38sfz"; 556063 559642 libraryHaskellDepends = [ 556064 559643 aeson 556065 559644 amazonka-core ··· 556203 559782 } 556204 559783 ) { }; 556205 559784 559785 + "rds-data-polysemy" = callPackage ( 559786 + { 559787 + mkDerivation, 559788 + aeson, 559789 + aeson-pretty, 559790 + amazonka, 559791 + amazonka-core, 559792 + amazonka-rds, 559793 + amazonka-rds-data, 559794 + amazonka-secretsmanager, 559795 + base, 559796 + base64-bytestring, 559797 + bytestring, 559798 + contravariant, 559799 + generic-lens, 559800 + hedgehog, 559801 + hedgehog-extras, 559802 + http-client, 559803 + hw-polysemy, 559804 + hw-prelude, 559805 + microlens, 559806 + mtl, 559807 + optparse-applicative, 559808 + polysemy-log, 559809 + polysemy-plugin, 559810 + polysemy-time, 559811 + rds-data, 559812 + resourcet, 559813 + stm, 559814 + tasty, 559815 + tasty-discover, 559816 + tasty-hedgehog, 559817 + testcontainers, 559818 + text, 559819 + time, 559820 + transformers, 559821 + ulid, 559822 + uuid, 559823 + }: 559824 + mkDerivation { 559825 + pname = "rds-data-polysemy"; 559826 + version = "0.1.0.0"; 559827 + sha256 = "13anncaj8yw3y4csg7kbda6wrb9s8g5spd9k5h1ygrwy1az697sr"; 559828 + isLibrary = false; 559829 + isExecutable = true; 559830 + libraryHaskellDepends = [ 559831 + aeson 559832 + amazonka 559833 + amazonka-core 559834 + amazonka-rds 559835 + amazonka-rds-data 559836 + amazonka-secretsmanager 559837 + base 559838 + base64-bytestring 559839 + bytestring 559840 + contravariant 559841 + generic-lens 559842 + hw-polysemy 559843 + hw-prelude 559844 + microlens 559845 + mtl 559846 + polysemy-log 559847 + polysemy-plugin 559848 + rds-data 559849 + text 559850 + time 559851 + transformers 559852 + ulid 559853 + uuid 559854 + ]; 559855 + executableHaskellDepends = [ 559856 + aeson 559857 + amazonka 559858 + amazonka-rds-data 559859 + base 559860 + bytestring 559861 + generic-lens 559862 + hedgehog 559863 + http-client 559864 + hw-polysemy 559865 + hw-prelude 559866 + microlens 559867 + optparse-applicative 559868 + polysemy-log 559869 + polysemy-plugin 559870 + polysemy-time 559871 + rds-data 559872 + resourcet 559873 + stm 559874 + testcontainers 559875 + text 559876 + time 559877 + ulid 559878 + uuid 559879 + ]; 559880 + testHaskellDepends = [ 559881 + aeson 559882 + aeson-pretty 559883 + amazonka 559884 + amazonka-core 559885 + amazonka-rds 559886 + amazonka-rds-data 559887 + amazonka-secretsmanager 559888 + base 559889 + base64-bytestring 559890 + bytestring 559891 + generic-lens 559892 + hedgehog 559893 + hedgehog-extras 559894 + hw-polysemy 559895 + microlens 559896 + polysemy-log 559897 + polysemy-plugin 559898 + rds-data 559899 + tasty 559900 + tasty-discover 559901 + tasty-hedgehog 559902 + testcontainers 559903 + text 559904 + time 559905 + ulid 559906 + uuid 559907 + ]; 559908 + testToolDepends = [ tasty-discover ]; 559909 + doHaddock = false; 559910 + description = "Codecs for use with AWS rds-data"; 559911 + license = lib.licenses.bsd3; 559912 + hydraPlatforms = lib.platforms.none; 559913 + mainProgram = "rds-data"; 559914 + } 559915 + ) { }; 559916 + 556206 559917 "rdtsc" = callPackage ( 556207 559918 { mkDerivation, base }: 556208 559919 mkDerivation { ··· 560678 564389 }: 560679 564390 mkDerivation { 560680 564391 pname = "reflex"; 560681 - version = "0.9.3.3"; 560682 - sha256 = "0iklqcszxmj3dian0mjpz75483084ar8i328ydcx68xk9l9rlqbf"; 564392 + version = "0.9.3.4"; 564393 + sha256 = "1qh2xbg4q2gif25hinz72j8ka2w976lccklknwgijxaayh92if4a"; 560683 564394 libraryHaskellDepends = [ 560684 564395 base 560685 564396 bifunctors ··· 561036 564747 ]; 561037 564748 description = "Use colonnade with reflex-dom"; 561038 564749 license = lib.licenses.bsd3; 561039 - hydraPlatforms = lib.platforms.none; 561040 564750 } 561041 564751 ) { }; 561042 564752 ··· 562045 565755 description = "Helper widgets for reflex-localize"; 562046 565756 license = lib.licenses.mit; 562047 565757 badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; 562048 - hydraPlatforms = lib.platforms.none; 562049 565758 } 562050 565759 ) { }; 562051 565760 ··· 564751 568460 description = "MessagePack encoders / decoders"; 564752 568461 license = lib.licenses.mit; 564753 568462 hydraPlatforms = lib.platforms.none; 568463 + broken = true; 564754 568464 } 564755 568465 ) { }; 564756 568466 ··· 568955 572665 } 568956 572666 ) { }; 568957 572667 572668 + "resource-pool_0_5_0_0" = callPackage ( 572669 + { 572670 + mkDerivation, 572671 + base, 572672 + hashable, 572673 + primitive, 572674 + stm, 572675 + text, 572676 + time, 572677 + }: 572678 + mkDerivation { 572679 + pname = "resource-pool"; 572680 + version = "0.5.0.0"; 572681 + sha256 = "1l0l26fgwjilqh55z7vylw9i735hich8amwgl1a63dgcwyvhlxgs"; 572682 + libraryHaskellDepends = [ 572683 + base 572684 + hashable 572685 + primitive 572686 + stm 572687 + text 572688 + time 572689 + ]; 572690 + description = "A high-performance striped resource pooling implementation"; 572691 + license = lib.licenses.bsd3; 572692 + hydraPlatforms = lib.platforms.none; 572693 + } 572694 + ) { }; 572695 + 568958 572696 "resource-pool-catchio" = callPackage ( 568959 572697 { 568960 572698 mkDerivation, ··· 572760 576498 }: 572761 576499 mkDerivation { 572762 576500 pname = "richenv"; 572763 - version = "0.1.0.2"; 572764 - sha256 = "0yxl6cnhg7n29f93mj4a5wkp1v1i2y38824n2bg8b64ik1hlg876"; 576501 + version = "0.1.0.3"; 576502 + sha256 = "0v6ymwypp6023srv9axh0rc98bsvkhk29nwhap9rb33x8ibb8vr9"; 572765 576503 libraryHaskellDepends = [ 572766 576504 aeson 572767 576505 base ··· 574720 578458 }: 574721 578459 mkDerivation { 574722 578460 pname = "roc-id"; 574723 - version = "0.2.0.4"; 574724 - sha256 = "126ijgk7wi06694xcqvjz9amg61pzi2hnx7gq631zwxa6d98czzk"; 578461 + version = "0.2.0.5"; 578462 + sha256 = "1a70y8l45lyglq6rrxrp20jfpwg87gkga4wdxdf15nzh0p1a417f"; 574725 578463 libraryHaskellDepends = [ 574726 578464 base 574727 578465 MonadRandom ··· 581799 585537 exceptions, 581800 585538 filepath, 581801 585539 free, 581802 - haskell-src-exts, 581803 585540 microlens, 581804 585541 microlens-th, 581805 585542 monad-control, ··· 581826 585563 }: 581827 585564 mkDerivation { 581828 585565 pname = "sandwich"; 581829 - version = "0.3.0.3"; 581830 - sha256 = "0j53b68vgidwahmbbhcrshh9043k1g230lypyfavcwbpcgrzxkpb"; 585566 + version = "0.3.0.4"; 585567 + sha256 = "1j6xlnhb58kg776jl1bp82lfi95a9xy27haqanbx67mw7n471gc6"; 581831 585568 isLibrary = true; 581832 585569 isExecutable = true; 581833 585570 libraryHaskellDepends = [ ··· 581844 585581 exceptions 581845 585582 filepath 581846 585583 free 581847 - haskell-src-exts 581848 585584 microlens 581849 585585 microlens-th 581850 585586 monad-control ··· 581883 585619 exceptions 581884 585620 filepath 581885 585621 free 581886 - haskell-src-exts 581887 585622 microlens 581888 585623 microlens-th 581889 585624 monad-control ··· 581922 585657 exceptions 581923 585658 filepath 581924 585659 free 581925 - haskell-src-exts 581926 585660 microlens 581927 585661 microlens-th 581928 585662 monad-control ··· 581982 585716 string-interpolate, 581983 585717 temporary, 581984 585718 text, 581985 - time, 581986 585719 transformers, 581987 585720 unix-compat, 581988 585721 unliftio, ··· 581991 585724 }: 581992 585725 mkDerivation { 581993 585726 pname = "sandwich-contexts"; 581994 - version = "0.3.0.2"; 581995 - sha256 = "01klfrf9n1z6h1iqgb3ccch1dxihp28lh60d44xj3xmfz2q4y5iq"; 585727 + version = "0.3.0.3"; 585728 + sha256 = "0bd0a3akg7rbpp94cwyrpjjw104468y7caxnvl6iwl3fnc6gvy7c"; 581996 585729 libraryHaskellDepends = [ 581997 585730 aeson 581998 585731 base ··· 582020 585753 string-interpolate 582021 585754 temporary 582022 585755 text 582023 - time 582024 585756 transformers 582025 585757 unix-compat 582026 585758 unliftio ··· 582054 585786 exceptions, 582055 585787 filepath, 582056 585788 http-client, 582057 - kubernetes-client, 582058 - pname = "nat"; 585789 + pname = "nat"; 585790 + kubernetes-api-client, 582059 585791 lens, 582060 585792 lens-aeson, 582061 585793 minio-hs, ··· 582081 585813 }: 582082 585814 mkDerivation { 582083 585815 pname = "sandwich-contexts-kubernetes"; 582084 - version = "0.1.0.0"; 582085 - sha256 = "04p2g6jjra3bh4a4zb00lidckm91ba3cvwvrvjh28i3flh15b6wr"; 585816 + version = "0.1.1.0"; 585817 + sha256 = "00g2fq9xnk8icrvfjmqkhl3g7pz7159kqajx10vgy4xgdxp25zfz"; 582086 585818 libraryHaskellDepends = [ 582087 585819 aeson 582088 585820 base ··· 582091 585823 exceptions 582092 585824 filepath 582093 585825 http-client 582094 - kubernetes-client 582095 - pname = "nat"; 585826 + pname = "nat"; 585827 + kubernetes-api-client 582096 585828 lens 582097 585829 lens-aeson 582098 585830 minio-hs ··· 582450 586182 }: 582451 586183 mkDerivation { 582452 586184 pname = "sandwich-webdriver"; 582453 - version = "0.3.0.0"; 582454 - sha256 = "1s4j2i91csn1wplw1vnz7s8kin5v580a7m98yfas8p7nlm9bihp4"; 586185 + version = "0.3.0.1"; 586186 + sha256 = "18vb8vdcpdy6zkqynhqwzy2217lbz0jrdhd2c21wr6ly4rfmf0jr"; 582455 586187 libraryHaskellDepends = [ 582456 586188 aeson 582457 586189 base ··· 582515 586247 sandwich 582516 586248 sandwich-contexts 582517 586249 string-interpolate 586250 + temporary 582518 586251 text 582519 586252 time 582520 586253 transformers ··· 583551 587284 } 583552 587285 ) { inherit (pkgs) z3; }; 583553 587286 583554 - "sbv_11_7" = callPackage ( 587287 + "sbv_12_0" = callPackage ( 583555 587288 { 583556 587289 mkDerivation, 583557 587290 array, ··· 583564 587297 deepseq, 583565 587298 directory, 583566 587299 filepath, 587300 + haskell-src-exts, 587301 + haskell-src-meta, 583567 587302 libBF, 583568 587303 mtl, 583569 587304 pretty, ··· 583586 587321 }: 583587 587322 mkDerivation { 583588 587323 pname = "sbv"; 583589 - version = "11.7"; 583590 - sha256 = "1nq1yjc4wfjmqhp0y61aqmva99vxnpj2mpksyai63ijmx9zq8yzs"; 587324 + version = "12.0"; 587325 + sha256 = "14c9i9aa6rbm6kfxjcdbcy7vajh3v6bhsginhn1v6hg8430f93rp"; 583591 587326 enableSeparateDataOutput = true; 583592 587327 libraryHaskellDepends = [ 583593 587328 array ··· 583600 587335 deepseq 583601 587336 directory 583602 587337 filepath 587338 + haskell-src-exts 587339 + haskell-src-meta 583603 587340 libBF 583604 587341 mtl 583605 587342 pretty ··· 588824 592561 }: 588825 592562 mkDerivation { 588826 592563 pname = "search-algorithms"; 588827 - version = "0.3.3"; 588828 - sha256 = "00b1fxgjg57m6qm8017yvqbs6qvblw4iazir005flzjm6jls12kz"; 592564 + version = "0.3.4"; 592565 + sha256 = "1r6nnwb0ry95xqg8psdwgfx6h264kd437a3mr5z7gv7vdarb3r2h"; 588829 592566 libraryHaskellDepends = [ 588830 592567 base 588831 592568 containers ··· 589737 593474 } 589738 593475 ) { }; 589739 593476 593477 + "select-rpms_0_3_0" = callPackage ( 593478 + { 593479 + mkDerivation, 593480 + base, 593481 + directory, 593482 + extra, 593483 + filepath, 593484 + Glob, 593485 + rpm-nvr, 593486 + safe, 593487 + simple-cmd, 593488 + simple-cmd-args, 593489 + simple-prompt, 593490 + }: 593491 + mkDerivation { 593492 + pname = "select-rpms"; 593493 + version = "0.3.0"; 593494 + sha256 = "0xzhhic205nvh8n2mdb85675x8kdvlgjy0d4xxyw1nq8p078cn51"; 593495 + libraryHaskellDepends = [ 593496 + base 593497 + directory 593498 + extra 593499 + filepath 593500 + Glob 593501 + rpm-nvr 593502 + safe 593503 + simple-cmd 593504 + simple-cmd-args 593505 + simple-prompt 593506 + ]; 593507 + description = "Select a subset of RPM packages"; 593508 + license = lib.licenses.mit; 593509 + hydraPlatforms = lib.platforms.none; 593510 + } 593511 + ) { }; 593512 + 589740 593513 "selections" = callPackage ( 589741 593514 { mkDerivation, base }: 589742 593515 mkDerivation { ··· 591822 595595 } 591823 595596 ) { }; 591824 595597 591825 - "sequence-formats_1_11_0_1" = callPackage ( 595598 + "sequence-formats_1_11_0_2" = callPackage ( 591826 595599 { 591827 595600 mkDerivation, 591828 595601 attoparsec, ··· 591847 595620 }: 591848 595621 mkDerivation { 591849 595622 pname = "sequence-formats"; 591850 - version = "1.11.0.1"; 591851 - sha256 = "1qzawb3qnn76j7dvb0q8jbblbayggr5hja0x723y09nv1y9lg6g5"; 595623 + version = "1.11.0.2"; 595624 + sha256 = "1y6sv7xlzbkvlrihmkclv1hp5g3nsrnz37xika3jzksqv4grv412"; 591852 595625 libraryHaskellDepends = [ 591853 595626 attoparsec 591854 595627 base ··· 592397 596170 pname = "serialise"; 592398 596171 version = "0.2.6.1"; 592399 596172 sha256 = "1x3p9vi6daf50xgv5xxjnclqcq9ynqg1qw7af3ppa1nizycrg533"; 592400 - revision = "4"; 592401 - editedCabalFile = "1ipcrg5g450a3aq15l5rhngpfck8krz7c7bvhhrd8fv3q645yjbh"; 596173 + revision = "5"; 596174 + editedCabalFile = "0kfai48gza3zzi3s3ll1gng2wbpdmr5z5isx8snlh49vafsqjzx6"; 592402 596175 libraryHaskellDepends = [ 592403 596176 array 592404 596177 base ··· 592794 596567 constraints, 592795 596568 containers, 592796 596569 deepseq, 596570 + generics-sop, 592797 596571 hspec, 592798 596572 hspec-discover, 592799 596573 http-api-data, ··· 592812 596586 }: 592813 596587 mkDerivation { 592814 596588 pname = "servant"; 592815 - version = "0.20.2"; 592816 - sha256 = "0rakyjrmn05sb2gxk4bkxlb23zfwm1pjkdg9mh7b4hjgsdwy4fba"; 592817 - revision = "1"; 592818 - editedCabalFile = "17n769vwyyc5hshm71r33ksvn26qcz19017wl9p8xj4igav790pa"; 596589 + version = "0.20.3.0"; 596590 + sha256 = "00k6pwqxpyjp5qm5pjl8qb75iqmpql5iv3ac43xdvikcixffcwzj"; 592819 596591 libraryHaskellDepends = [ 592820 596592 aeson 592821 596593 attoparsec ··· 592826 596598 constraints 592827 596599 containers 592828 596600 deepseq 596601 + generics-sop 592829 596602 http-api-data 592830 596603 http-media 592831 596604 http-types ··· 592846 596619 hspec 592847 596620 http-media 592848 596621 mtl 596622 + network-uri 592849 596623 QuickCheck 592850 596624 quickcheck-instances 592851 596625 text ··· 592904 596678 containers, 592905 596679 servant, 592906 596680 servant-server, 592907 - template-haskell, 592908 596681 text, 592909 596682 }: 592910 596683 mkDerivation { 592911 596684 pname = "servant-activeresource"; 592912 - version = "0.1.0.0"; 592913 - sha256 = "0dcip0vbry344pv8za5ldxr9g71vyb63ks3jdpjc7z4vixp5rbsp"; 592914 - revision = "1"; 592915 - editedCabalFile = "006mbw5mvj5kzz8bigws55xallwrsvdsi5b5y9wc4d7l8a63z0gd"; 596685 + version = "0.2.0.0"; 596686 + sha256 = "0gxw9yxsr4ri2lwr4y0qhf0cgqknrdjgpqn87wy1n4pas2k6sc15"; 592916 596687 libraryHaskellDepends = [ 592917 596688 aeson 592918 596689 base ··· 592920 596691 containers 592921 596692 servant 592922 596693 servant-server 592923 - template-haskell 592924 596694 text 592925 596695 ]; 592926 596696 testHaskellDepends = [ ··· 592930 596700 containers 592931 596701 servant 592932 596702 servant-server 592933 - template-haskell 592934 596703 text 592935 596704 ]; 592936 - description = "Servant endpoints compatible with Rails's ActiveResources"; 596705 + description = "Servant endpoints compatible with Rails's ActiveResource"; 592937 596706 license = lib.licenses.bsd3; 592938 596707 } 592939 596708 ) { }; ··· 593455 597224 bytestring, 593456 597225 case-insensitive, 593457 597226 cookie, 593458 - data-default-class, 597227 + data-default, 593459 597228 entropy, 593460 597229 hspec, 593461 597230 hspec-discover, ··· 593483 597252 }: 593484 597253 mkDerivation { 593485 597254 pname = "servant-auth-server"; 593486 - version = "0.4.9.0"; 593487 - sha256 = "0fhk2z9n9ax4g7iisdgcd87wgj9wvazhl86kjh364gsj1g8a5y99"; 593488 - revision = "1"; 593489 - editedCabalFile = "0skvvqkyqzgjdg5b2l9fd1ri144s649g5yddpclwciraimip7gw1"; 597255 + version = "0.4.9.1"; 597256 + sha256 = "04sy2g81pp0pr31xi6h1hqm199z6r4xv3fy2x307dlydxmdm8qb3"; 593490 597257 libraryHaskellDepends = [ 593491 597258 aeson 593492 597259 base ··· 593495 597262 bytestring 593496 597263 case-insensitive 593497 597264 cookie 593498 - data-default-class 597265 + data-default 593499 597266 entropy 593500 597267 http-types 593501 597268 jose ··· 594280 598047 ]; 594281 598048 description = "Command line interface for Servant API clients"; 594282 598049 license = lib.licenses.bsd3; 594283 - hydraPlatforms = lib.platforms.none; 594284 598050 mainProgram = "greet-cli"; 594285 - broken = true; 594286 598051 } 594287 598052 ) { }; 594288 598053 ··· 594297 598062 deepseq, 594298 598063 entropy, 594299 598064 exceptions, 598065 + generics-sop, 594300 598066 hspec, 594301 598067 hspec-discover, 594302 598068 http-api-data, ··· 594325 598091 }: 594326 598092 mkDerivation { 594327 598093 pname = "servant-client"; 594328 - version = "0.20.2"; 594329 - sha256 = "026bp0qk2bx672834yjxmqrfacyzzdssm89bd0niz1xzxzmw5r7g"; 594330 - revision = "2"; 594331 - editedCabalFile = "1sm0xspcsxn6n70nirpglcmx07sn6vmag8kvvw9i2dr2hcfkgk55"; 598094 + version = "0.20.3.0"; 598095 + sha256 = "0kxmixgv5nmir2bk3zfrhaal4969rf414wi2ccnngjm3395bqrwn"; 598096 + revision = "1"; 598097 + editedCabalFile = "0644af144zy4axv8hhqhv8mj7amnqd09fbz5rglr6l60d27hpqx1"; 594332 598098 libraryHaskellDepends = [ 594333 598099 base 594334 598100 base-compat ··· 594356 598122 base-compat 594357 598123 bytestring 594358 598124 entropy 598125 + generics-sop 594359 598126 hspec 594360 598127 http-api-data 594361 598128 http-client ··· 594388 598155 { 594389 598156 mkDerivation, 594390 598157 aeson, 598158 + attoparsec, 594391 598159 base, 594392 598160 base-compat, 594393 598161 base64-bytestring, ··· 594408 598176 sop-core, 594409 598177 template-haskell, 594410 598178 text, 598179 + transformers, 594411 598180 }: 594412 598181 mkDerivation { 594413 598182 pname = "servant-client-core"; 594414 - version = "0.20.2"; 594415 - sha256 = "10nv810ns8v1d9a2fkg9bgi7h9gm4yap1y6mg2r15d569i27rrvc"; 598183 + version = "0.20.3.0"; 598184 + sha256 = "1vv6xf340hyk60vv6jb1zxfpsb7x2ykacb84yrn3h1w4k075hlyn"; 594416 598185 revision = "1"; 594417 - editedCabalFile = "13200adlbl8mydi35x1r8w4q9ra8y079figgjxl5jsrhvps54608"; 598186 + editedCabalFile = "1g8arzgcqc9qp1fimrs8iwqvzgsp6br76kkh72hsz0nsg6gmlvc1"; 594418 598187 libraryHaskellDepends = [ 594419 598188 aeson 598189 + attoparsec 594420 598190 base 594421 598191 base-compat 594422 598192 base64-bytestring ··· 594438 598208 testHaskellDepends = [ 594439 598209 base 594440 598210 base-compat 598211 + bytestring 594441 598212 deepseq 594442 598213 hspec 594443 598214 QuickCheck 598215 + servant 598216 + transformers 594444 598217 ]; 594445 598218 testToolDepends = [ hspec-discover ]; 594446 598219 description = "Core functionality and class for client function generation for servant APIs"; ··· 595242 599015 testHaskellDepends = [ base ]; 595243 599016 description = "Servant support for Server-Sent events"; 595244 599017 license = lib.licenses.bsd3; 599018 + hydraPlatforms = lib.platforms.none; 599019 + broken = true; 595245 599020 } 595246 599021 ) { }; 595247 599022 ··· 598184 601959 }: 598185 601960 mkDerivation { 598186 601961 pname = "servant-routes"; 598187 - version = "0.1.0.0"; 598188 - sha256 = "1m17cpbmyi8y2h27p9y28193b2d46qmr8bhswvjn89nd5z42d6x2"; 601962 + version = "0.1.1.0"; 601963 + sha256 = "0r9db46gbi9rcsrdvqndfa9433szbp5a0c1ad3z3qchpf3i2dxfm"; 598189 601964 libraryHaskellDepends = [ 598190 601965 aeson 598191 601966 aeson-pretty ··· 598216 601991 } 598217 601992 ) { }; 598218 601993 601994 + "servant-routes-golden" = callPackage ( 601995 + { 601996 + mkDerivation, 601997 + aeson, 601998 + aeson-pretty, 601999 + base, 602000 + hspec, 602001 + hspec-core, 602002 + hspec-discover, 602003 + hspec-golden, 602004 + QuickCheck, 602005 + servant, 602006 + servant-routes, 602007 + text, 602008 + }: 602009 + mkDerivation { 602010 + pname = "servant-routes-golden"; 602011 + version = "0.1.0.0"; 602012 + sha256 = "16kc5q0vc7hjy7dfd3smnlcs6308sligzgr3hcnx1mqxnfmv0svp"; 602013 + libraryHaskellDepends = [ 602014 + aeson 602015 + aeson-pretty 602016 + base 602017 + hspec-core 602018 + hspec-golden 602019 + servant-routes 602020 + text 602021 + ]; 602022 + testHaskellDepends = [ 602023 + aeson 602024 + aeson-pretty 602025 + base 602026 + hspec 602027 + hspec-core 602028 + hspec-golden 602029 + QuickCheck 602030 + servant 602031 + servant-routes 602032 + text 602033 + ]; 602034 + testToolDepends = [ hspec-discover ]; 602035 + description = "Golden test your Servant APIs using `servant-routes`"; 602036 + license = lib.licenses.bsd3; 602037 + } 602038 + ) { }; 602039 + 598219 602040 "servant-ruby" = callPackage ( 598220 602041 { 598221 602042 mkDerivation, ··· 598492 602313 }: 598493 602314 mkDerivation { 598494 602315 pname = "servant-server"; 598495 - version = "0.20.2"; 598496 - sha256 = "0fqgnzzgbj4w441h3v841lav7gxazakz04s354r24pq4rh6m1kqy"; 602316 + version = "0.20.3.0"; 602317 + sha256 = "05crwklbncd393zq00gi04zgnfyy2wk31s0xf5hy6yjrsbshlmih"; 598497 602318 revision = "1"; 598498 - editedCabalFile = "0qjl1yrr0l7kynrndv8qmpzl0jz9nzb7c4v9r7kxq05nnb7xpqbz"; 602319 + editedCabalFile = "1z2h1gmxphwd76chyah405ww4ciyxq7rvggghr6lh0z1m3p2k90h"; 598499 602320 isLibrary = true; 598500 602321 isExecutable = true; 598501 602322 libraryHaskellDepends = [ ··· 599670 603491 servant, 599671 603492 pname = "nat"; 599672 603493 string-interpolate, 603494 + temporary, 599673 603495 text, 599674 603496 }: 599675 603497 mkDerivation { 599676 603498 pname = "servant-typescript"; 599677 - version = "0.1.0.2"; 599678 - sha256 = "03nf4gqiy7jpdaxmddv859im0czpjrdss72cgjhkd96vqf4g4kam"; 603499 + version = "0.1.0.3"; 603500 + sha256 = "0x10dsd16bjqkk7s8kb1yfhrvkzqw5v0smxm8vf3bm8q10anf2dp"; 599679 603501 isLibrary = true; 599680 603502 isExecutable = true; 599681 603503 libraryHaskellDepends = [ ··· 599704 603526 servant 599705 603527 pname = "nat"; 599706 603528 string-interpolate 603529 + temporary 599707 603530 text 599708 603531 ]; 599709 603532 testHaskellDepends = [ ··· 599722 603545 ]; 599723 603546 description = "TypeScript client generation for Servant"; 599724 603547 license = lib.licenses.bsd3; 599725 - hydraPlatforms = lib.platforms.none; 599726 603548 mainProgram = "servant-typescript-exe"; 599727 - broken = true; 599728 603549 } 599729 603550 ) { }; 599730 603551 ··· 603826 607647 } 603827 607648 ) { }; 603828 607649 603829 - "shakespeare_2_1_0_1" = callPackage ( 603830 - { 603831 - mkDerivation, 603832 - aeson, 603833 - base, 603834 - blaze-html, 603835 - blaze-markup, 603836 - bytestring, 603837 - containers, 603838 - directory, 603839 - exceptions, 603840 - file-embed, 603841 - ghc-prim, 603842 - hspec, 603843 - HUnit, 603844 - parsec, 603845 - process, 603846 - scientific, 603847 - template-haskell, 603848 - text, 603849 - th-lift, 603850 - time, 603851 - transformers, 603852 - unordered-containers, 603853 - vector, 603854 - }: 603855 - mkDerivation { 603856 - pname = "shakespeare"; 603857 - version = "2.1.0.1"; 603858 - sha256 = "0byj0zhxi1pr8l5f18phzkwcf7z38lyk2zznz8hbkqadfgrmbdkc"; 603859 - libraryHaskellDepends = [ 603860 - aeson 603861 - base 603862 - blaze-html 603863 - blaze-markup 603864 - bytestring 603865 - containers 603866 - directory 603867 - exceptions 603868 - file-embed 603869 - ghc-prim 603870 - parsec 603871 - process 603872 - scientific 603873 - template-haskell 603874 - text 603875 - th-lift 603876 - time 603877 - transformers 603878 - unordered-containers 603879 - vector 603880 - ]; 603881 - testHaskellDepends = [ 603882 - aeson 603883 - base 603884 - blaze-html 603885 - blaze-markup 603886 - bytestring 603887 - containers 603888 - directory 603889 - exceptions 603890 - ghc-prim 603891 - hspec 603892 - HUnit 603893 - parsec 603894 - process 603895 - template-haskell 603896 - text 603897 - time 603898 - transformers 603899 - ]; 603900 - description = "A toolkit for making compile-time interpolated templates"; 603901 - license = lib.licenses.mit; 603902 - hydraPlatforms = lib.platforms.none; 603903 - maintainers = [ lib.maintainers.psibi ]; 603904 - } 603905 - ) { }; 603906 - 603907 607650 "shakespeare" = callPackage ( 603908 607651 { 603909 607652 mkDerivation, ··· 603932 607675 }: 603933 607676 mkDerivation { 603934 607677 pname = "shakespeare"; 603935 - version = "2.1.1"; 603936 - sha256 = "1j6jniy8d8dgc61h4n2kw668y8f30cqnsfwmgad1s4fqj1bplh0r"; 607678 + version = "2.1.4"; 607679 + sha256 = "1c9lvb0aw00r0wibm061c614phlwsrf888amjn9nc168ix0cxv6x"; 603937 607680 libraryHaskellDepends = [ 603938 607681 aeson 603939 607682 base ··· 604986 608729 } 604987 608730 ) { }; 604988 608731 604989 - "shellify_0_14_0_0" = callPackage ( 608732 + "shellify_0_14_0_1" = callPackage ( 604990 608733 { 604991 608734 mkDerivation, 604992 608735 base, ··· 605008 608751 }: 605009 608752 mkDerivation { 605010 608753 pname = "shellify"; 605011 - version = "0.14.0.0"; 605012 - sha256 = "09i55y57innmjbgb0x1bvrbpk0c5py0bb004wxnqpw4b8swxc60r"; 608754 + version = "0.14.0.1"; 608755 + sha256 = "1gnr4ii3wn7i0b8facg5a9d3b83lwm7nyk56576ll3nyywqh577i"; 605013 608756 isLibrary = true; 605014 608757 isExecutable = true; 605015 608758 libraryHaskellDepends = [ ··· 612530 616273 ]; 612531 616274 description = "A very quick-and-dirty WebSocket server"; 612532 616275 license = lib.licenses.bsd3; 616276 + hydraPlatforms = lib.platforms.none; 616277 + broken = true; 612533 616278 } 612534 616279 ) { }; 612535 616280 ··· 616515 620260 pname = "snap"; 616516 620261 version = "1.1.3.3"; 616517 620262 sha256 = "1mqckzm9gasa04ls691zgw4c6m53mgcj86yd2p5qvy07mpn9rdvx"; 616518 - revision = "3"; 616519 - editedCabalFile = "1nzkb0jq359lpwz4a1ldx1fh8xs735wfwf2z6qq0z7y0c4zxb9da"; 620263 + revision = "4"; 620264 + editedCabalFile = "1zqvs7kx3jy8vmgwqc344cyv6f3zpx0vg9w5nb9lf5h23bl85k0i"; 616520 620265 libraryHaskellDepends = [ 616521 620266 aeson 616522 620267 attoparsec ··· 619439 623184 }: 619440 623185 mkDerivation { 619441 623186 pname = "snappy"; 619442 - version = "0.2.0.3"; 619443 - sha256 = "0jy747dg58smzzr1mzrm751bkwvnaaghn65ppfkqbpqz6jw45qq2"; 623187 + version = "0.2.0.4"; 623188 + sha256 = "1marmb148hq6fnwmb5q1kqmzjsxpnqcgszmm4jdapiijlmms1b76"; 619444 623189 libraryHaskellDepends = [ 619445 623190 base 619446 623191 bytestring ··· 621042 624787 } 621043 624788 ) { }; 621044 624789 624790 + "socks5" = callPackage ( 624791 + { 624792 + mkDerivation, 624793 + async, 624794 + base, 624795 + binary, 624796 + bytestring, 624797 + data-default, 624798 + hspec, 624799 + iproute, 624800 + mtl, 624801 + network, 624802 + network-run, 624803 + optparse-applicative, 624804 + text, 624805 + tls, 624806 + }: 624807 + mkDerivation { 624808 + pname = "socks5"; 624809 + version = "0.6.0.1"; 624810 + sha256 = "1q4084wvfhyni3dw0xa5a08k3lkylr6g5bzv6d463iqwn5skjwsq"; 624811 + isLibrary = true; 624812 + isExecutable = true; 624813 + libraryHaskellDepends = [ 624814 + async 624815 + base 624816 + binary 624817 + bytestring 624818 + iproute 624819 + mtl 624820 + network 624821 + network-run 624822 + text 624823 + tls 624824 + ]; 624825 + executableHaskellDepends = [ 624826 + base 624827 + bytestring 624828 + data-default 624829 + network 624830 + optparse-applicative 624831 + text 624832 + tls 624833 + ]; 624834 + testHaskellDepends = [ 624835 + async 624836 + base 624837 + bytestring 624838 + data-default 624839 + hspec 624840 + network 624841 + network-run 624842 + tls 624843 + ]; 624844 + description = "A SOCKS5 (RFC 1928) implementation"; 624845 + license = lib.licenses.bsd3; 624846 + hydraPlatforms = lib.platforms.none; 624847 + broken = true; 624848 + } 624849 + ) { }; 624850 + 621045 624851 "sodium" = callPackage ( 621046 624852 { 621047 624853 mkDerivation, ··· 621540 625346 } 621541 625347 ) { }; 621542 625348 625349 + "sop-satisfier" = callPackage ( 625350 + { 625351 + mkDerivation, 625352 + base, 625353 + containers, 625354 + tasty, 625355 + tasty-hunit, 625356 + transformers, 625357 + }: 625358 + mkDerivation { 625359 + pname = "sop-satisfier"; 625360 + version = "0.3.4.5"; 625361 + sha256 = "1q0w5syb0x04k6iy4rhssw7wnj1vy562lhw9lmvygi37wir6vjj1"; 625362 + libraryHaskellDepends = [ 625363 + base 625364 + containers 625365 + transformers 625366 + ]; 625367 + testHaskellDepends = [ 625368 + base 625369 + tasty 625370 + tasty-hunit 625371 + ]; 625372 + description = "Check satisfiability of expressions on natural numbers"; 625373 + license = lib.licenses.bsd2; 625374 + hydraPlatforms = lib.platforms.none; 625375 + broken = true; 625376 + } 625377 + ) { }; 625378 + 621543 625379 "sophia" = callPackage ( 621544 625380 { 621545 625381 mkDerivation, ··· 624159 627995 }: 624160 627996 mkDerivation { 624161 627997 pname = "specup"; 624162 - version = "0.2.0.5"; 624163 - sha256 = "1b84drxgqaij48rwwannnkms1mzd5mw4i4r442am6wz4y7v45309"; 627998 + version = "0.2.0.6"; 627999 + sha256 = "1b7bvrb2ad1p78g82q7a3pzi4pgq2qrsas8vl9nglljyn2l259va"; 624164 628000 isLibrary = true; 624165 628001 isExecutable = true; 624166 628002 libraryHaskellDepends = [ ··· 625080 628916 math-functions, 625081 628917 process, 625082 628918 random, 628919 + template-haskell, 625083 628920 test-framework, 625084 628921 test-framework-hunit, 625085 628922 testu01, ··· 625088 628925 }: 625089 628926 mkDerivation { 625090 628927 pname = "splitmix"; 625091 - version = "0.1.1"; 625092 - sha256 = "1iqjxg3jdjmpj6rchnab1scr6b12p1mk7y75ywn06qisc0dc8y6n"; 628928 + version = "0.1.3.1"; 628929 + sha256 = "0w32z3rhsnijb9s5k6h60rhbzgzkw8xq1glfbjbl1znlkgbx1g5n"; 625093 628930 libraryHaskellDepends = [ 625094 628931 base 625095 628932 deepseq ··· 625105 628942 math-functions 625106 628943 process 625107 628944 random 628945 + template-haskell 625108 628946 test-framework 625109 628947 test-framework-hunit 625110 628948 tf-random ··· 625536 629374 pname = "spreadsheet"; 625537 629375 version = "0.1.3.10"; 625538 629376 sha256 = "022q6an3jl0s8bnwgma8v03b6m4zq3q0drl6nsrcs0nav8n1z5r0"; 625539 - revision = "1"; 625540 - editedCabalFile = "1dd37qgmy7nzxkbarflh5fm33gy7yqy91pa4pa3x4yggp9v52f61"; 629377 + revision = "2"; 629378 + editedCabalFile = "1zw9lf90r43vnmybbzmgahw4w423zfjhz4b0nmssnvdbk2lj5yps"; 625541 629379 isLibrary = true; 625542 629380 isExecutable = true; 625543 629381 libraryHaskellDepends = [ ··· 626666 630504 pname = "sqlite"; 626667 630505 version = "0.5.5"; 626668 630506 sha256 = "1i2bkfyswmannwb1fx6y8ma3pzgx28nl05a35gz1gar28rsx7gyk"; 630507 + revision = "1"; 630508 + editedCabalFile = "0pp4b2z41n9rpln4zrc6d9100v8g60m3ggjrjbq5fk0xjan4gp7k"; 626669 630509 libraryHaskellDepends = [ 626670 630510 base 626671 630511 bytestring ··· 627656 631496 } 627657 631497 ) { inherit (pkgs) nlopt; }; 627658 631498 627659 - "srtree_2_0_1_4" = callPackage ( 631499 + "srtree_2_0_1_5" = callPackage ( 627660 631500 { 627661 631501 mkDerivation, 627662 631502 ad, ··· 627691 631531 }: 627692 631532 mkDerivation { 627693 631533 pname = "srtree"; 627694 - version = "2.0.1.4"; 627695 - sha256 = "04r9lxf3nffpmmv978h8mfzr0shcbcrwarxs8s2mgpdvdx5qm1sa"; 631534 + version = "2.0.1.5"; 631535 + sha256 = "0h856i6gsh01rpp08lkvdrigylhbf1h016xwkccmmyd20iz3023l"; 627696 631536 isLibrary = true; 627697 631537 isExecutable = true; 627698 631538 libraryHaskellDepends = [ ··· 628551 632391 pname = "stache"; 628552 632392 version = "2.3.4"; 628553 632393 sha256 = "0kgiyxws2kir8q8zrqkzmk103y7hl6nksxl70f6fy8m9fqkjga51"; 628554 - revision = "4"; 628555 - editedCabalFile = "03bgp2b2kpijnvdsvcr4adas7iyz3v12cp6j044b248cw6hklayd"; 632394 + revision = "5"; 632395 + editedCabalFile = "1kvqv42w223r53mjkj2am6j65qly8bvahr5fxvlbnx88bairp0zm"; 628556 632396 isLibrary = true; 628557 632397 isExecutable = true; 628558 632398 enableSeparateDataOutput = true; ··· 628683 632523 }: 628684 632524 mkDerivation { 628685 632525 pname = "stack"; 628686 - version = "3.5.1"; 628687 - sha256 = "12423vw5k576c1yy0mg40cjia8j6b9jsf8p2489ixlvm192fza7f"; 632526 + pname = "nat"; 632527 + sha256 = "03n8191slbq9zs9h437qda1w24nnf73p7x48x8lqp8sbcn6plaj1"; 628688 632528 configureFlags = [ 628689 632529 "-fdisable-git-info" 628690 632530 "-fhide-dependency-versions" ··· 630839 634679 }: 630840 634680 mkDerivation { 630841 634681 pname = "stackctl"; 630842 - version = "1.7.3.4"; 630843 - sha256 = "0y0prp85gf5yns5lb9285g2xqfy8w5ck2ajkpiljnmff2zqnlyzb"; 634682 + version = "1.7.3.5"; 634683 + sha256 = "1naf2n41d0vhhnkkc4bnkapzqdmap6kp8xh27dqjcg7kmv3hllhi"; 630844 634684 isLibrary = true; 630845 634685 isExecutable = true; 630846 634686 libraryHaskellDepends = [ ··· 631153 634993 pname = "stan"; 631154 634994 version = "0.2.1.0"; 631155 634995 sha256 = "1mf01bpy291131jfl4fcslv0jfn8i8jqwr29v1v48j6c6q49rias"; 634996 + revision = "1"; 634997 + editedCabalFile = "0b7lf7g8kg7xxxl3zgfxk86bs0pl9i9xm1cvn1n2bpmfvymm19qa"; 631156 634998 isLibrary = true; 631157 634999 isExecutable = true; 631158 635000 libraryHaskellDepends = [ ··· 632531 636373 } 632532 636374 ) { }; 632533 636375 636376 + "stats-monad" = callPackage ( 636377 + { mkDerivation, base }: 636378 + mkDerivation { 636379 + pname = "stats-monad"; 636380 + version = "0.1.0.1"; 636381 + sha256 = "1cg0db7malqm75rlxxcmp2w00pvlf1kki4fz5p7lc86qy7241vzb"; 636382 + libraryHaskellDepends = [ base ]; 636383 + description = "A discrete probability monad with statistics"; 636384 + license = lib.licenses.bsd3; 636385 + } 636386 + ) { }; 636387 + 632534 636388 "statsd" = callPackage ( 632535 636389 { 632536 636390 mkDerivation, ··· 633667 637521 pname = "stm"; 633668 637522 version = "2.5.3.1"; 633669 637523 sha256 = "1rrh4s07vav9mlhpqsq9r6r0gh3f4k8g1gjlx63ngkpdj59ldc7b"; 637524 + revision = "1"; 637525 + editedCabalFile = "1pfrf0r1f3hl9x3nxv5nja6hrflm72z3cls4x5vljnzmrp4mf6s2"; 633670 637526 libraryHaskellDepends = [ 633671 637527 array 633672 637528 base ··· 638838 642694 pname = "string-interpolate"; 638839 642695 version = "0.3.4.0"; 638840 642696 sha256 = "13hb3spabggr6gsn9xhwpwldjvpl2l7z4lgssis82c40n108b0w8"; 638841 - revision = "2"; 638842 - editedCabalFile = "0mw6ws7ixdcfhn7pkgci8v1pk26wnid123pi5f1y88hnmnrzs13k"; 642697 + revision = "3"; 642698 + editedCabalFile = "0grq9v023186gfq3a2as9974qlwcjx3dhxqczpq22bq2wfpw24x7"; 638843 642699 libraryHaskellDepends = [ 638844 642700 base 638845 642701 bytestring ··· 642840 646696 pname = "sum-pyramid"; 642841 646697 version = "0.0.1"; 642842 646698 sha256 = "1zh7g16d345g8wffgj7wswfryrxxf7ik02fwrncqyc9yxmc7hm6y"; 646699 + revision = "1"; 646700 + editedCabalFile = "0pq6b89ygb0c2sd7b73zic7f8g589jz08ff0a1fpwr4xj5mawkmd"; 642843 646701 isLibrary = false; 642844 646702 isExecutable = true; 642845 646703 executableHaskellDepends = [ ··· 644345 648203 }: 644346 648204 mkDerivation { 644347 648205 pname = "sv2v"; 644348 - version = "0.0.13"; 644349 - sha256 = "0gg8972im84gp60qavpmsdxcmjwzsbbg3va2f0fdxz5yqyc96cdn"; 648206 + version = "0.0.13.1"; 648207 + sha256 = "1idv0mm1n02k9qzqqshylp310bcjlg5m3dh7l6dvz575553r4d1l"; 644350 648208 isLibrary = false; 644351 648209 isExecutable = true; 644352 648210 executableHaskellDepends = [ ··· 645269 649127 boolexpr, 645270 649128 brick, 645271 649129 brick-list-skip, 649130 + brick-tabular-list, 645272 649131 bytestring, 645273 649132 clock, 645274 649133 colour, ··· 645288 649147 fused-effects, 645289 649148 fused-effects-lens, 645290 649149 fuzzy, 649150 + generic-data, 645291 649151 githash, 645292 649152 hashable, 645293 649153 hsnoise, ··· 645301 649161 megaparsec, 645302 649162 minimorph, 645303 649163 MissingH, 649164 + monad-logger, 649165 + monoidmap, 649166 + monoidmap-aeson, 645304 649167 mtl, 645305 649168 murmur3, 645306 649169 natural-sort, 645307 649170 nonempty-containers, 645308 649171 optparse-applicative, 649172 + ordered-containers, 645309 649173 palette, 645310 649174 pandoc, 645311 649175 pandoc-types, 645312 649176 parser-combinators, 645313 649177 prettyprinter, 645314 649178 QuickCheck, 649179 + quickcheck-instances, 645315 649180 random, 645316 649181 scientific, 649182 + servant, 645317 649183 servant-docs, 649184 + servant-JuicyPixels, 645318 649185 servant-multipart, 645319 649186 servant-server, 645320 649187 SHA, 645321 - simple-enumeration, 645322 649188 split, 645323 649189 sqlite-simple, 645324 649190 syb, ··· 645352 649218 }: 645353 649219 mkDerivation { 645354 649220 pname = "swarm"; 645355 - version = "0.6.0.0"; 645356 - sha256 = "0y2ijxfn8yns6fk87mj7nzlnq5k62mhc5xp8nhzzs5yf2v4p72j6"; 649221 + version = "0.7.0.0"; 649222 + sha256 = "0i0n5vrsz7d8x45lbjzmk1jln368bcz6cy3hn3yaafvhyacqii82"; 645357 649223 isLibrary = false; 645358 649224 isExecutable = true; 645359 649225 enableSeparateDataOutput = true; ··· 645366 649232 boolexpr 645367 649233 brick 645368 649234 brick-list-skip 649235 + brick-tabular-list 645369 649236 bytestring 645370 649237 clock 645371 649238 colour ··· 645385 649252 fused-effects 645386 649253 fused-effects-lens 645387 649254 fuzzy 649255 + generic-data 645388 649256 githash 645389 649257 hashable 645390 649258 hsnoise ··· 645397 649265 lsp 645398 649266 megaparsec 645399 649267 minimorph 649268 + monad-logger 649269 + monoidmap 649270 + monoidmap-aeson 645400 649271 mtl 645401 649272 murmur3 645402 649273 natural-sort 645403 649274 nonempty-containers 649275 + ordered-containers 645404 649276 palette 645405 649277 pandoc 645406 649278 pandoc-types ··· 645408 649280 prettyprinter 645409 649281 random 645410 649282 scientific 649283 + servant 645411 649284 servant-docs 649285 + servant-JuicyPixels 645412 649286 servant-multipart 645413 649287 servant-server 645414 649288 SHA 645415 - simple-enumeration 645416 649289 split 645417 649290 sqlite-simple 645418 649291 syb ··· 645439 649312 yaml 645440 649313 ]; 645441 649314 executableHaskellDepends = [ 649315 + aeson 645442 649316 base 645443 649317 brick 649318 + bytestring 649319 + containers 649320 + extra 645444 649321 fused-effects 645445 649322 githash 649323 + http-client 649324 + http-client-tls 649325 + http-types 645446 649326 lens 645447 649327 optparse-applicative 645448 649328 sqlite-simple ··· 645472 649352 mtl 645473 649353 nonempty-containers 645474 649354 QuickCheck 649355 + quickcheck-instances 645475 649356 SHA 645476 649357 tasty 645477 649358 tasty-expected-failure ··· 645488 649369 base 645489 649370 containers 645490 649371 extra 649372 + fused-effects 645491 649373 lens 645492 649374 mtl 645493 649375 tasty-bench ··· 646226 650108 } 646227 650109 ) { }; 646228 650110 650111 + "sydtest_0_20_0_0" = callPackage ( 650112 + { 650113 + mkDerivation, 650114 + async, 650115 + autodocodec, 650116 + base, 650117 + bytestring, 650118 + containers, 650119 + deepseq, 650120 + dlist, 650121 + fast-myers-diff, 650122 + filepath, 650123 + MonadRandom, 650124 + mtl, 650125 + opt-env-conf, 650126 + path, 650127 + path-io, 650128 + pretty-show, 650129 + QuickCheck, 650130 + quickcheck-io, 650131 + random, 650132 + random-shuffle, 650133 + safe, 650134 + safe-coloured-text, 650135 + safe-coloured-text-terminfo, 650136 + stm, 650137 + svg-builder, 650138 + text, 650139 + vector, 650140 + }: 650141 + mkDerivation { 650142 + pname = "sydtest"; 650143 + version = "0.20.0.0"; 650144 + sha256 = "0f1ipp6wqykkyiibn1prx61ysvydf4bybiqg5mlzgi5h1cnqh22i"; 650145 + libraryHaskellDepends = [ 650146 + async 650147 + autodocodec 650148 + base 650149 + bytestring 650150 + containers 650151 + deepseq 650152 + dlist 650153 + fast-myers-diff 650154 + filepath 650155 + MonadRandom 650156 + mtl 650157 + opt-env-conf 650158 + path 650159 + path-io 650160 + pretty-show 650161 + QuickCheck 650162 + quickcheck-io 650163 + random 650164 + random-shuffle 650165 + safe 650166 + safe-coloured-text 650167 + safe-coloured-text-terminfo 650168 + stm 650169 + svg-builder 650170 + text 650171 + vector 650172 + ]; 650173 + description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 650174 + license = "unknown"; 650175 + hydraPlatforms = lib.platforms.none; 650176 + } 650177 + ) { }; 650178 + 646229 650179 "sydtest-aeson" = callPackage ( 646230 650180 { 646231 650181 mkDerivation, ··· 649613 653563 pname = "synthesizer-llvm"; 649614 653564 version = "1.1.0.1"; 649615 653565 sha256 = "166551a0g4m48f0mxccwcrgg488i4v8jpj6rjhd39mh6gxb874yr"; 653566 + revision = "1"; 653567 + editedCabalFile = "1kjiqwmfp2g7mqg6818qdhjjc5lw8hxf895763npjv5dx62b6dc3"; 649616 653568 isLibrary = true; 649617 653569 isExecutable = true; 649618 653570 libraryHaskellDepends = [ ··· 650631 654583 bytestring, 650632 654584 extra, 650633 654585 gi-ayatana-appindicator3, 650634 - gi-gdk, 654586 + gi-gdk3, 650635 654587 gi-glib, 650636 654588 gi-gobject, 650637 - gi-gtk, 654589 + gi-gtk3, 654590 + hspec-expectations, 650638 654591 optparse-applicative, 654592 + tasty, 654593 + tasty-autocollect, 654594 + tasty-hunit-compat, 650639 654595 text, 650640 654596 typed-process, 650641 654597 unliftio, ··· 650643 654599 }: 650644 654600 mkDerivation { 650645 654601 pname = "systranything"; 650646 - version = "0.1.2.0"; 650647 - sha256 = "1da3zqkknx9yg8spwjpaxx4sizwl598p2dwr2nnrl6dw033c6m1f"; 650648 - isLibrary = false; 654602 + version = "0.1.3.0"; 654603 + sha256 = "17y8zwbrxmbfr8g7gwbsvhxrwf330l6n2xqm6247ia8k5ap4drfy"; 654604 + isLibrary = true; 650649 654605 isExecutable = true; 650650 - executableHaskellDepends = [ 654606 + enableSeparateDataOutput = true; 654607 + libraryHaskellDepends = [ 650651 654608 aeson 650652 654609 base 650653 654610 bytestring 650654 654611 extra 650655 654612 gi-ayatana-appindicator3 650656 - gi-gdk 654613 + gi-gdk3 650657 654614 gi-glib 650658 654615 gi-gobject 650659 - gi-gtk 650660 - optparse-applicative 654616 + gi-gtk3 650661 654617 text 650662 654618 typed-process 654619 + ]; 654620 + executableHaskellDepends = [ 654621 + base 654622 + gi-glib 654623 + gi-gtk3 654624 + optparse-applicative 650663 654625 unliftio 650664 654626 yaml 650665 654627 ]; 654628 + testHaskellDepends = [ 654629 + base 654630 + hspec-expectations 654631 + tasty 654632 + tasty-autocollect 654633 + tasty-hunit-compat 654634 + text 654635 + yaml 654636 + ]; 654637 + testToolDepends = [ tasty-autocollect ]; 650666 654638 description = "Let you put anything in the system tray"; 650667 654639 license = lib.licenses.mit; 650668 - hydraPlatforms = lib.platforms.none; 650669 654640 mainProgram = "systranything"; 650670 - broken = true; 650671 654641 } 650672 654642 ) { }; 650673 654643 ··· 651639 655609 }: 651640 655610 mkDerivation { 651641 655611 pname = "tagged-identity"; 651642 - version = "0.1.4"; 651643 - sha256 = "0mq4q4i16lzm1d0ckarwjk2a47y28lfrv0hc31y0xblb9q50xxwl"; 651644 - revision = "1"; 651645 - editedCabalFile = "03r7ys57zbyadkka5rzb418y5ksb88nnmvxjs58j0pmp71h0zfa6"; 655612 + version = "0.1.5"; 655613 + sha256 = "1n8zfgb80856rhizkclq6bfdcixbi0ymvx0f508x70crrvk38xdv"; 651646 655614 libraryHaskellDepends = [ 651647 655615 base 651648 655616 mtl ··· 654889 658857 pname = "tasty"; 654890 658858 version = "1.5.3"; 654891 658859 sha256 = "10076vlklbcyiz7plakrihava5sy3dvwhskjldqzhfl18jvcg82l"; 654892 - revision = "1"; 654893 - editedCabalFile = "1l7nwf37v29qb1m2q3264473dzhvr6r764skzi9whkr7pjfylmlx"; 658860 + revision = "2"; 658861 + editedCabalFile = "04llcf1i3gawdik0bjhxdgls2wkiqlx0gi76nfh784nv2qzxlpbb"; 654894 658862 libraryHaskellDepends = [ 654895 658863 ansi-terminal 654896 658864 base ··· 655313 659281 }: 655314 659282 mkDerivation { 655315 659283 pname = "tasty-discover"; 655316 - version = "5.0.1"; 655317 - sha256 = "143d0bcbvnvybbgrfdjr0wqmpdghjkn1297qmxk5ji33r8pqf4wc"; 655318 - isLibrary = true; 655319 - isExecutable = true; 655320 - libraryHaskellDepends = [ 655321 - base 655322 - containers 655323 - filepath 655324 - Glob 655325 - tasty 655326 - ]; 655327 - executableHaskellDepends = [ 655328 - base 655329 - filepath 655330 - ]; 655331 - testHaskellDepends = [ 655332 - base 655333 - bytestring 655334 - containers 655335 - hedgehog 655336 - hspec 655337 - hspec-core 655338 - tasty 655339 - tasty-golden 655340 - tasty-hedgehog 655341 - tasty-hspec 655342 - tasty-hunit 655343 - tasty-quickcheck 655344 - tasty-smallcheck 655345 - ]; 655346 - description = "Test discovery for the tasty framework"; 655347 - license = lib.licenses.mit; 655348 - mainProgram = "tasty-discover"; 655349 - } 655350 - ) { }; 655351 - 655352 - "tasty-discover_5_0_2" = callPackage ( 655353 - { 655354 - mkDerivation, 655355 - base, 655356 - bytestring, 655357 - containers, 655358 - filepath, 655359 - Glob, 655360 - hedgehog, 655361 - hspec, 655362 - hspec-core, 655363 - tasty, 655364 - tasty-golden, 655365 - tasty-hedgehog, 655366 - tasty-hspec, 655367 - tasty-hunit, 655368 - tasty-quickcheck, 655369 - tasty-smallcheck, 655370 - }: 655371 - mkDerivation { 655372 - pname = "tasty-discover"; 655373 659284 version = "5.0.2"; 655374 659285 sha256 = "0hz6lhqqmcb157im2vpfihnms29367pcqg8mb6ww0c0bl1g0bf62"; 655375 659286 isLibrary = true; ··· 655402 659313 ]; 655403 659314 description = "Test discovery for the tasty framework"; 655404 659315 license = lib.licenses.mit; 655405 - hydraPlatforms = lib.platforms.none; 655406 659316 mainProgram = "tasty-discover"; 655407 659317 } 655408 659318 ) { }; ··· 655615 659525 pname = "tasty-golden-extra"; 655616 659526 version = "0.1.0.0"; 655617 659527 sha256 = "1bfd9ql3pws2vd37nbc5a8b49p7zbq3n48slxkrrwx1szaxkp8nj"; 655618 - revision = "2"; 655619 - editedCabalFile = "1vj6yr1ysnn5x76r3j824gdny121z69vr9367yi3mp4jxl1w44kw"; 659528 + revision = "3"; 659529 + editedCabalFile = "1hdkxsn075bc6f318vk81bddagxsyp390604v3azskfp52bwbl8r"; 655620 659530 libraryHaskellDepends = [ 655621 659531 aeson 655622 659532 aeson-diff ··· 655834 659744 pname = "tasty-hspec"; 655835 659745 version = "1.2.0.4"; 655836 659746 sha256 = "1hk1nkjvhp89xxgzj6dhbgw0fknnghpng6afq4i39hjkwv5p78ni"; 655837 - revision = "6"; 655838 - editedCabalFile = "1i2zj9q7lxiaqs8mlwhw72ar7bnkr5k5y99pjalaisb6hp9380ds"; 659747 + revision = "7"; 659748 + editedCabalFile = "0s1y34i8g7fva0z10ws3ipcy2jmlvqk0v4hdbx8rqnby5n0l5kay"; 655839 659749 libraryHaskellDepends = [ 655840 659750 base 655841 659751 hspec ··· 656295 660205 QuickCheck, 656296 660206 tasty, 656297 660207 tasty-hunit, 656298 - text, 656299 660208 }: 656300 660209 mkDerivation { 656301 660210 pname = "tasty-lua"; 656302 - version = "1.1.1"; 656303 - sha256 = "186322a9gwndnpis4r7nzlca4iymrz712bbbxpm0pxsw63xary06"; 656304 - revision = "1"; 656305 - editedCabalFile = "180jy8dhr7mdfgj5xgnwddm5lh8ahbvs78y07g9zgpsxkdnm5ghn"; 660211 + version = "1.1.1.1"; 660212 + sha256 = "03b2n3gw2w70cnl57w3sh3cv5ka270sf07jlxpb4zs0z5gh83p1r"; 656306 660213 libraryHaskellDepends = [ 656307 660214 base 656308 660215 bytestring ··· 656312 660219 lua-arbitrary 656313 660220 QuickCheck 656314 660221 tasty 656315 - text 656316 660222 ]; 656317 660223 testHaskellDepends = [ 656318 660224 base 656319 - bytestring 656320 660225 directory 656321 660226 filepath 656322 660227 hslua-core ··· 656418 660323 description = "Bencmarking using instruction counting"; 656419 660324 license = lib.licenses.bsd3; 656420 660325 platforms = lib.platforms.linux; 660326 + hydraPlatforms = lib.platforms.none; 660327 + broken = true; 656421 660328 } 656422 660329 ) { inherit (pkgs) papi; }; 656423 660330 ··· 656586 660493 pname = "tasty-quickcheck"; 656587 660494 version = "0.11.1"; 656588 660495 sha256 = "0si4ccgqlv8h33d6310rrqba7f4pz3g8cinqfj42yd7damsdxm73"; 656589 - revision = "1"; 656590 - editedCabalFile = "0l4ck9xqbylrdhyi0gwvws7jakn3qcyd146g9wwcqmjryzkzpj68"; 660496 + revision = "3"; 660497 + editedCabalFile = "1wzvha4xam8npx5mk33c056grmrqnjd6m38nnm6d7y99w2mn1a7w"; 656591 660498 libraryHaskellDepends = [ 656592 660499 base 656593 660500 optparse-applicative ··· 656659 660566 pname = "tasty-rerun"; 656660 660567 version = "1.1.20"; 656661 660568 sha256 = "0px58jm1yqbg32qf2s0yk09d2qdjxkkz9df89f31q3nzw85jv2ky"; 660569 + revision = "1"; 660570 + editedCabalFile = "13xmx91hp7i0qzrhada9ckliqkynwlwa8x6pjbvxjcy1y0qsd7hk"; 656662 660571 libraryHaskellDepends = [ 656663 660572 base 656664 660573 containers ··· 657075 660984 pname = "tasty-wai"; 657076 660985 version = "0.1.2.0"; 657077 660986 sha256 = "18yw2qzzg969c99rpa8p154hxbm9i4iq64pma3jkr2gfdm6j4vvg"; 657078 - revision = "2"; 657079 - editedCabalFile = "140kajnwrk614hswxyjymgpzy61m6riv5s25p4zkgv8aa1yhbk06"; 660987 + revision = "3"; 660988 + editedCabalFile = "0jxvhn4yasi1cl9rxwfpsdjh0bz79i4javy9qf4hqi7vzzxll6i4"; 657080 660989 libraryHaskellDepends = [ 657081 660990 base 657082 660991 bytestring ··· 657146 661055 base, 657147 661056 dollaridoos, 657148 661057 profunctors, 657149 - semigroups, 657150 661058 }: 657151 661059 mkDerivation { 657152 661060 pname = "tax"; 657153 - version = "0.2.0.0"; 657154 - sha256 = "13911rksr268v2jbdm7kkwlglni7s8lb417lryr7m2x9vfg31jqb"; 661061 + version = "0.2.1.0"; 661062 + sha256 = "1cgfvfi89rv4c12754hsah13ggfhq1hk4axs3sz7dvdwlw25swxr"; 657155 661063 libraryHaskellDepends = [ 657156 661064 base 657157 661065 dollaridoos 657158 661066 profunctors 657159 - semigroups 657160 661067 ]; 657161 661068 description = "Types and combinators for taxes"; 657162 - license = lib.licenses.agpl3Only; 661069 + license = lib.licenses.agpl3Plus; 657163 661070 } 657164 661071 ) { }; 657165 661072 ··· 657174 661081 }: 657175 661082 mkDerivation { 657176 661083 pname = "tax-ato"; 657177 - version = "2024.1.0.1"; 657178 - sha256 = "1mggzkkd4sxf7bccqwpz49jgxh36mbixl95j2sbsnyac91kgkmxa"; 661084 + version = "2025.1"; 661085 + sha256 = "0xg8wl83cgla3v2bjx4sk4szlyxam1223xrsa6v6ggwiqm9la5sq"; 657179 661086 libraryHaskellDepends = [ 657180 661087 base 657181 661088 lens ··· 658838 662745 }: 658839 662746 mkDerivation { 658840 662747 pname = "telescope"; 658841 - version = "0.3.0"; 658842 - sha256 = "06hfflc1ala8b8zm0838yrd51lwj5bqg1qdqwn9fs0hr1jp5nx1r"; 662748 + version = "0.4.0"; 662749 + sha256 = "13bls8czlwk6df5p5i37cs4sdf0wmz4w4bnjjhpf8kk7bnglpr97"; 658843 662750 libraryHaskellDepends = [ 658844 662751 base 658845 662752 binary ··· 661714 665621 pname = "test-framework"; 661715 665622 version = "0.8.2.2"; 661716 665623 sha256 = "04ijf5x6xx8i5lqv9ir33zs1rfzc4qkwwz8c1fdycnzvydcv4dnp"; 665624 + revision = "1"; 665625 + editedCabalFile = "1yv1qsr6bxphxk9430id9bqhfmkffdqmfg0k017dp9pnn4pqj0zh"; 661717 665626 libraryHaskellDepends = [ 661718 665627 ansi-terminal 661719 665628 ansi-wl-pprint ··· 661923 665832 pname = "test-framework-quickcheck2"; 661924 665833 version = "0.3.0.6"; 661925 665834 sha256 = "1d0w2q9sm8aayk0aj1zr2irpnqwpzixn6pdfq1i904vs1kkb2xin"; 665835 + revision = "1"; 665836 + editedCabalFile = "1af2gw9gvq143jdqmsnxj23cgss9ffdyr67951a5x151aps04y7z"; 661926 665837 libraryHaskellDepends = [ 661927 665838 base 661928 665839 extensible-exceptions ··· 664063 667974 } 664064 667975 ) { }; 664065 667976 667977 + "text-convert" = callPackage ( 667978 + { 667979 + mkDerivation, 667980 + base, 667981 + bytestring, 667982 + hspec, 667983 + QuickCheck, 667984 + text, 667985 + }: 667986 + mkDerivation { 667987 + pname = "text-convert"; 667988 + version = "0.1.0.1"; 667989 + sha256 = "1jwckq3y4c964kviqrbk1x1gvp6hl97mb4pgl140cgh5nvz58dvl"; 667990 + libraryHaskellDepends = [ 667991 + base 667992 + bytestring 667993 + text 667994 + ]; 667995 + testHaskellDepends = [ 667996 + base 667997 + bytestring 667998 + hspec 667999 + QuickCheck 668000 + text 668001 + ]; 668002 + description = "Convert between various textual representations"; 668003 + license = lib.licenses.bsd3; 668004 + } 668005 + ) { }; 668006 + 664066 668007 "text-cp437" = callPackage ( 664067 668008 { 664068 668009 mkDerivation, ··· 664132 668073 } 664133 668074 ) { }; 664134 668075 668076 + "text-encode" = callPackage ( 668077 + { 668078 + mkDerivation, 668079 + aeson, 668080 + base, 668081 + bytestring, 668082 + casing, 668083 + cassava, 668084 + http-api-data, 668085 + http-types, 668086 + persistent, 668087 + postgresql-simple, 668088 + sqlite-simple, 668089 + text, 668090 + text-convert, 668091 + }: 668092 + mkDerivation { 668093 + pname = "text-encode"; 668094 + version = "0.2.0.0"; 668095 + sha256 = "0512n1l1xfnzknm4c917n7wylhh52jsk7szxy6fcb6dvl2cr9v41"; 668096 + libraryHaskellDepends = [ 668097 + aeson 668098 + base 668099 + bytestring 668100 + casing 668101 + cassava 668102 + http-api-data 668103 + http-types 668104 + persistent 668105 + postgresql-simple 668106 + sqlite-simple 668107 + text 668108 + text-convert 668109 + ]; 668110 + testHaskellDepends = [ 668111 + aeson 668112 + base 668113 + bytestring 668114 + casing 668115 + cassava 668116 + http-api-data 668117 + http-types 668118 + persistent 668119 + postgresql-simple 668120 + sqlite-simple 668121 + text 668122 + text-convert 668123 + ]; 668124 + doHaddock = false; 668125 + description = "Classes and newtypes for deriving uniform textual encodings"; 668126 + license = lib.licenses.bsd3; 668127 + } 668128 + ) { }; 668129 + 664135 668130 "text-format" = callPackage ( 664136 668131 { 664137 668132 mkDerivation, ··· 665432 669427 }: 665433 669428 mkDerivation { 665434 669429 pname = "text-show"; 665435 - version = "3.11.1"; 665436 - sha256 = "18n4smbwwh9as0kpm2c18153y6lj5pbk2hy6ra9im0fwqk7xan6x"; 665437 - revision = "1"; 665438 - editedCabalFile = "1g96fwpf0y8hqbjiqdxz4ayyh9qwhacfynkmij80dksk7qxzwxml"; 669430 + version = "3.11.2"; 669431 + sha256 = "10nm8kj524hkl65qvxkrjjyykzgj85n3p96gv7zc7j3x90v9g1z2"; 665439 669432 libraryHaskellDepends = [ 665440 669433 array 665441 669434 base ··· 665527 669520 pname = "text-show-instances"; 665528 669521 version = "3.9.10"; 665529 669522 sha256 = "09cb391gi0hgkjk4ap4d83vg13lczrghmb9db96a4ckw1bp9pbc1"; 665530 - revision = "3"; 665531 - editedCabalFile = "1ghlw5jwcxpclsvffn51lhc4i7mljg0jczg78kjghwnv0prjm8r8"; 669523 + revision = "4"; 669524 + editedCabalFile = "1k5h1lqc8z593cwnmy2yngh3nlq2b4zfbjwkmyqddg192xia8bbh"; 665532 669525 libraryHaskellDepends = [ 665533 669526 aeson 665534 669527 base ··· 670248 674241 } 670249 674242 ) { }; 670250 674243 674244 + "tidal_1_10_0" = callPackage ( 674245 + { 674246 + mkDerivation, 674247 + base, 674248 + bytestring, 674249 + clock, 674250 + colour, 674251 + containers, 674252 + criterion, 674253 + deepseq, 674254 + exceptions, 674255 + hosc, 674256 + hspec, 674257 + mtl, 674258 + network, 674259 + parsec, 674260 + primitive, 674261 + random, 674262 + text, 674263 + tidal-core, 674264 + tidal-link, 674265 + transformers, 674266 + weigh, 674267 + }: 674268 + mkDerivation { 674269 + pname = "tidal"; 674270 + version = "1.10.0"; 674271 + sha256 = "07ky2bj0hfm734sf4c2pymxlxs0rmgdd13q7fmb390p5m5fbxy54"; 674272 + revision = "2"; 674273 + editedCabalFile = "0pka2nxlmf2sh3c4cmpjzb9zmcmhqhf5bz8qprcmxvmzkwm5a4yz"; 674274 + enableSeparateDataOutput = true; 674275 + libraryHaskellDepends = [ 674276 + base 674277 + bytestring 674278 + clock 674279 + colour 674280 + containers 674281 + deepseq 674282 + exceptions 674283 + hosc 674284 + mtl 674285 + network 674286 + parsec 674287 + primitive 674288 + random 674289 + text 674290 + tidal-core 674291 + tidal-link 674292 + transformers 674293 + ]; 674294 + testHaskellDepends = [ 674295 + base 674296 + containers 674297 + deepseq 674298 + hosc 674299 + hspec 674300 + parsec 674301 + tidal-core 674302 + ]; 674303 + benchmarkHaskellDepends = [ 674304 + base 674305 + criterion 674306 + tidal-core 674307 + weigh 674308 + ]; 674309 + description = "Pattern language for improvised music"; 674310 + license = lib.licenses.gpl3Only; 674311 + hydraPlatforms = lib.platforms.none; 674312 + } 674313 + ) { }; 674314 + 670251 674315 "tidal-core" = callPackage ( 670252 674316 { 670253 674317 mkDerivation, ··· 670255 674319 colour, 670256 674320 containers, 670257 674321 deepseq, 670258 - microspec, 674322 + hspec, 670259 674323 parsec, 670260 674324 text, 670261 674325 }: 670262 674326 mkDerivation { 670263 674327 pname = "tidal-core"; 670264 - version = "1.9.6"; 670265 - sha256 = "0lny9f5crvx61cwlwbfl7xj34i2gl4j9wlvba8ga82hhysyxzg3i"; 674328 + version = "1.10.0"; 674329 + sha256 = "1dg6z0z52zxrqai4jfgqrp4ghsdkcflixwspcbnyrxq1d4jw0zdf"; 670266 674330 libraryHaskellDepends = [ 670267 674331 base 670268 674332 colour ··· 670275 674339 base 670276 674340 containers 670277 674341 deepseq 670278 - microspec 674342 + hspec 670279 674343 ]; 670280 674344 description = "Core pattern library for TidalCycles, a pattern language for improvised music"; 670281 674345 license = lib.licenses.gpl3Only; ··· 670305 674369 } 670306 674370 ) { }; 670307 674371 670308 - "tidal-link_1_1_0" = callPackage ( 674372 + "tidal-link_1_2_0" = callPackage ( 670309 674373 { 670310 674374 mkDerivation, 670311 674375 base, ··· 670316 674380 }: 670317 674381 mkDerivation { 670318 674382 pname = "tidal-link"; 670319 - version = "1.1.0"; 670320 - sha256 = "0qd157gxdb06dwpmsimp9w49lqbpp93ms4bmxn1xwz3p2dhcwbrj"; 674383 + version = "1.2.0"; 674384 + sha256 = "15sqmdafz8ha2rlk4k327pjfc2kpcvq211avchanmmlvn7dflvsv"; 670321 674385 isLibrary = true; 670322 674386 isExecutable = true; 670323 674387 libraryHaskellDepends = [ ··· 670637 674701 pname = "tiktoken"; 670638 674702 version = "1.0.3"; 670639 674703 sha256 = "0hy3y9rdgjirk8ji7458qnc7h9d2b6yipfri25qkay96kq91kmj6"; 674704 + revision = "1"; 674705 + editedCabalFile = "0pwxqznjqbdsy99g4l1cyx8anns7wr92kpnbh19y9y99f1913jbn"; 670640 674706 enableSeparateDataOutput = true; 670641 674707 libraryHaskellDepends = [ 670642 674708 base ··· 670669 674735 ]; 670670 674736 description = "Haskell implementation of tiktoken"; 670671 674737 license = lib.licenses.bsd3; 670672 - hydraPlatforms = lib.platforms.none; 670673 - broken = true; 670674 674738 } 670675 674739 ) { }; 670676 674740 ··· 676916 680980 "tools-yj" = callPackage ( 676917 680981 { 676918 680982 mkDerivation, 680983 + array, 676919 680984 base, 676920 680985 bytestring, 676921 680986 containers, ··· 676926 680991 }: 676927 680992 mkDerivation { 676928 680993 pname = "tools-yj"; 676929 - version = "0.1.0.27"; 676930 - sha256 = "1blcyq5ihqk2kidvywvv187jqgisnnak6rgp2jhw7zbpd4da7hs8"; 680994 + version = "0.1.0.45"; 680995 + sha256 = "04n78afz82kmpyffy8vilfdw584qhhb5bfm3p1rnv9bjnrqv7jxn"; 676931 680996 libraryHaskellDepends = [ 680997 + array 676932 680998 base 676933 680999 bytestring 676934 681000 containers ··· 676938 681004 text 676939 681005 ]; 676940 681006 testHaskellDepends = [ 681007 + array 676941 681008 base 676942 681009 bytestring 676943 681010 containers ··· 676951 681018 } 676952 681019 ) { }; 676953 681020 676954 - "tools-yj_0_1_0_30" = callPackage ( 676955 - { 676956 - mkDerivation, 676957 - base, 676958 - bytestring, 676959 - containers, 676960 - data-default, 676961 - mono-traversable, 676962 - stm, 676963 - text, 676964 - }: 676965 - mkDerivation { 676966 - pname = "tools-yj"; 676967 - version = "0.1.0.30"; 676968 - sha256 = "0dd7l31p74h0nqszv4095zdp5lmjg8s9sxsn59da808f8z1pzf41"; 676969 - libraryHaskellDepends = [ 676970 - base 676971 - bytestring 676972 - containers 676973 - data-default 676974 - mono-traversable 676975 - stm 676976 - text 676977 - ]; 676978 - testHaskellDepends = [ 676979 - base 676980 - bytestring 676981 - containers 676982 - data-default 676983 - mono-traversable 676984 - stm 676985 - text 676986 - ]; 676987 - description = "Tribial tools"; 676988 - license = lib.licenses.bsd3; 676989 - hydraPlatforms = lib.platforms.none; 676990 - } 676991 - ) { }; 676992 - 676993 681021 "toolshed" = callPackage ( 676994 681022 { 676995 681023 mkDerivation, ··· 678256 682284 }: 678257 682285 mkDerivation { 678258 682286 pname = "trace-embrace"; 678259 - version = "1.0.11"; 678260 - sha256 = "0cnbw0yxaq3lpq8z66fkjsr3d9dss66l837mnbicfksbsn27m22i"; 682287 + version = "1.2.0"; 682288 + sha256 = "05wgj9pf9vqafa1h7sbjxzy2lx213qwrpr4f2dq7s7i2l9hf2a3k"; 678261 682289 libraryHaskellDepends = [ 678262 682290 aeson 678263 682291 base ··· 678280 682308 yaml 678281 682309 ]; 678282 682310 testHaskellDepends = [ 682311 + aeson 678283 682312 base 678284 682313 bytestring 678285 682314 containers ··· 680116 684145 ]; 680117 684146 description = "Reactive Type Safe Routing"; 680118 684147 license = lib.licenses.mit; 680119 - hydraPlatforms = lib.platforms.none; 680120 684148 } 680121 684149 ) { }; 680122 684150 ··· 681642 685670 pname = "trial-optparse-applicative"; 681643 685671 version = "0.0.0.0"; 681644 685672 sha256 = "1h8pfznf1dp9z3r2kl2ljgmxxkfp3va9yqba00fyvw85lna2aggn"; 681645 - revision = "4"; 681646 - editedCabalFile = "05rzzcsqvhil7wbsz23syd35h9jqbmmabx89v3h86ng7my3w1nc1"; 685673 + revision = "5"; 685674 + editedCabalFile = "0jvl3q2lh134z1r9zq2acpsilbjzpjia3xdh51szp6r708jnlpg1"; 681647 685675 libraryHaskellDepends = [ 681648 685676 base 681649 685677 optparse-applicative ··· 684336 688364 ]; 684337 688365 description = "An equational theorem prover"; 684338 688366 license = lib.licenses.bsd3; 688367 + hydraPlatforms = lib.platforms.none; 684339 688368 mainProgram = "twee"; 688369 + broken = true; 684340 688370 } 684341 688371 ) { }; 684342 688372 ··· 688543 692573 ]; 688544 692574 description = "Plugin to faciliate type-level let"; 688545 692575 license = lib.licenses.bsd3; 692576 + hydraPlatforms = lib.platforms.none; 692577 + broken = true; 688546 692578 } 688547 692579 ) { }; 688548 692580 ··· 688892 692924 dlist, 688893 692925 hspec, 688894 692926 hspec-discover, 692927 + safe, 688895 692928 template-haskell, 688896 692929 text, 688897 692930 th-data-compat, ··· 688900 692933 }: 688901 692934 mkDerivation { 688902 692935 pname = "typesafe-precure"; 688903 - version = "0.11.1.1"; 688904 - sha256 = "0zg4wwp5asnzz0n2yhrqb825dldr57m1j6w0l3sdxsi4jmibs4bj"; 692936 + version = "0.12.0.1"; 692937 + sha256 = "1cl6dq9mdm3caw3zzwpw7vcyv41apk0d0fxrxrm7d0vp4wvjckff"; 688905 692938 libraryHaskellDepends = [ 688906 692939 aeson 688907 692940 aeson-pretty ··· 688909 692942 base 688910 692943 bytestring 688911 692944 dlist 692945 + safe 688912 692946 template-haskell 688913 692947 text 688914 692948 th-data-compat ··· 690800 694834 } 690801 694835 ) { }; 690802 694836 694837 + "uku" = callPackage ( 694838 + { 694839 + mkDerivation, 694840 + base, 694841 + containers, 694842 + ilist, 694843 + protolude, 694844 + text, 694845 + }: 694846 + mkDerivation { 694847 + pname = "uku"; 694848 + version = "0.0.2.0"; 694849 + sha256 = "16hgrnhiy3xy3qizg9xpb6br7rqcwrxjxr750bcs9yds35lwqlpf"; 694850 + isLibrary = true; 694851 + isExecutable = true; 694852 + libraryHaskellDepends = [ 694853 + base 694854 + containers 694855 + ilist 694856 + protolude 694857 + text 694858 + ]; 694859 + executableHaskellDepends = [ 694860 + base 694861 + protolude 694862 + text 694863 + ]; 694864 + description = "Display Ukulele fingering charts in the terminal"; 694865 + license = lib.licenses.isc; 694866 + mainProgram = "uku"; 694867 + } 694868 + ) { }; 694869 + 690803 694870 "ulid" = callPackage ( 690804 694871 { 690805 694872 mkDerivation, ··· 694715 698782 pname = "unix"; 694716 698783 version = "2.8.7.0"; 694717 698784 sha256 = "10zv2vcq82vv56hll5mpvfwfsx6ymp2f75fwxvp5a1xgbafqgpfb"; 698785 + revision = "1"; 698786 + editedCabalFile = "1mvyq9qajqhjrv8m3zch07v8h0b3i4fj40d8jfcpbmqsq6h8sa9d"; 694718 698787 libraryHaskellDepends = [ 694719 698788 base 694720 698789 bytestring ··· 695026 699095 }: 695027 699096 mkDerivation { 695028 699097 pname = "unix-time"; 695029 - version = "0.4.16"; 695030 - sha256 = "1s9qws7z2z9d9ayljz98zdlsja3zvrbcb00n4arzwi3kdl9agqmc"; 699098 + version = "0.4.17"; 699099 + sha256 = "130z416958xqd6yvjidmm66674y9vkwgxj965kvwhnncbnz0afpn"; 695031 699100 libraryHaskellDepends = [ 695032 699101 base 695033 699102 binary ··· 696423 700492 libraryHaskellDepends = [ base ]; 696424 700493 description = "Unwrapping sums/products lifted to functors"; 696425 700494 license = lib.licenses.publicDomain; 700495 + } 700496 + ) { }; 700497 + 700498 + "unzip-traversable" = callPackage ( 700499 + { 700500 + mkDerivation, 700501 + base, 700502 + bifunctors, 700503 + }: 700504 + mkDerivation { 700505 + pname = "unzip-traversable"; 700506 + version = "0.1.1"; 700507 + sha256 = "0p5pf6rii89y9skms9a4qblj43b92bzym688q01w7zsa8y16dgv8"; 700508 + libraryHaskellDepends = [ 700509 + base 700510 + bifunctors 700511 + ]; 700512 + testHaskellDepends = [ 700513 + base 700514 + bifunctors 700515 + ]; 700516 + description = "Unzip functions for general Traversable containers"; 700517 + license = lib.licenses.bsd2; 696426 700518 } 696427 700519 ) { }; 696428 700520 ··· 698884 702976 }: 698885 702977 mkDerivation { 698886 702978 pname = "utxorpc"; 698887 - version = "0.0.16.0"; 698888 - sha256 = "0jhk3x5qbp2rvknbir8s6y4vq8sy5qcs0p9md1g8kbi872ipglng"; 702979 + version = "0.0.17.0"; 702980 + sha256 = "1jzb0v8gjy15b97a66gmjaxxf3mcxwigaavl5cnzga5z9kz8pyw1"; 698889 702981 libraryHaskellDepends = [ 698890 702982 base 698891 702983 proto-lens ··· 701487 705579 } 701488 705580 ) { }; 701489 705581 705582 + "variety" = callPackage ( 705583 + { 705584 + mkDerivation, 705585 + base, 705586 + bytestring, 705587 + containers, 705588 + exact-combinatorics, 705589 + HUnit, 705590 + QuickCheck, 705591 + }: 705592 + mkDerivation { 705593 + pname = "variety"; 705594 + version = "0.1.0.2"; 705595 + sha256 = "0bzavj283kraw1ffx1fi5ihxvk168mqs1s6j6vpl7qmxc0zmrn5a"; 705596 + libraryHaskellDepends = [ 705597 + base 705598 + bytestring 705599 + containers 705600 + exact-combinatorics 705601 + ]; 705602 + testHaskellDepends = [ 705603 + base 705604 + HUnit 705605 + QuickCheck 705606 + ]; 705607 + description = "integer arithmetic codes"; 705608 + license = lib.licenses.mit; 705609 + } 705610 + ) { }; 705611 + 701490 705612 "vary" = callPackage ( 701491 705613 { 701492 705614 mkDerivation, ··· 701505 705627 }: 701506 705628 mkDerivation { 701507 705629 pname = "vary"; 701508 - version = "0.1.1.2"; 701509 - sha256 = "1snil2rmlhbjrlazjycririwr9w4irznf5g4mgmjadb0xny9gwyx"; 705630 + version = "0.1.1.3"; 705631 + sha256 = "1rw05k5v0idr1ypcmfp7xxyqdaff12yc3x8csv2flspwmyvvlsn3"; 701510 705632 libraryHaskellDepends = [ 701511 705633 aeson 701512 705634 base ··· 701988 706110 }: 701989 706111 mkDerivation { 701990 706112 pname = "vcr"; 701991 - version = "0.0.0"; 701992 - sha256 = "0h3rjrncjhh8b0lhpj3ilz8dqfrw3qj1qr7q9vpa098nkkvfyqxf"; 706113 + version = "0.1.0"; 706114 + sha256 = "1s6gp1m84izlsvw5z7ll39mw2r456xmbh7cx53f8gkwl2m2pyyrq"; 701993 706115 libraryHaskellDepends = [ 701994 706116 async 701995 706117 base ··· 703044 707166 }: 703045 707167 mkDerivation { 703046 707168 pname = "vector-hashtables"; 703047 - version = "0.1.2.0"; 703048 - sha256 = "1s0c3d4f61rgvb0i8c2m3lazxbxg2cpv1pq4k4lnr7nga7sama9r"; 707169 + version = "0.1.2.1"; 707170 + sha256 = "1cdfvrpnia7bgqaw8yg0n23svbsdz72gss0hrkrvc5rwzxwhz49k"; 703049 707171 libraryHaskellDepends = [ 703050 707172 base 703051 707173 hashable ··· 703111 707233 }: 703112 707234 mkDerivation { 703113 707235 pname = "vector-instances"; 703114 - version = "3.4.2"; 703115 - sha256 = "0rynfy4agx66mwslj50bfqdyrylr2zba3r6dg5yqykpnfxp2vn9l"; 707236 + version = "3.4.3"; 707237 + sha256 = "1ajc65vj5j02qzfx11zvgmfx4lh5r99h4hg8wacdkyk1vw1rh9b7"; 703116 707238 libraryHaskellDepends = [ 703117 707239 base 703118 707240 comonad ··· 703527 707649 }: 703528 707650 mkDerivation { 703529 707651 pname = "vector-split"; 703530 - version = "1.0.0.3"; 703531 - sha256 = "1y2imndpyx15jmiajhabi34522jcayrz05zrxiv1srj4fssz56bd"; 707652 + version = "1.0.0.4"; 707653 + sha256 = "1m5b0v9izczkh3860a0l0lbwcygv9kf30552941gfmv8k931zq4d"; 703532 707654 libraryHaskellDepends = [ 703533 707655 base 703534 707656 vector ··· 704589 708711 }: 704590 708712 mkDerivation { 704591 708713 pname = "vext"; 704592 - version = "0.1.7.0"; 704593 - sha256 = "0ynwgb2d3xs6qn99qhdz417p1pjc6y1mjllk6v17rvxiim88yd36"; 708714 + version = "0.1.8.0"; 708715 + sha256 = "05mw1mijpm1k7hjsr5xx6nwk2ipk2ghi8n1m60zarhlqwmbcvjms"; 704594 708716 libraryHaskellDepends = [ 704595 708717 base 708718 + byteslice 704596 708719 natural-arithmetic 704597 708720 primitive 704598 708721 run-st ··· 707347 711470 }: 707348 711471 mkDerivation { 707349 711472 pname = "vty-windows"; 707350 - version = "0.2.0.3"; 707351 - sha256 = "12f91izwg4r18zvdbnkwd8jk7agdyy3w3bcljrm92hib43i210id"; 707352 - libraryHaskellDepends = [ 707353 - base 707354 - blaze-builder 707355 - bytestring 707356 - containers 707357 - deepseq 707358 - directory 707359 - filepath 707360 - microlens 707361 - microlens-mtl 707362 - microlens-th 707363 - mtl 707364 - parsec 707365 - stm 707366 - transformers 707367 - utf8-string 707368 - vector 707369 - vty 707370 - Win32 707371 - ]; 707372 - description = "Windows backend for Vty"; 707373 - license = lib.licenses.bsd3; 707374 - platforms = lib.platforms.windows; 707375 - } 707376 - ) { }; 707377 - 707378 - "vty-windows_0_2_0_4" = callPackage ( 707379 - { 707380 - mkDerivation, 707381 - base, 707382 - blaze-builder, 707383 - bytestring, 707384 - containers, 707385 - deepseq, 707386 - directory, 707387 - filepath, 707388 - microlens, 707389 - microlens-mtl, 707390 - microlens-th, 707391 - mtl, 707392 - parsec, 707393 - stm, 707394 - transformers, 707395 - utf8-string, 707396 - vector, 707397 - vty, 707398 - Win32, 707399 - }: 707400 - mkDerivation { 707401 - pname = "vty-windows"; 707402 711473 version = "0.2.0.4"; 707403 711474 sha256 = "1iisk8acjjibghw05yyc1w25hcs4d1cn1jlhl0iikz36kl0bbl8q"; 707404 711475 libraryHaskellDepends = [ ··· 707424 711495 description = "Windows backend for Vty"; 707425 711496 license = lib.licenses.bsd3; 707426 711497 platforms = lib.platforms.windows; 707427 - hydraPlatforms = lib.platforms.none; 707428 711498 } 707429 711499 ) { }; 707430 711500 ··· 712991 717061 }: 712992 717062 mkDerivation { 712993 717063 pname = "warp"; 712994 - version = "3.4.7"; 712995 - sha256 = "1s0kynqliqwn79gydrdxsgfdw6qffs5fmvhmxiydc379fxf07k7s"; 717064 + version = "3.4.8"; 717065 + sha256 = "0l67bz23l5sbhsmi9pz5vr0cf2mkkzpl0gjkf9309g0lxfq0mpyl"; 712996 717066 libraryHaskellDepends = [ 712997 717067 array 712998 717068 async ··· 713171 717241 }: 713172 717242 mkDerivation { 713173 717243 pname = "warp-quic"; 713174 - version = "0.0.2"; 713175 - sha256 = "1hb9xv5v7l1iwhv7qgm9y3prrjkpvcd5snmw6xc9wsk3fr82xl1r"; 717244 + version = "0.0.3"; 717245 + sha256 = "0vbgbvkl5j8x0lrz568cd2viq0vl5dwzavfincz7a01v5w90qr9c"; 713176 717246 libraryHaskellDepends = [ 713177 717247 base 713178 717248 bytestring ··· 713246 717316 pname = "warp-systemd"; 713247 717317 version = "0.3.0.0"; 713248 717318 sha256 = "1yvkg49wla7axk8vdh5c7d0pxlhyb66ka0xiqi6a3ra3zmw5xi3c"; 713249 - revision = "2"; 713250 - editedCabalFile = "09pkrig9xq95k3n1yrhfcfa8i3dkdim4nd03mgm22523jk9b3hbw"; 717319 + revision = "3"; 717320 + editedCabalFile = "1rb5qgfvyblpj15ikrlngyc87wdbp6xp90r7v7gyczshgdhnsg8d"; 713251 717321 isLibrary = true; 713252 717322 isExecutable = true; 713253 717323 libraryHaskellDepends = [ ··· 713633 717703 }: 713634 717704 mkDerivation { 713635 717705 pname = "waterfall-cad"; 713636 - version = "0.5.0.1"; 713637 - sha256 = "1869qwkbi3mlvciz916y6hv6l4h7z16fflf9xac4i0p9frly50jg"; 717706 + version = "0.5.1.0"; 717707 + sha256 = "173pv3a7n3jcf4j2jb7sirdib0x850qsifhlz858bkzamhqlxkr8"; 713638 717708 libraryHaskellDepends = [ 713639 717709 base 713640 717710 filepath ··· 713668 717738 }: 713669 717739 mkDerivation { 713670 717740 pname = "waterfall-cad-examples"; 713671 - version = "0.5.0.1"; 713672 - sha256 = "1k9qs6jnh23d1r9xdpc07002a89rwn1zy5lgvbvlmmlsjny3v7fv"; 717741 + version = "0.5.1.0"; 717742 + sha256 = "0vrlhgvbkwgk2nvmw8h6sg3fygi3sxs7qllyvwkzzs91kavnkb4d"; 713673 717743 isLibrary = true; 713674 717744 isExecutable = true; 713675 717745 libraryHaskellDepends = [ ··· 713722 717792 }: 713723 717793 mkDerivation { 713724 717794 pname = "waterfall-cad-svg"; 713725 - version = "0.5.0.1"; 713726 - sha256 = "0vyq23iryzsqjjdyb9ws5jbjm3rkb00ssmabnzx6vlnvzf5cfb1s"; 717795 + version = "0.5.1.0"; 717796 + sha256 = "1gjm36f7w3xf7q8gfm6xk5ssj594z45vfkqkr3x9rgny8rn7w3p5"; 713727 717797 libraryHaskellDepends = [ 713728 717798 attoparsec 713729 717799 base ··· 714194 718264 attoparsec, 714195 718265 base, 714196 718266 bytestring, 718267 + directory, 714197 718268 hspec, 714198 718269 http-client, 714199 718270 QuickCheck, ··· 714202 718273 }: 714203 718274 mkDerivation { 714204 718275 pname = "web-cookiejar"; 714205 - version = "0.1.0.0"; 714206 - sha256 = "0hc9cpqs2h7kcxlrvlsmqm7xxq1cdi7zax3c7md5ldbzgzwiwr28"; 718276 + version = "0.1.3.0"; 718277 + sha256 = "0n8r23nk89hlp5z5zirj2yng818fba39f5yz0l351z7rpx0pi8vy"; 714207 718278 libraryHaskellDepends = [ 714208 718279 attoparsec 714209 718280 base 714210 718281 bytestring 718282 + directory 714211 718283 http-client 714212 718284 time 714213 718285 ]; ··· 715812 719884 }: 715813 719885 mkDerivation { 715814 719886 pname = "webauthn"; 715815 - version = "0.10.0.0"; 715816 - sha256 = "0ndgwv8d7yndl9kb4fzvfp5wrz1pfshsp2xwhwnynd2a9mz3yqwp"; 719887 + version = "0.11.0.0"; 719888 + sha256 = "11fah0xsblggpnviggzpz18y8snhyn6wm7hng8665d7s4ylr9z4w"; 715817 719889 libraryHaskellDepends = [ 715818 719890 aeson 715819 719891 asn1-encoding ··· 716768 720840 }: 716769 720841 mkDerivation { 716770 720842 pname = "webfinger-client"; 716771 - version = "0.2.2.0"; 716772 - sha256 = "0i8gixjsz6hw77gplrk26d15m6d3ddm1ac2hgcmv641msvbfr9p2"; 720843 + version = "0.2.2.1"; 720844 + sha256 = "0rwfzjgx8g2ic6763sbv9ybnkcg84kgmmvw476sswaw2338spwd0"; 716773 720845 libraryHaskellDepends = [ 716774 720846 aeson 716775 720847 base ··· 717773 721845 pname = "websockets"; 717774 721846 version = "0.13.0.0"; 717775 721847 sha256 = "1da95b71akggyikbxdmja3gcaqrz8sp6ri5jrsyavc2ickvi9y4s"; 717776 - revision = "4"; 717777 - editedCabalFile = "1g6f94cn20a4073cbinv2sfwglbqlpjxgzgj7svi6ff4vkfn0ins"; 721848 + revision = "5"; 721849 + editedCabalFile = "0nm0lj8cv5z5y2d0bz0rfl3bz100swhind4wn95b7q2ma2x80dlv"; 717778 721850 isLibrary = true; 717779 721851 isExecutable = true; 717780 721852 libraryHaskellDepends = [ ··· 719674 723746 }: 719675 723747 mkDerivation { 719676 723748 pname = "wide-word"; 719677 - version = "0.1.7.0"; 719678 - sha256 = "01rx0bcc6kanyjp1vf9icymdgkmsx279m7rby2gpb1w0d6swnss8"; 723749 + version = "0.1.7.1"; 723750 + sha256 = "1h42k00inir628qb2r8966bhn354bnkgadpx5fgm6g1kh879y15a"; 719679 723751 libraryHaskellDepends = [ 719680 723752 base 719681 723753 binary ··· 720247 724319 }: 720248 724320 mkDerivation { 720249 724321 pname = "wild-bind"; 720250 - version = "0.1.2.11"; 720251 - sha256 = "0mdwx0qwlmm22pajvg5s3rzm6xf83z14lfxwbwh8fiphxlgyhnin"; 724322 + version = "0.1.2.12"; 724323 + sha256 = "1bjm2vxa6xg7j6wl28rg8djxabpjss22z1w1ymlm2lw5fb148frn"; 720252 724324 libraryHaskellDepends = [ 720253 724325 base 720254 724326 containers ··· 722509 726581 pname = "word8set"; 722510 726582 version = "0.1.2"; 722511 726583 sha256 = "0jbr571rxw0vxxc95568kdxrw9d0kk6np9wrwjd6rj6ybh532zr7"; 726584 + revision = "1"; 726585 + editedCabalFile = "1w3w1f8kig5mvrl06y5f48lrr44zxwa0w8lvwa6vks4fvv1ia0lj"; 722512 726586 libraryHaskellDepends = [ 722513 726587 base 722514 726588 deepseq ··· 724706 728780 aeson, 724707 728781 base, 724708 728782 binary, 724709 - binary-parsers, 724710 728783 bytestring, 724711 728784 network, 728785 + postgresql-simple, 724712 728786 text, 724713 728787 time, 724714 728788 }: 724715 728789 mkDerivation { 724716 728790 pname = "wsjtx-udp"; 724717 - version = "0.1.3.5"; 724718 - sha256 = "1x2975pj2i0c4w1s00s4qc24sa24y29magilfxbhy8v1w1hfqcv7"; 728791 + version = "0.5.0.0"; 728792 + sha256 = "0fz92fjynvaz73i8v229ibj9z7bjjc4v467hmakc1v7xcjdxajj7"; 724719 728793 isLibrary = true; 724720 728794 isExecutable = true; 724721 728795 libraryHaskellDepends = [ 724722 728796 aeson 724723 728797 base 724724 728798 binary 724725 - binary-parsers 724726 728799 bytestring 724727 728800 network 724728 728801 text 724729 728802 time 724730 728803 ]; 724731 - executableHaskellDepends = [ base ]; 728804 + executableHaskellDepends = [ 728805 + aeson 728806 + base 728807 + bytestring 728808 + network 728809 + postgresql-simple 728810 + ]; 724732 728811 description = "WSJT-X UDP protocol"; 724733 728812 license = lib.licenses.bsd3; 724734 728813 hydraPlatforms = lib.platforms.none; 724735 - mainProgram = "wsjtx-dump-udp"; 724736 728814 broken = true; 724737 728815 } 724738 728816 ) { }; ··· 726166 730244 } 726167 730245 ) { }; 726168 730246 730247 + "xcframework" = callPackage ( 730248 + { 730249 + mkDerivation, 730250 + base, 730251 + Cabal, 730252 + Cabal-hooks, 730253 + directory, 730254 + filepath, 730255 + process, 730256 + temporary, 730257 + }: 730258 + mkDerivation { 730259 + pname = "xcframework"; 730260 + version = "0.1.0.0"; 730261 + sha256 = "1pzgkijqmws848z5m6zizsywxydwxl3vzh47z4qjdy2b8z8m0qk0"; 730262 + libraryHaskellDepends = [ 730263 + base 730264 + Cabal 730265 + Cabal-hooks 730266 + directory 730267 + filepath 730268 + process 730269 + temporary 730270 + ]; 730271 + description = "Cabal hooks for producing an XCFramework from a Haskell library"; 730272 + license = lib.licenses.bsd3; 730273 + hydraPlatforms = lib.platforms.none; 730274 + broken = true; 730275 + } 730276 + ) { }; 730277 + 726169 730278 "xchat-plugin" = callPackage ( 726170 730279 { 726171 730280 mkDerivation, ··· 726550 730659 } 726551 730660 ) { }; 726552 730661 730662 + "xenomorph" = callPackage ( 730663 + { 730664 + mkDerivation, 730665 + base, 730666 + bytestring, 730667 + hspec, 730668 + hspec-discover, 730669 + html-entities, 730670 + text, 730671 + unordered-containers, 730672 + vector, 730673 + pname = "nat"; 730674 + }: 730675 + mkDerivation { 730676 + pname = "xenomorph"; 730677 + version = "0.0.1.0"; 730678 + sha256 = "1c7pdqk7758jzgfcmv2q6gbp9gwh1ka6hkfggiw5xmc2nky084bv"; 730679 + libraryHaskellDepends = [ 730680 + base 730681 + bytestring 730682 + html-entities 730683 + text 730684 + unordered-containers 730685 + vector 730686 + pname = "nat"; 730687 + ]; 730688 + testHaskellDepends = [ 730689 + base 730690 + bytestring 730691 + hspec 730692 + html-entities 730693 + text 730694 + unordered-containers 730695 + vector 730696 + pname = "nat"; 730697 + ]; 730698 + testToolDepends = [ hspec-discover ]; 730699 + license = lib.licenses.bsd3; 730700 + } 730701 + ) { }; 730702 + 726553 730703 "xenstore" = callPackage ( 726554 730704 { 726555 730705 mkDerivation, ··· 728247 732397 description = "Generate XML-isomorphic types"; 728248 732398 license = lib.licenses.mit; 728249 732399 hydraPlatforms = lib.platforms.none; 732400 + broken = true; 728250 732401 } 728251 732402 ) { }; 728252 732403 ··· 728264 732415 pname = "xml-lens"; 728265 732416 version = "0.3.1"; 728266 732417 sha256 = "0i6c4xqacinhxnyszzna7s9x79rrcs1c7jq6zimcwh4302l5d6cm"; 728267 - revision = "3"; 728268 - editedCabalFile = "1zwkii9klqaknnf06h56nvh9090xczqff1mq89mq7wk9y585qd3s"; 732418 + revision = "4"; 732419 + editedCabalFile = "1zicqdzvca53rg2ai14nkyq1f46w6kz6bd4mjmqzx778xn17d22f"; 728269 732420 libraryHaskellDepends = [ 728270 732421 base 728271 732422 case-insensitive ··· 728276 732427 ]; 728277 732428 description = "Lenses, traversals, and prisms for xml-conduit"; 728278 732429 license = lib.licenses.bsd3; 728279 - hydraPlatforms = lib.platforms.none; 728280 - broken = true; 728281 732430 } 728282 732431 ) { }; 728283 732432 ··· 729531 733680 }: 729532 733681 mkDerivation { 729533 733682 pname = "xmobar"; 729534 - version = "0.49"; 729535 - sha256 = "0mw01jxkcvm186csg71y21zig9rkxkp304i3ym4pgr3rilhp3p5z"; 733683 + version = "0.50"; 733684 + sha256 = "026s0q718z89vzjgva19vg58dm1l016i67mzi0wbj7kgai89w909"; 729536 733685 configureFlags = [ 729537 733686 "-fwith_alsa" 729538 733687 "-fwith_conduit" ··· 730335 734484 description = "Text-based notification server for XMobar"; 730336 734485 license = lib.licenses.bsd3; 730337 734486 badPlatforms = lib.platforms.darwin; 734487 + hydraPlatforms = lib.platforms.none; 734488 + broken = true; 730338 734489 } 730339 734490 ) { }; 730340 734491 ··· 730354 734505 pname = "xor"; 730355 734506 version = "0.0.1.3"; 730356 734507 sha256 = "12hqm6imp3qvnnrkds77jsi0zx2dza1h9g88adnxiksv62fybymv"; 734508 + revision = "1"; 734509 + editedCabalFile = "0n0mdli5qypi9khk42lqqkn464w22vjwx0dg2dg6mvdq0r37qwab"; 730357 734510 libraryHaskellDepends = [ 730358 734511 base 730359 734512 bytestring ··· 739765 743918 } 739766 743919 ) { }; 739767 743920 739768 - "yesod-test_1_6_19" = callPackage ( 743921 + "yesod-test_1_6_23" = callPackage ( 739769 743922 { 739770 743923 mkDerivation, 739771 743924 aeson, ··· 739779 743932 conduit, 739780 743933 containers, 739781 743934 cookie, 743935 + directory, 739782 743936 hspec, 739783 743937 hspec-core, 739784 743938 html-conduit, ··· 739788 743942 mtl, 739789 743943 network, 739790 743944 pretty-show, 743945 + process, 739791 743946 text, 739792 743947 time, 739793 743948 transformers, ··· 739802 743957 }: 739803 743958 mkDerivation { 739804 743959 pname = "yesod-test"; 739805 - version = "1.6.19"; 739806 - sha256 = "0snq06yps28lkxfc1mhsvbv2kq0h0mi16zjdfrahm4zaz8axkqka"; 743960 + version = "1.6.23"; 743961 + sha256 = "1bisgnvfda16ryg9npdn4s041z7vvvgdmpkq9wqwccpw4vwylklv"; 739807 743962 libraryHaskellDepends = [ 739808 743963 aeson 739809 743964 attoparsec ··· 739816 743971 conduit 739817 743972 containers 739818 743973 cookie 743974 + directory 739819 743975 hspec-core 739820 743976 html-conduit 739821 743977 http-types ··· 739824 743980 mtl 739825 743981 network 739826 743982 pretty-show 743983 + process 739827 743984 text 739828 743985 time 739829 743986 transformers ··· 744187 748344 pname = "zinza"; 744188 748345 version = "0.2.1"; 744189 748346 sha256 = "1k4k2yvijg0vwp3ykp9l77n3qdpivikqxx78ilvk6nx6w9sj58c8"; 748347 + revision = "1"; 748348 + editedCabalFile = "1ikbfa3g3636v70v7xa0x89xn91g2w8nngrxnaxwjyhaldskxvzc"; 744190 748349 libraryHaskellDepends = [ 744191 748350 base 744192 748351 containers ··· 744330 748489 } 744331 748490 ) { }; 744332 748491 744333 - "zip_2_2_0" = callPackage ( 748492 + "zip_2_2_1" = callPackage ( 744334 748493 { 744335 748494 mkDerivation, 744336 748495 base, ··· 744361 748520 }: 744362 748521 mkDerivation { 744363 748522 pname = "zip"; 744364 - version = "2.2.0"; 744365 - sha256 = "0l83f3bkx9npmna637wy607vr20z3gx8isgmjh8yany6f3nb805d"; 748523 + version = "2.2.1"; 748524 + sha256 = "1wq0nl034b2nknd627adzffj6rymykvkdn5b0smydcv5wp7i6p6j"; 744366 748525 isLibrary = true; 744367 748526 isExecutable = true; 744368 748527 libraryHaskellDepends = [
+3 -14
pkgs/development/libraries/agda/1lab/default.nix
··· 6 6 7 7 mkDerivation rec { 8 8 pname = "1lab"; 9 - version = "unstable-2024-08-05"; 9 + version = "unstable-2025-07-01"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "the1lab"; 13 13 repo = pname; 14 - rev = "7cc9bf7bbe90be5491e0d64da90a36afa29a540b"; 15 - hash = "sha256-hOyf6ZzejDAFDRj6liFZsBc9bKdxV5bzTPP4kGXIhW0="; 14 + rev = "e9c2ad2b3ba9cefad36e72cb9d732117c68ac862"; 15 + hash = "sha256-wKh77+xCdfMtnq9jMlpdnEptGO+/WVNlQFa1TDbdUGs="; 16 16 }; 17 17 18 18 postPatch = '' ··· 23 23 shopt -s globstar extglob 24 24 files=(src/**/*.@(agda|lagda.md)) 25 25 sed -Ei '/OPTIONS/s/ -v ?[^ #]+//g' "''${files[@]}" 26 - 27 - # Generate all-pages manually instead of building the build script. 28 - mkdir -p _build 29 - for f in "''${files[@]}"; do 30 - f=''${f#src/} f=''${f%%.*} f=''${f//\//.} 31 - echo "open import $f" 32 - done > _build/all-pages.agda 33 26 ''; 34 - 35 - libraryName = "1lab"; 36 - libraryFile = "1lab.agda-lib"; 37 - everythingFile = "_build/all-pages.agda"; 38 27 39 28 meta = with lib; { 40 29 description = "A formalised, cross-linked reference resource for mathematics done in Homotopy Type Theory ";
-5
pkgs/development/libraries/agda/agda-categories/default.nix
··· 24 24 # version update of the stdlib, so we get rid of the version constraint 25 25 # altogether. 26 26 sed -Ei 's/standard-library-[0-9.]+/standard-library/' agda-categories.agda-lib 27 - 28 - # The Makefile of agda-categories uses git(1) instead of find(1) to 29 - # determine the list of source files. We cannot use git, as $PWD will not 30 - # be a valid Git working directory. 31 - find src -name '*.agda' | sed -e 's|^src/[/]*|import |' -e 's|/|.|g' -e 's/.agda//' -e '/import Everything/d' | LC_COLLATE='C' sort > Everything.agda 32 27 ''; 33 28 34 29 buildInputs = [ standard-library ];
-7
pkgs/development/libraries/agda/agda-prelude/default.nix
··· 15 15 hash = "sha256-ab+KojzRbkUTAFNH5OA78s0F5SUuXTbliai6badveg4="; 16 16 }; 17 17 18 - preConfigure = '' 19 - cd test 20 - make everything 21 - mv Everything.agda .. 22 - cd .. 23 - ''; 24 - 25 18 meta = with lib; { 26 19 homepage = "https://github.com/UlfNorell/agda-prelude"; 27 20 description = "Programming library for Agda";
-7
pkgs/development/libraries/agda/agdarsec/default.nix
··· 16 16 sha256 = "02fqkycvicw6m2xsz8p01aq8n3gj2d2gyx8sgj15l46f8434fy0x"; 17 17 }; 18 18 19 - everythingFile = "./index.agda"; 20 - 21 - includePaths = [ 22 - "src" 23 - "examples" 24 - ]; 25 - 26 19 buildInputs = [ standard-library ]; 27 20 28 21 meta = with lib; {
+3 -3
pkgs/development/libraries/agda/cubical-mini/default.nix
··· 8 8 9 9 mkDerivation rec { 10 10 pname = "cubical-mini"; 11 - version = "nightly-20241214"; 11 + version = "0.5-unstable-2025-06-13"; 12 12 13 13 src = fetchFromGitHub { 14 14 repo = pname; 15 15 owner = "cmcmA20"; 16 - rev = "ab18320018ddc0055db60d4bb5560d31909c5b78"; 17 - hash = "sha256-32qXY9KbProdPwqHxSkwO74Oqx65rTzoXtH2SpRB3OM="; 16 + rev = "1776874d13d0b811e6eeb70d0e5a52b4d2a978d2"; 17 + hash = "sha256-UxWOS+uzP9aAaMdSueA2CAuzWkImGAoKxroarcgpk+w="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+4 -8
pkgs/development/libraries/agda/cubical/default.nix
··· 2 2 lib, 3 3 mkDerivation, 4 4 fetchFromGitHub, 5 - ghc, 6 5 }: 7 6 8 7 mkDerivation rec { ··· 16 15 hash = "sha256-KwwN2g2naEo4/rKTz2L/0Guh5LxymEYP53XQzJ6eMjM="; 17 16 }; 18 17 19 - # The cubical library has several `Everything.agda` files, which are 20 - # compiled through the make file they provide. 21 - nativeBuildInputs = [ ghc ]; 22 - buildPhase = '' 23 - runHook preBuild 24 - make 25 - runHook postBuild 18 + postPatch = '' 19 + # This imports the Everything files, which we don't generate. 20 + # TODO: remove for the next release 21 + rm -rf Cubical/README.agda Cubical/Talks/EPA2020.agda 26 22 ''; 27 23 28 24 meta = with lib; {
-4
pkgs/development/libraries/agda/functional-linear-algebra/default.nix
··· 18 18 sha256 = "sha256-3nme/eH4pY6bD0DkhL4Dj/Vp/WnZqkQtZTNk+n1oAyY="; 19 19 }; 20 20 21 - preConfigure = '' 22 - sh generate-everything.sh 23 - ''; 24 - 25 21 meta = with lib; { 26 22 homepage = "https://github.com/ryanorendorff/functional-linear-algebra"; 27 23 description = ''
+4 -1
pkgs/development/libraries/agda/generics/default.nix
··· 20 20 standard-library 21 21 ]; 22 22 23 - # everythingFile = "./README.agda"; 23 + # Agda expects a single .agda-lib file. 24 + preBuild = '' 25 + rm tests.agda-lib 26 + ''; 24 27 25 28 meta = with lib; { 26 29 description = "Library for datatype-generic programming in Agda";
+3 -12
pkgs/development/libraries/agda/standard-library/default.nix
··· 2 2 lib, 3 3 mkDerivation, 4 4 fetchFromGitHub, 5 - ghcWithPackages, 6 5 nixosTests, 7 6 }: 8 7 9 8 mkDerivation rec { 10 9 pname = "standard-library"; 11 - version = "2.2"; 10 + version = "2.2-unstable-2025-07-03"; 12 11 13 12 src = fetchFromGitHub { 14 13 repo = "agda-stdlib"; 15 14 owner = "agda"; 16 - rev = "v${version}"; 17 - hash = "sha256-/Fy5EOSbVNXt6Jq0yKSnlNPW4SYfn+eCTAYFnMZrbR0="; 15 + rev = "6f8af9452e7fac27bc3b3ad068793b538f07668e"; 16 + hash = "sha256-LD6KasmQ9ZHRNQJ0N4wjyc6JiSkZpmyqQq9B0Wta1n0="; 18 17 }; 19 - 20 - nativeBuildInputs = [ (ghcWithPackages (self: [ self.filemanip ])) ]; 21 - preConfigure = '' 22 - runhaskell GenerateEverything.hs --include-deprecated 23 - # We will only build/consider Everything.agda, in particular we don't want Everything*.agda 24 - # do be copied to the store. 25 - rm EverythingSafe.agda 26 - ''; 27 18 28 19 passthru.tests = { inherit (nixosTests) agda; }; 29 20 meta = with lib; {
+1 -3
pkgs/top-level/agda-packages.nix
··· 28 28 29 29 agda = withPackages [ ]; 30 30 31 - standard-library = callPackage ../development/libraries/agda/standard-library { 32 - inherit (pkgs.haskellPackages) ghcWithPackages; 33 - }; 31 + standard-library = callPackage ../development/libraries/agda/standard-library { }; 34 32 35 33 iowa-stdlib = callPackage ../development/libraries/agda/iowa-stdlib { }; 36 34
+28 -8
pkgs/top-level/release-haskell.nix
··· 479 479 }; 480 480 481 481 pkgsCross = { 482 + aarch64-android-prebuilt.pkgsStatic = 483 + removePlatforms 484 + [ 485 + # Android NDK package doesn't support building on 486 + "aarch64-darwin" 487 + "aarch64-linux" 488 + 489 + "x86_64-darwin" 490 + ] 491 + { 492 + haskell.packages.ghc912 = { 493 + inherit 494 + (packagePlatforms pkgs.pkgsCross.aarch64-android-prebuilt.pkgsStatic.haskell.packages.ghc912) 495 + ghc 496 + hello 497 + microlens 498 + ; 499 + }; 500 + }; 501 + 482 502 ghcjs = 483 503 removePlatforms 484 504 [ ··· 512 532 ; 513 533 }; 514 534 515 - haskell.packages.ghc910 = { 516 - inherit (packagePlatforms pkgs.pkgsCross.aarch64-android-prebuilt.haskell.packages.ghc910) 517 - ghc 518 - hello 519 - microlens 520 - ; 521 - }; 522 - 523 535 haskell.packages.ghcHEAD = { 524 536 inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghcHEAD) 525 537 ghc ··· 528 540 ; 529 541 }; 530 542 }; 543 + 544 + ucrt64.haskell.packages.ghc912 = { 545 + inherit (packagePlatforms pkgs.pkgsCross.ucrt64.haskell.packages.ghc912) 546 + ghc 547 + # hello # executables don't build yet 548 + microlens 549 + ; 550 + }; 531 551 532 552 riscv64 = { 533 553 # Cross compilation of GHC