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 126 ## Writing Agda packages {#writing-agda-packages} 127 128 - To write a nix derivation for an Agda library, first check that the library has a `*.agda-lib` file. 129 130 A derivation can then be written using `agdaPackages.mkDerivation`. This has similar arguments to `stdenv.mkDerivation` with the following additions: 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 * `libraryName` should be the name that appears in the `*.agda-lib` file, defaulting to `pname`. 134 * `libraryFile` should be the file name of the `*.agda-lib` file, defaulting to `${libraryName}.agda-lib`. 135 ··· 150 151 ### Building Agda packages {#building-agda-packages} 152 153 - The default build phase for `agdaPackages.mkDerivation` runs `agda` on the `Everything.agda` file. 154 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. 156 `agda` and the Agda libraries contained in `buildInputs` are made available during the build phase. 157 158 ### Installing Agda packages {#installing-agda-packages} ··· 180 181 ### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs} 182 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: 184 185 ```nix 186 { ··· 188 standard-library, 189 fetchFromGitHub, 190 }: 191 - { } 192 - ``` 193 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 mkDerivation { 202 - version = "1.5.0"; 203 - pname = "iowa-stdlib"; 204 - 205 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 - ''; 218 } 219 ``` 220 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`. 222 223 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 ··· 226 you can test whether it builds correctly by writing in a comment: 227 228 ``` 229 - @ofborg build agdaPackages.iowa-stdlib 230 ``` 231 232 ### Maintaining Agda packages {#agda-maintaining-packages}
··· 125 126 ## Writing Agda packages {#writing-agda-packages} 127 128 + To write a nix derivation for an Agda library, first check that the library has a (single) `*.agda-lib` file. 129 130 A derivation can then be written using `agdaPackages.mkDerivation`. This has similar arguments to `stdenv.mkDerivation` with the following additions: 131 132 * `libraryName` should be the name that appears in the `*.agda-lib` file, defaulting to `pname`. 133 * `libraryFile` should be the file name of the `*.agda-lib` file, defaulting to `${libraryName}.agda-lib`. 134 ··· 149 150 ### Building Agda packages {#building-agda-packages} 151 152 + The default build phase for `agdaPackages.mkDerivation` runs `agda --build-library`. 153 If something else is needed to build the package (e.g. `make`) then the `buildPhase` should be overridden. 154 + Additionally, a `preBuild` or `configurePhase` can be used if there are steps that need to be done prior to checking the library. 155 `agda` and the Agda libraries contained in `buildInputs` are made available during the build phase. 156 157 ### Installing Agda packages {#installing-agda-packages} ··· 179 180 ### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs} 181 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: 183 184 ```nix 185 { ··· 187 standard-library, 188 fetchFromGitHub, 189 }: 190 191 mkDerivation { 192 + pname = "my-library"; 193 + version = "1.0"; 194 src = <...>; 195 + buildInputs = [ standard-library ]; 196 + meta = <...>; 197 } 198 ``` 199 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`. 205 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). 207 ··· 209 you can test whether it builds correctly by writing in a comment: 210 211 ``` 212 + @ofborg build agdaPackages.my-library 213 ``` 214 215 ### Maintaining Agda packages {#agda-maintaining-packages}
+1 -7
maintainers/scripts/haskell/merge-and-open-pr.sh
··· 80 gh pr merge --repo NixOS/nixpkgs --merge "$curr_haskell_updates_pr_num" 81 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 90 91 # Push these new commits to the haskell-updates branch 92 echo "Pushing commits just created to the remote $push_remote/haskell-updates branch..."
··· 80 gh pr merge --repo NixOS/nixpkgs --merge "$curr_haskell_updates_pr_num" 81 82 # Update stackage, Hackage hashes, and regenerate Haskell package set 83 + ./maintainers/scripts/haskell/update-package-set.sh 84 85 # Push these new commits to the haskell-updates branch 86 echo "Pushing commits just created to the remote $push_remote/haskell-updates branch..."
+2 -2
maintainers/scripts/haskell/regenerate-hackage-packages.sh
··· 107 if [[ "$DO_COMMIT" -eq 1 ]]; then 108 git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml 109 git add pkgs/development/haskell-modules/hackage-packages.nix 110 - git commit -F - << EOF 111 haskellPackages: regenerate package set based on current config 112 113 - This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh 114 EOF 115 fi 116
··· 107 if [[ "$DO_COMMIT" -eq 1 ]]; then 108 git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml 109 git add pkgs/development/haskell-modules/hackage-packages.nix 110 + git commit --edit -F - << EOF 111 haskellPackages: regenerate package set based on current config 112 113 + (generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh) 114 EOF 115 fi 116
+31 -10
maintainers/scripts/haskell/update-hackage.sh
··· 1 #! /usr/bin/env nix-shell 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. 5 6 set -euo pipefail 7 8 pin_file=pkgs/data/misc/hackage/pin.json 9 current_commit="$(jq -r .commit $pin_file)" 10 old_date="$(jq -r .msg $pin_file | sed 's/Update from Hackage at //')" ··· 14 new_date="$(echo "$commit_msg" | sed 's/Update from Hackage at //')" 15 16 if [ "$current_commit" != "$head_commit" ]; then 17 url="https://github.com/commercialhaskell/all-cabal-hashes/archive/$head_commit.tar.gz" 18 hash="$(nix-prefetch-url "$url")" 19 jq -n \ ··· 23 --arg commit_msg "$commit_msg" \ 24 '{commit: $commit, url: $url, sha256: $hash, msg: $commit_msg}' \ 25 > $pin_file 26 fi 27 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
··· 1 #! /usr/bin/env nix-shell 2 #! nix-shell -i bash -p curl jq git gnused -I nixpkgs=. 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. 24 25 set -euo pipefail 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 + 32 pin_file=pkgs/data/misc/hackage/pin.json 33 current_commit="$(jq -r .commit $pin_file)" 34 old_date="$(jq -r .msg $pin_file | sed 's/Update from Hackage at //')" ··· 38 new_date="$(echo "$commit_msg" | sed 's/Update from Hackage at //')" 39 40 if [ "$current_commit" != "$head_commit" ]; then 41 + echo "Updating all-cabal-hashes from $old_date to $new_date" >&2 42 url="https://github.com/commercialhaskell/all-cabal-hashes/archive/$head_commit.tar.gz" 43 hash="$(nix-prefetch-url "$url")" 44 jq -n \ ··· 48 --arg commit_msg "$commit_msg" \ 49 '{commit: $commit, url: $url, sha256: $hash, msg: $commit_msg}' \ 50 > $pin_file 51 + else 52 + echo "No new all-cabal-hashes version" >&2 53 + exit 0 54 fi 55 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 #! /usr/bin/env nix-shell 2 #! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=. 3 # shellcheck shell=bash 4 5 set -eu -o pipefail 6 7 # Stackage solver to use, LTS or Nightly 8 # (should be capitalized like the display name) ··· 31 version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")" 32 33 if [[ "$old_version" == "$version" ]]; then 34 - echo "No new stackage version" 35 exit 0 # Nothing to do 36 fi 37 38 - echo "Updating Stackage from $old_version to $version." 39 40 # Create a simple yaml version of the file. 41 sed -r \ ··· 78 # ShellCheck: latest version of command-line dev tool. 79 # Agda: The Agda community is fast-moving; we strive to always include the newest versions of Agda and the Agda packages in nixpkgs. 80 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
··· 1 #! /usr/bin/env nix-shell 2 #! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=. 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. 26 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 33 34 # Stackage solver to use, LTS or Nightly 35 # (should be capitalized like the display name) ··· 58 version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")" 59 60 if [[ "$old_version" == "$version" ]]; then 61 + echo "No new stackage version" >&2 62 exit 0 # Nothing to do 63 fi 64 65 + echo "Updating Stackage from $old_version to $version." >&2 66 67 # Create a simple yaml version of the file. 68 sed -r \ ··· 105 # ShellCheck: latest version of command-line dev tool. 106 # Agda: The Agda community is fast-moving; we strive to always include the newest versions of Agda and the Agda packages in nixpkgs. 107 108 + echo "$old_version -> $version"
+3 -9
pkgs/build-support/agda/default.nix
··· 90 pname, 91 meta, 92 buildInputs ? [ ], 93 - everythingFile ? "./Everything.agda", 94 - includePaths ? [ ], 95 libraryName ? pname, 96 libraryFile ? "${libraryName}.agda-lib", 97 buildPhase ? null, ··· 100 ... 101 }: 102 let 103 - agdaWithArgs = withPackages (filter (p: p ? isAgdaDerivation) buildInputs); 104 - includePathArgs = concatMapStrings (path: "-i" + path + " ") ( 105 - includePaths ++ [ (dirOf everythingFile) ] 106 - ); 107 in 108 { 109 inherit libraryName libraryFile; 110 111 isAgdaDerivation = true; 112 113 - buildInputs = buildInputs ++ [ agdaWithArgs ]; 114 115 buildPhase = 116 if buildPhase != null then ··· 118 else 119 '' 120 runHook preBuild 121 - agda ${includePathArgs} ${everythingFile} 122 - rm ${everythingFile} ${lib.interfaceFile Agda.version everythingFile} 123 runHook postBuild 124 ''; 125
··· 90 pname, 91 meta, 92 buildInputs ? [ ], 93 libraryName ? pname, 94 libraryFile ? "${libraryName}.agda-lib", 95 buildPhase ? null, ··· 98 ... 99 }: 100 let 101 + agdaWithPkgs = withPackages (filter (p: p ? isAgdaDerivation) buildInputs); 102 in 103 { 104 inherit libraryName libraryFile; 105 106 isAgdaDerivation = true; 107 108 + buildInputs = buildInputs ++ [ agdaWithPkgs ]; 109 110 buildPhase = 111 if buildPhase != null then ··· 113 else 114 '' 115 runHook preBuild 116 + agda --build-library 117 runHook postBuild 118 ''; 119
+2 -2
pkgs/build-support/agda/lib.nix
··· 6 * The resulting path may not be normalized. 7 * 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" 11 */ 12 interfaceFile = 13 agdaVersion: agdaFile:
··· 6 * The resulting path may not be normalized. 7 * 8 * Examples: 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 */ 12 interfaceFile = 13 agdaVersion: agdaFile:
+4 -4
pkgs/data/misc/hackage/pin.json
··· 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" 6 }
··· 1 { 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 }
+23 -3
pkgs/development/compilers/ghc/8.10.7.nix
··· 69 || (stdenv.hostPlatform != stdenv.targetPlatform) 70 ), 71 72 # What flavour to build. An empty string indicates no 73 # specific flavour and falls back to ghc default values. 74 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 265 basePackageSet = if hostPlatform != targetPlatform then targetPackages else pkgsHostTarget; 266 in 267 { 268 - inherit (basePackageSet) gmp ncurses; 269 # dynamic inherits are not possible in Nix 270 libffi = basePackageSet.${libffi_name}; 271 }; ··· 363 sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9"; 364 includes = [ "libraries/ghci/ghci.cabal.in" ]; 365 }) 366 ] 367 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 368 # Make Block.h compile with c++ compilers. Remove with the next release ··· 511 ++ lib.optionals (disableLargeAddressSpace) [ 512 "--disable-large-address-space" 513 ] 514 ++ lib.optionals enableUnregisterised [ 515 "--enable-unregisterised" 516 ]; ··· 562 563 buildInputs = [ bash ] ++ (libDeps hostPlatform); 564 565 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 566 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 567 568 # required, because otherwise all symbols from HSffi.o are stripped, and 569 # that in turn causes GHCi to abort
··· 69 || (stdenv.hostPlatform != stdenv.targetPlatform) 70 ), 71 72 + # Enable NUMA support in RTS 73 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 74 + numactl, 75 + 76 # What flavour to build. An empty string indicates no 77 # specific flavour and falls back to ghc default values. 78 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 269 basePackageSet = if hostPlatform != targetPlatform then targetPackages else pkgsHostTarget; 270 in 271 { 272 + inherit (basePackageSet) gmp ncurses numactl; 273 # dynamic inherits are not possible in Nix 274 libffi = basePackageSet.${libffi_name}; 275 }; ··· 367 sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9"; 368 includes = [ "libraries/ghci/ghci.cabal.in" ]; 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 376 ] 377 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 378 # Make Block.h compile with c++ compilers. Remove with the next release ··· 521 ++ lib.optionals (disableLargeAddressSpace) [ 522 "--disable-large-address-space" 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 + ] 529 ++ lib.optionals enableUnregisterised [ 530 "--enable-unregisterised" 531 ]; ··· 577 578 buildInputs = [ bash ] ++ (libDeps hostPlatform); 579 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 + ); 587 588 # required, because otherwise all symbols from HSffi.o are stripped, and 589 # that in turn causes GHCi to abort
+39 -4
pkgs/development/compilers/ghc/common-hadrian.nix
··· 91 && !stdenv.hostPlatform.isStatic, 92 elfutils, 93 94 # What flavour to build. Flavour string may contain a flavour and flavour 95 # transformers as accepted by hadrian. 96 ghcFlavour ? ··· 110 # While split sections are now enabled by default in ghc 8.8 for windows, 111 # they seem to lead to `too many sections` errors when building base for 112 # profiling. 113 - ++ lib.optionals (!stdenv.targetPlatform.isWindows) [ "split_sections" ]; 114 in 115 baseFlavour + lib.concatMapStrings (t: "+${t}") transformers, 116 ··· 248 ./Cabal-3.12-paths-fix-cycle-aarch64-darwin.patch 249 ) 250 ] 251 # Prevents passing --hyperlinked-source to haddock. Note that this can 252 # be configured via a user defined flavour now. Unfortunately, it is 253 # impossible to import an existing flavour in UserSettings, so patching ··· 291 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 292 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 293 }) 294 ]; 295 296 stdenv = stdenvNoCC; ··· 329 assert stdenv.buildPlatform == stdenv.hostPlatform || stdenv.hostPlatform == stdenv.targetPlatform; 330 331 # It is currently impossible to cross-compile GHC with Hadrian. 332 - assert stdenv.buildPlatform == stdenv.hostPlatform; 333 334 let 335 inherit (stdenv) buildPlatform hostPlatform targetPlatform; ··· 407 ld = cc.bintools; 408 "ld.gold" = cc.bintools; 409 410 otool = cc.bintools.bintools; 411 412 # GHC needs install_name_tool on all darwin platforms. The same one can ··· 465 gmp 466 libffi 467 ncurses 468 ; 469 }; 470 ··· 649 "--with-libdw-includes=${lib.getDev targetLibs.elfutils}/include" 650 "--with-libdw-libraries=${lib.getLib targetLibs.elfutils}/lib" 651 ] 652 ++ lib.optionals targetPlatform.isDarwin [ 653 # Darwin uses llvm-ar. GHC will try to use `-L` with `ar` when it is `llvm-ar` 654 # but it doesn’t currently work because Cabal never uses `-L` on Darwin. See: ··· 715 716 buildInputs = [ bash ] ++ (libDeps hostPlatform); 717 718 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 719 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 720 721 hadrianFlags = [ 722 "--flavour=${ghcFlavour}" ··· 819 else 820 "${llvmPackages.clang}/bin/${llvmPackages.clang.targetPrefix}clang" 821 }" 822 '' 823 + '' 824
··· 91 && !stdenv.hostPlatform.isStatic, 92 elfutils, 93 94 + # Enable NUMA support in RTS 95 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 96 + numactl, 97 + 98 # What flavour to build. Flavour string may contain a flavour and flavour 99 # transformers as accepted by hadrian. 100 ghcFlavour ? ··· 114 # While split sections are now enabled by default in ghc 8.8 for windows, 115 # they seem to lead to `too many sections` errors when building base for 116 # profiling. 117 + ++ (if stdenv.targetPlatform.isWindows then [ "no_split_sections" ] else [ "split_sections" ]); 118 in 119 baseFlavour + lib.concatMapStrings (t: "+${t}") transformers, 120 ··· 252 ./Cabal-3.12-paths-fix-cycle-aarch64-darwin.patch 253 ) 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 + ] 263 # Prevents passing --hyperlinked-source to haddock. Note that this can 264 # be configured via a user defined flavour now. Unfortunately, it is 265 # impossible to import an existing flavour in UserSettings, so patching ··· 303 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 304 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 305 }) 306 + ] 307 + 308 + # Missing ELF symbols 309 + ++ lib.optionals stdenv.targetPlatform.isAndroid [ 310 + ./ghc-define-undefined-elf-st-visibility.patch 311 ]; 312 313 stdenv = stdenvNoCC; ··· 346 assert stdenv.buildPlatform == stdenv.hostPlatform || stdenv.hostPlatform == stdenv.targetPlatform; 347 348 # It is currently impossible to cross-compile GHC with Hadrian. 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`."; 351 352 let 353 inherit (stdenv) buildPlatform hostPlatform targetPlatform; ··· 425 ld = cc.bintools; 426 "ld.gold" = cc.bintools; 427 428 + windres = cc.bintools; 429 + 430 otool = cc.bintools.bintools; 431 432 # GHC needs install_name_tool on all darwin platforms. The same one can ··· 485 gmp 486 libffi 487 ncurses 488 + numactl 489 ; 490 }; 491 ··· 670 "--with-libdw-includes=${lib.getDev targetLibs.elfutils}/include" 671 "--with-libdw-libraries=${lib.getLib targetLibs.elfutils}/lib" 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 + ] 678 ++ lib.optionals targetPlatform.isDarwin [ 679 # Darwin uses llvm-ar. GHC will try to use `-L` with `ar` when it is `llvm-ar` 680 # but it doesn’t currently work because Cabal never uses `-L` on Darwin. See: ··· 741 742 buildInputs = [ bash ] ++ (libDeps hostPlatform); 743 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 + ); 751 752 hadrianFlags = [ 753 "--flavour=${ghcFlavour}" ··· 850 else 851 "${llvmPackages.clang}/bin/${llvmPackages.clang.targetPrefix}clang" 852 }" 853 + '' 854 + + lib.optionalString stdenv.targetPlatform.isWindows '' 855 + ghc-settings-edit "$settingsFile" \ 856 + "windres command" "${toolPath "windres" installCC}" 857 '' 858 + '' 859
+101 -76
pkgs/development/compilers/ghc/common-make-native-bignum.nix
··· 68 || (stdenv.hostPlatform != stdenv.targetPlatform) 69 ), 70 71 # What flavour to build. An empty string indicates no 72 # specific flavour and falls back to ghc default values. 73 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 261 gmp 262 libffi 263 ncurses 264 ; 265 }; 266 ··· 296 stripLen = 1; 297 extraPrefix = "libraries/unix/"; 298 }) 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 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 # Fix docs build with Sphinx >= 7 https://gitlab.haskell.org/ghc/ghc/-/issues/24129 322 ./docs-sphinx-7.patch 323 - ] 324 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). 360 ( 361 - if lib.versionAtLeast version "9.2" then 362 - ./Cabal-at-least-3.6-paths-fix-cycle-aarch64-darwin.patch 363 else 364 - ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch 365 ) 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 ] 380 381 # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first ··· 414 [ 415 # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible 416 ] 417 - ); 418 419 postPatch = "patchShebangs ."; 420 ··· 563 ++ lib.optionals (disableLargeAddressSpace) [ 564 "--disable-large-address-space" 565 ] 566 ++ lib.optionals enableUnregisterised [ 567 "--enable-unregisterised" 568 ]; ··· 618 619 buildInputs = [ bash ] ++ (libDeps hostPlatform); 620 621 - depsTargetTarget = map lib.getDev (libDeps targetPlatform); 622 - depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform); 623 624 # required, because otherwise all symbols from HSffi.o are stripped, and 625 # that in turn causes GHCi to abort
··· 68 || (stdenv.hostPlatform != stdenv.targetPlatform) 69 ), 70 71 + # Enable NUMA support in RTS 72 + enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl, 73 + numactl, 74 + 75 # What flavour to build. An empty string indicates no 76 # specific flavour and falls back to ghc default values. 77 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ( ··· 265 gmp 266 libffi 267 ncurses 268 + numactl 269 ; 270 }; 271 ··· 301 stripLen = 1; 302 extraPrefix = "libraries/unix/"; 303 }) 304 305 # Fix docs build with Sphinx >= 7 https://gitlab.haskell.org/ghc/ghc/-/issues/24129 306 ./docs-sphinx-7.patch 307 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. 312 ( 313 + if lib.versionAtLeast version "9.4" then 314 + ./ghc-9.4-rts-package-db-libnuma-dirs.patch 315 else 316 + ./ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch 317 ) 318 ] 319 320 # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first ··· 353 [ 354 # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible 355 ] 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 + ]; 433 434 postPatch = "patchShebangs ."; 435 ··· 578 ++ lib.optionals (disableLargeAddressSpace) [ 579 "--disable-large-address-space" 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 + ] 586 ++ lib.optionals enableUnregisterised [ 587 "--enable-unregisterised" 588 ]; ··· 638 639 buildInputs = [ bash ] ++ (libDeps hostPlatform); 640 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 + ); 648 649 # required, because otherwise all symbols from HSffi.o are stripped, and 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 cabalInstallOverlay = cself: csuper: { 103 Cabal = cself.Cabal_3_14_2_0; 104 Cabal-syntax = cself.Cabal-syntax_3_14_2_0; 105 }; 106 in 107 { ··· 166 # May as well… 167 (self.generateOptparseApplicativeCompletions [ "guardian" ]) 168 ]; 169 } 170 ) 171 cabal-install 172 cabal-install-solver 173 guardian 174 ; 175 176 # Expected test output for these accidentally checks the absolute location of the source directory ··· 309 sha256 = "10zkvclyir3zf21v41zdsvg68vrkq89n64kv9k54742am2i4aygf"; 310 }) super.weeder; 311 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; 316 317 # Work around -Werror failures until a more permanent solution is released 318 # https://github.com/haskell-cryptography/HsOpenSSL/issues/88 ··· 543 name = "git-annex-${super.git-annex.version}-src"; 544 url = "git://git-annex.branchable.com/"; 545 rev = "refs/tags/" + super.git-annex.version; 546 - sha256 = "0d968aciaxmblahk79x2m708rvbg19flj5naxzg0zdp9j2jwlcqf"; 547 # delete android and Android directories which cause issues on 548 # darwin (case insensitive directory). Since we don't need them 549 # during the build process, we can delete it to prevent a hash ··· 558 # TODO(@sternenseemann): submit upstreamable patch resolving this 559 # (this should be possible by also taking PREFIX into account). 560 ./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 ]; 574 575 postPatch = '' ··· 1381 VulkanMemoryAllocator = addExtraLibrary pkgs.vulkan-headers super.VulkanMemoryAllocator; 1382 vulkan-utils = addExtraLibrary pkgs.vulkan-headers super.vulkan-utils; 1383 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 # Generate cli completions for dhall. 1400 dhall = self.generateOptparseApplicativeCompletions [ "dhall" ] super.dhall; 1401 # 2025-01-27: allow aeson >= 2.2, 9.8 versions of text and bytestring ··· 1578 # https://github.com/haskell-servant/servant-ekg/issues/15 1579 servant-ekg = doJailbreak super.servant-ekg; 1580 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 # it wants to build a statically linked binary by default 1615 hledger-flow = overrideCabal (drv: { 1616 postPatch = (drv.postPatch or "") + '' ··· 1660 }) 1661 # https://github.com/NixOS/nixpkgs/issues/198495 1662 (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 1674 # Needs matching lsp-types 1675 # Allow lens >= 5.3 ··· 2084 # https://github.com/obsidiansystems/database-id/issues/1 2085 database-id-class = doJailbreak super.database-id-class; 2086 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 # Too strict version bounds on base 2117 # https://github.com/gibiansky/IHaskell/issues/1217 2118 ihaskell-display = doJailbreak super.ihaskell-display; ··· 2194 self: super: { 2195 # stack needs to be built with the same hpack version that the upstream releases use. 2196 # https://github.com/NixOS/nixpkgs/issues/223390 2197 - hpack = self.hpack_0_38_0; 2198 } 2199 ); 2200 ··· 3047 # https://github.com/snoyberg/http-client/pull/563 3048 http-client-tls = doJailbreak super.http-client-tls; 3049 3050 bsb-http-chunked = lib.pipe super.bsb-http-chunked [ 3051 (warnAfterVersion "0.0.0.4") 3052 # Last released in 2018 ··· 3318 src = amazonkaSrc + "/${dir}"; 3319 }) 3320 drv; 3321 - isAmazonkaService = 3322 - name: lib.hasPrefix "amazonka-" name && name != "amazonka-test" && name != "amazonka-s3-streaming"; 3323 - amazonkaServices = lib.filter isAmazonkaService (lib.attrNames super); 3324 amazonkaServiceOverrides = ( 3325 lib.genAttrs amazonkaServices ( 3326 name:
··· 102 cabalInstallOverlay = cself: csuper: { 103 Cabal = cself.Cabal_3_14_2_0; 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; 108 }; 109 in 110 { ··· 169 # May as well… 170 (self.generateOptparseApplicativeCompletions [ "guardian" ]) 171 ]; 172 + 173 + cabal2nix-unstable = super.cabal2nix-unstable.overrideScope cabalInstallOverlay; 174 } 175 ) 176 cabal-install 177 cabal-install-solver 178 guardian 179 + cabal2nix-unstable 180 ; 181 182 # Expected test output for these accidentally checks the absolute location of the source directory ··· 315 sha256 = "10zkvclyir3zf21v41zdsvg68vrkq89n64kv9k54742am2i4aygf"; 316 }) super.weeder; 317 318 + # Test suite doesn't find necessary test files when compiling 319 + # https://github.com/yesodweb/shakespeare/issues/294 320 + shakespeare = dontCheck super.shakespeare; 321 322 # Work around -Werror failures until a more permanent solution is released 323 # https://github.com/haskell-cryptography/HsOpenSSL/issues/88 ··· 548 name = "git-annex-${super.git-annex.version}-src"; 549 url = "git://git-annex.branchable.com/"; 550 rev = "refs/tags/" + super.git-annex.version; 551 + sha256 = "sha256-whpBFmOHBTm1clXoAwInsQw7mnxrQOyaUj7byogku5c="; 552 # delete android and Android directories which cause issues on 553 # darwin (case insensitive directory). Since we don't need them 554 # during the build process, we can delete it to prevent a hash ··· 563 # TODO(@sternenseemann): submit upstreamable patch resolving this 564 # (this should be possible by also taking PREFIX into account). 565 ./patches/git-annex-no-usr-prefix.patch 566 ]; 567 568 postPatch = '' ··· 1374 VulkanMemoryAllocator = addExtraLibrary pkgs.vulkan-headers super.VulkanMemoryAllocator; 1375 vulkan-utils = addExtraLibrary pkgs.vulkan-headers super.vulkan-utils; 1376 1377 # Generate cli completions for dhall. 1378 dhall = self.generateOptparseApplicativeCompletions [ "dhall" ] super.dhall; 1379 # 2025-01-27: allow aeson >= 2.2, 9.8 versions of text and bytestring ··· 1556 # https://github.com/haskell-servant/servant-ekg/issues/15 1557 servant-ekg = doJailbreak super.servant-ekg; 1558 1559 # it wants to build a statically linked binary by default 1560 hledger-flow = overrideCabal (drv: { 1561 postPatch = (drv.postPatch or "") + '' ··· 1605 }) 1606 # https://github.com/NixOS/nixpkgs/issues/198495 1607 (dontCheckIf (pkgs.postgresqlTestHook.meta.broken) super.persistent-postgresql); 1608 1609 # Needs matching lsp-types 1610 # Allow lens >= 5.3 ··· 2019 # https://github.com/obsidiansystems/database-id/issues/1 2020 database-id-class = doJailbreak super.database-id-class; 2021 2022 # Too strict version bounds on base 2023 # https://github.com/gibiansky/IHaskell/issues/1217 2024 ihaskell-display = doJailbreak super.ihaskell-display; ··· 2100 self: super: { 2101 # stack needs to be built with the same hpack version that the upstream releases use. 2102 # https://github.com/NixOS/nixpkgs/issues/223390 2103 + hpack = self.hpack_0_38_1; 2104 } 2105 ); 2106 ··· 2953 # https://github.com/snoyberg/http-client/pull/563 2954 http-client-tls = doJailbreak super.http-client-tls; 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 + 2970 bsb-http-chunked = lib.pipe super.bsb-http-chunked [ 2971 (warnAfterVersion "0.0.0.4") 2972 # Last released in 2018 ··· 3238 src = amazonkaSrc + "/${dir}"; 3239 }) 3240 drv; 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 + ]; 3587 amazonkaServiceOverrides = ( 3588 lib.genAttrs amazonkaServices ( 3589 name:
+6 -2
pkgs/development/haskell-modules/configuration-darwin.nix
··· 383 libraryHaskellDepends = drv.libraryHaskellDepends ++ [ self.file-embed ]; 384 }) (disableCabalFlag "fixity-th" super.fourmolu); 385 386 - # https://github.com/NixOS/nixpkgs/issues/149692 387 - Agda = disableCabalFlag "optimise-heavily" super.Agda; 388 389 # https://github.com/NixOS/nixpkgs/issues/198495 390 eventsourcing-postgresql = dontCheck super.eventsourcing-postgresql;
··· 383 libraryHaskellDepends = drv.libraryHaskellDepends ++ [ self.file-embed ]; 384 }) (disableCabalFlag "fixity-th" super.fourmolu); 385 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 + ]; 392 393 # https://github.com/NixOS/nixpkgs/issues/198495 394 eventsourcing-postgresql = dontCheck super.eventsourcing-postgresql;
+3
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 133 134 hlint = self.hlint_3_4_1; 135 136 mime-string = disableOptimization super.mime-string; 137 138 # weeder 2.3.* no longer supports GHC 8.10
··· 133 134 hlint = self.hlint_3_4_1; 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 + 139 mime-string = disableOptimization super.mime-string; 140 141 # weeder 2.3.* no longer supports GHC 8.10
+3
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 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 (markBroken super.haskell-language-server); 119 120 # Needs to use ghc-lib due to incompatible GHC 121 ghc-tags = doDistribute self.ghc-tags_1_5; 122
··· 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 (markBroken super.haskell-language-server); 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 + 123 # Needs to use ghc-lib due to incompatible GHC 124 ghc-tags = doDistribute self.ghc-tags_1_5; 125
+4 -4
pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix
··· 78 tagged = doDistribute self.tagged_0_8_9; 79 time-compat = doDistribute self.time-compat_1_9_8; 80 extensions = doDistribute self.extensions_0_1_0_3; 81 - doctest = doDistribute self.doctest_0_24_0; 82 ghc-syntax-highlighter = doDistribute self.ghc-syntax-highlighter_0_0_13_0; 83 ghc-lib = doDistribute self.ghc-lib_9_12_2_20250421; 84 ghc-exactprint = doDistribute self.ghc-exactprint_1_12_0_0; ··· 128 129 relude = dontCheck super.relude; 130 131 - doctest_0_24_0 = overrideCabal (drv: { 132 testFlags = drv.testFlags or [ ] ++ [ 133 # These tests require cabal-install (would cause infinite recursion) 134 "--skip=/Cabal.Options" 135 "--skip=/Cabal.Paths/paths" 136 "--skip=/Cabal.ReplOptions" # >= 0.23 137 ]; 138 - }) super.doctest_0_24_0; 139 140 # https://gitlab.haskell.org/ghc/ghc/-/issues/25930 141 generic-lens = dontCheck super.generic-lens; ··· 178 }; 179 180 # Allow Cabal 3.14 181 - hpack = doDistribute self.hpack_0_38_0; 182 }
··· 78 tagged = doDistribute self.tagged_0_8_9; 79 time-compat = doDistribute self.time-compat_1_9_8; 80 extensions = doDistribute self.extensions_0_1_0_3; 81 + doctest = doDistribute self.doctest_0_24_2; # see :/doctest_0_24_2 =/ below 82 ghc-syntax-highlighter = doDistribute self.ghc-syntax-highlighter_0_0_13_0; 83 ghc-lib = doDistribute self.ghc-lib_9_12_2_20250421; 84 ghc-exactprint = doDistribute self.ghc-exactprint_1_12_0_0; ··· 128 129 relude = dontCheck super.relude; 130 131 + doctest_0_24_2 = overrideCabal (drv: { 132 testFlags = drv.testFlags or [ ] ++ [ 133 # These tests require cabal-install (would cause infinite recursion) 134 "--skip=/Cabal.Options" 135 "--skip=/Cabal.Paths/paths" 136 "--skip=/Cabal.ReplOptions" # >= 0.23 137 ]; 138 + }) super.doctest_0_24_2; 139 140 # https://gitlab.haskell.org/ghc/ghc/-/issues/25930 141 generic-lens = dontCheck super.generic-lens; ··· 178 }; 179 180 # Allow Cabal 3.14 181 + hpack = doDistribute self.hpack_0_38_1; 182 }
+36 -33
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 17 - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 18 - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02 19 - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 20 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 21 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 ··· 256 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 257 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 258 - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02 259 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02 260 - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02 261 - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02 ··· 313 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 314 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 315 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 316 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 317 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 318 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 ··· 326 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 327 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 328 - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02 329 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16 330 - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02 331 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21 ··· 375 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02 376 - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02 377 - 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 - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02 380 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02 381 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02 ··· 515 - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02 516 - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02 517 - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02 518 - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02 519 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02 520 - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21 ··· 718 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 719 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 720 - 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 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 723 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 724 - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02 ··· 726 - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 727 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 728 - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02 729 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 730 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 731 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 ··· 871 - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 872 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 873 - 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 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 877 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 878 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 ··· 1015 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 1016 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 1017 - 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 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02 1020 - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02 1021 - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02 ··· 1024 - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02 1025 - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 1026 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22 1027 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22 1028 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22 1029 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 ··· 1116 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 1117 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 1118 - cudd # failure in job https://hydra.nixos.org/build/252716117 at 2024-03-16 1119 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 1120 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 1121 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 ··· 1305 - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02 1306 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02 1307 - 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 - 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 - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02 1312 - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02 1313 - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02 ··· 1349 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 1350 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01 1351 - 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 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22 1354 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 1355 - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 ··· 1401 - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02 1402 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22 1403 - 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 - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02 1406 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 1407 - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 ··· 1409 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02 1410 - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02 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 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02 1414 - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02 1415 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16 ··· 1446 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 1447 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 1448 - 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 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02 1451 - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02 1452 - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02 ··· 1507 - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 1508 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 1509 - 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 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 1512 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 1513 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 ··· 1656 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 1657 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 1658 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02 1659 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 1660 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 1661 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 ··· 1905 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 1906 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 1907 - 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 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 1910 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 1911 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 ··· 1926 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 1927 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 1928 - 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 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 1931 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 1932 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 ··· 1952 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 1953 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 1954 - 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 - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 1957 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 1958 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16 ··· 1980 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 1981 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 1982 - 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 - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02 1985 - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02 1986 - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02 ··· 2010 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 2011 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 2012 - 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 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 2015 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 2016 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 ··· 2078 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 2079 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 2080 - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02 2081 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 2082 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 2083 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 ··· 2086 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 2087 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 2088 - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02 2089 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 2090 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 2091 - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02 ··· 2455 - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02 2456 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 2457 - 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 - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02 2460 - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02 2461 - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02 ··· 2471 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 2472 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 2473 - 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 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 2476 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 2477 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22 ··· 2522 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 2523 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 2524 - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02 2525 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 2526 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 2527 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 ··· 2561 - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 2562 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 2563 - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02 2564 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 2565 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 2566 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 ··· 2880 - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 2881 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 2882 - 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 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 2885 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 2886 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 ··· 3134 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 3135 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 3136 - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02 3137 - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02 3138 - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02 3139 - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02 ··· 3221 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16 3222 - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02 3223 - 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 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02 3226 - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02 3227 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16 ··· 3259 - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02 3260 - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02 3261 - 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 - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02 3264 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 3265 - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02 ··· 3332 - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02 3333 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02 3334 - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02 3335 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02 3336 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16 3337 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 ··· 3658 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 3659 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 3660 - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14 3661 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 3662 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 3663 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16 ··· 3810 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 3811 - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 3812 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 3813 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 3814 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 3815 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 ··· 3995 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 3996 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 3997 - 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 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 4000 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 4001 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 ··· 4017 - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02 4018 - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02 4019 - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02 4020 - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02 4021 - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02 4022 - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02 ··· 4026 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02 4027 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02 4028 - 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 4030 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02 4031 - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02 4032 - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02 ··· 4273 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31 4274 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 4275 - 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 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 4278 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 4279 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 ··· 4331 - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02 4332 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02 4333 - 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 - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02 4336 - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02 4337 - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02 ··· 4389 - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02 4390 - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02 4391 - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02 4392 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 4393 - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 4394 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02 4395 - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02 4396 - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02 4397 - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02 4398 - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02 4399 - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02 4400 - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02 ··· 4690 - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 4691 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16 4692 - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02 4693 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02 4694 - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02 4695 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02 ··· 4738 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 4739 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 4740 - 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 - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02 4743 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02 4744 - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02 ··· 4978 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 4979 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 4980 - 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 - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02 4983 - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 4984 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 ··· 5129 - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02 5130 - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02 5131 - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02 5132 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 5133 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 5134 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 ··· 5400 - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02 5401 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02 5402 - 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 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02 5405 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02 5406 - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02 ··· 5408 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 5409 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22 5410 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02 5411 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 5412 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 5413 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 ··· 5442 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31 5443 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 5444 - 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 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16 5447 - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02 5448 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01 ··· 5591 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 5592 - sketch-frp-copilot # copilot >=4.3 && <4.4, 5593 - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22 5594 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 5595 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 5596 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 ··· 5682 - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02 5683 - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02 5684 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22 5685 - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02 5686 - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02 5687 - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02 ··· 5691 - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02 5692 - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02 5693 - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02 5694 - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02 5695 - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 5696 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 ··· 5978 - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02 5979 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 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 - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02 5983 - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02 5984 - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02 ··· 6023 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04 6024 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 6025 - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02 6026 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31 6027 - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02 6028 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02 ··· 6184 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 6185 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 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 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 6189 - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02 6190 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 ··· 6328 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 6329 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 6330 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 6331 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 6332 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 6333 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 ··· 6383 - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02 6384 - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 6385 - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02 6386 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 6387 - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 6388 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 ··· 6763 - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02 6764 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16 6765 - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22 6766 - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02 6767 - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02 6768 - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02 ··· 6789 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 6790 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 6791 - 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 6793 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 6794 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16 6795 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 ··· 6809 - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02 6810 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02 6811 - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02 6812 - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02 6813 - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02 6814 - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02
··· 16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 17 - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 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 20 - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 21 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 22 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 ··· 257 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 258 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 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 261 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02 262 - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02 263 - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02 ··· 315 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 316 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 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 319 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 320 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 321 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 ··· 329 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 330 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 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 333 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16 334 - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02 335 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21 ··· 379 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02 380 - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02 381 - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02 382 - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02 383 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02 384 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02 ··· 518 - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02 519 - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02 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 523 - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02 524 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02 525 - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21 ··· 723 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 724 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 725 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 726 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 727 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 728 - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02 ··· 730 - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 731 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 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 734 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 735 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 736 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 ··· 876 - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 877 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 878 - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02 879 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 880 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 881 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 ··· 1018 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 1019 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 1020 - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02 1021 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02 1022 - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02 1023 - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02 ··· 1026 - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02 1027 - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 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 1030 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22 1031 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22 1032 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 ··· 1119 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 1120 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 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 1123 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 1124 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 1125 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 ··· 1309 - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02 1310 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02 1311 - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02 1312 - diagrams-haddock # failure in job https://hydra.nixos.org/build/295092844 at 2025-04-22 1313 - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02 1314 - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02 1315 - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02 ··· 1351 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 1352 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01 1353 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02 1354 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22 1355 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 1356 - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 ··· 1402 - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02 1403 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22 1404 - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02 1405 - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02 1406 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 1407 - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 ··· 1409 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02 1410 - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02 1411 - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02 1412 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02 1413 - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02 1414 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16 ··· 1445 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 1446 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 1447 - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02 1448 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02 1449 - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02 1450 - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02 ··· 1505 - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 1506 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 1507 - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 1508 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 1509 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 1510 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 ··· 1653 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 1654 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 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 1657 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 1658 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 1659 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 ··· 1903 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 1904 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 1905 - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02 1906 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 1907 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 1908 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 ··· 1923 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 1924 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 1925 - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 1926 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 1927 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 1928 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 ··· 1948 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 1949 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 1950 - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22 1951 - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 1952 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 1953 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16 ··· 1975 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 1976 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 1977 - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02 1978 - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02 1979 - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02 1980 - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02 ··· 2004 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 2005 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 2006 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 2007 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 2008 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 2009 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 ··· 2071 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 2072 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 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 2075 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 2076 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 2077 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 ··· 2080 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 2081 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 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 2084 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 2085 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 2086 - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02 ··· 2450 - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02 2451 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 2452 - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02 2453 - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02 2454 - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02 2455 - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02 ··· 2465 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 2466 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 2467 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 2468 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 2469 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 2470 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22 ··· 2515 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 2516 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 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 2519 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 2520 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 2521 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 ··· 2555 - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 2556 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 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 2559 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 2560 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 2561 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 ··· 2875 - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 2876 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 2877 - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02 2878 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 2879 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 2880 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 ··· 3128 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 3129 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 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 3132 - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02 3133 - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02 3134 - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02 ··· 3216 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16 3217 - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02 3218 - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02 3219 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02 3220 - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02 3221 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16 ··· 3253 - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02 3254 - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02 3255 - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16 3256 - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02 3257 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 3258 - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02 ··· 3325 - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02 3326 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02 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 3329 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02 3330 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16 3331 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 ··· 3652 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 3653 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 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 3656 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 3657 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 3658 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16 ··· 3805 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 3806 - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 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 3810 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 3811 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 3812 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 ··· 3992 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 3993 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 3994 - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22 3995 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 3996 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 3997 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 ··· 4013 - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02 4014 - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02 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 4017 - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02 4018 - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02 4019 - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02 ··· 4023 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02 4024 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02 4025 - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 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 4028 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02 4029 - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02 4030 - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02 ··· 4271 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31 4272 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 4273 - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 4274 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 4275 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 4276 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 ··· 4328 - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02 4329 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02 4330 - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02 4331 - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02 4332 - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02 4333 - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02 ··· 4385 - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02 4386 - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02 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 4389 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 4390 - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 4391 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02 4392 - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02 4393 - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02 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 4396 - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02 4397 - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02 4398 - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02 ··· 4688 - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 4689 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16 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 4692 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02 4693 - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02 4694 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02 ··· 4737 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 4738 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 4739 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 4740 - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02 4741 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02 4742 - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02 ··· 4976 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 4977 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 4978 - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02 4979 - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02 4980 - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 4981 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 ··· 5126 - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02 5127 - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02 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 5130 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 5131 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 5132 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 ··· 5398 - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02 5399 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02 5400 - servant-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16 5401 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02 5402 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02 5403 - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02 ··· 5405 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 5406 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22 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 5409 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 5410 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 5411 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 ··· 5440 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31 5441 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 5442 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16 5443 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16 5444 - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02 5445 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01 ··· 5588 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 5589 - sketch-frp-copilot # copilot >=4.3 && <4.4, 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 5592 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 5593 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 5594 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 ··· 5680 - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02 5681 - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02 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 5684 - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02 5685 - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02 5686 - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02 ··· 5690 - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02 5691 - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02 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 - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02 5695 - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 5696 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 ··· 5978 - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02 5979 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 5980 - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22 5981 - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02 5982 - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02 5983 - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02 ··· 6022 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04 6023 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 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 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31 6027 - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02 6028 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02 ··· 6184 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 6185 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 6186 - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 6187 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 6188 - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02 6189 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 ··· 6327 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 6328 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 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 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 6332 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 6333 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 ··· 6383 - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02 6384 - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 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 6387 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 6388 - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 6389 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 ··· 6764 - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02 6765 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16 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 6768 - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02 6769 - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02 6770 - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02 ··· 6791 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 6792 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 6793 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22 6794 + - xml-isogen # failure in job https://hydra.nixos.org/build/303231372 at 2025-07-27 6795 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 6796 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16 6797 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 ··· 6811 - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02 6812 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02 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 6815 - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02 6816 - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02 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 - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 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 - ghc-bignum == 1.0 34 # 2024-08-17: Stackage doesn't contain hnix-store-core >= 0.8 yet, so we need to restrict hnix-store-remote 35 - hnix-store-remote < 0.7 36 # 2025-01-17: need to match stackage version of hosc ··· 94 - hlint == 3.4.1 # 2022-09-21: preserve for ghc 8.10 95 - hlint == 3.6.* # 2025-04-14: needed for hls with ghc-lib-parser 9.6 96 - 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 - hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 99 - hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 100 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 ··· 109 - ormolu == 0.5.2.0 # 2023-08-08: preserve for ghc 9.0 110 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 111 - 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 - postgresql-binary < 0.14 # 2025-01-19: Needed for building postgrest 114 - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 115 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2
··· 31 - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 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 - ghc-bignum == 1.0 34 + # 2025-07-26: HLS doesn't support hiedb >= 0.7 yet 35 + - hiedb < 0.7 36 # 2024-08-17: Stackage doesn't contain hnix-store-core >= 0.8 yet, so we need to restrict hnix-store-remote 37 - hnix-store-remote < 0.7 38 # 2025-01-17: need to match stackage version of hosc ··· 96 - hlint == 3.4.1 # 2022-09-21: preserve for ghc 8.10 97 - hlint == 3.6.* # 2025-04-14: needed for hls with ghc-lib-parser 9.6 98 - hnix-store-core < 0.7 # 2023-12-11: required by hnix-store-remote 0.6 99 - hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 100 - hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 101 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 ··· 110 - ormolu == 0.5.2.0 # 2023-08-08: preserve for ghc 9.0 111 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 112 - ormolu == 0.7.7.0 # 2025-01-27: for ghc 9.10 compat 113 - postgresql-binary < 0.14 # 2025-01-19: Needed for building postgrest 114 - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 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 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 107 - attoparsec-binary ==0.2 108 - attoparsec-data ==1.0.5.4 109 - attoparsec-expr ==0.1.1.2 110 - - attoparsec-framer ==0.1.0.9 111 - attoparsec-iso8601 ==1.1.1.0 112 - attoparsec-path ==0.0.0.1 113 - attoparsec-time ==1.0.3.1 ··· 133 - aws-xray-client ==0.1.0.2 134 - aws-xray-client-persistent ==0.1.0.5 135 - aws-xray-client-wai ==0.1.0.2 136 - - backprop ==0.2.6.5 137 - backtracking ==0.1.0 138 - bank-holiday-germany ==1.3.1.0 139 - bank-holidays-england ==0.2.0.11 ··· 161 - bcp47 ==0.2.0.6 162 - bcp47-orphans ==0.1.0.6 163 - bcrypt ==0.0.11 164 - - beam-core ==0.10.3.1 165 - beam-migrate ==0.5.3.1 166 - beam-postgres ==0.5.4.2 167 - beam-sqlite ==0.5.4.0 168 - - bech32 ==1.1.8 169 - - bech32-th ==1.1.8 170 - bench-show ==0.3.2 171 - benchpress ==0.2.2.25 172 - bencode ==0.6.1.1 ··· 252 - bson-lens ==0.1.1 253 - btrfs ==0.2.1.0 254 - buffer-pipe ==0.0 255 - - bugsnag ==1.1.0.1 256 - bugsnag-hs ==0.2.0.12 257 - - bugsnag-wai ==1.0.0.1 258 - bugsnag-yesod ==1.0.1.0 259 - bugzilla-redhat ==1.0.1.1 260 - - burrito ==2.0.1.13 261 - bv ==0.5 262 - bv-little ==1.3.2 263 - bv-sized ==1.0.6 ··· 270 - byteorder ==1.0.4 271 - bytes ==0.17.4 272 - byteset ==0.1.1.2 273 - - byteslice ==0.2.14.0 274 - bytesmith ==0.3.11.1 275 - bytestring-builder ==0.10.8.2.0 276 - bytestring-conversion ==0.3.2 ··· 292 - cabal-add ==0.1 293 - cabal-appimage ==0.4.1.0 294 - cabal-clean ==0.2.20230609 295 - - cabal-debian ==5.2.5 296 - cabal-doctest ==1.0.11 297 - cabal-file ==0.1.1 298 - cabal-fix ==0.1.0.0 299 - cabal-flatpak ==0.1.2 300 - cabal-gild ==1.5.0.3 301 - cabal-install-parsers ==0.6.1.1 302 - - cabal-plan ==0.7.5.0 303 - cabal-rpm ==2.2.1 304 - cabal-sort ==0.1.2.1 305 - cabal2spec ==2.7.1 ··· 322 - cased ==0.1.0.0 323 - cases ==0.1.4.4 324 - casing ==0.1.4.1 325 - - cassava ==0.5.3.2 326 - cassava-conduit ==0.6.6 327 - cassava-megaparsec ==2.1.1 328 - cast ==0.1.0.2 ··· 347 - Chart-cairo ==1.9.4.1 348 - Chart-diagrams ==1.9.5.1 349 - chart-svg ==0.7.0.0 350 - - ChasingBottoms ==1.3.1.15 351 - check-email ==1.0.2 352 - checkers ==0.6.0 353 - checksum ==0.0.0.1 ··· 413 - commutative-semigroups ==0.2.0.2 414 - comonad ==5.0.9 415 - compact ==0.2.0.0 416 - - compactmap ==0.1.4.5 417 - companion ==0.1.0 418 - compdata ==0.13.1 419 - compensated ==0.8.3 ··· 437 - conduit-algorithms ==0.0.14.0 438 - conduit-combinators ==1.3.0 439 - conduit-concurrent-map ==0.1.4 440 - - conduit-extra ==1.3.7 441 - conduit-parse ==0.2.1.1 442 - conduit-zstd ==0.0.2.0 443 - conferer ==1.1.0.0 ··· 671 - doctest ==0.22.6 672 - doctest-discover ==0.2.0.0 673 - doctest-driver-gen ==0.3.0.8 674 - - doctest-exitcode-stdio ==0.0 675 - doctest-extract ==0.1.2 676 - doctest-lib ==0.1.1.1 677 - doctest-parallel ==0.3.1.1 ··· 717 - effectful-plugin ==1.1.0.4 718 - effectful-th ==1.0.0.3 719 - egison-pattern-src ==0.2.1.2 720 - - either ==5.0.2 721 - either-unwrap ==1.1 722 - ekg ==0.4.1.2 723 - - ekg-core ==0.1.1.8 724 - ekg-json ==0.1.1.1 725 - ekg-statsd ==0.2.6.2 726 - elerea ==2.9.0 ··· 792 - explainable-predicates ==0.1.2.4 793 - explicit-exception ==0.2 794 - express ==1.0.18 795 - - extended-reals ==0.2.6.0 796 - extensible ==0.9.2 797 - extensible-effects ==5.0.0.1 798 - extensible-exceptions ==0.1.1.4 ··· 809 - falsify ==0.2.0 810 - fast-builder ==0.1.5.0 811 - fast-digits ==0.3.2.0 812 - - fast-logger ==3.2.5 813 - fast-math ==1.0.2 814 - fast-myers-diff ==0.0.1 815 - fcf-family ==0.2.0.2 ··· 817 - feature-flags ==0.1.0.1 818 - fedora-krb ==0.1.0 819 - fedora-releases ==0.2.1 820 - - fedora-repoquery ==0.7.2 821 - feed ==1.3.2.1 822 - FenwickTree ==0.1.2.1 823 - fft ==0.1.8.7 ··· 867 - focus ==1.0.3.2 868 - focuslist ==0.1.1.0 869 - fold-debounce ==0.2.0.16 870 - - foldable1-classes-compat ==0.1.1 871 - foldl ==1.4.18 872 - folds ==0.7.8 873 - FontyFruity ==0.5.3.5 ··· 879 - format-numbers ==0.1.0.1 880 - formatn ==0.3.1.0 881 - formatting ==7.2.0 882 - - fortran-src ==0.16.5 883 - foundation ==0.0.30 884 - fourmolu ==0.15.0.0 885 - Frames ==0.7.4.2 ··· 901 - funcmp ==1.9 902 - function-builder ==0.3.0.1 903 - functor-classes-compat ==2.0.0.2 904 - - functor-combinators ==0.4.1.3 905 - functor-products ==0.1.2.2 906 - fused-effects ==1.1.2.5 907 - fusion-plugin ==0.2.7 ··· 1012 - gi-gdkx11 ==3.0.17 1013 - gi-gdkx113 ==3.0.17 1014 - gi-gdkx114 ==4.0.9 1015 - - gi-gio ==2.0.37 1016 - gi-glib ==2.0.30 1017 - gi-gmodule ==2.0.6 1018 - gi-gobject ==2.0.31 ··· 1066 - gpolyline ==0.1.0.1 1067 - graph-core ==0.3.0.0 1068 - graphite ==0.10.0.1 1069 - - graphql ==1.5.0.0 1070 - graphql-client ==1.2.4 1071 - graphql-spice ==1.0.6.0 1072 - graphs ==0.7.3 1073 - - graphula ==2.1.0.1 1074 - graphviz ==2999.20.2.1 1075 - gravatar ==0.8.1 1076 - greskell ==2.0.3.3 1077 - - greskell-core ==1.0.0.4 1078 - greskell-websocket ==1.0.0.4 1079 - gridtables ==0.1.0.0 1080 - grisette ==0.9.0.0 ··· 1087 - gtk2hs-buildtools ==0.13.12.0 1088 - gtk3 ==0.15.10 1089 - guarded-allocation ==0.0.1 1090 - - hackage-cli ==0.1.0.2 1091 - - hackage-security ==0.6.3.0 1092 - hackage-security-HTTP ==0.1.1.2 1093 - haddock-library ==1.11.0 1094 - haha ==0.3.1.1 1095 - hakyll ==4.16.6.0 1096 - hakyll-convert ==0.3.0.5 1097 - hal ==1.1 1098 - - half ==0.3.2 1099 - hall-symbols ==0.1.0.6 1100 - hamlet ==1.2.0 1101 - hamtsolo ==1.0.4 ··· 1115 - hashids ==1.1.1.0 1116 - hashmap ==1.3.3 1117 - hashtables ==1.3.1 1118 - - haskell-gi ==0.26.15 1119 - - haskell-gi-base ==0.26.8 1120 - haskell-gi-overloading ==1.0 1121 - haskell-lexer ==1.1.2 1122 - haskell-src ==1.0.4.1 ··· 1211 - HMock ==0.5.1.2 1212 - hmpfr ==0.4.5 1213 - hnix-store-core ==0.8.0.0 1214 - hoauth2 ==2.14.0 1215 - hoogle ==5.0.18.4 1216 - hopenssl ==2.2.5 ··· 1256 - hslua-core ==2.3.2 1257 - hslua-list ==1.1.4 1258 - hslua-marshalling ==2.3.1 1259 - - hslua-module-doclayout ==1.2.0 1260 - hslua-module-path ==1.1.1 1261 - hslua-module-system ==1.1.3 1262 - hslua-module-text ==1.1.1 1263 - hslua-module-version ==1.1.1 1264 - - hslua-module-zip ==1.1.3 1265 - hslua-objectorientation ==2.3.1 1266 - hslua-packaging ==2.3.1 1267 - hslua-repl ==0.1.2 ··· 1330 - http-semantics ==0.3.0 1331 - http-streams ==0.8.9.9 1332 - http-types ==0.12.4 1333 - - http2 ==5.3.9 1334 - httpd-shed ==0.4.1.2 1335 - human-readable-duration ==0.2.1.4 1336 - HUnit ==1.6.2.0 ··· 1433 - io-streams ==1.5.2.2 1434 - io-streams-haproxy ==1.0.1.0 1435 - ip ==1.7.8 1436 - - ip6addr ==2.0.0 1437 - iproute ==1.7.15 1438 - IPv6Addr ==2.0.6.1 1439 - IPv6DB ==0.3.3.4 ··· 1479 - JuicyPixels-scale-dct ==0.1.2 1480 - junit-xml ==0.1.0.4 1481 - justified-containers ==0.3.0.0 1482 - - kan-extensions ==5.2.6 1483 - kansas-comet ==0.4.3 1484 - katip ==0.8.8.2 1485 - katip-logstash ==0.1.0.2 ··· 1543 - leapseconds-announced ==2017.1.0.1 1544 - learn-physics ==0.6.7 1545 - leb128-cereal ==1.2 1546 - - lens ==5.3.4 1547 - lens-action ==0.2.6 1548 - lens-aeson ==1.2.3 1549 - lens-csv ==0.1.1.0 1550 - lens-family ==2.1.3 1551 - lens-family-core ==2.1.3 1552 - - lens-family-th ==0.5.3.1 1553 - lens-misc ==0.0.2.0 1554 - lens-properties ==4.11.1 1555 - lens-regex ==0.1.3 ··· 1568 - lift-type ==0.1.2.0 1569 - lifted-async ==0.10.2.7 1570 - lifted-base ==0.2.3.12 1571 - - linear ==1.23.1 1572 - linear-base ==0.4.0 1573 - linear-circuit ==0.1.0.4 1574 - linear-generics ==0.2.3 ··· 1593 - locators ==0.3.0.5 1594 - loch-th ==0.2.2 1595 - lockfree-queue ==0.2.4 1596 - - log-base ==0.12.0.1 1597 - log-domain ==0.13.2 1598 - logfloat ==0.14.0 1599 - logger-thread ==0.1.0.2 ··· 1635 - markov-chain ==0.0.3.4 1636 - markov-chain-usage-model ==0.0.0 1637 - markup-parse ==0.1.1.1 1638 - - massiv ==1.0.4.1 1639 - massiv-io ==1.0.0.1 1640 - massiv-serialise ==1.0.0.2 1641 - massiv-test ==1.1.0.1 ··· 1709 - mmark ==0.0.8.0 1710 - mmark-cli ==0.0.5.2 1711 - mmark-ext ==0.2.1.5 1712 - - mmorph ==1.2.0 1713 - mnist-idx ==0.1.3.2 1714 - mnist-idx-conduit ==0.4.0.0 1715 - mockcat ==0.5.2.0 ··· 1812 - nanospec ==0.2.2 1813 - nanovg ==0.8.1.0 1814 - nats ==1.1.2 1815 - - natural-arithmetic ==0.2.2.0 1816 - natural-induction ==0.2.0.0 1817 - natural-sort ==0.1.2 1818 - natural-transformation ==0.4.1 ··· 1948 - pandoc ==3.6 1949 - pandoc-cli ==3.6 1950 - pandoc-lua-engine ==0.4.1.1 1951 - - pandoc-lua-marshal ==0.3.0 1952 - pandoc-plot ==1.9.1 1953 - pandoc-server ==0.1.0.11 1954 - pandoc-throw ==0.1.0.0 ··· 1987 - pathtype ==0.8.1.3 1988 - pathwalk ==0.3.1.2 1989 - patience ==0.3 1990 - - patrol ==1.0.0.11 1991 - pava ==0.1.1.4 1992 - pcg-random ==0.1.4.0 1993 - pcre-heavy ==1.0.0.4 ··· 2008 - persistable-types-HDBC-pg ==0.0.3.5 2009 - persistent ==2.14.6.3 2010 - persistent-discover ==0.1.0.7 2011 - - persistent-documentation ==0.1.0.5 2012 - persistent-lens ==1.0.0 2013 - persistent-mongoDB ==2.13.1.0 2014 - persistent-mtl ==0.5.1 ··· 2019 - persistent-redis ==2.13.0.2 2020 - persistent-sqlite ==2.13.3.0 2021 - persistent-template ==2.12.0.0 2022 - - persistent-test ==2.13.1.4 2023 - persistent-typed-db ==0.1.0.7 2024 - pfile ==0.1.0.1 2025 - pg-harness-client ==0.6.0 ··· 2121 - process-extras ==0.7.4 2122 - product-isomorphic ==0.0.3.4 2123 - product-profunctors ==0.11.1.1 2124 - - profunctors ==5.6.2 2125 - project-template ==0.2.1.0 2126 - projectroot ==0.2.0.1 2127 - prometheus ==2.3.0 ··· 2166 - quickcheck-assertions ==0.3.0 2167 - quickcheck-classes ==0.6.5.0 2168 - quickcheck-classes-base ==0.6.2.0 2169 - - quickcheck-groups ==0.0.1.4 2170 - quickcheck-higherorder ==0.1.0.1 2171 - - quickcheck-instances ==0.3.32 2172 - quickcheck-io ==0.2.0 2173 - - quickcheck-monoid-subclasses ==0.3.0.5 2174 - - quickcheck-quid ==0.0.1.7 2175 - quickcheck-simple ==0.1.1.1 2176 - quickcheck-state-machine ==0.10.1 2177 - quickcheck-text ==0.1.2.1 ··· 2291 - rhine-gloss ==1.5 2292 - rhine-terminal ==1.5 2293 - riak-protobuf ==0.25.0.0 2294 - - richenv ==0.1.0.2 2295 - rio ==0.1.22.0 2296 - rio-orphans ==0.1.2.0 2297 - rio-prettyprint ==0.1.8.0 2298 - rng-utils ==0.3.1 2299 - - roc-id ==0.2.0.4 2300 - rocksdb-haskell ==1.0.1 2301 - rocksdb-haskell-jprupp ==2.1.7 2302 - rocksdb-query ==0.4.3 ··· 2342 - sampling ==0.3.5 2343 - samsort ==0.1.0.0 2344 - sandi ==0.5 2345 - - sandwich ==0.3.0.3 2346 - - sandwich-contexts ==0.3.0.2 2347 - sandwich-hedgehog ==0.1.3.1 2348 - sandwich-quickcheck ==0.1.0.7 2349 - sandwich-slack ==0.1.2.0 2350 - - sandwich-webdriver ==0.3.0.0 2351 - saturn ==1.0.0.8 2352 - say ==0.1.0.1 2353 - sayable ==1.2.5.0 ··· 2363 - scientist ==0.0.0.0 2364 - scotty ==0.22 2365 - scrypt ==0.5.0 2366 - - search-algorithms ==0.3.3 2367 - secp256k1-haskell ==1.4.6 2368 - securemem ==0.1.10 2369 - select-rpms ==0.2.0 ··· 2383 - sequence-formats ==1.10.0.0 2384 - sequenceTools ==1.5.3.1 2385 - serialise ==0.2.6.1 2386 - - servant ==0.20.2 2387 - servant-auth ==0.4.2.0 2388 - servant-auth-client ==0.4.2.0 2389 - servant-auth-docs ==0.2.11.0 2390 - - servant-auth-server ==0.4.9.0 2391 - servant-auth-swagger ==0.2.11.0 2392 - servant-blaze ==0.9.1 2393 - servant-checked-exceptions ==2.2.0.1 2394 - servant-checked-exceptions-core ==2.2.0.1 2395 - servant-cli ==0.1.1.0 2396 - - servant-client ==0.20.2 2397 - - servant-client-core ==0.20.2 2398 - servant-conduit ==0.16.1 2399 - servant-docs ==0.13.1 2400 - servant-elm ==0.7.3 ··· 2413 - servant-quickcheck ==0.1.1.0 2414 - servant-rate-limit ==0.2.0.0 2415 - servant-rawm ==1.0.0.0 2416 - - servant-server ==0.20.2 2417 - servant-static-th ==1.0.0.1 2418 - servant-swagger ==1.2.1 2419 - servant-swagger-ui ==0.3.5.5.0.1 ··· 2436 - SHA ==1.6.4.4 2437 - shake ==0.19.8 2438 - shake-plus ==0.3.4.0 2439 - - shakespeare ==2.1.1 2440 - shakespeare-text ==1.1.0 2441 - shared-memory ==0.2.0.1 2442 - shell-conduit ==5.0.0 ··· 2512 - soxlib ==0.0.3.2 2513 - special-values ==0.1.0.0 2514 - speculate ==0.4.20 2515 - - specup ==0.2.0.5 2516 - speedy-slice ==0.3.2 2517 - sphinx ==0.6.1 2518 - Spintax ==0.3.7.0 2519 - splice ==0.6.1.1 2520 - split ==0.2.5 2521 - split-record ==0.1.1.4 2522 - - splitmix ==0.1.1 2523 - splitmix-distributions ==1.0.0 2524 - Spock-api ==0.14.0.0 2525 - spoon ==0.3.1 ··· 2646 - tagchup ==0.4.1.2 2647 - tagged ==0.8.8 2648 - tagged-binary ==0.2.0.1 2649 - - tagged-identity ==0.1.4 2650 - tagged-transformer ==0.8.3 2651 - tagsoup ==0.14.8 2652 - tagstream-conduit ==0.5.6 ··· 2662 - tasty-bench-fit ==0.1.1 2663 - tasty-checklist ==1.0.6.0 2664 - tasty-dejafu ==2.1.0.2 2665 - - tasty-discover ==5.0.1 2666 - tasty-expected-failure ==0.12.3 2667 - tasty-fail-fast ==0.0.3 2668 - tasty-focus ==1.0.1 ··· 2675 - tasty-inspection-testing ==0.2.1 2676 - tasty-kat ==0.0.3 2677 - tasty-leancheck ==0.0.2 2678 - - tasty-lua ==1.1.1 2679 - tasty-papi ==0.1.2.0 2680 - tasty-program ==1.1.0 2681 - tasty-quickcheck ==0.11 ··· 2737 - text-regex-replace ==0.1.1.5 2738 - text-rope ==0.2 2739 - text-short ==0.1.6 2740 - - text-show ==3.11.1 2741 - text-show-instances ==3.9.10 2742 - text-zipper ==0.13 2743 - textlocal ==0.1.0.5 ··· 2810 - toml-reader ==0.2.2.0 2811 - toml-reader-parse ==0.1.1.1 2812 - tomland ==1.3.3.3 2813 - - tools-yj ==0.1.0.27 2814 - tophat ==1.0.8.0 2815 - topograph ==1.0.1 2816 - torrent ==10000.1.3 ··· 2913 - universum ==1.8.2.2 2914 - unix-bytestring ==0.4.0.3 2915 - unix-compat ==0.7.4 2916 - - unix-time ==0.4.16 2917 - unjson ==0.15.4 2918 - unlifted ==0.2.3.0 2919 - unliftio ==0.2.25.1 ··· 2969 - vector-builder ==0.3.8.6 2970 - vector-bytes-instances ==0.1.1 2971 - vector-extras ==0.2.8.2 2972 - - vector-hashtables ==0.1.2.0 2973 - - vector-instances ==3.4.2 2974 - vector-mmap ==0.0.3 2975 - vector-rotcev ==0.1.0.2 2976 - vector-sized ==1.6.1 2977 - vector-space ==0.16 2978 - - vector-split ==1.0.0.3 2979 - vector-stream ==0.1.0.1 2980 - vector-th-unbox ==0.2.2 2981 - verset ==0.0.1.11 ··· 2992 - vty ==6.2 2993 - vty-crossplatform ==0.4.0.0 2994 - vty-unix ==0.2.0.0 2995 - - vty-windows ==0.2.0.3 2996 - wai ==3.2.4 2997 - wai-app-static ==3.1.9 2998 - wai-cli ==0.2.3 ··· 3023 - wai-transformers ==0.1.0 3024 - wai-websockets ==3.0.1.2 3025 - wakame ==0.1.0.0 3026 - - warp ==3.4.7 3027 - warp-tls ==3.4.9 3028 - wave ==0.2.1 3029 - wcwidth ==0.0.2 ··· 3049 - welford-online-mean-variance ==0.2.0.0 3050 - what4 ==1.6.3 3051 - wherefrom-compat ==0.1.1.1 3052 - - wide-word ==0.1.7.0 3053 - - wild-bind ==0.1.2.11 3054 - wild-bind-x11 ==0.2.0.17 3055 - Win32-notify ==0.3.0.3 3056 - windns ==0.1.0.1
··· 1 + # Stackage LTS 23.27 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 107 - attoparsec-binary ==0.2 108 - attoparsec-data ==1.0.5.4 109 - attoparsec-expr ==0.1.1.2 110 + - attoparsec-framer ==0.1.0.10 111 - attoparsec-iso8601 ==1.1.1.0 112 - attoparsec-path ==0.0.0.1 113 - attoparsec-time ==1.0.3.1 ··· 133 - aws-xray-client ==0.1.0.2 134 - aws-xray-client-persistent ==0.1.0.5 135 - aws-xray-client-wai ==0.1.0.2 136 + - backprop ==0.2.7.2 137 - backtracking ==0.1.0 138 - bank-holiday-germany ==1.3.1.0 139 - bank-holidays-england ==0.2.0.11 ··· 161 - bcp47 ==0.2.0.6 162 - bcp47-orphans ==0.1.0.6 163 - bcrypt ==0.0.11 164 + - beam-core ==0.10.4.0 165 - beam-migrate ==0.5.3.1 166 - beam-postgres ==0.5.4.2 167 - beam-sqlite ==0.5.4.0 168 + - bech32 ==1.1.9 169 + - bech32-th ==1.1.9 170 - bench-show ==0.3.2 171 - benchpress ==0.2.2.25 172 - bencode ==0.6.1.1 ··· 252 - bson-lens ==0.1.1 253 - btrfs ==0.2.1.0 254 - buffer-pipe ==0.0 255 + - bugsnag ==1.1.0.2 256 - bugsnag-hs ==0.2.0.12 257 + - bugsnag-wai ==1.0.1.1 258 - bugsnag-yesod ==1.0.1.0 259 - bugzilla-redhat ==1.0.1.1 260 + - burrito ==2.0.1.14 261 - bv ==0.5 262 - bv-little ==1.3.2 263 - bv-sized ==1.0.6 ··· 270 - byteorder ==1.0.4 271 - bytes ==0.17.4 272 - byteset ==0.1.1.2 273 + - byteslice ==0.2.15.0 274 - bytesmith ==0.3.11.1 275 - bytestring-builder ==0.10.8.2.0 276 - bytestring-conversion ==0.3.2 ··· 292 - cabal-add ==0.1 293 - cabal-appimage ==0.4.1.0 294 - cabal-clean ==0.2.20230609 295 + - cabal-debian ==5.2.6 296 - cabal-doctest ==1.0.11 297 - cabal-file ==0.1.1 298 - cabal-fix ==0.1.0.0 299 - cabal-flatpak ==0.1.2 300 - cabal-gild ==1.5.0.3 301 - cabal-install-parsers ==0.6.1.1 302 + - cabal-plan ==0.7.6.0 303 - cabal-rpm ==2.2.1 304 - cabal-sort ==0.1.2.1 305 - cabal2spec ==2.7.1 ··· 322 - cased ==0.1.0.0 323 - cases ==0.1.4.4 324 - casing ==0.1.4.1 325 + - cassava ==0.5.4.0 326 - cassava-conduit ==0.6.6 327 - cassava-megaparsec ==2.1.1 328 - cast ==0.1.0.2 ··· 347 - Chart-cairo ==1.9.4.1 348 - Chart-diagrams ==1.9.5.1 349 - chart-svg ==0.7.0.0 350 + - ChasingBottoms ==1.3.1.16 351 - check-email ==1.0.2 352 - checkers ==0.6.0 353 - checksum ==0.0.0.1 ··· 413 - commutative-semigroups ==0.2.0.2 414 - comonad ==5.0.9 415 - compact ==0.2.0.0 416 + - compactmap ==0.1.4.6 417 - companion ==0.1.0 418 - compdata ==0.13.1 419 - compensated ==0.8.3 ··· 437 - conduit-algorithms ==0.0.14.0 438 - conduit-combinators ==1.3.0 439 - conduit-concurrent-map ==0.1.4 440 + - conduit-extra ==1.3.8 441 - conduit-parse ==0.2.1.1 442 - conduit-zstd ==0.0.2.0 443 - conferer ==1.1.0.0 ··· 671 - doctest ==0.22.6 672 - doctest-discover ==0.2.0.0 673 - doctest-driver-gen ==0.3.0.8 674 + - doctest-exitcode-stdio ==0.0.0.1 675 - doctest-extract ==0.1.2 676 - doctest-lib ==0.1.1.1 677 - doctest-parallel ==0.3.1.1 ··· 717 - effectful-plugin ==1.1.0.4 718 - effectful-th ==1.0.0.3 719 - egison-pattern-src ==0.2.1.2 720 + - either ==5.0.3 721 - either-unwrap ==1.1 722 - ekg ==0.4.1.2 723 + - ekg-core ==0.1.2.0 724 - ekg-json ==0.1.1.1 725 - ekg-statsd ==0.2.6.2 726 - elerea ==2.9.0 ··· 792 - explainable-predicates ==0.1.2.4 793 - explicit-exception ==0.2 794 - express ==1.0.18 795 + - extended-reals ==0.2.7.0 796 - extensible ==0.9.2 797 - extensible-effects ==5.0.0.1 798 - extensible-exceptions ==0.1.1.4 ··· 809 - falsify ==0.2.0 810 - fast-builder ==0.1.5.0 811 - fast-digits ==0.3.2.0 812 + - fast-logger ==3.2.6 813 - fast-math ==1.0.2 814 - fast-myers-diff ==0.0.1 815 - fcf-family ==0.2.0.2 ··· 817 - feature-flags ==0.1.0.1 818 - fedora-krb ==0.1.0 819 - fedora-releases ==0.2.1 820 + - fedora-repoquery ==0.7.3 821 - feed ==1.3.2.1 822 - FenwickTree ==0.1.2.1 823 - fft ==0.1.8.7 ··· 867 - focus ==1.0.3.2 868 - focuslist ==0.1.1.0 869 - fold-debounce ==0.2.0.16 870 + - foldable1-classes-compat ==0.1.2 871 - foldl ==1.4.18 872 - folds ==0.7.8 873 - FontyFruity ==0.5.3.5 ··· 879 - format-numbers ==0.1.0.1 880 - formatn ==0.3.1.0 881 - formatting ==7.2.0 882 + - fortran-src ==0.16.7 883 - foundation ==0.0.30 884 - fourmolu ==0.15.0.0 885 - Frames ==0.7.4.2 ··· 901 - funcmp ==1.9 902 - function-builder ==0.3.0.1 903 - functor-classes-compat ==2.0.0.2 904 + - functor-combinators ==0.4.1.4 905 - functor-products ==0.1.2.2 906 - fused-effects ==1.1.2.5 907 - fusion-plugin ==0.2.7 ··· 1012 - gi-gdkx11 ==3.0.17 1013 - gi-gdkx113 ==3.0.17 1014 - gi-gdkx114 ==4.0.9 1015 + - gi-gio ==2.0.38 1016 - gi-glib ==2.0.30 1017 - gi-gmodule ==2.0.6 1018 - gi-gobject ==2.0.31 ··· 1066 - gpolyline ==0.1.0.1 1067 - graph-core ==0.3.0.0 1068 - graphite ==0.10.0.1 1069 + - graphql ==1.5.0.1 1070 - graphql-client ==1.2.4 1071 - graphql-spice ==1.0.6.0 1072 - graphs ==0.7.3 1073 + - graphula ==2.1.2.0 1074 - graphviz ==2999.20.2.1 1075 - gravatar ==0.8.1 1076 - greskell ==2.0.3.3 1077 + - greskell-core ==1.0.0.6 1078 - greskell-websocket ==1.0.0.4 1079 - gridtables ==0.1.0.0 1080 - grisette ==0.9.0.0 ··· 1087 - gtk2hs-buildtools ==0.13.12.0 1088 - gtk3 ==0.15.10 1089 - guarded-allocation ==0.0.1 1090 + - hackage-cli ==0.1.0.3 1091 + - hackage-security ==0.6.3.1 1092 - hackage-security-HTTP ==0.1.1.2 1093 - haddock-library ==1.11.0 1094 - haha ==0.3.1.1 1095 - hakyll ==4.16.6.0 1096 - hakyll-convert ==0.3.0.5 1097 - hal ==1.1 1098 + - half ==0.3.3 1099 - hall-symbols ==0.1.0.6 1100 - hamlet ==1.2.0 1101 - hamtsolo ==1.0.4 ··· 1115 - hashids ==1.1.1.0 1116 - hashmap ==1.3.3 1117 - hashtables ==1.3.1 1118 + - haskell-gi ==0.26.16 1119 + - haskell-gi-base ==0.26.9 1120 - haskell-gi-overloading ==1.0 1121 - haskell-lexer ==1.1.2 1122 - haskell-src ==1.0.4.1 ··· 1211 - HMock ==0.5.1.2 1212 - hmpfr ==0.4.5 1213 - hnix-store-core ==0.8.0.0 1214 + - hoare ==0.1.1.0 1215 - hoauth2 ==2.14.0 1216 - hoogle ==5.0.18.4 1217 - hopenssl ==2.2.5 ··· 1257 - hslua-core ==2.3.2 1258 - hslua-list ==1.1.4 1259 - hslua-marshalling ==2.3.1 1260 + - hslua-module-doclayout ==1.2.0.1 1261 - hslua-module-path ==1.1.1 1262 - hslua-module-system ==1.1.3 1263 - hslua-module-text ==1.1.1 1264 - hslua-module-version ==1.1.1 1265 + - hslua-module-zip ==1.1.4 1266 - hslua-objectorientation ==2.3.1 1267 - hslua-packaging ==2.3.1 1268 - hslua-repl ==0.1.2 ··· 1331 - http-semantics ==0.3.0 1332 - http-streams ==0.8.9.9 1333 - http-types ==0.12.4 1334 + - http2 ==5.3.10 1335 - httpd-shed ==0.4.1.2 1336 - human-readable-duration ==0.2.1.4 1337 - HUnit ==1.6.2.0 ··· 1434 - io-streams ==1.5.2.2 1435 - io-streams-haproxy ==1.0.1.0 1436 - ip ==1.7.8 1437 + - ip6addr ==2.0.0.1 1438 - iproute ==1.7.15 1439 - IPv6Addr ==2.0.6.1 1440 - IPv6DB ==0.3.3.4 ··· 1480 - JuicyPixels-scale-dct ==0.1.2 1481 - junit-xml ==0.1.0.4 1482 - justified-containers ==0.3.0.0 1483 + - kan-extensions ==5.2.7 1484 - kansas-comet ==0.4.3 1485 - katip ==0.8.8.2 1486 - katip-logstash ==0.1.0.2 ··· 1544 - leapseconds-announced ==2017.1.0.1 1545 - learn-physics ==0.6.7 1546 - leb128-cereal ==1.2 1547 + - lens ==5.3.5 1548 - lens-action ==0.2.6 1549 - lens-aeson ==1.2.3 1550 - lens-csv ==0.1.1.0 1551 - lens-family ==2.1.3 1552 - lens-family-core ==2.1.3 1553 + - lens-family-th ==0.5.3.2 1554 - lens-misc ==0.0.2.0 1555 - lens-properties ==4.11.1 1556 - lens-regex ==0.1.3 ··· 1569 - lift-type ==0.1.2.0 1570 - lifted-async ==0.10.2.7 1571 - lifted-base ==0.2.3.12 1572 + - linear ==1.23.2 1573 - linear-base ==0.4.0 1574 - linear-circuit ==0.1.0.4 1575 - linear-generics ==0.2.3 ··· 1594 - locators ==0.3.0.5 1595 - loch-th ==0.2.2 1596 - lockfree-queue ==0.2.4 1597 + - log-base ==0.12.1.0 1598 - log-domain ==0.13.2 1599 - logfloat ==0.14.0 1600 - logger-thread ==0.1.0.2 ··· 1636 - markov-chain ==0.0.3.4 1637 - markov-chain-usage-model ==0.0.0 1638 - markup-parse ==0.1.1.1 1639 + - massiv ==1.0.5.0 1640 - massiv-io ==1.0.0.1 1641 - massiv-serialise ==1.0.0.2 1642 - massiv-test ==1.1.0.1 ··· 1710 - mmark ==0.0.8.0 1711 - mmark-cli ==0.0.5.2 1712 - mmark-ext ==0.2.1.5 1713 + - mmorph ==1.2.1 1714 - mnist-idx ==0.1.3.2 1715 - mnist-idx-conduit ==0.4.0.0 1716 - mockcat ==0.5.2.0 ··· 1813 - nanospec ==0.2.2 1814 - nanovg ==0.8.1.0 1815 - nats ==1.1.2 1816 + - natural-arithmetic ==0.2.3.0 1817 - natural-induction ==0.2.0.0 1818 - natural-sort ==0.1.2 1819 - natural-transformation ==0.4.1 ··· 1949 - pandoc ==3.6 1950 - pandoc-cli ==3.6 1951 - pandoc-lua-engine ==0.4.1.1 1952 + - pandoc-lua-marshal ==0.3.1 1953 - pandoc-plot ==1.9.1 1954 - pandoc-server ==0.1.0.11 1955 - pandoc-throw ==0.1.0.0 ··· 1988 - pathtype ==0.8.1.3 1989 - pathwalk ==0.3.1.2 1990 - patience ==0.3 1991 + - patrol ==1.0.1.0 1992 - pava ==0.1.1.4 1993 - pcg-random ==0.1.4.0 1994 - pcre-heavy ==1.0.0.4 ··· 2009 - persistable-types-HDBC-pg ==0.0.3.5 2010 - persistent ==2.14.6.3 2011 - persistent-discover ==0.1.0.7 2012 + - persistent-documentation ==0.1.0.6 2013 - persistent-lens ==1.0.0 2014 - persistent-mongoDB ==2.13.1.0 2015 - persistent-mtl ==0.5.1 ··· 2020 - persistent-redis ==2.13.0.2 2021 - persistent-sqlite ==2.13.3.0 2022 - persistent-template ==2.12.0.0 2023 + - persistent-test ==2.13.1.3 2024 - persistent-typed-db ==0.1.0.7 2025 - pfile ==0.1.0.1 2026 - pg-harness-client ==0.6.0 ··· 2122 - process-extras ==0.7.4 2123 - product-isomorphic ==0.0.3.4 2124 - product-profunctors ==0.11.1.1 2125 + - profunctors ==5.6.3 2126 - project-template ==0.2.1.0 2127 - projectroot ==0.2.0.1 2128 - prometheus ==2.3.0 ··· 2167 - quickcheck-assertions ==0.3.0 2168 - quickcheck-classes ==0.6.5.0 2169 - quickcheck-classes-base ==0.6.2.0 2170 + - quickcheck-groups ==0.0.1.5 2171 - quickcheck-higherorder ==0.1.0.1 2172 + - quickcheck-instances ==0.3.33 2173 - quickcheck-io ==0.2.0 2174 + - quickcheck-monoid-subclasses ==0.3.0.6 2175 + - quickcheck-quid ==0.0.1.8 2176 - quickcheck-simple ==0.1.1.1 2177 - quickcheck-state-machine ==0.10.1 2178 - quickcheck-text ==0.1.2.1 ··· 2292 - rhine-gloss ==1.5 2293 - rhine-terminal ==1.5 2294 - riak-protobuf ==0.25.0.0 2295 + - richenv ==0.1.0.3 2296 - rio ==0.1.22.0 2297 - rio-orphans ==0.1.2.0 2298 - rio-prettyprint ==0.1.8.0 2299 - rng-utils ==0.3.1 2300 + - roc-id ==0.2.0.5 2301 - rocksdb-haskell ==1.0.1 2302 - rocksdb-haskell-jprupp ==2.1.7 2303 - rocksdb-query ==0.4.3 ··· 2343 - sampling ==0.3.5 2344 - samsort ==0.1.0.0 2345 - sandi ==0.5 2346 + - sandwich ==0.3.0.4 2347 + - sandwich-contexts ==0.3.0.3 2348 - sandwich-hedgehog ==0.1.3.1 2349 - sandwich-quickcheck ==0.1.0.7 2350 - sandwich-slack ==0.1.2.0 2351 + - sandwich-webdriver ==0.3.0.1 2352 - saturn ==1.0.0.8 2353 - say ==0.1.0.1 2354 - sayable ==1.2.5.0 ··· 2364 - scientist ==0.0.0.0 2365 - scotty ==0.22 2366 - scrypt ==0.5.0 2367 + - search-algorithms ==0.3.4 2368 - secp256k1-haskell ==1.4.6 2369 - securemem ==0.1.10 2370 - select-rpms ==0.2.0 ··· 2384 - sequence-formats ==1.10.0.0 2385 - sequenceTools ==1.5.3.1 2386 - serialise ==0.2.6.1 2387 + - servant ==0.20.3.0 2388 - servant-auth ==0.4.2.0 2389 - servant-auth-client ==0.4.2.0 2390 - servant-auth-docs ==0.2.11.0 2391 + - servant-auth-server ==0.4.9.1 2392 - servant-auth-swagger ==0.2.11.0 2393 - servant-blaze ==0.9.1 2394 - servant-checked-exceptions ==2.2.0.1 2395 - servant-checked-exceptions-core ==2.2.0.1 2396 - servant-cli ==0.1.1.0 2397 + - servant-client ==0.20.3.0 2398 + - servant-client-core ==0.20.3.0 2399 - servant-conduit ==0.16.1 2400 - servant-docs ==0.13.1 2401 - servant-elm ==0.7.3 ··· 2414 - servant-quickcheck ==0.1.1.0 2415 - servant-rate-limit ==0.2.0.0 2416 - servant-rawm ==1.0.0.0 2417 + - servant-server ==0.20.3.0 2418 - servant-static-th ==1.0.0.1 2419 - servant-swagger ==1.2.1 2420 - servant-swagger-ui ==0.3.5.5.0.1 ··· 2437 - SHA ==1.6.4.4 2438 - shake ==0.19.8 2439 - shake-plus ==0.3.4.0 2440 + - shakespeare ==2.1.4 2441 - shakespeare-text ==1.1.0 2442 - shared-memory ==0.2.0.1 2443 - shell-conduit ==5.0.0 ··· 2513 - soxlib ==0.0.3.2 2514 - special-values ==0.1.0.0 2515 - speculate ==0.4.20 2516 + - specup ==0.2.0.6 2517 - speedy-slice ==0.3.2 2518 - sphinx ==0.6.1 2519 - Spintax ==0.3.7.0 2520 - splice ==0.6.1.1 2521 - split ==0.2.5 2522 - split-record ==0.1.1.4 2523 + - splitmix ==0.1.3.1 2524 - splitmix-distributions ==1.0.0 2525 - Spock-api ==0.14.0.0 2526 - spoon ==0.3.1 ··· 2647 - tagchup ==0.4.1.2 2648 - tagged ==0.8.8 2649 - tagged-binary ==0.2.0.1 2650 + - tagged-identity ==0.1.5 2651 - tagged-transformer ==0.8.3 2652 - tagsoup ==0.14.8 2653 - tagstream-conduit ==0.5.6 ··· 2663 - tasty-bench-fit ==0.1.1 2664 - tasty-checklist ==1.0.6.0 2665 - tasty-dejafu ==2.1.0.2 2666 + - tasty-discover ==5.0.2 2667 - tasty-expected-failure ==0.12.3 2668 - tasty-fail-fast ==0.0.3 2669 - tasty-focus ==1.0.1 ··· 2676 - tasty-inspection-testing ==0.2.1 2677 - tasty-kat ==0.0.3 2678 - tasty-leancheck ==0.0.2 2679 + - tasty-lua ==1.1.1.1 2680 - tasty-papi ==0.1.2.0 2681 - tasty-program ==1.1.0 2682 - tasty-quickcheck ==0.11 ··· 2738 - text-regex-replace ==0.1.1.5 2739 - text-rope ==0.2 2740 - text-short ==0.1.6 2741 + - text-show ==3.11.2 2742 - text-show-instances ==3.9.10 2743 - text-zipper ==0.13 2744 - textlocal ==0.1.0.5 ··· 2811 - toml-reader ==0.2.2.0 2812 - toml-reader-parse ==0.1.1.1 2813 - tomland ==1.3.3.3 2814 + - tools-yj ==0.1.0.45 2815 - tophat ==1.0.8.0 2816 - topograph ==1.0.1 2817 - torrent ==10000.1.3 ··· 2914 - universum ==1.8.2.2 2915 - unix-bytestring ==0.4.0.3 2916 - unix-compat ==0.7.4 2917 + - unix-time ==0.4.17 2918 - unjson ==0.15.4 2919 - unlifted ==0.2.3.0 2920 - unliftio ==0.2.25.1 ··· 2970 - vector-builder ==0.3.8.6 2971 - vector-bytes-instances ==0.1.1 2972 - vector-extras ==0.2.8.2 2973 + - vector-hashtables ==0.1.2.1 2974 + - vector-instances ==3.4.3 2975 - vector-mmap ==0.0.3 2976 - vector-rotcev ==0.1.0.2 2977 - vector-sized ==1.6.1 2978 - vector-space ==0.16 2979 + - vector-split ==1.0.0.4 2980 - vector-stream ==0.1.0.1 2981 - vector-th-unbox ==0.2.2 2982 - verset ==0.0.1.11 ··· 2993 - vty ==6.2 2994 - vty-crossplatform ==0.4.0.0 2995 - vty-unix ==0.2.0.0 2996 + - vty-windows ==0.2.0.4 2997 - wai ==3.2.4 2998 - wai-app-static ==3.1.9 2999 - wai-cli ==0.2.3 ··· 3024 - wai-transformers ==0.1.0 3025 - wai-websockets ==3.0.1.2 3026 - wakame ==0.1.0.0 3027 + - warp ==3.4.8 3028 - warp-tls ==3.4.9 3029 - wave ==0.2.1 3030 - wcwidth ==0.0.2 ··· 3050 - welford-online-mean-variance ==0.2.0.0 3051 - what4 ==1.6.3 3052 - wherefrom-compat ==0.1.1.1 3053 + - wide-word ==0.1.7.1 3054 + - wild-bind ==0.1.2.12 3055 - wild-bind-x11 ==0.2.0.17 3056 - Win32-notify ==0.3.0.3 3057 - windns ==0.1.0.1
+18 -20
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 721 - dhall-secret 722 - dia-functions 723 - diagrams-html5 724 - - diagrams-reflex 725 - diagrams-wx 726 - dialog 727 - diff ··· 1026 - frpnow-gtk 1027 - frpnow-gtk3 1028 - frpnow-vty 1029 - - fs-sim 1030 - ftdi 1031 - ftp-client-conduit 1032 - FTPLine ··· 1196 - gridland 1197 - grisette 1198 - grisette-monad-coroutine 1199 - - grisette_0_12_0_0 1200 - gross 1201 - groundhog-converters 1202 - groundhog-inspector ··· 1363 - haskelldb-hsql-postgresql 1364 - haskelldb-hsql-sqlite3 1365 - haskelldb-th 1366 - - HaskellNet-SSL 1367 - haskelm 1368 - haskey 1369 - haskey-mtl ··· 1584 - HPong 1585 - hpqtypes-effectful 1586 - hpqtypes-extras 1587 - - hpqtypes-extras_1_17_0_1 1588 - hprotoc 1589 - hprotoc-fork 1590 - hps ··· 1872 - json-pointer-hasql 1873 - json-query 1874 - json-rpc-client 1875 - - json-schema 1876 - json-state 1877 - json-togo 1878 - json2-hdbc ··· 1935 - kit 1936 - kmeans-par 1937 - kmeans-vector 1938 - knit-haskell 1939 - koji-install 1940 - koji-tool 1941 - korfu 1942 - ks-test 1943 - - kubernetes-api-client 1944 - kubernetes-client 1945 - kure-your-boilerplate 1946 - kurita ··· 2010 - legion-discovery 2011 - legion-discovery-client 2012 - legion-extra 2013 - - leksah 2014 - leksah-server 2015 - lens-utils 2016 - lenz ··· 2062 - liquidhaskell-cabal-demo 2063 - list-t-attoparsec 2064 - list-t-html-parser 2065 - - list1 2066 - listenbrainz-client 2067 - ListT 2068 - liszt ··· 2073 - llvm-base-types 2074 - llvm-base-util 2075 - llvm-data-interop 2076 - llvm-general 2077 - llvm-general-quote 2078 - llvm-hs-pretty ··· 2133 - magic-wormhole 2134 - mahoro 2135 - maid 2136 - - mail-pool 2137 - MailchimpSimple 2138 - mailgun 2139 - majordomo ··· 2281 - mpretty 2282 - mprover 2283 - mps 2284 - - mptcp-pm 2285 - mptcpanalyzer 2286 - - msgpack-aeson 2287 - msgpack-arbitrary 2288 - msgpack-binary 2289 - msgpack-idl 2290 - msgpack-persist 2291 - - msgpack-rpc 2292 - msgpack-rpc-conduit 2293 - msgpack-testsuite 2294 - msi-kb-backlit ··· 2532 - partage 2533 - partial-semigroup-test 2534 - passman-cli 2535 - pathfindingcore 2536 - patterns 2537 - paypal-rest-client ··· 2616 - Plot-ho-matic 2617 - PlslTools 2618 - plugins-auto 2619 - png-file 2620 - pngload 2621 - pointless-lenses ··· 2632 - polysemy-hasql 2633 - polysemy-hasql-test 2634 - polysemy-kvstore-jsonfile 2635 - - polysemy-log-co 2636 - polysemy-methodology 2637 - polysemy-methodology-co-log 2638 - polysemy-methodology-composite ··· 2718 - psql 2719 - ptera 2720 - ptera-th 2721 - publicsuffixlist 2722 - puffytools 2723 - Pugs ··· 2815 - rbr 2816 - rc 2817 - rdioh 2818 - react-flux-servant 2819 - reactive 2820 - reactive-banana-sdl ··· 2838 - refh 2839 - reflex-animation 2840 - reflex-backend-wai 2841 - - reflex-dom-colonnade 2842 - reflex-ghci 2843 - reflex-gloss-scene 2844 - reflex-libtelnet 2845 - reflex-localize 2846 - - reflex-localize-dom 2847 - reflex-monad-auth 2848 - reflex-process 2849 - reform-blaze ··· 2862 - regions-monadsfd 2863 - regions-monadstf 2864 - regions-mtl 2865 - - registry-messagepack 2866 - regular-extras 2867 - regular-web 2868 - regular-xmlpickler ··· 3256 - spelling-suggest 3257 - sphero 3258 - spice 3259 - - spike 3260 - SpinCounter 3261 - splines 3262 - sprinkles ··· 3490 - trasa-client 3491 - trasa-extra 3492 - trasa-form 3493 - - trasa-reflex 3494 - trasa-server 3495 - trasa-th 3496 - traversal-template ··· 3769 - xml-catalog 3770 - xml-enumerator 3771 - xml-enumerator-combinators 3772 - - xml-isogen 3773 - xml-monad 3774 - xml-pipe 3775 - xml-push
··· 721 - dhall-secret 722 - dia-functions 723 - diagrams-html5 724 - diagrams-wx 725 - dialog 726 - diff ··· 1025 - frpnow-gtk 1026 - frpnow-gtk3 1027 - frpnow-vty 1028 - ftdi 1029 - ftp-client-conduit 1030 - FTPLine ··· 1194 - gridland 1195 - grisette 1196 - grisette-monad-coroutine 1197 + - grisette_0_13_0_0 1198 - gross 1199 - groundhog-converters 1200 - groundhog-inspector ··· 1361 - haskelldb-hsql-postgresql 1362 - haskelldb-hsql-sqlite3 1363 - haskelldb-th 1364 - haskelm 1365 - haskey 1366 - haskey-mtl ··· 1581 - HPong 1582 - hpqtypes-effectful 1583 - hpqtypes-extras 1584 + - hpqtypes-extras_1_18_0_0 1585 - hprotoc 1586 - hprotoc-fork 1587 - hps ··· 1869 - json-pointer-hasql 1870 - json-query 1871 - json-rpc-client 1872 - json-state 1873 - json-togo 1874 - json2-hdbc ··· 1931 - kit 1932 - kmeans-par 1933 - kmeans-vector 1934 + - knead 1935 - knit-haskell 1936 - koji-install 1937 - koji-tool 1938 + - koji-tool_1_3 1939 - korfu 1940 - ks-test 1941 - kubernetes-client 1942 - kure-your-boilerplate 1943 - kurita ··· 2007 - legion-discovery 2008 - legion-discovery-client 2009 - legion-extra 2010 - leksah-server 2011 - lens-utils 2012 - lenz ··· 2058 - liquidhaskell-cabal-demo 2059 - list-t-attoparsec 2060 - list-t-html-parser 2061 - listenbrainz-client 2062 - ListT 2063 - liszt ··· 2068 - llvm-base-types 2069 - llvm-base-util 2070 - llvm-data-interop 2071 + - llvm-dsl 2072 - llvm-general 2073 - llvm-general-quote 2074 - llvm-hs-pretty ··· 2129 - magic-wormhole 2130 - mahoro 2131 - maid 2132 - MailchimpSimple 2133 - mailgun 2134 - majordomo ··· 2276 - mpretty 2277 - mprover 2278 - mps 2279 - mptcpanalyzer 2280 - msgpack-arbitrary 2281 - msgpack-binary 2282 - msgpack-idl 2283 - msgpack-persist 2284 - msgpack-rpc-conduit 2285 - msgpack-testsuite 2286 - msi-kb-backlit ··· 2524 - partage 2525 - partial-semigroup-test 2526 - passman-cli 2527 + - patch-image 2528 - pathfindingcore 2529 - patterns 2530 - paypal-rest-client ··· 2609 - Plot-ho-matic 2610 - PlslTools 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 2622 - png-file 2623 - pngload 2624 - pointless-lenses ··· 2635 - polysemy-hasql 2636 - polysemy-hasql-test 2637 - polysemy-kvstore-jsonfile 2638 - polysemy-methodology 2639 - polysemy-methodology-co-log 2640 - polysemy-methodology-composite ··· 2720 - psql 2721 - ptera 2722 - ptera-th 2723 + - pty-mcp-server 2724 - publicsuffixlist 2725 - puffytools 2726 - Pugs ··· 2818 - rbr 2819 - rc 2820 - rdioh 2821 + - rds-data-polysemy 2822 - react-flux-servant 2823 - reactive 2824 - reactive-banana-sdl ··· 2842 - refh 2843 - reflex-animation 2844 - reflex-backend-wai 2845 - reflex-ghci 2846 - reflex-gloss-scene 2847 - reflex-libtelnet 2848 - reflex-localize 2849 - reflex-monad-auth 2850 - reflex-process 2851 - reform-blaze ··· 2864 - regions-monadsfd 2865 - regions-monadstf 2866 - regions-mtl 2867 - regular-extras 2868 - regular-web 2869 - regular-xmlpickler ··· 3257 - spelling-suggest 3258 - sphero 3259 - spice 3260 - SpinCounter 3261 - splines 3262 - sprinkles ··· 3490 - trasa-client 3491 - trasa-extra 3492 - trasa-form 3493 - trasa-server 3494 - trasa-th 3495 - traversal-template ··· 3768 - xml-catalog 3769 - xml-enumerator 3770 - xml-enumerator-combinators 3771 - xml-monad 3772 - xml-pipe 3773 - xml-push
+106 -5
pkgs/development/haskell-modules/configuration-nix.nix
··· 502 # can't use pkg-config (LLVM has no official .pc files), we need to pass the 503 # `dev` and `lib` output in, or Cabal will have trouble finding the library. 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; }); 510 511 # Needs help finding LLVM. 512 spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe; ··· 832 pkgs.z3 833 ] super.crucible-llvm; 834 835 # Compile manpages (which are in RST and are compiled with Sphinx). 836 futhark = 837 overrideCabal ··· 1120 ]; 1121 }) super.relocant; 1122 1123 retrie = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie; 1124 retrie_1_2_0_0 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_0_0; 1125 retrie_1_2_1_1 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_1_1; ··· 1231 ] 1232 }" 1233 ''; 1234 }) (justStaticExecutables super.cabal2nix-unstable); 1235 1236 # test suite needs local redis daemon ··· 1291 })) 1292 (self.generateOptparseApplicativeCompletions [ "cloudy" ]) 1293 ]; 1294 1295 # Wants running postgresql database accessible over ip, so postgresqlTestHook 1296 # won't work (or would need to patch test suite). ··· 1342 (overrideCabal { mainProgram = "agda"; }) 1343 # Split outputs to reduce closure size 1344 enableSeparateBinOutput 1345 ]; 1346 1347 # ats-format uses cli-setup in Setup.hs which is quite happy to write ··· 1712 ]; 1713 1714 xmobar = enableSeparateBinOutput super.xmobar; 1715 1716 # 2024-08-09: Disable some cabal-doctest tests pending further investigation. 1717 inherit
··· 502 # can't use pkg-config (LLVM has no official .pc files), we need to pass the 503 # `dev` and `lib` output in, or Cabal will have trouble finding the library. 504 # Since it looks a bit neater having it in a list, we circumvent the singular 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 + ]; 526 527 # Needs help finding LLVM. 528 spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe; ··· 848 pkgs.z3 849 ] super.crucible-llvm; 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 + 859 # Compile manpages (which are in RST and are compiled with Sphinx). 860 futhark = 861 overrideCabal ··· 1144 ]; 1145 }) super.relocant; 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 + 1166 retrie = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie; 1167 retrie_1_2_0_0 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_0_0; 1168 retrie_1_2_1_1 = addTestToolDepends [ pkgs.git pkgs.mercurial ] super.retrie_1_2_1_1; ··· 1274 ] 1275 }" 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 + }; 1304 }) (justStaticExecutables super.cabal2nix-unstable); 1305 1306 # test suite needs local redis daemon ··· 1361 })) 1362 (self.generateOptparseApplicativeCompletions [ "cloudy" ]) 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; 1371 1372 # Wants running postgresql database accessible over ip, so postgresqlTestHook 1373 # won't work (or would need to patch test suite). ··· 1419 (overrideCabal { mainProgram = "agda"; }) 1420 # Split outputs to reduce closure size 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 + })) 1432 ]; 1433 1434 # ats-format uses cli-setup in Setup.hs which is quite happy to write ··· 1799 ]; 1800 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 + ); 1816 1817 # 2024-08-09: Disable some cabal-doctest tests pending further investigation. 1818 inherit
+1 -1
pkgs/development/haskell-modules/generic-builder.nix
··· 88 enableSharedLibraries ? 89 !stdenv.hostPlatform.isStatic 90 && (ghc.enableShared or false) 91 - && !stdenv.hostPlatform.useAndroidPrebuilt, 92 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin 93 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235 94 enableStaticLibraries ?
··· 88 enableSharedLibraries ? 89 !stdenv.hostPlatform.isStatic 90 && (ghc.enableShared or false) 91 + && !stdenv.hostPlatform.useAndroidPrebuilt, # TODO: figure out why /build leaks into RPATH 92 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin 93 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235 94 enableStaticLibraries ?
+5682 -1523
pkgs/development/haskell-modules/hackage-packages.nix
··· 1490 blaze-html, 1491 boxes, 1492 bytestring, 1493 - Cabal, 1494 case-insensitive, 1495 containers, 1496 data-hash, ··· 1499 dlist, 1500 edit-distance, 1501 emacs, 1502 equivalence, 1503 exceptions, 1504 filepath, 1505 ghc-compact, 1506 gitrev, 1507 happy, ··· 1510 monad-control, 1511 mtl, 1512 murmur-hash, 1513 parallel, 1514 peano, 1515 pqueue, 1516 pretty, 1517 process, 1518 regex-tdfa, 1519 split, 1520 stm, 1521 STMonadTrans, 1522 strict, 1523 text, 1524 time, 1525 transformers, ··· 1531 }: 1532 mkDerivation { 1533 pname = "Agda"; 1534 - version = "2.7.0.1"; 1535 - sha256 = "13pn0mbxyfy04fcdl68l2m36b40hwk8iwpkqdfad3xsf9l5ddxil"; 1536 - revision = "3"; 1537 - editedCabalFile = "0vmsy5hjivysiqkzk65ca1y8ivbzly5z55zi12bgsmj7jqrd8vrf"; 1538 isLibrary = true; 1539 isExecutable = true; 1540 enableSeparateDataOutput = true; 1541 - setupHaskellDepends = [ 1542 - base 1543 - Cabal 1544 - directory 1545 - filepath 1546 - process 1547 - ]; 1548 libraryHaskellDepends = [ 1549 aeson 1550 ansi-terminal ··· 1562 directory 1563 dlist 1564 edit-distance 1565 equivalence 1566 exceptions 1567 filepath 1568 ghc-compact 1569 gitrev 1570 hashable ··· 1572 monad-control 1573 mtl 1574 murmur-hash 1575 parallel 1576 peano 1577 pqueue 1578 pretty 1579 process 1580 regex-tdfa 1581 split 1582 stm 1583 STMonadTrans 1584 strict 1585 text 1586 time 1587 transformers ··· 1597 ]; 1598 executableHaskellDepends = [ 1599 base 1600 directory 1601 filepath 1602 process 1603 ]; 1604 executableToolDepends = [ emacs ]; 1605 description = "A dependently typed functional programming language and proof assistant"; ··· 7005 }: 7006 mkDerivation { 7007 pname = "ChasingBottoms"; 7008 - version = "1.3.1.15"; 7009 - sha256 = "0if8h6xq10y1xa90cwmx2jkxjn9628rzs8y6fsjmpjdcvcyr5wnj"; 7010 - revision = "2"; 7011 - editedCabalFile = "11h7gfnlxfrfpvax74lbdwaz8jazy833q6mzrgs9p8cyj6q69ibn"; 7012 libraryHaskellDepends = [ 7013 base 7014 containers ··· 8110 } 8111 ) { }; 8112 8113 "ConstraintKinds" = callPackage ( 8114 { 8115 mkDerivation, ··· 22336 }: 22337 mkDerivation { 22338 pname = "HaskellNet"; 22339 - version = "0.6.1.2"; 22340 - sha256 = "0yd0n6c9favb6kv37flz2cn9wz5kapx3iqljq2h7l6qvx6kd92v5"; 22341 - revision = "1"; 22342 - editedCabalFile = "1j5g09v40rvsk4crfjabs0mma5nlwsbzbny25803bc6805jh9058"; 22343 libraryHaskellDepends = [ 22344 array 22345 base ··· 22356 ]; 22357 description = "Client support for POP3, SMTP, and IMAP"; 22358 license = lib.licenses.bsd3; 22359 - hydraPlatforms = lib.platforms.none; 22360 - broken = true; 22361 } 22362 ) { }; 22363 ··· 22394 ]; 22395 description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; 22396 license = lib.licenses.bsd3; 22397 - hydraPlatforms = lib.platforms.none; 22398 mainProgram = "HaskellNet-SSL-example"; 22399 } 22400 ) { }; ··· 23978 }: 23979 mkDerivation { 23980 pname = "HsSyck"; 23981 - version = "0.53"; 23982 - sha256 = "17r4jwnkjinmzpw9m2crjwccdyv9wmpljnv1ldgljkr9p9mb5ywf"; 23983 enableSeparateDataOutput = true; 23984 libraryHaskellDepends = [ 23985 base ··· 24096 pname = "HsYAML"; 24097 version = "0.2.1.5"; 24098 sha256 = "13av46629msknp1spmcczgd2hpsyj0ca590vpiy7df8l6cfwjyk5"; 24099 isLibrary = true; 24100 isExecutable = true; 24101 libraryHaskellDepends = [ ··· 24700 pname = "IPv6DB"; 24701 version = "0.3.3.4"; 24702 sha256 = "1mkf2fqlg2n9q3l3p8rxdcmb7k281lz37x6hiry1wvxbn92d4pja"; 24703 isLibrary = true; 24704 isExecutable = true; 24705 libraryHaskellDepends = [ ··· 26815 pname = "LPFP"; 26816 version = "1.1.5"; 26817 sha256 = "11mlcd1pq2vb0kwjm2z6304qslvmdcfdbly37yr27zhn860zfzz2"; 26818 isLibrary = true; 26819 isExecutable = true; 26820 libraryHaskellDepends = [ ··· 29699 }: 29700 mkDerivation { 29701 pname = "MicroHs"; 29702 - version = "0.12.6.1"; 29703 - sha256 = "145fk10clh4mmfd58212kr1b56fr4j19vrlrq6d4jdv4zrvk5iwl"; 29704 isLibrary = false; 29705 isExecutable = true; 29706 enableSeparateDataOutput = true; ··· 31721 } 31722 ) { }; 31723 31724 - "NanoID_3_4_1" = callPackage ( 31725 { 31726 mkDerivation, 31727 aeson, ··· 31736 }: 31737 mkDerivation { 31738 pname = "NanoID"; 31739 - version = "3.4.1"; 31740 - sha256 = "1rrz4wmhba372fg9w8rg6fgynwqmy5dhyz5i74xab5mbjgv169rs"; 31741 isLibrary = true; 31742 isExecutable = true; 31743 libraryHaskellDepends = [ ··· 34971 }: 34972 mkDerivation { 34973 pname = "PenroseKiteDart"; 34974 - version = "1.3"; 34975 - sha256 = "0yjfc7zahrf4h02xhlbhzh0r8nzns5v1a2rp2sg3gi073v59gpps"; 34976 libraryHaskellDepends = [ 34977 base 34978 containers ··· 36449 } 36450 ) { }; 36451 36452 - "QuickCheck_2_15_0_1" = callPackage ( 36453 { 36454 mkDerivation, 36455 base, ··· 36463 }: 36464 mkDerivation { 36465 pname = "QuickCheck"; 36466 - version = "2.15.0.1"; 36467 - sha256 = "0zvfydg44ibs1br522rzvdlxj9mpz0h62js1hay1sj5gvdnj3cm3"; 36468 - revision = "1"; 36469 - editedCabalFile = "0cgfp4s51cjphsn9cls6rndisvqmi94vn95xan9g1yz6p5xk7z8c"; 36470 libraryHaskellDepends = [ 36471 base 36472 containers ··· 46710 { mkDerivation }: 46711 mkDerivation { 46712 pname = "Win32"; 46713 - version = "2.14.2.0"; 46714 - sha256 = "0qmm44py2r1z5mj12vr33s01kci5hmh479pr6v8ljqgm2imlfr4j"; 46715 description = "A binding to Windows Win32 API"; 46716 license = lib.licenses.bsd3; 46717 platforms = lib.platforms.windows; ··· 49364 }: 49365 mkDerivation { 49366 pname = "ac-library-hs"; 49367 - version = "1.5.0.0"; 49368 - sha256 = "15jvxwsx50qcv58wx4a2m4f1h5ic476cnb78n757shyfm0asn9ag"; 49369 isLibrary = true; 49370 isExecutable = true; 49371 libraryHaskellDepends = [ ··· 49374 bytestring 49375 primitive 49376 random 49377 vector 49378 vector-algorithms 49379 wide-word ··· 49384 bytestring 49385 primitive 49386 random 49387 vector 49388 vector-algorithms 49389 wide-word ··· 49428 ]; 49429 description = "Data structures and algorithms"; 49430 license = lib.licenses.cc0; 49431 mainProgram = "example-lazy-segtree"; 49432 } 49433 ) { }; 49434 ··· 52296 pname = "active"; 52297 version = "0.2.1"; 52298 sha256 = "150kwir36aj9q219qi80mlqd0vxm4941dh6x4xp58rbd5a3mhmv1"; 52299 - revision = "4"; 52300 - editedCabalFile = "0s5aiyskly1j4wd4hs2c52bdawx9340pgdx0378xvivixd48cd8x"; 52301 libraryHaskellDepends = [ 52302 base 52303 lens ··· 53708 pname = "aeson"; 53709 version = "2.2.3.0"; 53710 sha256 = "1akbrh8iz47f0ai30yabg1n4vcf1fx0a9gzj45fx0si553s5r8ns"; 53711 - revision = "3"; 53712 - editedCabalFile = "16sajjm1fqrjjgdy651ff7hyj89di7ys9wk4qnm9h6nnpbr5krb1"; 53713 libraryHaskellDepends = [ 53714 base 53715 bytestring ··· 59448 pname = "align-audio"; 59449 version = "0.0.0.1"; 59450 sha256 = "1r1660igj6bmzhccw30vj0wsz7jjkd5k0vbr4nrcbpcwkxllshnb"; 59451 - revision = "2"; 59452 - editedCabalFile = "15hqn6q6991qp60pvykw3ryrcyqz94vhwcj1y28sxdpn5ga8mrl9"; 59453 isLibrary = false; 59454 isExecutable = true; 59455 executableHaskellDepends = [ ··· 69871 }: 69872 mkDerivation { 69873 pname = "amazonka-mtl"; 69874 - version = "0.1.1.1"; 69875 - sha256 = "19rcmfq5ly92jm96w5770286kihd5gsdc45rmpbkhm71xl2aa0pq"; 69876 libraryHaskellDepends = [ 69877 amazonka 69878 amazonka-core ··· 75709 }: 75710 mkDerivation { 75711 pname = "android-activity"; 75712 - version = "0.2.0.1"; 75713 - sha256 = "1pb250zsmh9z7h8wcqnqhbvhhdwwhmrwj8qr1w8053pxylsr5npn"; 75714 libraryHaskellDepends = [ 75715 base 75716 data-default ··· 76691 pname = "ansi-terminal-game"; 76692 version = "1.9.3.0"; 76693 sha256 = "1yy7hzdcawdmwl8wqzabbamzjdg260xbwryj0hdjn7b0n6qlqymk"; 76694 - revision = "2"; 76695 - editedCabalFile = "1gjaa3kj05v5zyjn27y17w05nx018bx28znj7r0al0c6267n0la8"; 76696 isLibrary = true; 76697 isExecutable = true; 76698 libraryHaskellDepends = [ ··· 78132 }: 78133 mkDerivation { 78134 pname = "aoc"; 78135 - version = "0.1.0.2"; 78136 - sha256 = "0x5lpirk74zf4283gpvmw71dv8mgil80l1awv42f8sfxg5nx805g"; 78137 libraryHaskellDepends = [ 78138 base 78139 containers ··· 83461 pname = "arithmoi"; 83462 version = "0.13.1.0"; 83463 sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; 83464 - revision = "1"; 83465 - editedCabalFile = "1q36pbxsz3vcig7gjr0m38bn5d34az2cjkhcag4n2ra86zdqrnvv"; 83466 configureFlags = [ "-f-llvm" ]; 83467 libraryHaskellDepends = [ 83468 array ··· 85093 } 85094 ) { }; 85095 85096 "asciichart" = callPackage ( 85097 { 85098 mkDerivation, ··· 88875 }: 88876 mkDerivation { 88877 pname = "attoparsec-framer"; 88878 - version = "0.1.0.9"; 88879 - sha256 = "0kh54qdzjqa7lxd8s679b3my5nsy55rwqwd84nblmfczi73bjc0p"; 88880 isLibrary = true; 88881 isExecutable = true; 88882 libraryHaskellDepends = [ ··· 88988 containers, 88989 deepseq, 88990 directory, 88991 filepath, 88992 ghc-prim, 88993 haddock-use-refs, ··· 88996 QuickCheck, 88997 quickcheck-unicode, 88998 scientific, 88999 tagged, 89000 tasty, 89001 tasty-bench, ··· 89008 }: 89009 mkDerivation { 89010 pname = "attoparsec-isotropic"; 89011 - version = "0.14.4"; 89012 - sha256 = "17rgqqkshn7pdyk54ac4vc3xs4p2kqh3mbd0ppsy7shyry7c1ahs"; 89013 libraryHaskellDepends = [ 89014 array 89015 base 89016 bytestring 89017 containers 89018 deepseq 89019 ghc-prim 89020 haddock-use-refs 89021 scientific 89022 tagged 89023 text 89024 trace-embrace ··· 89028 array 89029 base 89030 bytestring 89031 deepseq 89032 http-types 89033 QuickCheck 89034 quickcheck-unicode 89035 scientific 89036 tasty 89037 tasty-bench 89038 tasty-quickcheck ··· 89049 containers 89050 deepseq 89051 directory 89052 filepath 89053 ghc-prim 89054 http-types 89055 parsec 89056 scientific 89057 tasty-bench 89058 text 89059 transformers 89060 unordered-containers 89061 vector ··· 89453 pname = "audacity"; 89454 version = "0.0.2.2"; 89455 sha256 = "1glvk4mkq8j48s0xm86xb1l3xrb6m3cijcckdm48zq3pz7yg3hd8"; 89456 isLibrary = true; 89457 isExecutable = true; 89458 libraryHaskellDepends = [ ··· 90224 } 90225 ) { }; 90226 90227 "autodocodec-nix" = callPackage ( 90228 { 90229 mkDerivation, ··· 90394 } 90395 ) { }; 90396 90397 "autodocodec-swagger2" = callPackage ( 90398 { 90399 mkDerivation, ··· 90461 ]; 90462 description = "Autodocodec interpreters for yaml"; 90463 license = lib.licenses.mit; 90464 } 90465 ) { }; 90466 ··· 91934 } 91935 ) { }; 91936 91937 "aws-arn" = callPackage ( 91938 { 91939 mkDerivation, ··· 93762 }: 93763 mkDerivation { 93764 pname = "aws-spend-summary"; 93765 - version = "0.2.0.2"; 93766 - sha256 = "0zp9bdrhxl4z8fyjqcilndpj6qw5scs1byh1fzj8v9r4zzg59zsg"; 93767 isLibrary = true; 93768 isExecutable = true; 93769 libraryHaskellDepends = [ ··· 95451 microlens, 95452 microlens-th, 95453 mwc-random, 95454 - primitive, 95455 reflection, 95456 time, 95457 transformers, ··· 95460 }: 95461 mkDerivation { 95462 pname = "backprop"; 95463 - version = "0.2.6.5"; 95464 - sha256 = "0rc6dsf0zasl9vah8kv61qk2z7s644lzsrmkd7fwxwj1480kb482"; 95465 libraryHaskellDepends = [ 95466 base 95467 containers 95468 deepseq 95469 microlens 95470 - primitive 95471 reflection 95472 transformers 95473 vector ··· 96252 pname = "ban-instance"; 96253 version = "0.1.0.1"; 96254 sha256 = "0504qsjbqbrdf9avfrhs290baszc9dickx7wknbyxwrzpzzbpggk"; 96255 - revision = "4"; 96256 - editedCabalFile = "1ip2abbxnj2cwc3b0l88s0014zakx4g84ifnnaqq8rg6mcn5ppik"; 96257 libraryHaskellDepends = [ 96258 base 96259 template-haskell ··· 97685 pname = "base64-bytes"; 97686 version = "0.1.1.1"; 97687 sha256 = "0gvh2yg7mqwrswcq5p0h35bifsvm18cdvsjzazz37yrwan0i31vs"; 97688 libraryHaskellDepends = [ 97689 base 97690 byte-order ··· 97714 ]; 97715 description = "Base64 encoding of byte sequences"; 97716 license = lib.licenses.bsd3; 97717 - hydraPlatforms = lib.platforms.none; 97718 - broken = true; 97719 } 97720 ) { }; 97721 ··· 97785 pname = "base64-bytestring-type"; 97786 version = "1.0.1"; 97787 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 97788 - revision = "21"; 97789 - editedCabalFile = "1y3j1lkqlqw8l4p0g8s3iac0gd84nz3pqccrzfj7n23fp19zr1q3"; 97790 libraryHaskellDepends = [ 97791 aeson 97792 base ··· 99873 }: 99874 mkDerivation { 99875 pname = "beam-automigrate"; 99876 - version = "0.1.6.0"; 99877 - sha256 = "09pq0i3zb68ad20qznvf4kqf3y3zz0pjfi84g87rxay6y4sj6vi1"; 99878 isLibrary = true; 99879 isExecutable = true; 99880 libraryHaskellDepends = [ ··· 99974 }: 99975 mkDerivation { 99976 pname = "beam-core"; 99977 - version = "0.10.3.1"; 99978 - sha256 = "0n3fyjhcljd44ri7z3kb1sd3izv047v82m9n7597r7sbipv8cysc"; 99979 libraryHaskellDepends = [ 99980 aeson 99981 base ··· 100489 } 100490 ) { }; 100491 100492 "beam-th" = callPackage ( 100493 { 100494 mkDerivation, ··· 100718 }: 100719 mkDerivation { 100720 pname = "bech32"; 100721 - version = "1.1.8"; 100722 - sha256 = "0y9k93c5rxh0wjdyz4f1qpp6kljdbsrmy5appp4aqvwq2nqz9aas"; 100723 isLibrary = true; 100724 isExecutable = true; 100725 libraryHaskellDepends = [ ··· 100776 }: 100777 mkDerivation { 100778 pname = "bech32-th"; 100779 - version = "1.1.8"; 100780 - sha256 = "0dg79llv3rrakhskzpbs1qdwjn8i1whn1fn3xqkd9scmwh26a2n2"; 100781 libraryHaskellDepends = [ 100782 base 100783 bech32 ··· 102149 pname = "bhoogle"; 102150 version = "0.1.4.4"; 102151 sha256 = "1z19h0jgnipj16rqbrflcjnqaslafq9bvwkyg8q0il76q7s4wyxa"; 102152 - revision = "1"; 102153 - editedCabalFile = "182j2bc4cqddzv5vd2fkkyx2qs9ya7vg9r234xr5gyp35waln1i9"; 102154 isLibrary = false; 102155 isExecutable = true; 102156 executableHaskellDepends = [ ··· 111007 }: 111008 mkDerivation { 111009 pname = "blockfrost-api"; 111010 - version = "0.12.2.0"; 111011 - sha256 = "04w745ws2nf90yix2idd6shahqfi7mwx83j4divjrkfb57pd8v6p"; 111012 libraryHaskellDepends = [ 111013 aeson 111014 base ··· 111070 }: 111071 mkDerivation { 111072 pname = "blockfrost-client"; 111073 - version = "0.9.2.0"; 111074 - sha256 = "04q48afris70y4j4ya52kvj9n1iy8jqn6ygydp11idr15fpjj4qh"; 111075 isLibrary = true; 111076 isExecutable = true; 111077 libraryHaskellDepends = [ ··· 111242 } 111243 ) { }; 111244 111245 "blogination" = callPackage ( 111246 { 111247 mkDerivation, ··· 113624 pname = "boomwhacker"; 113625 version = "0.0.2"; 113626 sha256 = "0q5cq5j7dy1qm5jqpcl1imwiqqm0h21yvqwnvabsjnfrvfvryqg2"; 113627 - revision = "1"; 113628 - editedCabalFile = "0hwqdahpbinw9m7h05q0fhakj4w8mlvqz0ah6609x6wgb0dggmyb"; 113629 isLibrary = false; 113630 isExecutable = true; 113631 enableSeparateDataOutput = true; ··· 116865 pname = "brotli"; 116866 version = "0.0.0.2"; 116867 sha256 = "09y460adrq6cp9d8qlf8522yb0qc1vgjxv4d56kq2rdf9khqic6z"; 116868 libraryHaskellDepends = [ 116869 base 116870 bytestring ··· 116947 pname = "brotli-streams"; 116948 version = "0.0.0.0"; 116949 sha256 = "14jc1nhm50razsl99d95amdf4njf75dnzx8vqkihgrgp7qisyz3z"; 116950 - revision = "9"; 116951 - editedCabalFile = "1rhy0d1jy3v9r1skg3bdlnjj5avxy968ih1cyg9x9yb7rbyf3za5"; 116952 libraryHaskellDepends = [ 116953 base 116954 brotli ··· 118142 }: 118143 mkDerivation { 118144 pname = "bugsnag"; 118145 - version = "1.1.0.1"; 118146 - sha256 = "1n2lq9iyz5m0s1mx22cwaci18f9i37g6xgdq3nbbyysmylrw09w2"; 118147 isLibrary = true; 118148 isExecutable = true; 118149 libraryHaskellDepends = [ ··· 118175 } 118176 ) { }; 118177 118178 "bugsnag-haskell" = callPackage ( 118179 { 118180 mkDerivation, ··· 118303 }: 118304 mkDerivation { 118305 pname = "bugsnag-wai"; 118306 - version = "1.0.0.1"; 118307 - sha256 = "0f3x4m9nl277rhg2pwrja9xh6fffrwl2dm1cf3jiyngkrbrfck0w"; 118308 isLibrary = true; 118309 isExecutable = true; 118310 libraryHaskellDepends = [ ··· 119197 }: 119198 mkDerivation { 119199 pname = "burrito"; 119200 - version = "2.0.1.13"; 119201 - sha256 = "1bg3nd994xrwpirqn2hsbk831fralal946sac3ljslxjlvxar8v6"; 119202 libraryHaskellDepends = [ 119203 base 119204 bytestring ··· 120631 }: 120632 mkDerivation { 120633 pname = "byteslice"; 120634 - version = "0.2.14.0"; 120635 - sha256 = "0s9cnb7p1wr5vh3j95a952222xf2xzli451las5il3n04n4rxq1n"; 120636 libraryHaskellDepends = [ 120637 base 120638 bytestring ··· 122728 pname = "cabal-add"; 122729 version = "0.1"; 122730 sha256 = "1szbi0z8yf98641rwnj856gcfsvvflxwrfxraxy6rl60m7i0mab1"; 122731 - revision = "2"; 122732 - editedCabalFile = "1qb5xq7r68psc2dpp8wdfcfd1w4nls7xfla1fkc9vppd8zxmi87m"; 122733 isLibrary = true; 122734 isExecutable = true; 122735 libraryHaskellDepends = [ ··· 122765 } 122766 ) { }; 122767 122768 "cabal-appimage" = callPackage ( 122769 { 122770 mkDerivation, ··· 123132 }: 123133 mkDerivation { 123134 pname = "cabal-cargs"; 123135 - version = "1.6.0"; 123136 - sha256 = "1kn21l5w838db558nijblar6i3z5jkh12d6l1yccxmd70lrb39vv"; 123137 isLibrary = true; 123138 isExecutable = true; 123139 libraryHaskellDepends = [ ··· 123314 }: 123315 mkDerivation { 123316 pname = "cabal-debian"; 123317 - version = "5.2.5"; 123318 - sha256 = "0nkrvs1a9kj2nqz9pklxzni5wbirwgqim9haqn8lglqliycrdzbx"; 123319 isLibrary = true; 123320 isExecutable = true; 123321 libraryHaskellDepends = [ ··· 123762 pname = "cabal-flatpak"; 123763 version = "0.1.2"; 123764 sha256 = "05ig175b2glxppn5wr05pnncqkp8yhhy1m7ymmc1jk5pmiy3zvzi"; 123765 - revision = "1"; 123766 - editedCabalFile = "0fhwfjrq20zqh64cb0iv2civljacllgy3zqsyjlydmphs95v5hhv"; 123767 isLibrary = false; 123768 isExecutable = true; 123769 executableHaskellDepends = [ ··· 124659 } 124660 ) { }; 124661 124662 - "cabal-install-parsers_0_6_2" = callPackage ( 124663 { 124664 mkDerivation, 124665 aeson, ··· 124691 }: 124692 mkDerivation { 124693 pname = "cabal-install-parsers"; 124694 - version = "0.6.2"; 124695 - sha256 = "1362p021irm0kaz7n8gdjy1ppjk914zza114cmpm87ris0i1a9jn"; 124696 libraryHaskellDepends = [ 124697 aeson 124698 base ··· 125063 }: 125064 mkDerivation { 125065 pname = "cabal-plan"; 125066 - version = "0.7.5.0"; 125067 - sha256 = "0svvsh3ir9z1pdjbbhi8fkcqv66812hixnv18vifhcw0v8w94ymi"; 125068 configureFlags = [ "-fexe" ]; 125069 isLibrary = true; 125070 isExecutable = true; ··· 125553 pname = "cabal-sort"; 125554 version = "0.1.2.2"; 125555 sha256 = "1gyx5d485mzya147d7gwh0i9bkvdqxixrb80bfv5sn710p07bfdz"; 125556 isLibrary = false; 125557 isExecutable = true; 125558 executableHaskellDepends = [ ··· 126870 }: 126871 mkDerivation { 126872 pname = "cachix"; 126873 - version = "1.7.8"; 126874 - sha256 = "18vp2r0q6ibk5snsys7qh65vmshp4344z29pqdp8qfwzk5yqc3hc"; 126875 isLibrary = true; 126876 isExecutable = true; 126877 libraryHaskellDepends = [ ··· 127031 }: 127032 mkDerivation { 127033 pname = "cachix-api"; 127034 - version = "1.7.8"; 127035 - sha256 = "0rvmfwmgyn6jpivq45f5v5sg0s007ansjmizflxgiqn4sfqbkndr"; 127036 libraryHaskellDepends = [ 127037 aeson 127038 async ··· 131855 }: 131856 mkDerivation { 131857 pname = "cassava"; 131858 - version = "0.5.3.2"; 131859 - sha256 = "1jd9s10z2y3hizrpy3iaw2vvqmk342zxhwkky57ba39cbli5vlis"; 131860 revision = "1"; 131861 - editedCabalFile = "0xkqzvj5xd6d37gpf2rm9cp2p2lhkc3jgd0gvlmv99vcmy125rdj"; 131862 configureFlags = [ "-f-bytestring--lt-0_10_4" ]; 131863 libraryHaskellDepends = [ 131864 array ··· 132182 ) { }; 132183 132184 "cassette" = callPackage ( 132185 - { mkDerivation, base }: 132186 mkDerivation { 132187 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; 132195 } 132196 ) { }; 132197 ··· 132830 "cauldron" = callPackage ( 132831 { 132832 mkDerivation, 132833 - algebraic-graphs, 132834 base, 132835 - bytestring, 132836 containers, 132837 tasty, 132838 tasty-hunit, 132839 - text, 132840 transformers, 132841 }: 132842 mkDerivation { 132843 pname = "cauldron"; 132844 - version = "0.6.1.0"; 132845 - sha256 = "04anjjpjvj51x27mq9n2sc88v6398bz5ljzq049d879avl0i08sj"; 132846 isLibrary = true; 132847 isExecutable = true; 132848 libraryHaskellDepends = [ 132849 - algebraic-graphs 132850 base 132851 - bytestring 132852 containers 132853 - text 132854 ]; 132855 executableHaskellDepends = [ base ]; 132856 testHaskellDepends = [ 132857 - algebraic-graphs 132858 base 132859 containers 132860 tasty 132861 tasty-hunit 132862 - text 132863 transformers 132864 ]; 132865 description = "Dependency injection library"; 132866 license = lib.licenses.bsd3; 132867 mainProgram = "cauldron-example-wiring"; 132868 } 132869 ) { }; 132870 ··· 133244 pname = "cborg"; 133245 version = "0.2.10.0"; 133246 sha256 = "15y7p5rsv76fpklh4rgrxlxxaivpbchxdfdw96mqqjgw7060gzhp"; 133247 - revision = "2"; 133248 - editedCabalFile = "0m1ndq1a4yya5p7093lw3ynpcw2q74s73im0bhm9jp6a19cj88m5"; 133249 libraryHaskellDepends = [ 133250 array 133251 base ··· 133311 pname = "cborg-json"; 133312 version = "0.2.6.0"; 133313 sha256 = "1p6xdimwypmlsc0zdyw1vyyapnhwn2g8b9n0a83ca6h4r90722yv"; 133314 - revision = "3"; 133315 - editedCabalFile = "1dlmm5jyl8a8rxpkvr2dk5dlsvxrap3x4pbwnx4mg3q7sz25rs8r"; 133316 libraryHaskellDepends = [ 133317 aeson 133318 aeson-pretty ··· 136240 } 136241 ) { }; 136242 136243 - "chart-svg_0_8_0_3" = callPackage ( 136244 { 136245 mkDerivation, 136246 base, ··· 136264 }: 136265 mkDerivation { 136266 pname = "chart-svg"; 136267 - version = "0.8.0.3"; 136268 - sha256 = "0qvnxm90vka02pplz9fxncsplnsbxkh9xcp81wik0g795g7xkpsp"; 136269 libraryHaskellDepends = [ 136270 base 136271 bytestring ··· 147182 }: 147183 mkDerivation { 147184 pname = "co-log-concurrent"; 147185 - version = "0.5.1.0"; 147186 - sha256 = "07qmx9z03vmgq2cgz4352fsav7r1nx8n7svmrhg2lkdiyp0j7a59"; 147187 - revision = "3"; 147188 - editedCabalFile = "17pmkgly1882hbwa6b2qb0y1wh4x4nawhw1vl8fsy252caxkck0s"; 147189 libraryHaskellDepends = [ 147190 base 147191 co-log-core ··· 147193 ]; 147194 description = "Asynchronous backend for co-log library"; 147195 license = lib.licenses.mpl20; 147196 - hydraPlatforms = lib.platforms.none; 147197 - broken = true; 147198 } 147199 ) { }; 147200 ··· 147285 }: 147286 mkDerivation { 147287 pname = "co-log-json"; 147288 - version = "0.1.0.0"; 147289 - sha256 = "0212dcaw4anjn569a8gpv30k09b9lk99r70bbsh7kb8hb268rk83"; 147290 libraryHaskellDepends = [ 147291 aeson 147292 base ··· 147298 ]; 147299 description = "Structured messages support in co-log ecosystem"; 147300 license = lib.licenses.mpl20; 147301 - hydraPlatforms = lib.platforms.none; 147302 - broken = true; 147303 } 147304 ) { }; 147305 ··· 152522 }: 152523 mkDerivation { 152524 pname = "compactmap"; 152525 - version = "0.1.4.5"; 152526 - sha256 = "1xa4wa4qjd7yjghkaakpgrz9kw4iyy0zlc9cpajyysaxdq4k7czf"; 152527 libraryHaskellDepends = [ 152528 base 152529 vector ··· 156492 }: 156493 mkDerivation { 156494 pname = "conduit-extra"; 156495 - version = "1.3.7"; 156496 - sha256 = "0mrbaf4lrnczgn1kxjwpmzxk226wprw10y9xg621g74h4s36zgdj"; 156497 libraryHaskellDepends = [ 156498 async 156499 attoparsec ··· 156553 conduit, 156554 conduit-combinators, 156555 conduit-extra, 156556 - directory, 156557 - doctest, 156558 either, 156559 exceptions, 156560 filepath, ··· 156563 monad-control, 156564 mtl, 156565 regex-posix, 156566 semigroups, 156567 streaming-commons, 156568 text, 156569 time, 156570 transformers, 156571 transformers-base, 156572 unix, 156573 unix-compat, 156574 }: 156575 mkDerivation { 156576 pname = "conduit-find"; 156577 - version = "0.1.0.3"; 156578 - sha256 = "13gbpvqxs3k2vlsbdn0vr90z4y8kaz7hlw9bywyqd8jna3ff13a9"; 156579 isLibrary = true; 156580 isExecutable = true; 156581 libraryHaskellDepends = [ ··· 156591 monad-control 156592 mtl 156593 regex-posix 156594 semigroups 156595 streaming-commons 156596 text 156597 time 156598 transformers 156599 transformers-base 156600 unix-compat 156601 ]; 156602 executableHaskellDepends = [ 156603 attoparsec ··· 156612 monad-control 156613 mtl 156614 regex-posix 156615 semigroups 156616 streaming-commons 156617 text ··· 156619 transformers 156620 transformers-base 156621 unix 156622 ]; 156623 testHaskellDepends = [ 156624 attoparsec 156625 base 156626 conduit 156627 conduit-combinators 156628 - directory 156629 - doctest 156630 either 156631 exceptions 156632 filepath ··· 156635 monad-control 156636 mtl 156637 regex-posix 156638 semigroups 156639 streaming-commons 156640 text ··· 156642 transformers 156643 transformers-base 156644 unix-compat 156645 ]; 156646 description = "A file-finding conduit that allows user control over traversals"; 156647 license = lib.licenses.mit; ··· 161102 }: 161103 mkDerivation { 161104 pname = "control-block"; 161105 - version = "0.0.1"; 161106 - sha256 = "06l9s8inrdqp9z4zsd178rk3211zmhx4acwxq1py801lpb7vgn8v"; 161107 libraryHaskellDepends = [ 161108 base 161109 indexed-traversable ··· 161111 ]; 161112 description = "Higher-order functions with their function arguments at the end, for channeling the full power of BlockArguments and LambdaCase"; 161113 license = lib.licenses.bsd2; 161114 - hydraPlatforms = lib.platforms.none; 161115 - broken = true; 161116 } 161117 ) { }; 161118 ··· 161906 } 161907 ) { }; 161908 161909 "convexHullNd" = callPackage ( 161910 { 161911 mkDerivation, ··· 164460 pname = "countdown-numbers-game"; 164461 version = "0.0.0.1"; 164462 sha256 = "1warpkqimxjvqrm1jq4nbj3g3bz009alklqs46dh23p3lrgcif61"; 164463 isLibrary = false; 164464 isExecutable = true; 164465 executableHaskellDepends = [ ··· 167180 pname = "criterion"; 167181 version = "1.6.4.0"; 167182 sha256 = "0l9gxar759nskhm7gskr3j08bw8515amw6rr4n3zx3978dxg8aq6"; 167183 isLibrary = true; 167184 isExecutable = true; 167185 enableSeparateDataOutput = true; ··· 172223 } 172224 ) { inherit (pkgs) cudd; }; 172225 172226 "cue-sheet" = callPackage ( 172227 { 172228 mkDerivation, ··· 176662 } 176663 ) { }; 176664 176665 "data-default" = callPackage ( 176666 { 176667 mkDerivation, ··· 180568 }: 180569 mkDerivation { 180570 pname = "dataframe"; 180571 - version = "0.1.0.3"; 180572 - sha256 = "0p4syk43nz1b9x9fzm3hgrdgksjs3siqgczaf2bqmgrra61fw8nh"; 180573 isLibrary = true; 180574 isExecutable = true; 180575 libraryHaskellDepends = [ ··· 181759 } 181760 ) { }; 181761 181762 - "dbus_1_4_0" = callPackage ( 181763 { 181764 mkDerivation, 181765 base, ··· 181795 }: 181796 mkDerivation { 181797 pname = "dbus"; 181798 - version = "1.4.0"; 181799 - sha256 = "1rb5q8g0n3fj9b57wlds7ldji029fqym4dvpvq10hmn7qw313dz6"; 181800 libraryHaskellDepends = [ 181801 base 181802 bytestring ··· 183532 containers, 183533 hspec, 183534 markdown-unlit, 183535 text, 183536 vector, 183537 }: 183538 mkDerivation { 183539 pname = "debug-print"; 183540 - version = "0.2.0.1"; 183541 - sha256 = "1bcdmnkxcyicw4f57vlx64iyfj3lwz1157s89k4gdyk3ilc2x8g4"; 183542 libraryHaskellDepends = [ 183543 aeson 183544 base 183545 containers 183546 text 183547 vector 183548 ]; ··· 183865 pname = "decimal-literals"; 183866 version = "0.1.0.1"; 183867 sha256 = "0lbpnc4c266fbqjzzrnig648zzsqfaphlxqwyly9xd15qggzasb0"; 183868 - revision = "3"; 183869 - editedCabalFile = "1650vnqwjsqg2mghsvghiyzg5qqbz36vibkq8614adhyjpcd3w07"; 183870 libraryHaskellDepends = [ base ]; 183871 testHaskellDepends = [ 183872 base ··· 184304 } 184305 ) { }; 184306 184307 - "deepseq_1_5_1_0" = callPackage ( 184308 { 184309 mkDerivation, 184310 base, ··· 184312 }: 184313 mkDerivation { 184314 pname = "deepseq"; 184315 - version = "1.5.1.0"; 184316 - sha256 = "0yz1b3c4fpa1pknwd64fba37wbr7mxzawd0han2ifq70mgiqfkiz"; 184317 libraryHaskellDepends = [ 184318 base 184319 ghc-prim ··· 185477 pname = "deltaq"; 185478 version = "1.0.0.0"; 185479 sha256 = "00zpvwxar13rq84li7j21ycapdnyx128cs2yqvn6hwnrr8w25w9d"; 185480 libraryHaskellDepends = [ 185481 base 185482 Chart ··· 190552 pname = "diagrams-builder"; 190553 version = "0.8.0.6"; 190554 sha256 = "17yi5dmcxx4sgk3wha386zbv9h69pwq72j8i21vmfh35brxhs9f4"; 190555 - revision = "2"; 190556 - editedCabalFile = "1mkxn0r6wmxyvdhwly1a6j0z4j234mfv7aimirwl7jmcv55lwbs4"; 190557 configureFlags = [ 190558 "-fcairo" 190559 "-fps" ··· 190658 } 190659 ) { }; 190660 190661 - "diagrams-cairo_1_4_3" = callPackage ( 190662 { 190663 mkDerivation, 190664 array, ··· 190685 }: 190686 mkDerivation { 190687 pname = "diagrams-cairo"; 190688 - version = "1.4.3"; 190689 - sha256 = "0irj7jigi9dfprjilndyx0kwg7vjpbhrsxhlsqc8n1sy1b4s2aha"; 190690 libraryHaskellDepends = [ 190691 array 190692 base ··· 190780 pname = "diagrams-canvas"; 190781 version = "1.4.2"; 190782 sha256 = "0ns1xmgcjqig7qld7r77rbcrk779cmzj7xfqj6a7sbdci3in2dgm"; 190783 - revision = "1"; 190784 - editedCabalFile = "08pm7i10k7a046jjrdbzhmlrv05wp171mblgs8y18m6vc8hw87v6"; 190785 libraryHaskellDepends = [ 190786 base 190787 blank-canvas ··· 190919 pname = "diagrams-contrib"; 190920 version = "1.4.6"; 190921 sha256 = "1x5z361xmqfa503brmf0zwyq3lldm9kgixx90v14s4dsz52my46k"; 190922 - revision = "1"; 190923 - editedCabalFile = "00zgzy7b3vkjd0f22hbp2lknwl1x5nd6d1ng30wq4qlncwdxqkpz"; 190924 libraryHaskellDepends = [ 190925 base 190926 circle-packing ··· 191031 }: 191032 mkDerivation { 191033 pname = "diagrams-gi-cairo"; 191034 - version = "1.4.2"; 191035 - sha256 = "0k6fw1vvqa4pra4czd90n7i7h1vf6hn08a4jip1xbqkf57d89bn6"; 191036 - revision = "1"; 191037 - editedCabalFile = "1r1ph8nc7xgh3by63dsamkvhi6bvw1bgvhnc8f664iiziaj9p08a"; 191038 libraryHaskellDepends = [ 191039 array 191040 base ··· 191106 pname = "diagrams-gtk"; 191107 version = "1.4"; 191108 sha256 = "1sga2wwkircjgryd4pn9i0wvvcnh3qnhpxas32crpdq939idwsxn"; 191109 - revision = "6"; 191110 - editedCabalFile = "0fiv5w3pk8rbj6d28qyay13h25px7fs1flzqdriz1n74f6prnj98"; 191111 libraryHaskellDepends = [ 191112 base 191113 cairo ··· 191117 ]; 191118 description = "Backend for rendering diagrams directly to GTK windows"; 191119 license = lib.licenses.bsd3; 191120 - hydraPlatforms = lib.platforms.none; 191121 - broken = true; 191122 } 191123 ) { }; 191124 ··· 191591 pname = "diagrams-lib"; 191592 version = "1.5"; 191593 sha256 = "0gp9k6cfc62j6rlfiziig6j5shf05d0vbcvss40rzjk8qi012i11"; 191594 - revision = "1"; 191595 - editedCabalFile = "092pidlcpqxrjqjmpwgiznqkjzz1qwbkxb8526k2gi7n1zy2bw3v"; 191596 libraryHaskellDepends = [ 191597 active 191598 adjunctions ··· 191676 }: 191677 mkDerivation { 191678 pname = "diagrams-pandoc"; 191679 - version = "0.4"; 191680 - sha256 = "164f0k1jk8p604h31wypy2z2jy5x0gfbkbmmrd64c9jp7j71iyc4"; 191681 isLibrary = true; 191682 isExecutable = true; 191683 libraryHaskellDepends = [ ··· 191722 ]; 191723 description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; 191724 license = lib.licenses.bsd3; 191725 - hydraPlatforms = lib.platforms.none; 191726 mainProgram = "diagrams-pandoc"; 191727 - broken = true; 191728 } 191729 ) { }; 191730 ··· 191798 pname = "diagrams-pgf"; 191799 version = "1.5"; 191800 sha256 = "13zm00ayyk6gvlh4l2wdmrdqic386v69i3krylgvrajhdsd050al"; 191801 libraryHaskellDepends = [ 191802 base 191803 bytestring ··· 191888 pname = "diagrams-postscript"; 191889 version = "1.5.2"; 191890 sha256 = "08kqhnd5r60kisjraypwjfcri1v4f32rf14js413871pgic4rhy5"; 191891 - revision = "1"; 191892 - editedCabalFile = "0ndvf9nhvgwvwnc0k9in3n83l3jif1nzsyyrmpk5plif590hj1zp"; 191893 libraryHaskellDepends = [ 191894 base 191895 bytestring ··· 192013 pname = "diagrams-rasterific"; 192014 version = "1.5"; 192015 sha256 = "02bq6819a8xxa20kggmg9j5wa72zh4gbcvbpv1b1pzbg57bp2s8k"; 192016 libraryHaskellDepends = [ 192017 base 192018 bytestring ··· 192075 ]; 192076 description = "reflex backend for diagrams drawing EDSL"; 192077 license = lib.licenses.bsd3; 192078 - hydraPlatforms = lib.platforms.none; 192079 } 192080 ) { }; 192081 ··· 192211 pname = "diagrams-svg"; 192212 version = "1.5"; 192213 sha256 = "1g11fvcgx99xg71c9sd6m7pfclnzcfx72alcx3avlb4qzz56wn52"; 192214 libraryHaskellDepends = [ 192215 base 192216 base64-bytestring ··· 195478 }: 195479 mkDerivation { 195480 pname = "discord-haskell"; 195481 - version = "1.17.1"; 195482 - sha256 = "1lw1n8m297ad0rcbn48ysg85l35sg5bh3gwbnm2698cd051b4yad"; 195483 isLibrary = true; 195484 isExecutable = true; 195485 libraryHaskellDepends = [ ··· 195516 ]; 195517 description = "Write bots for Discord in Haskell"; 195518 license = lib.licenses.mit; 195519 - hydraPlatforms = lib.platforms.none; 195520 - broken = true; 195521 } 195522 ) { }; 195523 ··· 200287 } 200288 ) { }; 200289 200290 - "doctest_0_24_0" = callPackage ( 200291 { 200292 mkDerivation, 200293 base, ··· 200314 }: 200315 mkDerivation { 200316 pname = "doctest"; 200317 - version = "0.24.0"; 200318 - sha256 = "1cylb84kmlw7a38xnfyx0sxcpgahmfm7bsbv0vf2x3slsgz597kx"; 200319 isLibrary = true; 200320 isExecutable = true; 200321 libraryHaskellDepends = [ ··· 200489 }: 200490 mkDerivation { 200491 pname = "doctest-exitcode-stdio"; 200492 - version = "0.0"; 200493 - sha256 = "1g3c7yrqq2mwqbmvs8vkx1a3cf0p0x74b7fnn344dsk7bsfpgv0x"; 200494 - revision = "2"; 200495 - editedCabalFile = "0gfnxkbm126m0d4pnqgl5ca6ab8x5p1vpbxjxgz1sxczablsmk5b"; 200496 libraryHaskellDepends = [ 200497 base 200498 doctest-lib ··· 200522 pname = "doctest-extract"; 200523 version = "0.1.2"; 200524 sha256 = "1dizs0r9pdankbv5ijfgqva5ha8p5xxl7x8y1sjql6h7ch8pz0p6"; 200525 isLibrary = false; 200526 isExecutable = true; 200527 executableHaskellDepends = [ ··· 200639 } 200640 ) { }; 200641 200642 "doctest-prop" = callPackage ( 200643 { 200644 mkDerivation, ··· 201141 }: 201142 mkDerivation { 201143 pname = "dollaridoos"; 201144 - version = "0.1.0.0"; 201145 - sha256 = "1pipbyfpny8mq540rpfkgkwbc3mc13yf6xm1h9vxm0fnaa8kcbw9"; 201146 libraryHaskellDepends = [ 201147 base 201148 profunctors ··· 201263 ]; 201264 description = "Simple monadic DOM parser"; 201265 license = lib.licenses.mit; 201266 - hydraPlatforms = lib.platforms.none; 201267 - broken = true; 201268 } 201269 ) { }; 201270 ··· 202391 }: 202392 mkDerivation { 202393 pname = "double-x-encoding"; 202394 - version = "1.2.1"; 202395 - sha256 = "0sg8sh9a1krzfhdwxcd3ja56kzr6hif11s4iqicrdqz3qgi905ia"; 202396 libraryHaskellDepends = [ 202397 base 202398 Cabal-syntax ··· 202405 ]; 202406 description = "Encoding scheme to encode any Unicode string with only [0-9a-zA-Z_]"; 202407 license = lib.licenses.isc; 202408 - hydraPlatforms = lib.platforms.none; 202409 - broken = true; 202410 } 202411 ) { }; 202412 ··· 204970 pname = "dumb-cas"; 204971 version = "0.2.1.1"; 204972 sha256 = "0rqh1sy500gbgqr69z220yb8g7gp117z0iw1kly9zxqhrzn3sv9f"; 204973 - revision = "1"; 204974 - editedCabalFile = "031hcc34r20gpvsicllwcvvzirx2bm5nsdabp75a0m05rj3wzmvv"; 204975 libraryHaskellDepends = [ 204976 base 204977 containers ··· 204987 ]; 204988 description = "A computer “algebra” system that knows nothing about algebra, at the core"; 204989 license = lib.licenses.gpl3Only; 204990 - hydraPlatforms = lib.platforms.none; 204991 - broken = true; 204992 } 204993 ) { }; 204994 ··· 205706 }: 205707 mkDerivation { 205708 pname = "dwergaz"; 205709 - version = "0.3.0.2"; 205710 - sha256 = "0849adznjgfg4z1llq5kfwi3ypjj9bj1jw7anax6g86izzvs75jj"; 205711 libraryHaskellDepends = [ 205712 base 205713 pretty ··· 209173 }: 209174 mkDerivation { 209175 pname = "effect-stack"; 209176 - version = "0.3"; 209177 - sha256 = "08zalj8svp78ykqbf5nhd6khgygz8dplcvjd19w3hvgm08y4kxqi"; 209178 libraryHaskellDepends = [ 209179 base 209180 constraints ··· 209183 ]; 209184 description = "Reducing the pain of transformer stacks with duplicated effects"; 209185 license = lib.licenses.bsd3; 209186 - hydraPlatforms = lib.platforms.none; 209187 - broken = true; 209188 } 209189 ) { }; 209190 ··· 209254 } 209255 ) { }; 209256 209257 "effectful-core" = callPackage ( 209258 { 209259 mkDerivation, ··· 209287 } 209288 ) { }; 209289 209290 "effectful-plugin" = callPackage ( 209291 { 209292 mkDerivation, ··· 209313 ]; 209314 description = "A GHC plugin for improving disambiguation of effects"; 209315 license = lib.licenses.bsd3; 209316 } 209317 ) { }; 209318 ··· 210247 profunctors, 210248 QuickCheck, 210249 semigroupoids, 210250 - test-framework, 210251 - test-framework-quickcheck2, 210252 }: 210253 mkDerivation { 210254 pname = "either"; 210255 - version = "5.0.2"; 210256 - sha256 = "1gl748ia68bldbqb2fl7vjv44g0y8ivn659fjmy1qyypgyb5p95z"; 210257 - revision = "2"; 210258 - editedCabalFile = "1lx6ls938vssg75ib2fr1ww4nsig2rkhjc6x57yfinx1yb9r62vz"; 210259 libraryHaskellDepends = [ 210260 base 210261 bifunctors ··· 210266 testHaskellDepends = [ 210267 base 210268 QuickCheck 210269 - test-framework 210270 - test-framework-quickcheck2 210271 ]; 210272 description = "Combinators for working with sums"; 210273 license = lib.licenses.bsd3; ··· 210612 mkDerivation, 210613 base, 210614 containers, 210615 text, 210616 unordered-containers, 210617 }: 210618 mkDerivation { 210619 pname = "ekg-core"; 210620 - version = "0.1.1.8"; 210621 - sha256 = "028c3g1fz0rfxpfn98wxxmklnxx3szwvjxl9n9ls2w011vqslvia"; 210622 - revision = "1"; 210623 - editedCabalFile = "1lwss6aha8bjmjb3xji58jznca7k7nss76qva5pihgb20j7xs7vi"; 210624 libraryHaskellDepends = [ 210625 base 210626 containers 210627 text 210628 unordered-containers 210629 ]; ··· 216854 }: 216855 mkDerivation { 216856 pname = "erebos-tester"; 216857 - version = "0.3.2"; 216858 - sha256 = "0m3fi03q0l55r6amxcq0l01sqcg8m6hqbx1zhdaq75s3yyx4wb71"; 216859 isLibrary = false; 216860 isExecutable = true; 216861 executableHaskellDepends = [ ··· 217766 } 217767 ) { }; 217768 217769 "ersatz-toysat" = callPackage ( 217770 { 217771 mkDerivation, ··· 220820 }: 220821 mkDerivation { 220822 pname = "eventlog2html"; 220823 - version = "0.11.1"; 220824 - sha256 = "1rfyw285g48c7dck8kjykx9n4brw7ngm275n64g1wwwkm4ybn43n"; 220825 - revision = "1"; 220826 - editedCabalFile = "0kxb0990f8x394j2l7y5y2xz43lqdlm4bc6gihfqnkc6w5qsqhji"; 220827 isLibrary = true; 220828 isExecutable = true; 220829 libraryHaskellDepends = [ ··· 222220 } 222221 ) { }; 222222 222223 - "exceptions_0_10_9" = callPackage ( 222224 { 222225 mkDerivation, 222226 base, 222227 mtl, 222228 QuickCheck, 222229 stm, 222230 template-haskell, 222231 - test-framework, 222232 - test-framework-hunit, 222233 - test-framework-quickcheck2, 222234 transformers, 222235 }: 222236 mkDerivation { 222237 pname = "exceptions"; 222238 - version = "0.10.9"; 222239 - sha256 = "0h5y2rqg7kz4ic59n5i7619766mzfpqcdill3l712nihs3q2nk4v"; 222240 - revision = "1"; 222241 - editedCabalFile = "11p0d1gd3ybgbyplhr18wy2k7cy3hf6ab288ymy3ddayc4a927k6"; 222242 libraryHaskellDepends = [ 222243 base 222244 mtl ··· 222251 mtl 222252 QuickCheck 222253 stm 222254 template-haskell 222255 - test-framework 222256 - test-framework-hunit 222257 - test-framework-quickcheck2 222258 transformers 222259 ]; 222260 description = "Extensible optionally-pure exceptions"; ··· 223438 }: 223439 mkDerivation { 223440 pname = "exotic-list-monads"; 223441 - version = "1.1.1"; 223442 - sha256 = "063nmcqp9swzmhbdbdvl63kll1mqw3gywwrzx64s5hdk893rzkrf"; 223443 libraryHaskellDepends = [ base ]; 223444 testHaskellDepends = [ 223445 base ··· 223450 testToolDepends = [ hspec-discover ]; 223451 description = "Non-standard monads on lists and non-empty lists"; 223452 license = lib.licenses.mit; 223453 } 223454 ) { }; 223455 ··· 224609 }: 224610 mkDerivation { 224611 pname = "extended-reals"; 224612 - version = "0.2.6.0"; 224613 - sha256 = "0cy5fb6b9kidxqadpymy0pqvswlsqxwxqqhfx9di1l66ynks2b6z"; 224614 libraryHaskellDepends = [ 224615 base 224616 deepseq ··· 227092 }: 227093 mkDerivation { 227094 pname = "fast-logger"; 227095 - version = "3.2.5"; 227096 - sha256 = "0cddv18k0n1hdbjf0szqq7pl5r0h4srzxy8pmr66a4pc1w410lii"; 227097 libraryHaskellDepends = [ 227098 array 227099 auto-update ··· 228555 }: 228556 mkDerivation { 228557 pname = "fbrnch"; 228558 - version = "1.6.2"; 228559 - sha256 = "0yqpxma3qgdkacbabaffz0498phl79yvn2pbhn10gb6f18lzxcsf"; 228560 isLibrary = false; 228561 isExecutable = true; 228562 executableHaskellDepends = [ ··· 229609 } 229610 ) { }; 229611 229612 "fedora-repoquery" = callPackage ( 229613 { 229614 mkDerivation, ··· 229630 }: 229631 mkDerivation { 229632 pname = "fedora-repoquery"; 229633 - version = "0.7.2"; 229634 - sha256 = "0glmc6fqcw7r400nczlnalbdp98ddvvywrxng9jz5y7bindy1vh7"; 229635 isLibrary = false; 229636 isExecutable = true; 229637 executableHaskellDepends = [ ··· 232470 pname = "filepath"; 232471 version = "1.5.4.0"; 232472 sha256 = "1bswvf1hrsslb8xlwvsccz12h5habrdpqq4zgcyjg4zm6b28dajl"; 232473 libraryHaskellDepends = [ 232474 base 232475 bytestring ··· 232732 pname = "filestore"; 232733 version = "0.6.5"; 232734 sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; 232735 - revision = "2"; 232736 - editedCabalFile = "1m6qi647v475gcim8nfb6cgahhc99rszc8k1z2mpzm797qxg9xbs"; 232737 libraryHaskellDepends = [ 232738 base 232739 bytestring ··· 233622 }: 233623 mkDerivation { 233624 pname = "finite"; 233625 - version = "1.4.1.2"; 233626 - sha256 = "10hnqz4klgrpfbvla07h8yghpv22bsyijf0cibfzwl9j779vb4nc"; 233627 libraryHaskellDepends = [ 233628 array 233629 base ··· 238635 QuickCheck, 238636 quickcheck-instances, 238637 tagged, 238638 tasty-bench, 238639 - test-framework, 238640 - test-framework-quickcheck2, 238641 transformers, 238642 }: 238643 mkDerivation { 238644 pname = "foldable1-classes-compat"; 238645 - version = "0.1.1"; 238646 - sha256 = "17xmc3525crnd86rrl2c50rfnhibwh5xbqrnmvzvyns4d3l4vvdg"; 238647 - revision = "2"; 238648 - editedCabalFile = "0m1cd2g2f2983nb9h4d3amq058k2yri6hbh5v026y5lxhg9fq0i8"; 238649 libraryHaskellDepends = [ 238650 base 238651 ghc-prim ··· 238656 containers 238657 QuickCheck 238658 quickcheck-instances 238659 - test-framework 238660 - test-framework-quickcheck2 238661 transformers 238662 ]; 238663 benchmarkHaskellDepends = [ ··· 240593 }: 240594 mkDerivation { 240595 pname = "fortran-src"; 240596 - version = "0.16.5"; 240597 - sha256 = "1adqczpb1d2zclgvg03z3izcmmncgxj7bff9zz5p8zc77v8865m4"; 240598 isLibrary = true; 240599 isExecutable = true; 240600 libraryHaskellDepends = [ ··· 242435 }: 242436 mkDerivation { 242437 pname = "freckle-app"; 242438 - version = "1.23.1.0"; 242439 - sha256 = "0ik1ay4vm0qw5jg1zvbdfl1p0gxawlrah9lphg9y2cqq48yj4zql"; 242440 libraryHaskellDepends = [ 242441 aeson 242442 annotated-exception ··· 242677 }: 242678 mkDerivation { 242679 pname = "freckle-http"; 242680 - version = "0.1.0.0"; 242681 - sha256 = "1a8isx1z9injzmbcfj19i4m8cccbl754chx8ayxww76ahd1s6v81"; 242682 libraryHaskellDepends = [ 242683 aeson 242684 annotated-exception ··· 243796 pname = "free-vector-spaces"; 243797 version = "0.1.5.2"; 243798 sha256 = "0p0flpai3n9ism9dd3kyf1fa8s8rpb4cc00m3bplb9s8zb6aghpb"; 243799 - revision = "2"; 243800 - editedCabalFile = "1jlaljmfhsb4yb8iqmw1zaa3kkiayg6li6bk04a3camh2jc8k22m"; 243801 libraryHaskellDepends = [ 243802 base 243803 lens ··· 245403 }: 245404 mkDerivation { 245405 pname = "fs-api"; 245406 - version = "0.3.0.1"; 245407 - sha256 = "0yjfldwmxqg4fgcymyb9bb9axwsfsnldnxxfmk54spkmiab8kr49"; 245408 - revision = "1"; 245409 - editedCabalFile = "17z9clqfs0hm8jl2hdgk0jqvjdxm8i4lk0av489nhsj2qp6ikvmy"; 245410 libraryHaskellDepends = [ 245411 base 245412 bytestring ··· 245434 ]; 245435 description = "Abstract interface for the file system"; 245436 license = lib.licenses.asl20; 245437 - hydraPlatforms = lib.platforms.none; 245438 - broken = true; 245439 } 245440 ) { }; 245441 ··· 245461 bifunctors, 245462 bytestring, 245463 containers, 245464 fs-api, 245465 generics-sop, 245466 io-classes, ··· 245479 }: 245480 mkDerivation { 245481 pname = "fs-sim"; 245482 - version = "0.3.1.0"; 245483 - sha256 = "0qq7fc9b37haz2dcywyxhkszy58i3fr7z8nyrrp16x46v5cs6jwq"; 245484 - revision = "1"; 245485 - editedCabalFile = "1pbpi5hngw723z2nr9zwp9rzfxh1p1q8jk8ln01brm7xf3kkq2pb"; 245486 libraryHaskellDepends = [ 245487 base 245488 base16-bytestring ··· 245501 bifunctors 245502 bytestring 245503 containers 245504 fs-api 245505 generics-sop 245506 io-classes ··· 245517 ]; 245518 description = "Simulated file systems"; 245519 license = lib.licenses.asl20; 245520 - hydraPlatforms = lib.platforms.none; 245521 } 245522 ) { }; 245523 ··· 246985 }: 246986 mkDerivation { 246987 pname = "functor-combinators"; 246988 - version = "0.4.1.3"; 246989 - sha256 = "0123y4n01rga8kb86w74hzjwvz8jfr15c1abkrrngacp60bd25rl"; 246990 libraryHaskellDepends = [ 246991 assoc 246992 base ··· 247031 ]; 247032 description = "Tools for functor combinator-based program design"; 247033 license = lib.licenses.bsd3; 247034 - hydraPlatforms = lib.platforms.none; 247035 - broken = true; 247036 } 247037 ) { }; 247038 ··· 249083 }: 249084 mkDerivation { 249085 pname = "fxpak"; 249086 - version = "0.1.2"; 249087 - sha256 = "1mrpbz32aczrh5aw550p1vzvj8zqhcnmj574sc012r3z1c0g1cin"; 249088 libraryHaskellDepends = [ 249089 base 249090 bytestring ··· 249092 ]; 249093 description = "Interface to the FXPak/FXPak Pro USB interface"; 249094 license = lib.licenses.bsd3; 249095 - hydraPlatforms = lib.platforms.none; 249096 - broken = true; 249097 } 249098 ) { }; 249099 ··· 252083 pname = "generic-aeson"; 252084 version = "0.2.0.14"; 252085 sha256 = "0ssras2db9fqgyfhhw2pk827xf4dd4g9s9vwj8g85vaqxyvzyd8x"; 252086 libraryHaskellDepends = [ 252087 aeson 252088 attoparsec ··· 252096 ]; 252097 description = "Derivation of Aeson instances using GHC generics"; 252098 license = lib.licenses.bsd3; 252099 - hydraPlatforms = lib.platforms.none; 252100 - broken = true; 252101 } 252102 ) { }; 252103 ··· 252486 { mkDerivation, base }: 252487 mkDerivation { 252488 pname = "generic-enumeration"; 252489 - version = "0.1.0.3"; 252490 - sha256 = "02ywn0byg4g42hl28mqc07jifj48jxzmnjm4plfdz4pnxs40kwzg"; 252491 libraryHaskellDepends = [ base ]; 252492 description = "Generically derived enumerations"; 252493 license = lib.licenses.mit; ··· 252656 pname = "generic-lens-lite"; 252657 version = "0.1.1"; 252658 sha256 = "1ldc13g7l5jjgca80c2hymkbgq9pf8b5j4x3dr83kz6wq2p76q12"; 252659 libraryHaskellDepends = [ base ]; 252660 testHaskellDepends = [ base ]; 252661 description = "Monomorphic field lens like with generic-lens"; ··· 252667 { mkDerivation, base }: 252668 mkDerivation { 252669 pname = "generic-lexicographic-order"; 252670 - version = "0.1.0.0"; 252671 - sha256 = "096c1fan7isxynyk968llm3p204kgcmh8xp4krnmspz0xvcn7sh0"; 252672 libraryHaskellDepends = [ base ]; 252673 testHaskellDepends = [ base ]; 252674 description = "Derive Bounded and Enum for sum types and Enum for product types"; ··· 252845 pname = "generic-optics-lite"; 252846 version = "0.1.1"; 252847 sha256 = "1dd2dw72fyyimnyq8bw57k7lbh0lnjipvk08dyj87h357ykjv3ql"; 252848 libraryHaskellDepends = [ 252849 base 252850 generic-lens-lite ··· 254849 ]; 254850 description = "GenValidity support for URI"; 254851 license = lib.licenses.mit; 254852 - hydraPlatforms = lib.platforms.none; 254853 - broken = true; 254854 } 254855 ) { }; 254856 ··· 256507 } 256508 ) { }; 256509 256510 - "ghc_9_12_1" = 256511 callPackage 256512 ( 256513 { ··· 256541 }: 256542 mkDerivation { 256543 pname = "ghc"; 256544 - version = "9.12.1"; 256545 - sha256 = "179gp0lqrxhvzc0pyxwmkvxpilm6c201s1pjws3dl8qqyddliiqs"; 256546 setupHaskellDepends = [ 256547 base 256548 Cabal ··· 257217 }: 257218 mkDerivation { 257219 pname = "ghc-debugger"; 257220 - version = "0.2.0.0"; 257221 - sha256 = "0k02y36kz9412i0fk9vvdidcyc5qh0cq47jbgk78i8c7276dm4j3"; 257222 isLibrary = true; 257223 isExecutable = true; 257224 libraryHaskellDepends = [ ··· 257228 binary 257229 bytestring 257230 containers 257231 exceptions 257232 filepath 257233 ghc 257234 ghci 257235 mtl 257236 process 257237 unix ··· 258123 } 258124 ) { }; 258125 258126 "ghc-hotswap" = callPackage ( 258127 { 258128 mkDerivation, ··· 259807 }: 259808 mkDerivation { 259809 pname = "ghc-prof"; 259810 - version = "1.4.1.13"; 259811 - sha256 = "0g85216s10pm515wi0dl95znq3vdac3zvagizg8vy82zfmsgxwcp"; 259812 isLibrary = true; 259813 isExecutable = true; 259814 libraryHaskellDepends = [ ··· 260654 base, 260655 containers, 260656 ghc, 260657 transformers, 260658 }: 260659 mkDerivation { 260660 pname = "ghc-tcplugin-api"; 260661 - version = "0.14.0.0"; 260662 - sha256 = "089lw1gjxrk54s1agl5gxkwg49368z6i6m260snz05nfia4m7fak"; 260663 libraryHaskellDepends = [ 260664 base 260665 containers 260666 ghc 260667 transformers 260668 ]; 260669 description = "An API for type-checker plugins"; ··· 261489 } 261490 ) { }; 261491 261492 "ghcid" = callPackage ( 261493 { 261494 mkDerivation, ··· 261896 }: 261897 mkDerivation { 261898 pname = "ghcitui"; 261899 - version = "0.4.1.0"; 261900 - sha256 = "05c9s43qhzxc280xycicwrm95kl1jpz14pzlcnv0a29i8589gpdz"; 261901 isLibrary = true; 261902 isExecutable = true; 261903 libraryHaskellDepends = [ ··· 261969 { mkDerivation }: 261970 mkDerivation { 261971 pname = "ghcjs-base"; 261972 - version = "0.8.0.3"; 261973 - sha256 = "1cff0sgcwdas30dgxg9mdab5rk0s1v2qkkb9cr47dl3d5wmc4add"; 261974 description = "base library for GHCJS"; 261975 license = lib.licenses.mit; 261976 platforms = [ "javascript-ghcjs" ]; ··· 262755 pname = "ghostscript-parallel"; 262756 version = "0.0.1"; 262757 sha256 = "1sja6nhp8p9h2z0yr5qwxd8d59zzpb11ybmsbargza6ddaplpxny"; 262758 isLibrary = false; 262759 isExecutable = true; 262760 executableHaskellDepends = [ ··· 264011 }: 264012 mkDerivation { 264013 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 version = "2.0.38"; 264060 sha256 = "12bmpafy5w85y7mzww0l5ilimbdmaabpxz7ry9sacg37kjm3kidf"; 264061 setupHaskellDepends = [ ··· 264080 libraryPkgconfigDepends = [ glib ]; 264081 description = "Gio bindings"; 264082 license = lib.licenses.lgpl21Only; 264083 - hydraPlatforms = lib.platforms.none; 264084 } 264085 ) { inherit (pkgs) glib; }; 264086 ··· 265129 } 265130 ) { inherit (pkgs) gtk4; }; 265131 265132 "gi-gtkosxapplication" = callPackage ( 265133 { 265134 mkDerivation, ··· 266539 }: 266540 mkDerivation { 266541 pname = "gi-webkit"; 266542 - version = "6.0.4"; 266543 - sha256 = "0cabpym4p654psrck548wpkdf43wbm8zn0r2lrqiijx72f6xwij5"; 266544 setupHaskellDepends = [ 266545 base 266546 Cabal ··· 267143 pname = "ginger"; 267144 version = "0.10.6.0"; 267145 sha256 = "0j5arz8x2ksbcwy5iq8p7pzy71rl0nhadlv2d6933ibdgvzbsb7j"; 267146 isLibrary = true; 267147 isExecutable = true; 267148 enableSeparateDataOutput = true; ··· 267203 } 267204 ) { }; 267205 267206 "gingersnap" = callPackage ( 267207 { 267208 mkDerivation, ··· 267727 }: 267728 mkDerivation { 267729 pname = "git-annex"; 267730 - version = "10.20250520"; 267731 - sha256 = "15qb4pm3chhb5x0halx5qd4s1rcbci1q22sskm0mw4xjn2yfhc99"; 267732 configureFlags = [ 267733 "-fassistant" 267734 "-f-benchmark" ··· 269183 } 269184 ) { }; 269185 269186 "github-app-token" = callPackage ( 269187 { 269188 mkDerivation, ··· 278547 }: 278548 mkDerivation { 278549 pname = "gothic"; 278550 - version = "0.1.8.2"; 278551 - sha256 = "1mqkkla4ipibp7y7aiy466qrqcapra4n2xx8an07c1inwkpsxzw1"; 278552 libraryHaskellDepends = [ 278553 aeson 278554 base ··· 279307 }: 279308 mkDerivation { 279309 pname = "gpu-vulkan-middle"; 279310 - version = "0.1.0.75"; 279311 - sha256 = "1m22f7p78pwpipkvlsg95izivhz4z2cxiww4l4qy329s1cyyy0w6"; 279312 enableSeparateDataOutput = true; 279313 libraryHaskellDepends = [ 279314 base ··· 281254 }: 281255 mkDerivation { 281256 pname = "graphql"; 281257 - version = "1.5.0.0"; 281258 - sha256 = "1vgvrk225fgn94cmdk5yy6a6d8p10igwx1fbvll94x4izkq57h9y"; 281259 libraryHaskellDepends = [ 281260 base 281261 conduit ··· 281392 pname = "graphql-client"; 281393 version = "1.2.4"; 281394 sha256 = "0rm7x5hrjz7fqfixpaab2c8fmwpn6m3p14zr0wq2bll8qf0hj15c"; 281395 isLibrary = true; 281396 isExecutable = true; 281397 libraryHaskellDepends = [ ··· 281653 }: 281654 mkDerivation { 281655 pname = "graphula"; 281656 - version = "2.1.0.1"; 281657 - sha256 = "1bc8nr6m9lahbfg5h1i9y25kv5ikr7dcqs4ga4hzii07zvq6ks84"; 281658 libraryHaskellDepends = [ 281659 base 281660 containers ··· 282557 }: 282558 mkDerivation { 282559 pname = "greskell-core"; 282560 - version = "1.0.0.4"; 282561 - sha256 = "0cvqrbpfa0flsvjvmdg6pf1m0dd1gxgk22n8wqbnvwak8c528hff"; 282562 libraryHaskellDepends = [ 282563 aeson 282564 base ··· 283127 } 283128 ) { }; 283129 283130 - "grisette_0_12_0_0" = callPackage ( 283131 { 283132 mkDerivation, 283133 array, ··· 283167 }: 283168 mkDerivation { 283169 pname = "grisette"; 283170 - version = "0.12.0.0"; 283171 - sha256 = "0dcwbc53321jg6jfmsr72kmsx8w7c6x9aq4yllwfvbzh092ljlib"; 283172 libraryHaskellDepends = [ 283173 array 283174 async ··· 289225 }: 289226 mkDerivation { 289227 pname = "hackage-cli"; 289228 - version = "0.1.0.2"; 289229 - sha256 = "1q7k8fy6mqb7h4q4bm8qp0ma2nhspszkwy8d606hb66sdiw7k73k"; 289230 isLibrary = false; 289231 isExecutable = true; 289232 libraryHaskellDepends = [ ··· 289607 pname = "hackage-repo-tool"; 289608 version = "0.1.1.4"; 289609 sha256 = "1nqm6rri8rkhrqvppyzy04s3875c4wjcay8gny4ygbr65c6iw81v"; 289610 - revision = "1"; 289611 - editedCabalFile = "09fx1z32m36riv3hmjrv36knlmmrrjq2hbl30i2qfk7pfcbcjlgw"; 289612 isLibrary = false; 289613 isExecutable = true; 289614 executableHaskellDepends = [ ··· 289655 pname = "hackage-revdeps"; 289656 version = "0.1.1"; 289657 sha256 = "0ckkcp2ndzv219hpl42vfzw0hvb5vblsx2bvdsa98wikkxnmn47j"; 289658 isLibrary = true; 289659 isExecutable = true; 289660 libraryHaskellDepends = [ ··· 289722 }: 289723 mkDerivation { 289724 pname = "hackage-security"; 289725 - version = "0.6.3.0"; 289726 - sha256 = "0w0d94gbqpi8b3ddkb32px8xj0qxaaxwdbl8x45y55331b23a7a0"; 289727 libraryHaskellDepends = [ 289728 base 289729 base16-bytestring ··· 291361 aeson, 291362 attoparsec, 291363 base, 291364 data-default, 291365 doctest, 291366 filepath, ··· 291379 }: 291380 mkDerivation { 291381 pname = "haiji"; 291382 - version = "0.3.4.0"; 291383 - sha256 = "1m97lnd993xpxcbm3n2qgqzqjb5j3jvkzkdcb1h9qjd3lr88j1cf"; 291384 libraryHaskellDepends = [ 291385 aeson 291386 attoparsec ··· 291398 testHaskellDepends = [ 291399 aeson 291400 base 291401 data-default 291402 doctest 291403 filepath ··· 292095 pname = "hakyll"; 292096 version = "4.16.6.0"; 292097 sha256 = "1933k6aiawa0kdws7ajm9picjchnfrkkd0qd8xb9l2yv1fvcywg2"; 292098 - revision = "1"; 292099 - editedCabalFile = "0w6z4dq378aai39n9samlfahqr5s1p0fz1xl6kgfp9z8bvq9daa7"; 292100 isLibrary = true; 292101 isExecutable = true; 292102 enableSeparateDataOutput = true; ··· 293291 bytestring, 293292 deepseq, 293293 QuickCheck, 293294 template-haskell, 293295 - test-framework, 293296 - test-framework-quickcheck2, 293297 }: 293298 mkDerivation { 293299 pname = "half"; 293300 - version = "0.3.2"; 293301 - sha256 = "0f7hgnfy8qpjsjv78gk01di3riwfbrb961msn19qmsplnsgjx68r"; 293302 libraryHaskellDepends = [ 293303 base 293304 binary ··· 293310 binary 293311 bytestring 293312 QuickCheck 293313 - test-framework 293314 - test-framework-quickcheck2 293315 ]; 293316 description = "Half-precision floating-point"; 293317 license = lib.licenses.bsd3; ··· 297629 } 297630 ) { }; 297631 297632 "harpie-numhask" = callPackage ( 297633 { 297634 mkDerivation, ··· 298632 }: 298633 mkDerivation { 298634 pname = "hash-string"; 298635 - version = "0.1.0.1"; 298636 - sha256 = "136a5pkygam99fx52r1dhrxydkzk1v83n0ip5iaczdx99cwki0gb"; 298637 libraryHaskellDepends = [ 298638 base 298639 bytestring ··· 300562 } 300563 ) { }; 300564 300565 "haskell-bitmex-client" = callPackage ( 300566 { 300567 mkDerivation, ··· 301754 }: 301755 mkDerivation { 301756 pname = "haskell-gi"; 301757 - version = "0.26.15"; 301758 - sha256 = "07lpd31j582czgvrivyh0fp3bbjmhvqicgy47pv2j69x450q2wsa"; 301759 setupHaskellDepends = [ 301760 base 301761 Cabal ··· 301799 inherit (pkgs) gobject-introspection; 301800 }; 301801 301802 "haskell-gi-base" = callPackage ( 301803 { 301804 mkDerivation, ··· 301806 bytestring, 301807 containers, 301808 glib, 301809 text, 301810 }: 301811 mkDerivation { 301812 pname = "haskell-gi-base"; 301813 - version = "0.26.8"; 301814 - sha256 = "19sp8yi9inxq7vqw6zpf2rlk56algxajkf8gyl0iqbx95kb4x1bb"; 301815 libraryHaskellDepends = [ 301816 base 301817 bytestring 301818 containers 301819 text 301820 ]; 301821 libraryPkgconfigDepends = [ glib ]; ··· 301859 hydraPlatforms = lib.platforms.none; 301860 mainProgram = "haskell-go-checkers"; 301861 broken = true; 301862 } 301863 ) { }; 301864 ··· 302308 pname = "haskell-language-server"; 302309 version = "2.11.0.0"; 302310 sha256 = "1acd42sqa76nkrwkb6jcrimbf8va6ikkynv9ssbbamyy4vmx1aa4"; 302311 isLibrary = true; 302312 isExecutable = true; 302313 libraryHaskellDepends = [ ··· 303192 } 303193 ) { }; 303194 303195 "haskell-platform-test" = callPackage ( 303196 { 303197 mkDerivation, ··· 308120 testToolDepends = [ hspec-discover ]; 308121 description = "Lightweight CLI wallet for Bitcoin and Bitcoin Cash"; 308122 license = lib.licenses.publicDomain; 308123 - hydraPlatforms = lib.platforms.none; 308124 mainProgram = "hw"; 308125 - broken = true; 308126 } 308127 ) { }; 308128 ··· 308646 }: 308647 mkDerivation { 308648 pname = "hasktorch"; 308649 - version = "0.2.1.3"; 308650 - sha256 = "18j3mvbag1anmkc5s8486i1a6am3iljm48aixxf5fi1bg2mkq46k"; 308651 setupHaskellDepends = [ 308652 base 308653 Cabal ··· 311363 }: 311364 mkDerivation { 311365 pname = "hasql-resource-pool"; 311366 - version = "1.9.1.2"; 311367 - sha256 = "1cg1wgrb7xbnqqqzy31y5lskcb66vmsr6ifmv0xi1qy0kb0c2y7i"; 311368 libraryHaskellDepends = [ 311369 base-prelude 311370 clock ··· 313253 pname = "haxr"; 313254 version = "3000.11.5.1"; 313255 sha256 = "1r5ipm1qzlkxk1xc9hv86kli5aa4nw7i9a6n42ixkcspwb8fjhzd"; 313256 libraryHaskellDepends = [ 313257 array 313258 base ··· 313891 } 313892 ) { }; 313893 313894 "hbro" = callPackage ( 313895 { 313896 mkDerivation, ··· 317179 pname = "hedgehog-classes"; 317180 version = "0.2.5.4"; 317181 sha256 = "0z9ik5asddc2pnz430jsi1pyahkh6jy36ng0vwm7ywcq7cvhcvlz"; 317182 - revision = "5"; 317183 - editedCabalFile = "19jxkb9dszkvch4cd30n4nsp36p86xdbgqbliqv836m2qwayjmyp"; 317184 libraryHaskellDepends = [ 317185 aeson 317186 base ··· 317230 async, 317231 base, 317232 bytestring, 317233 deepseq, 317234 Diff, 317235 directory, 317236 exceptions, 317237 filepath, 317238 hedgehog, 317239 http-conduit, 317240 lifted-async, 317241 lifted-base, 317242 mmorph, 317243 monad-control, 317244 mtl, 317245 network, 317246 process, 317247 resourcet, 317248 - retry, 317249 stm, 317250 tar, 317251 tasty, ··· 317262 }: 317263 mkDerivation { 317264 pname = "hedgehog-extras"; 317265 - version = "0.7.0.0"; 317266 - sha256 = "0dhkhai2q831fb8z9cyv065gdf0468x0sbns1np74v8qnzwbhgav"; 317267 - revision = "1"; 317268 - editedCabalFile = "1f8xc2dr158c3nppj4rny611vfli74fpggnx1s75ln846xq2yzkj"; 317269 libraryHaskellDepends = [ 317270 aeson 317271 aeson-pretty 317272 async 317273 base 317274 bytestring 317275 deepseq 317276 Diff 317277 directory 317278 exceptions 317279 filepath 317280 hedgehog 317281 http-conduit 317282 lifted-async 317283 lifted-base 317284 mmorph 317285 monad-control 317286 mtl 317287 network 317288 process 317289 resourcet 317290 - retry 317291 stm 317292 tar 317293 temporary 317294 text 317295 time ··· 317302 testHaskellDepends = [ 317303 base 317304 hedgehog 317305 network 317306 process 317307 resourcet 317308 tasty 317309 tasty-hedgehog 317310 time 317311 transformers ··· 317313 testToolDepends = [ tasty-discover ]; 317314 description = "Supplemental library for hedgehog"; 317315 license = lib.licenses.asl20; 317316 } 317317 ) { }; 317318 ··· 317329 pname = "hedgehog-fakedata"; 317330 version = "0.0.1.5"; 317331 sha256 = "00k26d83v0646klrg0k3cf94r4fnnx3ykxv7i8shjjgbkbzlzz78"; 317332 - revision = "2"; 317333 - editedCabalFile = "1b8v4j8zkvdfx786nfxxdkxj57b2qh4p9h16wiy0kc3l1dsj6llm"; 317334 libraryHaskellDepends = [ 317335 base 317336 fakedata ··· 318591 pname = "heist"; 318592 version = "1.1.1.2"; 318593 sha256 = "1377740si611j0szp64axy0xj1fi2a6w8i9s3xij89h34m7rb3rz"; 318594 - revision = "4"; 318595 - editedCabalFile = "112bhvishyhknb7gzii56sqaz5gxzb1png2k73rsnfmranvzl3ka"; 318596 libraryHaskellDepends = [ 318597 aeson 318598 attoparsec ··· 319890 } 319891 ) { }; 319892 319893 "heptapod" = callPackage ( 319894 { 319895 mkDerivation, ··· 320995 license = lib.licenses.bsd3; 320996 hydraPlatforms = lib.platforms.none; 320997 broken = true; 320998 } 320999 ) { }; 321000 ··· 325473 } 325474 ) { }; 325475 325476 "hiedb-plugin" = callPackage ( 325477 { 325478 mkDerivation, ··· 329806 } 329807 ) { }; 329808 329809 - "hledger_1_42_2" = callPackage ( 329810 { 329811 mkDerivation, 329812 aeson, ··· 329825 hashable, 329826 haskeline, 329827 hledger-lib, 329828 lucid, 329829 math-functions, 329830 megaparsec, ··· 329833 mtl, 329834 process, 329835 regex-tdfa, 329836 safe, 329837 shakespeare, 329838 split, ··· 329851 }: 329852 mkDerivation { 329853 pname = "hledger"; 329854 - version = "1.42.2"; 329855 - sha256 = "0c6g90xdwavp23azv4b1k9sn309j96150adc5ihm4lhijvldphcr"; 329856 isLibrary = true; 329857 isExecutable = true; 329858 libraryHaskellDepends = [ ··· 329872 hashable 329873 haskeline 329874 hledger-lib 329875 lucid 329876 math-functions 329877 megaparsec ··· 329880 mtl 329881 process 329882 regex-tdfa 329883 safe 329884 shakespeare 329885 split ··· 329911 githash 329912 haskeline 329913 hledger-lib 329914 math-functions 329915 megaparsec 329916 microlens 329917 mtl 329918 process 329919 regex-tdfa 329920 safe 329921 shakespeare 329922 split ··· 329948 githash 329949 haskeline 329950 hledger-lib 329951 math-functions 329952 megaparsec 329953 microlens 329954 mtl 329955 process 329956 regex-tdfa 329957 safe 329958 shakespeare 329959 split ··· 329971 wizards 329972 ]; 329973 description = "Command-line interface for the hledger accounting system"; 329974 - license = lib.licenses.gpl3Only; 329975 hydraPlatforms = lib.platforms.none; 329976 mainProgram = "hledger"; 329977 maintainers = [ ··· 330208 pname = "hledger-iadd"; 330209 version = "1.3.21"; 330210 sha256 = "00x0vbfp08kqs1nbknndk9h56hcidf6xnrk0ldz45dvjrmgcv3w2"; 330211 - revision = "8"; 330212 - editedCabalFile = "166vkhghms83x0c03m6kg6v5fx3x8wyr445zjy6vxfsbni6ks4h7"; 330213 isLibrary = true; 330214 isExecutable = true; 330215 libraryHaskellDepends = [ ··· 330289 pname = "hledger-interest"; 330290 version = "1.6.7"; 330291 sha256 = "1jirygghw82zi8z160j45qzfcj1l89vckqr7hrv78h3f3pim6np4"; 330292 - revision = "1"; 330293 - editedCabalFile = "1hl3vgwhlk15xrhafmp5y017cm4y7zkn2n8l9frsc0xz67h9571z"; 330294 isLibrary = false; 330295 isExecutable = true; 330296 executableHaskellDepends = [ ··· 330507 } 330508 ) { }; 330509 330510 - "hledger-lib_1_42_2" = callPackage ( 330511 { 330512 mkDerivation, 330513 aeson, ··· 330515 ansi-terminal, 330516 array, 330517 base, 330518 - base-compat, 330519 blaze-html, 330520 blaze-markup, 330521 bytestring, ··· 330562 }: 330563 mkDerivation { 330564 pname = "hledger-lib"; 330565 - version = "1.42.2"; 330566 - sha256 = "0m0z70m4bm7bhrhjczdhwgz8afvjc1lrxwdr8kzgg0yyq2xrmxxx"; 330567 libraryHaskellDepends = [ 330568 aeson 330569 aeson-pretty 330570 ansi-terminal 330571 array 330572 base 330573 - base-compat 330574 blaze-html 330575 blaze-markup 330576 bytestring ··· 330620 ansi-terminal 330621 array 330622 base 330623 - base-compat 330624 blaze-html 330625 blaze-markup 330626 bytestring ··· 330666 utf8-string 330667 ]; 330668 description = "A library providing the core functionality of hledger"; 330669 - license = lib.licenses.gpl3Only; 330670 hydraPlatforms = lib.platforms.none; 330671 } 330672 ) { }; ··· 330875 } 330876 ) { }; 330877 330878 - "hledger-ui_1_42_2" = callPackage ( 330879 { 330880 mkDerivation, 330881 ansi-terminal, ··· 330911 }: 330912 mkDerivation { 330913 pname = "hledger-ui"; 330914 - version = "1.42.2"; 330915 - sha256 = "17jmjphvrxcmg69b3p82sapf8x14w5xw10crbpcs6ws0wmlmmq71"; 330916 - revision = "1"; 330917 - editedCabalFile = "0lh28f9pxx6zxn91wna6ywj50igraqb6dyg797qqm2q3zz0kapif"; 330918 isLibrary = true; 330919 isExecutable = true; 330920 libraryHaskellDepends = [ ··· 330951 ]; 330952 executableHaskellDepends = [ base ]; 330953 description = "Terminal interface for the hledger accounting system"; 330954 - license = lib.licenses.gpl3Only; 330955 hydraPlatforms = lib.platforms.none; 330956 mainProgram = "hledger-ui"; 330957 maintainers = [ lib.maintainers.maralorn ]; ··· 331113 } 331114 ) { }; 331115 331116 - "hledger-web_1_42_2" = callPackage ( 331117 { 331118 mkDerivation, 331119 aeson, 331120 base, 331121 - base-compat, 331122 base64, 331123 blaze-html, 331124 blaze-markup, ··· 331133 Decimal, 331134 directory, 331135 extra, 331136 filepath, 331137 githash, 331138 hjsmin, ··· 331168 }: 331169 mkDerivation { 331170 pname = "hledger-web"; 331171 - version = "1.42.2"; 331172 - sha256 = "0ciz1y97aw7493avj8i9hnzjinc1fwj20wns036qa6yxglsj0qkm"; 331173 isLibrary = true; 331174 isExecutable = true; 331175 libraryHaskellDepends = [ 331176 aeson 331177 base 331178 - base-compat 331179 base64 331180 blaze-html 331181 blaze-markup ··· 331190 Decimal 331191 directory 331192 extra 331193 filepath 331194 githash 331195 hjsmin ··· 331223 yesod-static 331224 yesod-test 331225 ]; 331226 - executableHaskellDepends = [ 331227 - base 331228 - base-compat 331229 - ]; 331230 - testHaskellDepends = [ 331231 - base 331232 - base-compat 331233 - ]; 331234 description = "Web user interface for the hledger accounting system"; 331235 - license = lib.licenses.gpl3Only; 331236 hydraPlatforms = lib.platforms.none; 331237 mainProgram = "hledger-web"; 331238 maintainers = [ lib.maintainers.maralorn ]; ··· 337405 }: 337406 mkDerivation { 337407 pname = "hoist-error"; 337408 - version = "0.3.0.0"; 337409 - sha256 = "160967zsp8rzsvs12crsxh3854lnhxiidv8adixb4nf9hxvdnka6"; 337410 libraryHaskellDepends = [ 337411 base 337412 mtl ··· 339985 pname = "horizontal-rule"; 339986 version = "0.7.0.0"; 339987 sha256 = "0s4hf7frj1gc41v83qk8fgdfn49msmvhcfw6vjklx6w7b6pkfx9x"; 339988 - revision = "1"; 339989 - editedCabalFile = "1jb71y6mxkrcnps1jdh6rkkrznhzcsyl8c7s565xjalabql56nkq"; 339990 isLibrary = true; 339991 isExecutable = true; 339992 libraryHaskellDepends = [ ··· 341037 } 341038 ) { }; 341039 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 "hpack_0_38_1" = callPackage ( 341174 { 341175 mkDerivation, ··· 342870 } 342871 ) { }; 342872 342873 - "hpqtypes-extras_1_17_0_1" = callPackage ( 342874 { 342875 mkDerivation, 342876 base, ··· 342894 }: 342895 mkDerivation { 342896 pname = "hpqtypes-extras"; 342897 - version = "1.17.0.1"; 342898 - sha256 = "1f2ipf4hwp3iqfb79bbx8h97l1cy8vyc1w5h0q1fvg2yvxl52szp"; 342899 libraryHaskellDepends = [ 342900 base 342901 base16-bytestring ··· 343609 ]; 343610 description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; 343611 license = "LGPL"; 343612 } 343613 ) { }; 343614 ··· 346712 base, 346713 extra, 346714 ghc-events, 346715 optparse-applicative, 346716 text, 346717 vector, 346718 }: 346719 mkDerivation { 346720 pname = "hs-speedscope"; 346721 - version = "0.2.1"; 346722 - sha256 = "1qzmcn718mbg5pckvbcw2n36srmbixkyp45hrkdcdnqcsvf5agln"; 346723 isLibrary = true; 346724 isExecutable = true; 346725 libraryHaskellDepends = [ ··· 346727 base 346728 extra 346729 ghc-events 346730 optparse-applicative 346731 text 346732 vector ··· 346734 executableHaskellDepends = [ base ]; 346735 description = "Convert an eventlog into the speedscope json format"; 346736 license = lib.licenses.bsd3; 346737 - hydraPlatforms = lib.platforms.none; 346738 mainProgram = "hs-speedscope"; 346739 - broken = true; 346740 } 346741 ) { }; 346742 ··· 350604 cmdargs, 350605 directory, 350606 filepath, 350607 - filepath-bytestring, 350608 libssh2, 350609 mtl, 350610 tasty, ··· 350617 }: 350618 mkDerivation { 350619 pname = "hsftp"; 350620 - version = "1.3.1"; 350621 - sha256 = "0027bmn11fl3lbyd4aw77w5b4xdf53izpxnnpp1qnwpxd8j92w82"; 350622 isLibrary = true; 350623 isExecutable = true; 350624 libraryHaskellDepends = [ ··· 350628 cmdargs 350629 directory 350630 filepath 350631 - filepath-bytestring 350632 libssh2 350633 mtl 350634 time ··· 350641 cmdargs 350642 directory 350643 filepath 350644 - filepath-bytestring 350645 libssh2 350646 mtl 350647 time ··· 350654 cmdargs 350655 directory 350656 filepath 350657 - filepath-bytestring 350658 libssh2 350659 mtl 350660 tasty ··· 351568 } 351569 ) { }; 351570 351571 "hslua-aeson" = callPackage ( 351572 { 351573 mkDerivation, ··· 351881 }: 351882 mkDerivation { 351883 pname = "hslua-module-doclayout"; 351884 - version = "1.2.0"; 351885 - sha256 = "1x3znkdz1l8p8gsvazz85936p107xscsaah1ac3padyiswhair1j"; 351886 libraryHaskellDepends = [ 351887 base 351888 doclayout ··· 351989 } 351990 ) { }; 351991 351992 "hslua-module-text" = callPackage ( 351993 { 351994 mkDerivation, ··· 352071 { 352072 mkDerivation, 352073 base, 352074 - bytestring, 352075 - filepath, 352076 hslua-core, 352077 hslua-list, 352078 hslua-marshalling, ··· 352088 }: 352089 mkDerivation { 352090 pname = "hslua-module-zip"; 352091 - version = "1.1.3"; 352092 - sha256 = "1fws5jwf1zwqilgm05y28ywgxavygnjpdlj43nhfg8cmng1p0kyq"; 352093 - revision = "1"; 352094 - editedCabalFile = "1ml14hycwh4wg8351b8dq94qyppkzhw8jk0b0dgahqvy7p5w86y3"; 352095 libraryHaskellDepends = [ 352096 base 352097 - bytestring 352098 - filepath 352099 hslua-core 352100 hslua-list 352101 hslua-marshalling ··· 352107 ]; 352108 testHaskellDepends = [ 352109 base 352110 - bytestring 352111 - filepath 352112 hslua-core 352113 - hslua-list 352114 - hslua-marshalling 352115 hslua-module-system 352116 hslua-packaging 352117 - hslua-typing 352118 tasty 352119 tasty-hunit 352120 tasty-lua 352121 - text 352122 - time 352123 - zip-archive 352124 ]; 352125 description = "Lua module to work with file zips"; 352126 license = lib.licenses.mit; ··· 352185 } 352186 ) { }; 352187 352188 "hslua-packaging" = callPackage ( 352189 { 352190 mkDerivation, ··· 352230 ]; 352231 description = "Utilities to build Lua modules"; 352232 license = lib.licenses.mit; 352233 } 352234 ) { }; 352235 ··· 353133 } 353134 ) { }; 353135 353136 "hspec-api" = callPackage ( 353137 { 353138 mkDerivation, ··· 353392 pname = "hspec-core"; 353393 version = "2.11.12"; 353394 sha256 = "030400w95775jrivbi7n1nnx6j5z717rqd3986ggklb8h9hjalfc"; 353395 libraryHaskellDepends = [ 353396 ansi-terminal 353397 array ··· 354320 pname = "hspec-meta"; 354321 version = "2.11.12"; 354322 sha256 = "1612pg5gihqjxrzqqvbbgckaqiwq3rmz3rg07lrjhzklg975nj69"; 354323 isLibrary = true; 354324 isExecutable = true; 354325 libraryHaskellDepends = [ ··· 355674 } 355675 ) { inherit (pkgs) sqlite; }; 355676 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; }; 355726 355727 "hsqml-datamodel" = callPackage ( 355728 { ··· 355787 }: 355788 mkDerivation { 355789 pname = "hsqml-demo-manic"; 355790 - version = "0.3.4.0"; 355791 - sha256 = "09lnd6am51z98j4kwwidj4jw0bcrx8904r526w50y38afngysqx6"; 355792 isLibrary = false; 355793 isExecutable = true; 355794 enableSeparateDataOutput = true; ··· 355819 }: 355820 mkDerivation { 355821 pname = "hsqml-demo-morris"; 355822 - version = "0.3.1.1"; 355823 - sha256 = "166r06yhnmg063d48dh7973wg85nfmvp1c5gmy79ilycc8xgvmhm"; 355824 isLibrary = false; 355825 isExecutable = true; 355826 enableSeparateDataOutput = true; ··· 355852 }: 355853 mkDerivation { 355854 pname = "hsqml-demo-notes"; 355855 - version = "0.3.3.0"; 355856 - sha256 = "0gjlsqlspchav6lvc4ld15192x70j8cyzw903dgla7g9sj8fg813"; 355857 isLibrary = false; 355858 isExecutable = true; 355859 enableSeparateDataOutput = true; ··· 355882 }: 355883 mkDerivation { 355884 pname = "hsqml-demo-samples"; 355885 - version = "0.3.4.0"; 355886 - sha256 = "0y82caz4fb4cz4qfmdg7h5zr959yw2q162zz980jz179188a8pr2"; 355887 isLibrary = false; 355888 isExecutable = true; 355889 enableSeparateDataOutput = true; ··· 361594 }: 361595 mkDerivation { 361596 pname = "http2"; 361597 - version = "5.3.9"; 361598 - sha256 = "0wcv9ziz0865j66avlax7f4i9l5k7ydcn96bacy78snmvcciblqf"; 361599 isLibrary = true; 361600 isExecutable = true; 361601 libraryHaskellDepends = [ ··· 361880 base, 361881 bytestring, 361882 crypton-x509-store, 361883 crypton-x509-validation, 361884 http2, 361885 network, ··· 361892 }: 361893 mkDerivation { 361894 pname = "http2-tls"; 361895 - version = "0.4.6"; 361896 - sha256 = "1fi7mk5lkpgr194da9wcwwn7hwdj5cw9kzdiqr3w8dwixnddqrl9"; 361897 isLibrary = true; 361898 isExecutable = true; 361899 libraryHaskellDepends = [ 361900 base 361901 bytestring 361902 crypton-x509-store 361903 crypton-x509-validation 361904 http2 361905 network ··· 361939 iproute, 361940 network, 361941 network-byte-order, 361942 quic, 361943 QuickCheck, 361944 sockaddr, ··· 361949 }: 361950 mkDerivation { 361951 pname = "http3"; 361952 - version = "0.0.24"; 361953 - sha256 = "1i7dzw9ib9h0i2zjnwsqxbs188p71ly1ad1vdnjnbhyr4gq6aw77"; 361954 isLibrary = true; 361955 isExecutable = true; 361956 libraryHaskellDepends = [ ··· 361966 iproute 361967 network 361968 network-byte-order 361969 quic 361970 sockaddr 361971 stm ··· 361978 base 361979 base16-bytestring 361980 bytestring 361981 conduit 361982 conduit-extra 361983 crypton 361984 hspec 361985 http-semantics ··· 372048 doHaddock = false; 372049 description = "Branch on whether a constraint is satisfied"; 372050 license = lib.licenses.bsd3; 372051 } 372052 ) { }; 372053 ··· 378491 } 378492 ) { }; 378493 378494 - "inspection-testing_0_6" = callPackage ( 378495 { 378496 mkDerivation, 378497 base, ··· 378503 }: 378504 mkDerivation { 378505 pname = "inspection-testing"; 378506 - version = "0.6"; 378507 - sha256 = "13j6bqybkqd1nrhx648j0nmsjgyqnmbgssm5pxynmkqw62yylbry"; 378508 libraryHaskellDepends = [ 378509 base 378510 containers ··· 379193 pname = "int-cast"; 379194 version = "0.2.0.0"; 379195 sha256 = "0s8rqm5d9f4y2sskajsw8ff7q8xp52vwqa18m6bajldp11m9a1p0"; 379196 - revision = "7"; 379197 - editedCabalFile = "0z1bffrx787f2697a6gfkmbxkj3ymgs88kid9ckcla08n11zw2ql"; 379198 libraryHaskellDepends = [ base ]; 379199 testHaskellDepends = [ 379200 base ··· 379292 }: 379293 mkDerivation { 379294 pname = "int-like"; 379295 - version = "0.3.0"; 379296 - sha256 = "0nyxhq5715cb5dpvs6ap6zkm08xai1ivhpvj6jsj3kiy0fxyscmw"; 379297 libraryHaskellDepends = [ 379298 algebraic-graphs 379299 base ··· 380825 hashable, 380826 heaps, 380827 hspec, 380828 lattices, 380829 parsec, 380830 QuickCheck, ··· 380835 }: 380836 mkDerivation { 380837 pname = "interval-patterns"; 380838 - version = "0.8.0"; 380839 - sha256 = "1paciwq4wzl0kqkl5zzj486dsq5pg6275nj15gicv1czj7m9ncg9"; 380840 libraryHaskellDepends = [ 380841 base 380842 containers ··· 380844 groups 380845 hashable 380846 heaps 380847 lattices 380848 semirings 380849 time ··· 380857 hashable 380858 heaps 380859 hspec 380860 lattices 380861 parsec 380862 QuickCheck ··· 380867 ]; 380868 description = "Intervals, and monoids thereof"; 380869 license = lib.licenses.bsd3; 380870 - hydraPlatforms = lib.platforms.none; 380871 - broken = true; 380872 } 380873 ) { }; 380874 ··· 381726 }: 381727 mkDerivation { 381728 pname = "io-classes"; 381729 - version = "1.8.0.0"; 381730 - sha256 = "154bpq8w65xyy4slbd12d0r02gv5bz0q09rlpxyjwx63kpzy5xw1"; 381731 libraryHaskellDepends = [ 381732 array 381733 async ··· 381942 }: 381943 mkDerivation { 381944 pname = "io-sim"; 381945 - version = "1.8.0.0"; 381946 - sha256 = "00dmqfbq9j906f5ga1vqqmrvzdmwxwrw6gcigmdspwnpaq73yydr"; 381947 libraryHaskellDepends = [ 381948 base 381949 containers ··· 382552 }: 382553 mkDerivation { 382554 pname = "ip6addr"; 382555 - version = "2.0.0"; 382556 - sha256 = "1drhjv6xmwfnx2yvxxs03ds415gxdgylzkmb5wy9g7b12q91kxf5"; 382557 isLibrary = false; 382558 isExecutable = true; 382559 executableHaskellDepends = [ ··· 384379 bytestring-lexing, 384380 hspec, 384381 hspec-core, 384382 QuickCheck, 384383 quickcheck-instances, 384384 time, 384385 }: 384386 mkDerivation { 384387 pname = "iso8601-duration"; 384388 - version = "0.1.2.0"; 384389 - sha256 = "1hzzcgc1k3dn4l5yxzqq9d62n2hfkrcg0ag14dly7ak3gx9l8l3n"; 384390 libraryHaskellDepends = [ 384391 attoparsec 384392 base ··· 384403 quickcheck-instances 384404 time 384405 ]; 384406 description = "Types and parser for ISO8601 durations"; 384407 license = lib.licenses.bsd3; 384408 - hydraPlatforms = lib.platforms.none; 384409 - broken = true; 384410 } 384411 ) { }; 384412 ··· 390134 base, 390135 bytestring, 390136 jsaddle, 390137 }: 390138 mkDerivation { 390139 pname = "nat"; 390140 - version = "0.1.1.0"; 390141 - pname = "nat"; 390142 libraryHaskellDepends = [ 390143 base 390144 bytestring 390145 jsaddle 390146 ]; 390147 doHaddock = false; 390148 pname = "nat"; ··· 391762 pname = "nat"; 391763 license = lib.licenses.bsd3; 391764 hydraPlatforms = lib.platforms.none; 391765 } 391766 ) { }; 391767 ··· 394032 }: 394033 mkDerivation { 394034 pname = "nat"; 394035 - version = "0.5.5"; 394036 - pname = "nat"; 394037 isLibrary = true; 394038 isExecutable = true; 394039 libraryHaskellDepends = [ ··· 395272 }: 395273 mkDerivation { 395274 pname = "nat"; 395275 - pname = "nat"; 395276 - pname = "nat"; 395277 - revision = "1"; 395278 - pname = "nat"; 395279 libraryHaskellDepends = [ 395280 adjunctions 395281 array ··· 400431 ]; 400432 pname = "nat"; 400433 license = lib.licenses.bsd3; 400434 } 400435 ) { }; 400436 ··· 400831 } 400832 ) { }; 400833 400834 pname = "nat"; 400835 { 400836 mkDerivation, ··· 401705 }: 401706 mkDerivation { 401707 pname = "nat"; 401708 - version = "0.6.0.1"; 401709 - pname = "nat"; 401710 libraryHaskellDepends = [ 401711 aeson 401712 attoparsec ··· 401789 testToolDepends = [ hspec-discover ]; 401790 pname = "nat"; 401791 license = lib.licenses.asl20; 401792 - hydraPlatforms = lib.platforms.none; 401793 } 401794 ) { }; 401795 ··· 404951 pname = "langchain-hs"; 404952 version = "0.0.2.0"; 404953 sha256 = "0gh3gmmppfms1jg5zaxksalh90675r4pl6lmz63szkpwl9rmc9kz"; 404954 libraryHaskellDepends = [ 404955 aeson 404956 async ··· 408492 pname = "lapack-ffi-tools"; 408493 version = "0.1.3.2"; 408494 sha256 = "0y30qwxzbggn3aqr437j3bi1yfa1fpdq96xq7vxbi1fnll8a9432"; 408495 - revision = "1"; 408496 - editedCabalFile = "0z8ahg1bxcphdyhjaxwmfhdhwwg1d2mhx3dvl6af3c9sql9r5xjw"; 408497 isLibrary = false; 408498 isExecutable = true; 408499 enableSeparateDataOutput = true; ··· 409458 pname = "lattices"; 409459 version = "2.2.1"; 409460 sha256 = "0rknzbzwcbg87hjiz4jwqb81w14pywkipxjrrlrp0m5i8ciky1i7"; 409461 - revision = "2"; 409462 - editedCabalFile = "1y01fx2d3ad601zg13n52k8d4lcx1s3b6hhbwmyblhdj7x9xyl2i"; 409463 libraryHaskellDepends = [ 409464 base 409465 containers ··· 412174 ]; 412175 description = "Haskell IDE written in Haskell"; 412176 license = "GPL"; 412177 - hydraPlatforms = lib.platforms.none; 412178 mainProgram = "leksah"; 412179 } 412180 ) { inherit (pkgs) gtk3; }; ··· 412375 generic-deriving, 412376 ghc-prim, 412377 hashable, 412378 - HUnit, 412379 indexed-traversable, 412380 indexed-traversable-instances, 412381 kan-extensions, ··· 412388 simple-reflect, 412389 strict, 412390 tagged, 412391 template-haskell, 412392 - test-framework, 412393 - test-framework-hunit, 412394 - test-framework-quickcheck2, 412395 text, 412396 th-abstraction, 412397 these, ··· 412402 }: 412403 mkDerivation { 412404 pname = "lens"; 412405 - version = "5.3.4"; 412406 - sha256 = "12n8jdwlpa5lcp2yi26a4fwncn1v1lyznaa9fasszk6qp0afvdpi"; 412407 libraryHaskellDepends = [ 412408 array 412409 assoc ··· 412445 bytestring 412446 containers 412447 deepseq 412448 - HUnit 412449 mtl 412450 QuickCheck 412451 simple-reflect 412452 - test-framework 412453 - test-framework-hunit 412454 - test-framework-quickcheck2 412455 text 412456 transformers 412457 ]; ··· 412712 }: 412713 mkDerivation { 412714 pname = "lens-family-th"; 412715 - version = "0.5.3.1"; 412716 - sha256 = "0fhv44qb3gdwiay3imhwhqhdpiczncjz2w6jiiqk11qn4a63rv7l"; 412717 libraryHaskellDepends = [ 412718 base 412719 template-haskell ··· 412949 pname = "lens-properties"; 412950 version = "4.11.1"; 412951 sha256 = "1caciyn75na3f25q9qxjl7ibjam22xlhl5k2pqfiak10lxsmnz2g"; 412952 - revision = "7"; 412953 - editedCabalFile = "14n9yzar4zfqigyayxhi11a0g954nb4jcz0fahgpxyl2vbg7h1ch"; 412954 libraryHaskellDepends = [ 412955 base 412956 lens ··· 413455 pname = "lentil"; 413456 version = "1.5.8.0"; 413457 sha256 = "08g15kzynync0kl9f247sifzqpkjyvigc5r31w2n3vivi3pdcafn"; 413458 - revision = "1"; 413459 - editedCabalFile = "0n991bjlcjchmjlgfxg709sp6vsi6c5igzs7904i6hfabq3z47q5"; 413460 isLibrary = false; 413461 isExecutable = true; 413462 executableHaskellDepends = [ ··· 416841 }: 416842 mkDerivation { 416843 pname = "libtorch-ffi"; 416844 - version = "2.0.1.3"; 416845 - sha256 = "0hamxxlf69r3m826a3x59k11cmlv4m2340mr3xmcbyqga2zs04a6"; 416846 libraryHaskellDepends = [ 416847 async 416848 base ··· 418723 distributive, 418724 ghc-prim, 418725 hashable, 418726 - HUnit, 418727 indexed-traversable, 418728 lens, 418729 QuickCheck, ··· 418732 semigroupoids, 418733 simple-reflect, 418734 tagged, 418735 template-haskell, 418736 - test-framework, 418737 - test-framework-hunit, 418738 - test-framework-quickcheck2, 418739 transformers, 418740 transformers-compat, 418741 unordered-containers, ··· 418744 }: 418745 mkDerivation { 418746 pname = "linear"; 418747 - version = "1.23.1"; 418748 - sha256 = "0ybch2f4yc7mhxryr5f29i7j8ryq1i1n69fgldskxjrj825qkb3x"; 418749 libraryHaskellDepends = [ 418750 adjunctions 418751 base ··· 418776 binary 418777 bytestring 418778 deepseq 418779 - HUnit 418780 QuickCheck 418781 reflection 418782 simple-reflect 418783 - test-framework 418784 - test-framework-hunit 418785 - test-framework-quickcheck2 418786 vector 418787 ]; 418788 description = "Linear Algebra"; ··· 422261 ) { }; 422262 422263 "list1" = callPackage ( 422264 - { 422265 - mkDerivation, 422266 - base, 422267 - smash, 422268 - }: 422269 mkDerivation { 422270 pname = "list1"; 422271 - version = "0.0.2"; 422272 - sha256 = "0lxx1m2vrf14fb8r4qzfp6y8iqxai3cdpg2dzh9az383qxhy0zmh"; 422273 - libraryHaskellDepends = [ 422274 - base 422275 - smash 422276 - ]; 422277 description = "Helpers for working with NonEmpty lists"; 422278 license = lib.licenses.bsd3; 422279 - hydraPlatforms = lib.platforms.none; 422280 } 422281 ) { }; 422282 ··· 422644 pname = "literatex"; 422645 version = "0.4.0.0"; 422646 sha256 = "06whn0rx1gy2pzl4678z087pfragy2sjaw34ljx6sfvxg0wn03bx"; 422647 isLibrary = true; 422648 isExecutable = true; 422649 libraryHaskellDepends = [ ··· 423457 ]; 423458 description = "Support for writing an EDSL with LLVM-JIT as target"; 423459 license = lib.licenses.bsd3; 423460 } 423461 ) { }; 423462 ··· 423558 doHaddock = false; 423559 description = "Utility functions for the llvm interface"; 423560 license = lib.licenses.bsd3; 423561 } 423562 ) { }; 423563 ··· 423566 mkDerivation, 423567 base, 423568 enumset, 423569 - LLVM, 423570 }: 423571 mkDerivation { 423572 pname = "llvm-ffi"; 423573 - version = "16.0"; 423574 - sha256 = "14cf6qhdq69ggx41259ih55g6z1vn0694wrh3s8m6f7adq990ra9"; 423575 isLibrary = true; 423576 isExecutable = true; 423577 libraryHaskellDepends = [ 423578 base 423579 enumset 423580 ]; 423581 - librarySystemDepends = [ LLVM ]; 423582 description = "FFI bindings to the LLVM compiler toolkit"; 423583 license = lib.licenses.bsd3; 423584 maintainers = [ lib.maintainers.thielema ]; 423585 } 423586 - ) { LLVM = null; }; 423587 423588 "llvm-ffi-tools" = callPackage ( 423589 { ··· 424249 }: 424250 mkDerivation { 424251 pname = "llvm-tf"; 424252 - version = "16.0"; 424253 - sha256 = "1nscccmk0nf52p9r0af354p4n4vr1fbaym4x164wwwid7xc1x65g"; 424254 isLibrary = true; 424255 isExecutable = true; 424256 libraryHaskellDepends = [ ··· 425425 }: 425426 mkDerivation { 425427 pname = "log-base"; 425428 - version = "0.12.0.1"; 425429 - sha256 = "021chwkggy7q5c3hysfg3aj6pv60wla1cv8iyppibx70ilqpzqs4"; 425430 libraryHaskellDepends = [ 425431 aeson 425432 aeson-pretty ··· 425603 bytestring, 425604 deepseq, 425605 http-client, 425606 - http-client-openssl, 425607 http-types, 425608 log-base, 425609 network-uri, ··· 425618 }: 425619 mkDerivation { 425620 pname = "log-elasticsearch"; 425621 - version = "0.13.0.1"; 425622 - sha256 = "1l9p4zpf18rkwkv485swrlwyx2l3iqd332273mkz64ybjqllsdkx"; 425623 libraryHaskellDepends = [ 425624 aeson 425625 aeson-pretty ··· 425628 bytestring 425629 deepseq 425630 http-client 425631 - http-client-openssl 425632 http-types 425633 log-base 425634 network-uri ··· 431262 }: 431263 mkDerivation { 431264 pname = "lz4-bytes"; 431265 - version = "0.1.2.0"; 431266 - sha256 = "1jgsz96n7n7g4403w0h3zjvlhdh11vy4s7wqka0ppsikjjl7f1ni"; 431267 libraryHaskellDepends = [ 431268 base 431269 byte-order ··· 433266 ]; 433267 description = "Preconfigured email connection pool on top of smtp"; 433268 license = lib.licenses.mit; 433269 - hydraPlatforms = lib.platforms.none; 433270 mainProgram = "exe"; 433271 } 433272 ) { }; ··· 436428 } 436429 ) { }; 436430 436431 "markup-preview" = callPackage ( 436432 { 436433 mkDerivation, ··· 437015 }: 437016 mkDerivation { 437017 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 version = "1.0.5.0"; 437060 sha256 = "138y8kk2qxprlwd8isb6h7wigiymmin1sip255060ql5gzjaawcw"; 437061 libraryHaskellDepends = [ ··· 437076 ]; 437077 description = "Massiv (Массив) is an Array Library"; 437078 license = lib.licenses.bsd3; 437079 - hydraPlatforms = lib.platforms.none; 437080 maintainers = [ lib.maintainers.sheepforce ]; 437081 } 437082 ) { }; ··· 438925 }: 438926 mkDerivation { 438927 pname = "mattermost-api"; 438928 - version = "90000.0.0"; 438929 - sha256 = "1ka3r4bnfwlbjnkws8vkg8i9gj8wzsyss137p7hxrx4sr75s6iyv"; 438930 isLibrary = true; 438931 isExecutable = true; 438932 libraryHaskellDepends = [ ··· 438988 }: 438989 mkDerivation { 438990 pname = "mattermost-api-qc"; 438991 - version = "90000.0.0"; 438992 - sha256 = "0lrb8l8nbrdp4y2ala8hchr8ikv5hqw710ffiiw1sz6z2dqiqbxm"; 438993 libraryHaskellDepends = [ 438994 base 438995 containers ··· 439855 } 439856 ) { }; 439857 439858 "mcpi" = callPackage ( 439859 { 439860 mkDerivation, ··· 440276 pname = "med-module"; 440277 version = "0.1.3"; 440278 sha256 = "04p1aj85hsr3wpnnfg4nxbqsgq41ga63mrg2w39d8ls8ljvajvna"; 440279 - revision = "1"; 440280 - editedCabalFile = "0m69cvm2nzx2g0y8jfkymap529fm0k65wg82dycj0dc60p9fj66r"; 440281 isLibrary = true; 440282 isExecutable = true; 440283 libraryHaskellDepends = [ ··· 441172 pname = "megaparsec-tests"; 441173 version = "9.7.0"; 441174 sha256 = "17jwz62f8lnrfmmfrsv1jcvn9wmpk4jlhmxjwk5qqx2iyijnrpb1"; 441175 libraryHaskellDepends = [ 441176 base 441177 bytestring ··· 441718 } 441719 ) { }; 441720 441721 - "mem-info_0_4_1_0" = callPackage ( 441722 { 441723 mkDerivation, 441724 base, ··· 441743 }: 441744 mkDerivation { 441745 pname = "mem-info"; 441746 - version = "0.4.1.0"; 441747 - sha256 = "0613k5qil4j1cfh335gyjf708md9cicbhm5xji7v8fzfmzsqxx1c"; 441748 isLibrary = true; 441749 isExecutable = true; 441750 libraryHaskellDepends = [ ··· 444460 pname = "microaeson"; 444461 version = "0.1.0.2"; 444462 sha256 = "025vnzs4j2nmkin5x8h5hbrj25spamqppg68wfqlnbrr1519lxfz"; 444463 - revision = "1"; 444464 - editedCabalFile = "1faq5mjz8jy739lbaizy1v5wrvkxsjzp6lhjmb06a3yv71h6m594"; 444465 libraryHaskellDepends = [ 444466 array 444467 base ··· 445557 pname = "midi-music-box"; 445558 version = "0.0.1.2"; 445559 sha256 = "0rnjwis6y0lnyfjxnxqk3zsh78ylccq5v21avb97vybmj0pld1l9"; 445560 - revision = "6"; 445561 - editedCabalFile = "0b8039mw0wacjxxwx1ws2wczwdgxm4iiymdkykk7lp5ii75vvfww"; 445562 isLibrary = false; 445563 isExecutable = true; 445564 executableHaskellDepends = [ ··· 445705 pname = "midimory"; 445706 version = "0.0.2.3"; 445707 sha256 = "1k9pm0ai9i66c7l4px84cf5db3nsq5ab9ndplcyfh05snbdy70vz"; 445708 isLibrary = false; 445709 isExecutable = true; 445710 executableHaskellDepends = [ ··· 446101 directory, 446102 filepath, 446103 hspec, 446104 http-client, 446105 http-date, 446106 http-types, 446107 network, 446108 old-locale, 446109 parsec, ··· 446124 }: 446125 mkDerivation { 446126 pname = "mighttpd2"; 446127 - version = "4.0.8"; 446128 - sha256 = "0yqj3m7y493bzjmx1ycyid4s40h11l46w8lv1783drlw7wpakmya"; 446129 isLibrary = true; 446130 isExecutable = true; 446131 enableSeparateDataOutput = true; ··· 446143 filepath 446144 http-date 446145 http-types 446146 network 446147 parsec 446148 resourcet ··· 446182 hspec 446183 http-client 446184 ]; 446185 description = "High performance web server on WAI/warp"; 446186 license = lib.licenses.bsd3; 446187 hydraPlatforms = lib.platforms.none; ··· 447078 }: 447079 mkDerivation { 447080 pname = "minici"; 447081 - version = "0.1.7"; 447082 - sha256 = "0kwlgsjn7ikddk59bksb4abb0dc262a61mh4694p8s7x3psjris1"; 447083 isLibrary = false; 447084 isExecutable = true; 447085 executableHaskellDepends = [ ··· 449068 bytestring, 449069 concurrent-output, 449070 containers, 449071 directory, 449072 filepath, 449073 filepattern, 449074 - ghc-prim, 449075 hspec, 449076 HsYAML, 449077 monad-parallel, 449078 process, 449079 SafeSemaphore, 449080 text, 449081 time, 449082 unix-compat, 449083 - unordered-containers, 449084 xdg-basedir, 449085 }: 449086 mkDerivation { 449087 pname = "miv"; 449088 - version = "0.4.8"; 449089 - sha256 = "1b3lplsnjf992rvidj48swccl8f8aqdik1sf481g7vwv2mz7d7m6"; 449090 isLibrary = false; 449091 isExecutable = true; 449092 executableHaskellDepends = [ ··· 449095 bytestring 449096 concurrent-output 449097 containers 449098 directory 449099 filepath 449100 filepattern 449101 - ghc-prim 449102 HsYAML 449103 monad-parallel 449104 process 449105 SafeSemaphore 449106 text 449107 time 449108 unix-compat 449109 - unordered-containers 449110 xdg-basedir 449111 ]; 449112 testHaskellDepends = [ 449113 base 449114 - bytestring 449115 - containers 449116 - directory 449117 - ghc-prim 449118 hspec 449119 - HsYAML 449120 - monad-parallel 449121 - process 449122 - text 449123 - time 449124 - unordered-containers 449125 ]; 449126 description = "Vim plugin manager written in Haskell"; 449127 license = lib.licenses.mit; ··· 449591 pname = "mmark-cli"; 449592 version = "0.0.5.2"; 449593 sha256 = "05i8wy3zls6fp1qmdz4ayydhgvq6jnhh2rj4r3frvp8nl70kkv26"; 449594 isLibrary = false; 449595 isExecutable = true; 449596 executableHaskellDepends = [ ··· 449671 }: 449672 mkDerivation { 449673 pname = "mmorph"; 449674 - version = "1.2.0"; 449675 - sha256 = "1022d8mm523dihkf85mqsqxpm9rnyicmv91c8rm4csv7xdc80cv1"; 449676 - revision = "3"; 449677 - editedCabalFile = "1582vcpjiyimb1vwnhgq8gp805iziwa8sivv2frir0cgq4z236yz"; 449678 libraryHaskellDepends = [ 449679 base 449680 mtl ··· 456467 }: 456468 mkDerivation { 456469 pname = "monoidmap-aeson"; 456470 - version = "0.0.0.5"; 456471 - sha256 = "1m5pw94lrybjvf6hnfzl0v974fg2i53r5s8aw4qv9cbxizhh68ag"; 456472 libraryHaskellDepends = [ 456473 aeson 456474 base ··· 456509 }: 456510 mkDerivation { 456511 pname = "monoidmap-examples"; 456512 - version = "0.0.0.0"; 456513 - sha256 = "1pqswi2r41r7hrrzwg4ygj67jsgmmsyyqyn7n47lnf4q331l1hv6"; 456514 libraryHaskellDepends = [ 456515 base 456516 containers ··· 456553 }: 456554 mkDerivation { 456555 pname = "monoidmap-internal"; 456556 - version = "0.0.0.0"; 456557 - sha256 = "0di3b4x4f5mkmi71rpfa0zv5048z4hkzzdy1zw1qla46sn1646jg"; 456558 libraryHaskellDepends = [ 456559 base 456560 containers ··· 456587 ]; 456588 description = "Internal support for monoidmap"; 456589 license = lib.licenses.asl20; 456590 - hydraPlatforms = lib.platforms.none; 456591 - broken = true; 456592 } 456593 ) { }; 456594 ··· 456603 }: 456604 mkDerivation { 456605 pname = "monoidmap-quickcheck"; 456606 - version = "0.0.0.2"; 456607 - sha256 = "0sqgd61a6abwr7rdiqm25cs2kl496v8ji0rax9dw0sdc3zh6m4j2"; 456608 libraryHaskellDepends = [ 456609 base 456610 containers ··· 460128 badPlatforms = lib.platforms.darwin; 460129 hydraPlatforms = lib.platforms.none; 460130 mainProgram = "mptcp-pm"; 460131 } 460132 ) { }; 460133 ··· 460813 pname = "msgpack"; 460814 version = "1.0.1.0"; 460815 sha256 = "1ljb9rdhdbxqs32brrwd42c8v3z7yrl6pr4mzmid1rfqdipard77"; 460816 - revision = "2"; 460817 - editedCabalFile = "07m8xrwfxp0p6dgg7bz1vwsypcwi9ix84bxva462261ncyaayd9p"; 460818 libraryHaskellDepends = [ 460819 base 460820 binary ··· 460838 ]; 460839 description = "A Haskell implementation of MessagePack"; 460840 license = lib.licenses.bsd3; 460841 - hydraPlatforms = lib.platforms.none; 460842 - broken = true; 460843 } 460844 ) { }; 460845 ··· 460883 description = "Aeson adapter for MessagePack"; 460884 license = lib.licenses.bsd3; 460885 hydraPlatforms = lib.platforms.none; 460886 } 460887 ) { }; 460888 ··· 461159 description = "A MessagePack-RPC Implementation"; 461160 license = lib.licenses.bsd3; 461161 hydraPlatforms = lib.platforms.none; 461162 } 461163 ) { }; 461164 ··· 464343 pname = "multistate"; 464344 version = "0.8.0.4"; 464345 sha256 = "0y42c21ha0chqhrn40a4bikdbirsw7aqg4i866frpagz1ivr915q"; 464346 - revision = "1"; 464347 - editedCabalFile = "0m1wv2yv1isw1qkzfa2fgjx0md7irp9djcgy16739wvl8hnj1ciq"; 464348 isLibrary = true; 464349 isExecutable = true; 464350 libraryHaskellDepends = [ ··· 469644 }: 469645 mkDerivation { 469646 pname = "natural-arithmetic"; 469647 - version = "0.2.2.0"; 469648 - sha256 = "1ps6lcp0s3izphp3hx73p2v91cs1r2iz4rh1hwrmxd9pfar815ya"; 469649 libraryHaskellDepends = [ 469650 base 469651 unlifted ··· 474021 }: 474022 mkDerivation { 474023 pname = "network-protocol-xmpp"; 474024 - version = "0.5.1"; 474025 - sha256 = "1fd8rq235lbpkdlashsqk01ymxbbh6q1hng706h5lw0v49wpvd7i"; 474026 libraryHaskellDepends = [ 474027 base 474028 bytestring ··· 480450 }: 480451 mkDerivation { 480452 pname = "notmuch"; 480453 - version = "0.3.1.1"; 480454 - sha256 = "18z8pbqagdyd5rqv42i6060vv40gv84dx3sf52vvrayga19k1ydw"; 480455 isLibrary = true; 480456 isExecutable = true; 480457 libraryHaskellDepends = [ ··· 480471 ]; 480472 libraryToolDepends = [ c2hs ]; 480473 description = "Haskell binding to Notmuch, the mail indexer"; 480474 - license = lib.licenses.gpl3Only; 480475 } 480476 ) 480477 { ··· 482726 } 482727 ) { }; 482728 482729 "numhask-array" = callPackage ( 482730 { 482731 mkDerivation, ··· 485405 pname = "ods2csv"; 485406 version = "0.1.0.1"; 485407 sha256 = "1a1qrknqh24hgv5v46vnxnaqcnx3n92rcwgh3b6h6k27kassx4xa"; 485408 isLibrary = false; 485409 isExecutable = true; 485410 executableHaskellDepends = [ ··· 486293 pname = "oidc-client"; 486294 version = "0.8.0.0"; 486295 sha256 = "0fmffnf6gg99d15nn84ih36lr7qasa1zfkb62sgb0icik8dwv83m"; 486296 isLibrary = true; 486297 isExecutable = true; 486298 libraryHaskellDepends = [ ··· 486330 ]; 486331 description = "OpenID Connect 1.0 library for RP"; 486332 license = lib.licenses.mit; 486333 - hydraPlatforms = lib.platforms.none; 486334 - broken = true; 486335 } 486336 ) { }; 486337 ··· 486541 } 486542 ) { }; 486543 486544 "ollama-holes-plugin" = callPackage ( 486545 { 486546 mkDerivation, ··· 489408 }: 489409 mkDerivation { 489410 pname = "opencascade-hs"; 489411 - version = "0.5.0.1"; 489412 - sha256 = "1a397mxry4k5hq6gwnjn1lc3q8fz5pg7ff6imr1fwyf9b6rhls9j"; 489413 libraryHaskellDepends = [ 489414 base 489415 resourcet ··· 489432 }: 489433 mkDerivation { 489434 pname = "opencc"; 489435 - version = "0.1.1.0"; 489436 - sha256 = "06jz04352bgqnfvzds75n65x352x07ffj8aan01q6m2mjs3xidfa"; 489437 libraryHaskellDepends = [ 489438 base 489439 bytestring ··· 490821 }: 490822 mkDerivation { 490823 pname = "opentelemetry-plugin"; 490824 - version = "1.1.1"; 490825 - sha256 = "1sp6bzy0is704x18522b2kmbbsw3nbfz9x69rvidmpz0x52cpwbg"; 490826 libraryHaskellDepends = [ 490827 base 490828 bytestring ··· 490840 ]; 490841 description = "GHC plugin for open telemetry"; 490842 license = lib.licenses.bsd3; 490843 - hydraPlatforms = lib.platforms.none; 490844 - broken = true; 490845 } 490846 ) { }; 490847 ··· 492465 } 492466 ) { }; 492467 492468 - "optima_0_4_0_6" = callPackage ( 492469 { 492470 mkDerivation, 492471 attoparsec, ··· 492478 }: 492479 mkDerivation { 492480 pname = "optima"; 492481 - version = "0.4.0.6"; 492482 - sha256 = "06wy9d3zidly70d3n9bbxfl9yx2hx03xw8k9p8vhjb0xj526vpgk"; 492483 libraryHaskellDepends = [ 492484 attoparsec 492485 attoparsec-data ··· 492843 } 492844 ) { }; 492845 492846 "optparse-applicative-cmdline-util" = callPackage ( 492847 { 492848 mkDerivation, ··· 495188 pname = "os-string"; 495189 version = "2.0.7"; 495190 sha256 = "186b4swiga0nk05np512iw50pz9w88l3bqz47pr241997bykb71k"; 495191 libraryHaskellDepends = [ 495192 base 495193 bytestring ··· 495746 }: 495747 mkDerivation { 495748 pname = "oughta"; 495749 - version = "0.2.0.0"; 495750 - sha256 = "1ls97l94jpv5mlmiqccm4z8p80vnk8z0mv2937zcl1c7bx67ra3j"; 495751 libraryHaskellDepends = [ 495752 base 495753 bytestring ··· 496134 } 496135 ) { }; 496136 496137 "pa-error-tree" = callPackage ( 496138 { 496139 mkDerivation, ··· 496661 extra, 496662 filepath, 496663 hspec, 496664 listsafe, 496665 mtl, 496666 optparse-applicative, ··· 496672 }: 496673 mkDerivation { 496674 pname = "packed-data"; 496675 - version = "0.1.0.3"; 496676 - sha256 = "1h0aqcpfygj29mij5ln7zaypf4a6v37ycnlhh5shb7pvh0nfajn3"; 496677 isLibrary = true; 496678 isExecutable = true; 496679 libraryHaskellDepends = [ 496680 base 496681 bytestring 496682 - bytestring-strict-builder 496683 deepseq 496684 extra 496685 mtl 496686 template-haskell 496687 ]; ··· 496710 vector 496711 ]; 496712 license = lib.licenses.bsd3; 496713 mainProgram = "examples"; 496714 } 496715 ) { }; 496716 ··· 497746 "palindromes" = callPackage ( 497747 { 497748 mkDerivation, 497749 - array, 497750 base, 497751 - bytestring, 497752 - containers, 497753 }: 497754 mkDerivation { 497755 pname = "palindromes"; 497756 - version = "0.4"; 497757 - sha256 = "1k0kvd8p1ivwmpmf8khwmb4vyk8z0di74xn5840zy9jhf1cwx4kn"; 497758 isLibrary = true; 497759 isExecutable = true; 497760 executableHaskellDepends = [ 497761 - array 497762 base 497763 - bytestring 497764 - containers 497765 ]; 497766 description = "Finding palindromes in strings"; 497767 license = lib.licenses.bsd3; ··· 499571 }: 499572 mkDerivation { 499573 pname = "pandoc-lua-marshal"; 499574 - version = "0.3.0"; 499575 - sha256 = "0d8vfbmgd107b9lq9dq0b39v3dhznqh11j0ci0i8hsb7g3dkks5g"; 499576 libraryHaskellDepends = [ 499577 aeson 499578 base ··· 499801 pname = "pandoc-plot"; 499802 version = "1.9.1"; 499803 sha256 = "0d6lknjnlzg4a7sx311kpdi94yq7fp19lhvwbsf7rvc3ykx0hjm3"; 499804 isLibrary = true; 499805 isExecutable = true; 499806 libraryHaskellDepends = [ ··· 500211 pname = "pandoc-types"; 500212 version = "1.23.1"; 500213 sha256 = "1hd18l1c5yh7x24gsligkbraadq12hn7mim16xyjnicdsa1s03xd"; 500214 - revision = "2"; 500215 - editedCabalFile = "1whymq4w5z08l5ng829kn8aslczda6svi6c6q72cnv200mlq7d1c"; 500216 libraryHaskellDepends = [ 500217 aeson 500218 base ··· 503612 pname = "parser-combinators-tests"; 503613 version = "1.3.0"; 503614 sha256 = "0sw6ws7za93y3lbmxp6jp1k17zi3wdg7698ab133kcw82f6mzba2"; 503615 - revision = "1"; 503616 - editedCabalFile = "0h6lwj0mdlirlwcadjvyblvgqg6yksw2bnp77qkjxm2kk3rw56hn"; 503617 isLibrary = false; 503618 isExecutable = false; 503619 testHaskellDepends = [ ··· 506147 exceptions, 506148 hspec, 506149 http-client, 506150 http-types, 506151 network-uri, 506152 text, ··· 506155 }: 506156 mkDerivation { 506157 pname = "patrol"; 506158 - version = "1.0.0.11"; 506159 - sha256 = "0adci15r7mm0ddbg4zb10kngyl0c7ipaws7drd7idmzrb0gb82kd"; 506160 libraryHaskellDepends = [ 506161 aeson 506162 base ··· 506165 containers 506166 exceptions 506167 http-client 506168 http-types 506169 network-uri 506170 text ··· 506188 ]; 506189 description = "Sentry SDK"; 506190 license = lib.licenses.mit; 506191 } 506192 ) { }; 506193 ··· 508030 ]; 508031 description = "Lazy Peano numbers including observable infinity value"; 508032 license = lib.licenses.bsd3; 508033 } 508034 ) { }; 508035 ··· 510559 }: 510560 mkDerivation { 510561 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 version = "0.1.0.6"; 510603 sha256 = "1v07vhjmim4bycl7ygg2my3qwqqz36ajm8x8gwqh0g0i83sjh5ks"; 510604 libraryHaskellDepends = [ ··· 510621 testToolDepends = [ hspec-discover ]; 510622 description = "Documentation DSL for persistent entities"; 510623 license = lib.licenses.asl20; 510624 - hydraPlatforms = lib.platforms.none; 510625 } 510626 ) { }; 510627 ··· 511720 } 511721 ) { }; 511722 511723 "persistent-postgresql-streaming" = callPackage ( 511724 { 511725 mkDerivation, ··· 512366 } 512367 ) { }; 512368 512369 - "persistent-test_2_13_1_3" = callPackage ( 512370 { 512371 mkDerivation, 512372 aeson, ··· 512432 ]; 512433 description = "Tests for Persistent"; 512434 license = lib.licenses.mit; 512435 - hydraPlatforms = lib.platforms.none; 512436 } 512437 ) { }; 512438 512439 - "persistent-test" = callPackage ( 512440 { 512441 mkDerivation, 512442 aeson, ··· 512471 pname = "persistent-test"; 512472 version = "2.13.1.4"; 512473 sha256 = "1k2wq6ag4jvqr1krdjfx84mmx0mg09hy38w569zxwdrd03ffcjpy"; 512474 libraryHaskellDepends = [ 512475 aeson 512476 base ··· 512502 ]; 512503 description = "Tests for Persistent"; 512504 license = lib.licenses.mit; 512505 } 512506 ) { }; 512507 ··· 512529 pname = "persistent-typed-db"; 512530 version = "0.1.0.7"; 512531 sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; 512532 - revision = "1"; 512533 - editedCabalFile = "19l1nfd82l8lsjsi00virsapwlnany5cdwgzw9hmm9bkwxfsk9v8"; 512534 libraryHaskellDepends = [ 512535 aeson 512536 base ··· 513989 bytestring, 513990 containers, 513991 directory, 513992 filepath, 513993 hspec, 513994 hspec-core, ··· 513996 megaparsec, 513997 optparse-applicative, 513998 prettyprinter, 513999 scientific, 514000 silently, 514001 text, 514002 utf8-string, 514003 yaml, 514004 }: 514005 mkDerivation { 514006 pname = "phino"; 514007 - version = "0.0.0.1"; 514008 - sha256 = "1sl4iqrcmmjn2gc294rz4yfj5k0hd7ngl9ax57k22h2qac90rrkc"; 514009 isLibrary = true; 514010 isExecutable = true; 514011 libraryHaskellDepends = [ ··· 514015 bytestring 514016 containers 514017 directory 514018 filepath 514019 megaparsec 514020 optparse-applicative 514021 prettyprinter 514022 scientific 514023 text 514024 utf8-string 514025 yaml 514026 ]; 514027 executableHaskellDepends = [ base ]; ··· 514036 megaparsec 514037 optparse-applicative 514038 prettyprinter 514039 silently 514040 text 514041 yaml 514042 ]; 514043 testToolDepends = [ hspec-discover ]; ··· 519444 pname = "pipes-safe"; 519445 version = "2.3.5"; 519446 sha256 = "13npagy597g6zfr2f3vj4a98h2ssg2ps7lmdzrgdsvm8m28x3cph"; 519447 - revision = "3"; 519448 - editedCabalFile = "1wic8km3c17g2xrmxd4qj5qmppb76k7srxrgj8jg1vs6g2l7v6cs"; 519449 libraryHaskellDepends = [ 519450 base 519451 containers ··· 522415 } 522416 ) { }; 522417 522418 "png-file" = callPackage ( 522419 { 522420 mkDerivation, ··· 525037 ]; 525038 description = "Colog adapters for polysemy-log"; 525039 license = "BSD-2-Clause-Patent"; 525040 - hydraPlatforms = lib.platforms.none; 525041 } 525042 ) { }; 525043 ··· 526622 "poolboy" = callPackage ( 526623 { 526624 mkDerivation, 526625 - async, 526626 base, 526627 hspec, 526628 hspec-core, 526629 - stm, 526630 unliftio, 526631 }: 526632 mkDerivation { 526633 pname = "poolboy"; 526634 - version = "0.2.2.0"; 526635 - sha256 = "0d0lxqyf73w7nvgydbgv692zzc0zg2hk8sdd3lb6xyzdqkkd0vf3"; 526636 libraryHaskellDepends = [ 526637 - async 526638 base 526639 - stm 526640 unliftio 526641 ]; 526642 testHaskellDepends = [ 526643 base 526644 hspec 526645 hspec-core 526646 ]; 526647 description = "Simple work queue for bounded concurrency"; 526648 license = lib.licenses.isc; 526649 - hydraPlatforms = lib.platforms.none; 526650 - broken = true; 526651 } 526652 ) { }; 526653 ··· 527994 { mkDerivation, base }: 527995 mkDerivation { 527996 pname = "positive-integer"; 527997 - version = "0.1.0.0"; 527998 - sha256 = "17vqxdmqbsp6366dipq5xdfb3aq5mrshlvkw8zv30byl7p6iaz51"; 527999 - revision = "1"; 528000 - editedCabalFile = "101bbp5zv7w5ldr7j2nxpmm21mpnpzz4knrcv5inqfs0k69w1z7c"; 528001 libraryHaskellDepends = [ base ]; 528002 description = "Type of positive integers"; 528003 license = lib.licenses.mit; ··· 531719 base, 531720 bytestring, 531721 criterion, 531722 ppad-base16, 531723 ppad-chacha, 531724 ppad-poly1305, ··· 531729 }: 531730 mkDerivation { 531731 pname = "ppad-aead"; 531732 - version = "0.1.0"; 531733 - sha256 = "1vvz39m852yp3j0mdm1mx3i5rgl78z0limlgm70al34gv1gxv3mh"; 531734 libraryHaskellDepends = [ 531735 base 531736 bytestring ··· 531751 base 531752 bytestring 531753 criterion 531754 ppad-base16 531755 ]; 531756 description = "A pure AEAD-ChaCha20-Poly1305 construction"; ··· 531818 }: 531819 mkDerivation { 531820 pname = "ppad-base58"; 531821 - version = "0.2.0"; 531822 - sha256 = "1bn0fv1vmsc698lpl8x1brgi00bl9rcnh7r8v81rcxnjqf9xfdcb"; 531823 libraryHaskellDepends = [ 531824 base 531825 bytestring ··· 531859 }: 531860 mkDerivation { 531861 pname = "ppad-bech32"; 531862 - version = "0.2.2"; 531863 - sha256 = "1bp4p6adfi7awy3k2fbi3akjqr5gyiijilgxg5r0hzpnzmzpxvzr"; 531864 libraryHaskellDepends = [ 531865 base 531866 bytestring ··· 531903 }: 531904 mkDerivation { 531905 pname = "ppad-bip32"; 531906 - version = "0.1.1"; 531907 - sha256 = "0q76ffxzrbr0fiv18ghgfjrv0y61nvsb6971pl49377c2835qa1l"; 531908 libraryHaskellDepends = [ 531909 base 531910 bytestring ··· 531960 }: 531961 mkDerivation { 531962 pname = "ppad-bip39"; 531963 - version = "0.2.1"; 531964 - sha256 = "1aqcjq1xika89qhxf54z25shg4kz8pmr6k70k48w7lyk85h3l97b"; 531965 libraryHaskellDepends = [ 531966 base 531967 bytestring ··· 532004 base, 532005 bytestring, 532006 criterion, 532007 ppad-base16, 532008 primitive, 532009 tasty, ··· 532011 }: 532012 mkDerivation { 532013 pname = "ppad-chacha"; 532014 - version = "0.1.0"; 532015 - sha256 = "15idv1nrl2rl5rmx42dw1zwpdr7wvrr08j0k4vwy0s12cc40aka6"; 532016 libraryHaskellDepends = [ 532017 base 532018 bytestring ··· 532030 base 532031 bytestring 532032 criterion 532033 ppad-base16 532034 ]; 532035 description = "A pure ChaCha20 stream cipher"; ··· 532053 }: 532054 mkDerivation { 532055 pname = "ppad-hkdf"; 532056 - version = "0.2.1"; 532057 - sha256 = "1y5rmkaq8wgibsx6bvppbaqp13fb9al5yn4ni9x2ll685545m398"; 532058 libraryHaskellDepends = [ 532059 base 532060 bytestring ··· 532145 }: 532146 mkDerivation { 532147 pname = "ppad-pbkdf"; 532148 - version = "0.1.1"; 532149 - sha256 = "05g3k4gyjkpn9k5fhz37lq10qgzlwayf4xiy5m4kjijv7l1wcxqp"; 532150 libraryHaskellDepends = [ 532151 base 532152 bytestring ··· 532188 }: 532189 mkDerivation { 532190 pname = "ppad-poly1305"; 532191 - version = "0.2.0"; 532192 - sha256 = "1vv3ln9lzszx3h0dji4fqznh86qh40sl34msljddgyj3h709lzk6"; 532193 libraryHaskellDepends = [ 532194 base 532195 bytestring ··· 532322 }: 532323 mkDerivation { 532324 pname = "ppad-secp256k1"; 532325 - version = "0.3.0"; 532326 - sha256 = "1k2glxrrpgdngzy0j5mgbkh9a0a5b0cp5c1lmvaiwipik50n9rb3"; 532327 libraryHaskellDepends = [ 532328 base 532329 bytestring ··· 537158 pname = "probability-polynomial"; 537159 version = "1.0.0.1"; 537160 sha256 = "1f06x4d2cbd9j7rxgwdpxn8ff8w32xag96qk86mwggnzlw091gib"; 537161 - revision = "1"; 537162 - editedCabalFile = "10avhbz8k3yg1hzjp5qbkhv3mmmhrvii5mpjcxqcw9pq635x0kc8"; 537163 libraryHaskellDepends = [ 537164 base 537165 containers ··· 538567 }: 538568 mkDerivation { 538569 pname = "profunctors"; 538570 - version = "5.6.2"; 538571 - sha256 = "0an9v003ivxmjid0s51qznbjhd5fsa1dkcfsrhxllnjja1xmv5b5"; 538572 - revision = "3"; 538573 - editedCabalFile = "0y2g5dhmvkbd8zsckpgxd1g4hr3g56g0iqi6crjjc8wqd12bly71"; 538574 libraryHaskellDepends = [ 538575 base 538576 base-orphans ··· 539849 } 539850 ) { }; 539851 539852 "prometheus-wai-middleware" = callPackage ( 539853 { 539854 mkDerivation, ··· 543128 } 543129 ) { }; 543130 543131 "pub" = callPackage ( 543132 { 543133 mkDerivation, ··· 545392 }: 545393 mkDerivation { 545394 pname = "push-notify-apn"; 545395 - version = "0.4.0.3"; 545396 - sha256 = "024xanv7wcpmbd2mv4v8gw281gsnx5z15a39zh0v07bgiq7q04wb"; 545397 isLibrary = true; 545398 isExecutable = true; 545399 libraryHaskellDepends = [ ··· 546720 bytestring, 546721 containers, 546722 cryptonite, 546723 hspec, 546724 optparse-applicative, 546725 process, 546726 simple-sql-parser, 546727 - split, 546728 sqlite-simple, 546729 syb, 546730 text, ··· 546732 }: 546733 mkDerivation { 546734 pname = "qhs"; 546735 - version = "0.3.3"; 546736 - sha256 = "1wm11y9gnfrjrq5i5nl74vkg242mr08223kw6cracnmr4n6xqm0q"; 546737 isLibrary = false; 546738 isExecutable = true; 546739 - executableHaskellDepends = [ 546740 base 546741 bytestring 546742 containers 546743 cryptonite 546744 optparse-applicative 546745 simple-sql-parser 546746 - split 546747 sqlite-simple 546748 syb 546749 text 546750 zlib 546751 ]; 546752 testHaskellDepends = [ 546753 base 546754 - bytestring 546755 containers 546756 - cryptonite 546757 hspec 546758 - optparse-applicative 546759 process 546760 - simple-sql-parser 546761 - split 546762 - sqlite-simple 546763 - syb 546764 - text 546765 - zlib 546766 ]; 546767 description = "Command line tool qhs, SQL queries on CSV and TSV files"; 546768 license = lib.licenses.mit; 546769 hydraPlatforms = lib.platforms.none; ··· 547858 pname = "quantification"; 547859 version = "0.8"; 547860 sha256 = "1dw47hy0pvar4mkdp6xjz8ywpic2zs3q0xah9zlbnfpibhjjc1a9"; 547861 libraryHaskellDepends = [ 547862 base 547863 binary ··· 548701 crypton, 548702 crypton-x509, 548703 crypton-x509-system, 548704 fast-logger, 548705 filepath, 548706 hspec, ··· 548719 }: 548720 mkDerivation { 548721 pname = "quic"; 548722 - version = "0.2.14"; 548723 - sha256 = "1f486d4mqc18pfx5krwxv9mh1zkmyjbjddkx4yixjf2yfhq6a855"; 548724 isLibrary = true; 548725 isExecutable = true; 548726 libraryHaskellDepends = [ ··· 548734 crypton 548735 crypton-x509 548736 crypton-x509-system 548737 fast-logger 548738 filepath 548739 iproute ··· 548790 "quick-process" = callPackage ( 548791 { 548792 mkDerivation, 548793 attoparsec, 548794 base, 548795 bytestring, 548796 casing, 548797 conduit, ··· 548803 either, 548804 exceptions, 548805 filepath, 548806 generic-lens, 548807 generic-random, 548808 hashable, 548809 - HList, 548810 lens, 548811 mmorph, 548812 monad-control, 548813 mtl, 548814 - pretty, 548815 process, 548816 QuickCheck, 548817 quickcheck-instances, 548818 regex-compat, ··· 548824 sbv, 548825 semigroups, 548826 streaming-commons, 548827 tasty, 548828 tasty-discover, 548829 tasty-hunit, ··· 548843 unix-compat, 548844 unliftio, 548845 unliftio-core, 548846 }: 548847 mkDerivation { 548848 pname = "quick-process"; 548849 - version = "0.0.1"; 548850 - sha256 = "1dgv63w8qlb35xjsyn0716xsmb9jimdwly0c7704pmlfnw5sp38s"; 548851 libraryHaskellDepends = [ 548852 attoparsec 548853 base 548854 bytestring 548855 casing 548856 conduit ··· 548862 either 548863 exceptions 548864 filepath 548865 generic-lens 548866 generic-random 548867 hashable 548868 - HList 548869 lens 548870 mmorph 548871 monad-control 548872 mtl 548873 - pretty 548874 process 548875 QuickCheck 548876 regex-compat 548877 regex-posix ··· 548882 sbv 548883 semigroups 548884 streaming-commons 548885 template-haskell 548886 temporary 548887 text ··· 548895 unix 548896 unix-compat 548897 unliftio-core 548898 ]; 548899 testHaskellDepends = [ 548900 base 548901 bytestring 548902 directory 548903 generic-lens 548904 - HList 548905 lens 548906 QuickCheck 548907 quickcheck-instances ··· 549336 }: 549337 mkDerivation { 549338 pname = "quickcheck-groups"; 549339 - version = "0.0.1.4"; 549340 - sha256 = "1k1pbxcp8ppzyym2wavvpn6p5d74cddh1ldlg1kv55ypfszzzf21"; 549341 libraryHaskellDepends = [ 549342 base 549343 groups ··· 549420 }: 549421 mkDerivation { 549422 pname = "quickcheck-instances"; 549423 - version = "0.3.32"; 549424 - sha256 = "10zz62j1jplk392c90hkg9mfk8piyp5ify94jp3rld722phg5xa8"; 549425 revision = "1"; 549426 - editedCabalFile = "0d7vgsvvkipa1d1gh7z7ha12fv49frcv81dz09qy0m6kvn5lawl7"; 549427 libraryHaskellDepends = [ 549428 array 549429 base ··· 549508 }: 549509 mkDerivation { 549510 pname = "quickcheck-lockstep"; 549511 - version = "0.7.0"; 549512 - sha256 = "0dcy47ab2813saml3jdiar9xlx8ml8c55awcg92i6amazhgwpyw2"; 549513 libraryHaskellDepends = [ 549514 base 549515 constraints ··· 549535 ]; 549536 description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; 549537 license = lib.licenses.bsd3; 549538 - hydraPlatforms = lib.platforms.none; 549539 - broken = true; 549540 } 549541 ) { }; 549542 ··· 549553 pretty-show, 549554 QuickCheck, 549555 quickcheck-classes, 549556 - quickcheck-instances, 549557 semigroupoids, 549558 text, 549559 vector, 549560 }: 549561 mkDerivation { 549562 pname = "quickcheck-monoid-subclasses"; 549563 - version = "0.3.0.5"; 549564 - sha256 = "0hnrm69vavc2b1h4cishdvn7j0x8l8mk8fggbai3kn77w6cnf3il"; 549565 libraryHaskellDepends = [ 549566 base 549567 containers ··· 549569 pretty-show 549570 QuickCheck 549571 quickcheck-classes 549572 - quickcheck-instances 549573 semigroupoids 549574 ]; 549575 testHaskellDepends = [ ··· 549581 monoid-subclasses 549582 QuickCheck 549583 quickcheck-classes 549584 - quickcheck-instances 549585 text 549586 vector 549587 ]; ··· 549701 }: 549702 mkDerivation { 549703 pname = "quickcheck-quid"; 549704 - version = "0.0.1.7"; 549705 - sha256 = "1r0ip3a281dgvy6bplhr76wg5n0l4qz0k6i6r3fzh4848r6z9say"; 549706 libraryHaskellDepends = [ 549707 base 549708 containers ··· 555890 }: 555891 mkDerivation { 555892 pname = "rdf4h"; 555893 - version = "5.2.0"; 555894 - sha256 = "03f1dcw4zii4yvq7azhcgpkf59wibjdlvkifb88jp8maiaadzr75"; 555895 isLibrary = true; 555896 isExecutable = true; 555897 libraryHaskellDepends = [ ··· 556056 }: 556057 mkDerivation { 556058 pname = "rds-data"; 556059 - version = "0.2.0.0"; 556060 - sha256 = "08lk0m1vgvbsmbvf5gv9nlab161a05w6n964w90g7wf1rqmj54d7"; 556061 - isLibrary = false; 556062 - isExecutable = false; 556063 libraryHaskellDepends = [ 556064 aeson 556065 amazonka-core ··· 556203 } 556204 ) { }; 556205 556206 "rdtsc" = callPackage ( 556207 { mkDerivation, base }: 556208 mkDerivation { ··· 560678 }: 560679 mkDerivation { 560680 pname = "reflex"; 560681 - version = "0.9.3.3"; 560682 - sha256 = "0iklqcszxmj3dian0mjpz75483084ar8i328ydcx68xk9l9rlqbf"; 560683 libraryHaskellDepends = [ 560684 base 560685 bifunctors ··· 561036 ]; 561037 description = "Use colonnade with reflex-dom"; 561038 license = lib.licenses.bsd3; 561039 - hydraPlatforms = lib.platforms.none; 561040 } 561041 ) { }; 561042 ··· 562045 description = "Helper widgets for reflex-localize"; 562046 license = lib.licenses.mit; 562047 badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; 562048 - hydraPlatforms = lib.platforms.none; 562049 } 562050 ) { }; 562051 ··· 564751 description = "MessagePack encoders / decoders"; 564752 license = lib.licenses.mit; 564753 hydraPlatforms = lib.platforms.none; 564754 } 564755 ) { }; 564756 ··· 568955 } 568956 ) { }; 568957 568958 "resource-pool-catchio" = callPackage ( 568959 { 568960 mkDerivation, ··· 572760 }: 572761 mkDerivation { 572762 pname = "richenv"; 572763 - version = "0.1.0.2"; 572764 - sha256 = "0yxl6cnhg7n29f93mj4a5wkp1v1i2y38824n2bg8b64ik1hlg876"; 572765 libraryHaskellDepends = [ 572766 aeson 572767 base ··· 574720 }: 574721 mkDerivation { 574722 pname = "roc-id"; 574723 - version = "0.2.0.4"; 574724 - sha256 = "126ijgk7wi06694xcqvjz9amg61pzi2hnx7gq631zwxa6d98czzk"; 574725 libraryHaskellDepends = [ 574726 base 574727 MonadRandom ··· 581799 exceptions, 581800 filepath, 581801 free, 581802 - haskell-src-exts, 581803 microlens, 581804 microlens-th, 581805 monad-control, ··· 581826 }: 581827 mkDerivation { 581828 pname = "sandwich"; 581829 - version = "0.3.0.3"; 581830 - sha256 = "0j53b68vgidwahmbbhcrshh9043k1g230lypyfavcwbpcgrzxkpb"; 581831 isLibrary = true; 581832 isExecutable = true; 581833 libraryHaskellDepends = [ ··· 581844 exceptions 581845 filepath 581846 free 581847 - haskell-src-exts 581848 microlens 581849 microlens-th 581850 monad-control ··· 581883 exceptions 581884 filepath 581885 free 581886 - haskell-src-exts 581887 microlens 581888 microlens-th 581889 monad-control ··· 581922 exceptions 581923 filepath 581924 free 581925 - haskell-src-exts 581926 microlens 581927 microlens-th 581928 monad-control ··· 581982 string-interpolate, 581983 temporary, 581984 text, 581985 - time, 581986 transformers, 581987 unix-compat, 581988 unliftio, ··· 581991 }: 581992 mkDerivation { 581993 pname = "sandwich-contexts"; 581994 - version = "0.3.0.2"; 581995 - sha256 = "01klfrf9n1z6h1iqgb3ccch1dxihp28lh60d44xj3xmfz2q4y5iq"; 581996 libraryHaskellDepends = [ 581997 aeson 581998 base ··· 582020 string-interpolate 582021 temporary 582022 text 582023 - time 582024 transformers 582025 unix-compat 582026 unliftio ··· 582054 exceptions, 582055 filepath, 582056 http-client, 582057 - kubernetes-client, 582058 - pname = "nat"; 582059 lens, 582060 lens-aeson, 582061 minio-hs, ··· 582081 }: 582082 mkDerivation { 582083 pname = "sandwich-contexts-kubernetes"; 582084 - version = "0.1.0.0"; 582085 - sha256 = "04p2g6jjra3bh4a4zb00lidckm91ba3cvwvrvjh28i3flh15b6wr"; 582086 libraryHaskellDepends = [ 582087 aeson 582088 base ··· 582091 exceptions 582092 filepath 582093 http-client 582094 - kubernetes-client 582095 - pname = "nat"; 582096 lens 582097 lens-aeson 582098 minio-hs ··· 582450 }: 582451 mkDerivation { 582452 pname = "sandwich-webdriver"; 582453 - version = "0.3.0.0"; 582454 - sha256 = "1s4j2i91csn1wplw1vnz7s8kin5v580a7m98yfas8p7nlm9bihp4"; 582455 libraryHaskellDepends = [ 582456 aeson 582457 base ··· 582515 sandwich 582516 sandwich-contexts 582517 string-interpolate 582518 text 582519 time 582520 transformers ··· 583551 } 583552 ) { inherit (pkgs) z3; }; 583553 583554 - "sbv_11_7" = callPackage ( 583555 { 583556 mkDerivation, 583557 array, ··· 583564 deepseq, 583565 directory, 583566 filepath, 583567 libBF, 583568 mtl, 583569 pretty, ··· 583586 }: 583587 mkDerivation { 583588 pname = "sbv"; 583589 - version = "11.7"; 583590 - sha256 = "1nq1yjc4wfjmqhp0y61aqmva99vxnpj2mpksyai63ijmx9zq8yzs"; 583591 enableSeparateDataOutput = true; 583592 libraryHaskellDepends = [ 583593 array ··· 583600 deepseq 583601 directory 583602 filepath 583603 libBF 583604 mtl 583605 pretty ··· 588824 }: 588825 mkDerivation { 588826 pname = "search-algorithms"; 588827 - version = "0.3.3"; 588828 - sha256 = "00b1fxgjg57m6qm8017yvqbs6qvblw4iazir005flzjm6jls12kz"; 588829 libraryHaskellDepends = [ 588830 base 588831 containers ··· 589737 } 589738 ) { }; 589739 589740 "selections" = callPackage ( 589741 { mkDerivation, base }: 589742 mkDerivation { ··· 591822 } 591823 ) { }; 591824 591825 - "sequence-formats_1_11_0_1" = callPackage ( 591826 { 591827 mkDerivation, 591828 attoparsec, ··· 591847 }: 591848 mkDerivation { 591849 pname = "sequence-formats"; 591850 - version = "1.11.0.1"; 591851 - sha256 = "1qzawb3qnn76j7dvb0q8jbblbayggr5hja0x723y09nv1y9lg6g5"; 591852 libraryHaskellDepends = [ 591853 attoparsec 591854 base ··· 592397 pname = "serialise"; 592398 version = "0.2.6.1"; 592399 sha256 = "1x3p9vi6daf50xgv5xxjnclqcq9ynqg1qw7af3ppa1nizycrg533"; 592400 - revision = "4"; 592401 - editedCabalFile = "1ipcrg5g450a3aq15l5rhngpfck8krz7c7bvhhrd8fv3q645yjbh"; 592402 libraryHaskellDepends = [ 592403 array 592404 base ··· 592794 constraints, 592795 containers, 592796 deepseq, 592797 hspec, 592798 hspec-discover, 592799 http-api-data, ··· 592812 }: 592813 mkDerivation { 592814 pname = "servant"; 592815 - version = "0.20.2"; 592816 - sha256 = "0rakyjrmn05sb2gxk4bkxlb23zfwm1pjkdg9mh7b4hjgsdwy4fba"; 592817 - revision = "1"; 592818 - editedCabalFile = "17n769vwyyc5hshm71r33ksvn26qcz19017wl9p8xj4igav790pa"; 592819 libraryHaskellDepends = [ 592820 aeson 592821 attoparsec ··· 592826 constraints 592827 containers 592828 deepseq 592829 http-api-data 592830 http-media 592831 http-types ··· 592846 hspec 592847 http-media 592848 mtl 592849 QuickCheck 592850 quickcheck-instances 592851 text ··· 592904 containers, 592905 servant, 592906 servant-server, 592907 - template-haskell, 592908 text, 592909 }: 592910 mkDerivation { 592911 pname = "servant-activeresource"; 592912 - version = "0.1.0.0"; 592913 - sha256 = "0dcip0vbry344pv8za5ldxr9g71vyb63ks3jdpjc7z4vixp5rbsp"; 592914 - revision = "1"; 592915 - editedCabalFile = "006mbw5mvj5kzz8bigws55xallwrsvdsi5b5y9wc4d7l8a63z0gd"; 592916 libraryHaskellDepends = [ 592917 aeson 592918 base ··· 592920 containers 592921 servant 592922 servant-server 592923 - template-haskell 592924 text 592925 ]; 592926 testHaskellDepends = [ ··· 592930 containers 592931 servant 592932 servant-server 592933 - template-haskell 592934 text 592935 ]; 592936 - description = "Servant endpoints compatible with Rails's ActiveResources"; 592937 license = lib.licenses.bsd3; 592938 } 592939 ) { }; ··· 593455 bytestring, 593456 case-insensitive, 593457 cookie, 593458 - data-default-class, 593459 entropy, 593460 hspec, 593461 hspec-discover, ··· 593483 }: 593484 mkDerivation { 593485 pname = "servant-auth-server"; 593486 - version = "0.4.9.0"; 593487 - sha256 = "0fhk2z9n9ax4g7iisdgcd87wgj9wvazhl86kjh364gsj1g8a5y99"; 593488 - revision = "1"; 593489 - editedCabalFile = "0skvvqkyqzgjdg5b2l9fd1ri144s649g5yddpclwciraimip7gw1"; 593490 libraryHaskellDepends = [ 593491 aeson 593492 base ··· 593495 bytestring 593496 case-insensitive 593497 cookie 593498 - data-default-class 593499 entropy 593500 http-types 593501 jose ··· 594280 ]; 594281 description = "Command line interface for Servant API clients"; 594282 license = lib.licenses.bsd3; 594283 - hydraPlatforms = lib.platforms.none; 594284 mainProgram = "greet-cli"; 594285 - broken = true; 594286 } 594287 ) { }; 594288 ··· 594297 deepseq, 594298 entropy, 594299 exceptions, 594300 hspec, 594301 hspec-discover, 594302 http-api-data, ··· 594325 }: 594326 mkDerivation { 594327 pname = "servant-client"; 594328 - version = "0.20.2"; 594329 - sha256 = "026bp0qk2bx672834yjxmqrfacyzzdssm89bd0niz1xzxzmw5r7g"; 594330 - revision = "2"; 594331 - editedCabalFile = "1sm0xspcsxn6n70nirpglcmx07sn6vmag8kvvw9i2dr2hcfkgk55"; 594332 libraryHaskellDepends = [ 594333 base 594334 base-compat ··· 594356 base-compat 594357 bytestring 594358 entropy 594359 hspec 594360 http-api-data 594361 http-client ··· 594388 { 594389 mkDerivation, 594390 aeson, 594391 base, 594392 base-compat, 594393 base64-bytestring, ··· 594408 sop-core, 594409 template-haskell, 594410 text, 594411 }: 594412 mkDerivation { 594413 pname = "servant-client-core"; 594414 - version = "0.20.2"; 594415 - sha256 = "10nv810ns8v1d9a2fkg9bgi7h9gm4yap1y6mg2r15d569i27rrvc"; 594416 revision = "1"; 594417 - editedCabalFile = "13200adlbl8mydi35x1r8w4q9ra8y079figgjxl5jsrhvps54608"; 594418 libraryHaskellDepends = [ 594419 aeson 594420 base 594421 base-compat 594422 base64-bytestring ··· 594438 testHaskellDepends = [ 594439 base 594440 base-compat 594441 deepseq 594442 hspec 594443 QuickCheck 594444 ]; 594445 testToolDepends = [ hspec-discover ]; 594446 description = "Core functionality and class for client function generation for servant APIs"; ··· 595242 testHaskellDepends = [ base ]; 595243 description = "Servant support for Server-Sent events"; 595244 license = lib.licenses.bsd3; 595245 } 595246 ) { }; 595247 ··· 598184 }: 598185 mkDerivation { 598186 pname = "servant-routes"; 598187 - version = "0.1.0.0"; 598188 - sha256 = "1m17cpbmyi8y2h27p9y28193b2d46qmr8bhswvjn89nd5z42d6x2"; 598189 libraryHaskellDepends = [ 598190 aeson 598191 aeson-pretty ··· 598216 } 598217 ) { }; 598218 598219 "servant-ruby" = callPackage ( 598220 { 598221 mkDerivation, ··· 598492 }: 598493 mkDerivation { 598494 pname = "servant-server"; 598495 - version = "0.20.2"; 598496 - sha256 = "0fqgnzzgbj4w441h3v841lav7gxazakz04s354r24pq4rh6m1kqy"; 598497 revision = "1"; 598498 - editedCabalFile = "0qjl1yrr0l7kynrndv8qmpzl0jz9nzb7c4v9r7kxq05nnb7xpqbz"; 598499 isLibrary = true; 598500 isExecutable = true; 598501 libraryHaskellDepends = [ ··· 599670 servant, 599671 pname = "nat"; 599672 string-interpolate, 599673 text, 599674 }: 599675 mkDerivation { 599676 pname = "servant-typescript"; 599677 - version = "0.1.0.2"; 599678 - sha256 = "03nf4gqiy7jpdaxmddv859im0czpjrdss72cgjhkd96vqf4g4kam"; 599679 isLibrary = true; 599680 isExecutable = true; 599681 libraryHaskellDepends = [ ··· 599704 servant 599705 pname = "nat"; 599706 string-interpolate 599707 text 599708 ]; 599709 testHaskellDepends = [ ··· 599722 ]; 599723 description = "TypeScript client generation for Servant"; 599724 license = lib.licenses.bsd3; 599725 - hydraPlatforms = lib.platforms.none; 599726 mainProgram = "servant-typescript-exe"; 599727 - broken = true; 599728 } 599729 ) { }; 599730 ··· 603826 } 603827 ) { }; 603828 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 "shakespeare" = callPackage ( 603908 { 603909 mkDerivation, ··· 603932 }: 603933 mkDerivation { 603934 pname = "shakespeare"; 603935 - version = "2.1.1"; 603936 - sha256 = "1j6jniy8d8dgc61h4n2kw668y8f30cqnsfwmgad1s4fqj1bplh0r"; 603937 libraryHaskellDepends = [ 603938 aeson 603939 base ··· 604986 } 604987 ) { }; 604988 604989 - "shellify_0_14_0_0" = callPackage ( 604990 { 604991 mkDerivation, 604992 base, ··· 605008 }: 605009 mkDerivation { 605010 pname = "shellify"; 605011 - version = "0.14.0.0"; 605012 - sha256 = "09i55y57innmjbgb0x1bvrbpk0c5py0bb004wxnqpw4b8swxc60r"; 605013 isLibrary = true; 605014 isExecutable = true; 605015 libraryHaskellDepends = [ ··· 612530 ]; 612531 description = "A very quick-and-dirty WebSocket server"; 612532 license = lib.licenses.bsd3; 612533 } 612534 ) { }; 612535 ··· 616515 pname = "snap"; 616516 version = "1.1.3.3"; 616517 sha256 = "1mqckzm9gasa04ls691zgw4c6m53mgcj86yd2p5qvy07mpn9rdvx"; 616518 - revision = "3"; 616519 - editedCabalFile = "1nzkb0jq359lpwz4a1ldx1fh8xs735wfwf2z6qq0z7y0c4zxb9da"; 616520 libraryHaskellDepends = [ 616521 aeson 616522 attoparsec ··· 619439 }: 619440 mkDerivation { 619441 pname = "snappy"; 619442 - version = "0.2.0.3"; 619443 - sha256 = "0jy747dg58smzzr1mzrm751bkwvnaaghn65ppfkqbpqz6jw45qq2"; 619444 libraryHaskellDepends = [ 619445 base 619446 bytestring ··· 621042 } 621043 ) { }; 621044 621045 "sodium" = callPackage ( 621046 { 621047 mkDerivation, ··· 621540 } 621541 ) { }; 621542 621543 "sophia" = callPackage ( 621544 { 621545 mkDerivation, ··· 624159 }: 624160 mkDerivation { 624161 pname = "specup"; 624162 - version = "0.2.0.5"; 624163 - sha256 = "1b84drxgqaij48rwwannnkms1mzd5mw4i4r442am6wz4y7v45309"; 624164 isLibrary = true; 624165 isExecutable = true; 624166 libraryHaskellDepends = [ ··· 625080 math-functions, 625081 process, 625082 random, 625083 test-framework, 625084 test-framework-hunit, 625085 testu01, ··· 625088 }: 625089 mkDerivation { 625090 pname = "splitmix"; 625091 - version = "0.1.1"; 625092 - sha256 = "1iqjxg3jdjmpj6rchnab1scr6b12p1mk7y75ywn06qisc0dc8y6n"; 625093 libraryHaskellDepends = [ 625094 base 625095 deepseq ··· 625105 math-functions 625106 process 625107 random 625108 test-framework 625109 test-framework-hunit 625110 tf-random ··· 625536 pname = "spreadsheet"; 625537 version = "0.1.3.10"; 625538 sha256 = "022q6an3jl0s8bnwgma8v03b6m4zq3q0drl6nsrcs0nav8n1z5r0"; 625539 - revision = "1"; 625540 - editedCabalFile = "1dd37qgmy7nzxkbarflh5fm33gy7yqy91pa4pa3x4yggp9v52f61"; 625541 isLibrary = true; 625542 isExecutable = true; 625543 libraryHaskellDepends = [ ··· 626666 pname = "sqlite"; 626667 version = "0.5.5"; 626668 sha256 = "1i2bkfyswmannwb1fx6y8ma3pzgx28nl05a35gz1gar28rsx7gyk"; 626669 libraryHaskellDepends = [ 626670 base 626671 bytestring ··· 627656 } 627657 ) { inherit (pkgs) nlopt; }; 627658 627659 - "srtree_2_0_1_4" = callPackage ( 627660 { 627661 mkDerivation, 627662 ad, ··· 627691 }: 627692 mkDerivation { 627693 pname = "srtree"; 627694 - version = "2.0.1.4"; 627695 - sha256 = "04r9lxf3nffpmmv978h8mfzr0shcbcrwarxs8s2mgpdvdx5qm1sa"; 627696 isLibrary = true; 627697 isExecutable = true; 627698 libraryHaskellDepends = [ ··· 628551 pname = "stache"; 628552 version = "2.3.4"; 628553 sha256 = "0kgiyxws2kir8q8zrqkzmk103y7hl6nksxl70f6fy8m9fqkjga51"; 628554 - revision = "4"; 628555 - editedCabalFile = "03bgp2b2kpijnvdsvcr4adas7iyz3v12cp6j044b248cw6hklayd"; 628556 isLibrary = true; 628557 isExecutable = true; 628558 enableSeparateDataOutput = true; ··· 628683 }: 628684 mkDerivation { 628685 pname = "stack"; 628686 - version = "3.5.1"; 628687 - sha256 = "12423vw5k576c1yy0mg40cjia8j6b9jsf8p2489ixlvm192fza7f"; 628688 configureFlags = [ 628689 "-fdisable-git-info" 628690 "-fhide-dependency-versions" ··· 630839 }: 630840 mkDerivation { 630841 pname = "stackctl"; 630842 - version = "1.7.3.4"; 630843 - sha256 = "0y0prp85gf5yns5lb9285g2xqfy8w5ck2ajkpiljnmff2zqnlyzb"; 630844 isLibrary = true; 630845 isExecutable = true; 630846 libraryHaskellDepends = [ ··· 631153 pname = "stan"; 631154 version = "0.2.1.0"; 631155 sha256 = "1mf01bpy291131jfl4fcslv0jfn8i8jqwr29v1v48j6c6q49rias"; 631156 isLibrary = true; 631157 isExecutable = true; 631158 libraryHaskellDepends = [ ··· 632531 } 632532 ) { }; 632533 632534 "statsd" = callPackage ( 632535 { 632536 mkDerivation, ··· 633667 pname = "stm"; 633668 version = "2.5.3.1"; 633669 sha256 = "1rrh4s07vav9mlhpqsq9r6r0gh3f4k8g1gjlx63ngkpdj59ldc7b"; 633670 libraryHaskellDepends = [ 633671 array 633672 base ··· 638838 pname = "string-interpolate"; 638839 version = "0.3.4.0"; 638840 sha256 = "13hb3spabggr6gsn9xhwpwldjvpl2l7z4lgssis82c40n108b0w8"; 638841 - revision = "2"; 638842 - editedCabalFile = "0mw6ws7ixdcfhn7pkgci8v1pk26wnid123pi5f1y88hnmnrzs13k"; 638843 libraryHaskellDepends = [ 638844 base 638845 bytestring ··· 642840 pname = "sum-pyramid"; 642841 version = "0.0.1"; 642842 sha256 = "1zh7g16d345g8wffgj7wswfryrxxf7ik02fwrncqyc9yxmc7hm6y"; 642843 isLibrary = false; 642844 isExecutable = true; 642845 executableHaskellDepends = [ ··· 644345 }: 644346 mkDerivation { 644347 pname = "sv2v"; 644348 - version = "0.0.13"; 644349 - sha256 = "0gg8972im84gp60qavpmsdxcmjwzsbbg3va2f0fdxz5yqyc96cdn"; 644350 isLibrary = false; 644351 isExecutable = true; 644352 executableHaskellDepends = [ ··· 645269 boolexpr, 645270 brick, 645271 brick-list-skip, 645272 bytestring, 645273 clock, 645274 colour, ··· 645288 fused-effects, 645289 fused-effects-lens, 645290 fuzzy, 645291 githash, 645292 hashable, 645293 hsnoise, ··· 645301 megaparsec, 645302 minimorph, 645303 MissingH, 645304 mtl, 645305 murmur3, 645306 natural-sort, 645307 nonempty-containers, 645308 optparse-applicative, 645309 palette, 645310 pandoc, 645311 pandoc-types, 645312 parser-combinators, 645313 prettyprinter, 645314 QuickCheck, 645315 random, 645316 scientific, 645317 servant-docs, 645318 servant-multipart, 645319 servant-server, 645320 SHA, 645321 - simple-enumeration, 645322 split, 645323 sqlite-simple, 645324 syb, ··· 645352 }: 645353 mkDerivation { 645354 pname = "swarm"; 645355 - version = "0.6.0.0"; 645356 - sha256 = "0y2ijxfn8yns6fk87mj7nzlnq5k62mhc5xp8nhzzs5yf2v4p72j6"; 645357 isLibrary = false; 645358 isExecutable = true; 645359 enableSeparateDataOutput = true; ··· 645366 boolexpr 645367 brick 645368 brick-list-skip 645369 bytestring 645370 clock 645371 colour ··· 645385 fused-effects 645386 fused-effects-lens 645387 fuzzy 645388 githash 645389 hashable 645390 hsnoise ··· 645397 lsp 645398 megaparsec 645399 minimorph 645400 mtl 645401 murmur3 645402 natural-sort 645403 nonempty-containers 645404 palette 645405 pandoc 645406 pandoc-types ··· 645408 prettyprinter 645409 random 645410 scientific 645411 servant-docs 645412 servant-multipart 645413 servant-server 645414 SHA 645415 - simple-enumeration 645416 split 645417 sqlite-simple 645418 syb ··· 645439 yaml 645440 ]; 645441 executableHaskellDepends = [ 645442 base 645443 brick 645444 fused-effects 645445 githash 645446 lens 645447 optparse-applicative 645448 sqlite-simple ··· 645472 mtl 645473 nonempty-containers 645474 QuickCheck 645475 SHA 645476 tasty 645477 tasty-expected-failure ··· 645488 base 645489 containers 645490 extra 645491 lens 645492 mtl 645493 tasty-bench ··· 646226 } 646227 ) { }; 646228 646229 "sydtest-aeson" = callPackage ( 646230 { 646231 mkDerivation, ··· 649613 pname = "synthesizer-llvm"; 649614 version = "1.1.0.1"; 649615 sha256 = "166551a0g4m48f0mxccwcrgg488i4v8jpj6rjhd39mh6gxb874yr"; 649616 isLibrary = true; 649617 isExecutable = true; 649618 libraryHaskellDepends = [ ··· 650631 bytestring, 650632 extra, 650633 gi-ayatana-appindicator3, 650634 - gi-gdk, 650635 gi-glib, 650636 gi-gobject, 650637 - gi-gtk, 650638 optparse-applicative, 650639 text, 650640 typed-process, 650641 unliftio, ··· 650643 }: 650644 mkDerivation { 650645 pname = "systranything"; 650646 - version = "0.1.2.0"; 650647 - sha256 = "1da3zqkknx9yg8spwjpaxx4sizwl598p2dwr2nnrl6dw033c6m1f"; 650648 - isLibrary = false; 650649 isExecutable = true; 650650 - executableHaskellDepends = [ 650651 aeson 650652 base 650653 bytestring 650654 extra 650655 gi-ayatana-appindicator3 650656 - gi-gdk 650657 gi-glib 650658 gi-gobject 650659 - gi-gtk 650660 - optparse-applicative 650661 text 650662 typed-process 650663 unliftio 650664 yaml 650665 ]; 650666 description = "Let you put anything in the system tray"; 650667 license = lib.licenses.mit; 650668 - hydraPlatforms = lib.platforms.none; 650669 mainProgram = "systranything"; 650670 - broken = true; 650671 } 650672 ) { }; 650673 ··· 651639 }: 651640 mkDerivation { 651641 pname = "tagged-identity"; 651642 - version = "0.1.4"; 651643 - sha256 = "0mq4q4i16lzm1d0ckarwjk2a47y28lfrv0hc31y0xblb9q50xxwl"; 651644 - revision = "1"; 651645 - editedCabalFile = "03r7ys57zbyadkka5rzb418y5ksb88nnmvxjs58j0pmp71h0zfa6"; 651646 libraryHaskellDepends = [ 651647 base 651648 mtl ··· 654889 pname = "tasty"; 654890 version = "1.5.3"; 654891 sha256 = "10076vlklbcyiz7plakrihava5sy3dvwhskjldqzhfl18jvcg82l"; 654892 - revision = "1"; 654893 - editedCabalFile = "1l7nwf37v29qb1m2q3264473dzhvr6r764skzi9whkr7pjfylmlx"; 654894 libraryHaskellDepends = [ 654895 ansi-terminal 654896 base ··· 655313 }: 655314 mkDerivation { 655315 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 version = "5.0.2"; 655374 sha256 = "0hz6lhqqmcb157im2vpfihnms29367pcqg8mb6ww0c0bl1g0bf62"; 655375 isLibrary = true; ··· 655402 ]; 655403 description = "Test discovery for the tasty framework"; 655404 license = lib.licenses.mit; 655405 - hydraPlatforms = lib.platforms.none; 655406 mainProgram = "tasty-discover"; 655407 } 655408 ) { }; ··· 655615 pname = "tasty-golden-extra"; 655616 version = "0.1.0.0"; 655617 sha256 = "1bfd9ql3pws2vd37nbc5a8b49p7zbq3n48slxkrrwx1szaxkp8nj"; 655618 - revision = "2"; 655619 - editedCabalFile = "1vj6yr1ysnn5x76r3j824gdny121z69vr9367yi3mp4jxl1w44kw"; 655620 libraryHaskellDepends = [ 655621 aeson 655622 aeson-diff ··· 655834 pname = "tasty-hspec"; 655835 version = "1.2.0.4"; 655836 sha256 = "1hk1nkjvhp89xxgzj6dhbgw0fknnghpng6afq4i39hjkwv5p78ni"; 655837 - revision = "6"; 655838 - editedCabalFile = "1i2zj9q7lxiaqs8mlwhw72ar7bnkr5k5y99pjalaisb6hp9380ds"; 655839 libraryHaskellDepends = [ 655840 base 655841 hspec ··· 656295 QuickCheck, 656296 tasty, 656297 tasty-hunit, 656298 - text, 656299 }: 656300 mkDerivation { 656301 pname = "tasty-lua"; 656302 - version = "1.1.1"; 656303 - sha256 = "186322a9gwndnpis4r7nzlca4iymrz712bbbxpm0pxsw63xary06"; 656304 - revision = "1"; 656305 - editedCabalFile = "180jy8dhr7mdfgj5xgnwddm5lh8ahbvs78y07g9zgpsxkdnm5ghn"; 656306 libraryHaskellDepends = [ 656307 base 656308 bytestring ··· 656312 lua-arbitrary 656313 QuickCheck 656314 tasty 656315 - text 656316 ]; 656317 testHaskellDepends = [ 656318 base 656319 - bytestring 656320 directory 656321 filepath 656322 hslua-core ··· 656418 description = "Bencmarking using instruction counting"; 656419 license = lib.licenses.bsd3; 656420 platforms = lib.platforms.linux; 656421 } 656422 ) { inherit (pkgs) papi; }; 656423 ··· 656586 pname = "tasty-quickcheck"; 656587 version = "0.11.1"; 656588 sha256 = "0si4ccgqlv8h33d6310rrqba7f4pz3g8cinqfj42yd7damsdxm73"; 656589 - revision = "1"; 656590 - editedCabalFile = "0l4ck9xqbylrdhyi0gwvws7jakn3qcyd146g9wwcqmjryzkzpj68"; 656591 libraryHaskellDepends = [ 656592 base 656593 optparse-applicative ··· 656659 pname = "tasty-rerun"; 656660 version = "1.1.20"; 656661 sha256 = "0px58jm1yqbg32qf2s0yk09d2qdjxkkz9df89f31q3nzw85jv2ky"; 656662 libraryHaskellDepends = [ 656663 base 656664 containers ··· 657075 pname = "tasty-wai"; 657076 version = "0.1.2.0"; 657077 sha256 = "18yw2qzzg969c99rpa8p154hxbm9i4iq64pma3jkr2gfdm6j4vvg"; 657078 - revision = "2"; 657079 - editedCabalFile = "140kajnwrk614hswxyjymgpzy61m6riv5s25p4zkgv8aa1yhbk06"; 657080 libraryHaskellDepends = [ 657081 base 657082 bytestring ··· 657146 base, 657147 dollaridoos, 657148 profunctors, 657149 - semigroups, 657150 }: 657151 mkDerivation { 657152 pname = "tax"; 657153 - version = "0.2.0.0"; 657154 - sha256 = "13911rksr268v2jbdm7kkwlglni7s8lb417lryr7m2x9vfg31jqb"; 657155 libraryHaskellDepends = [ 657156 base 657157 dollaridoos 657158 profunctors 657159 - semigroups 657160 ]; 657161 description = "Types and combinators for taxes"; 657162 - license = lib.licenses.agpl3Only; 657163 } 657164 ) { }; 657165 ··· 657174 }: 657175 mkDerivation { 657176 pname = "tax-ato"; 657177 - version = "2024.1.0.1"; 657178 - sha256 = "1mggzkkd4sxf7bccqwpz49jgxh36mbixl95j2sbsnyac91kgkmxa"; 657179 libraryHaskellDepends = [ 657180 base 657181 lens ··· 658838 }: 658839 mkDerivation { 658840 pname = "telescope"; 658841 - version = "0.3.0"; 658842 - sha256 = "06hfflc1ala8b8zm0838yrd51lwj5bqg1qdqwn9fs0hr1jp5nx1r"; 658843 libraryHaskellDepends = [ 658844 base 658845 binary ··· 661714 pname = "test-framework"; 661715 version = "0.8.2.2"; 661716 sha256 = "04ijf5x6xx8i5lqv9ir33zs1rfzc4qkwwz8c1fdycnzvydcv4dnp"; 661717 libraryHaskellDepends = [ 661718 ansi-terminal 661719 ansi-wl-pprint ··· 661923 pname = "test-framework-quickcheck2"; 661924 version = "0.3.0.6"; 661925 sha256 = "1d0w2q9sm8aayk0aj1zr2irpnqwpzixn6pdfq1i904vs1kkb2xin"; 661926 libraryHaskellDepends = [ 661927 base 661928 extensible-exceptions ··· 664063 } 664064 ) { }; 664065 664066 "text-cp437" = callPackage ( 664067 { 664068 mkDerivation, ··· 664132 } 664133 ) { }; 664134 664135 "text-format" = callPackage ( 664136 { 664137 mkDerivation, ··· 665432 }: 665433 mkDerivation { 665434 pname = "text-show"; 665435 - version = "3.11.1"; 665436 - sha256 = "18n4smbwwh9as0kpm2c18153y6lj5pbk2hy6ra9im0fwqk7xan6x"; 665437 - revision = "1"; 665438 - editedCabalFile = "1g96fwpf0y8hqbjiqdxz4ayyh9qwhacfynkmij80dksk7qxzwxml"; 665439 libraryHaskellDepends = [ 665440 array 665441 base ··· 665527 pname = "text-show-instances"; 665528 version = "3.9.10"; 665529 sha256 = "09cb391gi0hgkjk4ap4d83vg13lczrghmb9db96a4ckw1bp9pbc1"; 665530 - revision = "3"; 665531 - editedCabalFile = "1ghlw5jwcxpclsvffn51lhc4i7mljg0jczg78kjghwnv0prjm8r8"; 665532 libraryHaskellDepends = [ 665533 aeson 665534 base ··· 670248 } 670249 ) { }; 670250 670251 "tidal-core" = callPackage ( 670252 { 670253 mkDerivation, ··· 670255 colour, 670256 containers, 670257 deepseq, 670258 - microspec, 670259 parsec, 670260 text, 670261 }: 670262 mkDerivation { 670263 pname = "tidal-core"; 670264 - version = "1.9.6"; 670265 - sha256 = "0lny9f5crvx61cwlwbfl7xj34i2gl4j9wlvba8ga82hhysyxzg3i"; 670266 libraryHaskellDepends = [ 670267 base 670268 colour ··· 670275 base 670276 containers 670277 deepseq 670278 - microspec 670279 ]; 670280 description = "Core pattern library for TidalCycles, a pattern language for improvised music"; 670281 license = lib.licenses.gpl3Only; ··· 670305 } 670306 ) { }; 670307 670308 - "tidal-link_1_1_0" = callPackage ( 670309 { 670310 mkDerivation, 670311 base, ··· 670316 }: 670317 mkDerivation { 670318 pname = "tidal-link"; 670319 - version = "1.1.0"; 670320 - sha256 = "0qd157gxdb06dwpmsimp9w49lqbpp93ms4bmxn1xwz3p2dhcwbrj"; 670321 isLibrary = true; 670322 isExecutable = true; 670323 libraryHaskellDepends = [ ··· 670637 pname = "tiktoken"; 670638 version = "1.0.3"; 670639 sha256 = "0hy3y9rdgjirk8ji7458qnc7h9d2b6yipfri25qkay96kq91kmj6"; 670640 enableSeparateDataOutput = true; 670641 libraryHaskellDepends = [ 670642 base ··· 670669 ]; 670670 description = "Haskell implementation of tiktoken"; 670671 license = lib.licenses.bsd3; 670672 - hydraPlatforms = lib.platforms.none; 670673 - broken = true; 670674 } 670675 ) { }; 670676 ··· 676916 "tools-yj" = callPackage ( 676917 { 676918 mkDerivation, 676919 base, 676920 bytestring, 676921 containers, ··· 676926 }: 676927 mkDerivation { 676928 pname = "tools-yj"; 676929 - version = "0.1.0.27"; 676930 - sha256 = "1blcyq5ihqk2kidvywvv187jqgisnnak6rgp2jhw7zbpd4da7hs8"; 676931 libraryHaskellDepends = [ 676932 base 676933 bytestring 676934 containers ··· 676938 text 676939 ]; 676940 testHaskellDepends = [ 676941 base 676942 bytestring 676943 containers ··· 676951 } 676952 ) { }; 676953 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 "toolshed" = callPackage ( 676994 { 676995 mkDerivation, ··· 678256 }: 678257 mkDerivation { 678258 pname = "trace-embrace"; 678259 - version = "1.0.11"; 678260 - sha256 = "0cnbw0yxaq3lpq8z66fkjsr3d9dss66l837mnbicfksbsn27m22i"; 678261 libraryHaskellDepends = [ 678262 aeson 678263 base ··· 678280 yaml 678281 ]; 678282 testHaskellDepends = [ 678283 base 678284 bytestring 678285 containers ··· 680116 ]; 680117 description = "Reactive Type Safe Routing"; 680118 license = lib.licenses.mit; 680119 - hydraPlatforms = lib.platforms.none; 680120 } 680121 ) { }; 680122 ··· 681642 pname = "trial-optparse-applicative"; 681643 version = "0.0.0.0"; 681644 sha256 = "1h8pfznf1dp9z3r2kl2ljgmxxkfp3va9yqba00fyvw85lna2aggn"; 681645 - revision = "4"; 681646 - editedCabalFile = "05rzzcsqvhil7wbsz23syd35h9jqbmmabx89v3h86ng7my3w1nc1"; 681647 libraryHaskellDepends = [ 681648 base 681649 optparse-applicative ··· 684336 ]; 684337 description = "An equational theorem prover"; 684338 license = lib.licenses.bsd3; 684339 mainProgram = "twee"; 684340 } 684341 ) { }; 684342 ··· 688543 ]; 688544 description = "Plugin to faciliate type-level let"; 688545 license = lib.licenses.bsd3; 688546 } 688547 ) { }; 688548 ··· 688892 dlist, 688893 hspec, 688894 hspec-discover, 688895 template-haskell, 688896 text, 688897 th-data-compat, ··· 688900 }: 688901 mkDerivation { 688902 pname = "typesafe-precure"; 688903 - version = "0.11.1.1"; 688904 - sha256 = "0zg4wwp5asnzz0n2yhrqb825dldr57m1j6w0l3sdxsi4jmibs4bj"; 688905 libraryHaskellDepends = [ 688906 aeson 688907 aeson-pretty ··· 688909 base 688910 bytestring 688911 dlist 688912 template-haskell 688913 text 688914 th-data-compat ··· 690800 } 690801 ) { }; 690802 690803 "ulid" = callPackage ( 690804 { 690805 mkDerivation, ··· 694715 pname = "unix"; 694716 version = "2.8.7.0"; 694717 sha256 = "10zv2vcq82vv56hll5mpvfwfsx6ymp2f75fwxvp5a1xgbafqgpfb"; 694718 libraryHaskellDepends = [ 694719 base 694720 bytestring ··· 695026 }: 695027 mkDerivation { 695028 pname = "unix-time"; 695029 - version = "0.4.16"; 695030 - sha256 = "1s9qws7z2z9d9ayljz98zdlsja3zvrbcb00n4arzwi3kdl9agqmc"; 695031 libraryHaskellDepends = [ 695032 base 695033 binary ··· 696423 libraryHaskellDepends = [ base ]; 696424 description = "Unwrapping sums/products lifted to functors"; 696425 license = lib.licenses.publicDomain; 696426 } 696427 ) { }; 696428 ··· 698884 }: 698885 mkDerivation { 698886 pname = "utxorpc"; 698887 - version = "0.0.16.0"; 698888 - sha256 = "0jhk3x5qbp2rvknbir8s6y4vq8sy5qcs0p9md1g8kbi872ipglng"; 698889 libraryHaskellDepends = [ 698890 base 698891 proto-lens ··· 701487 } 701488 ) { }; 701489 701490 "vary" = callPackage ( 701491 { 701492 mkDerivation, ··· 701505 }: 701506 mkDerivation { 701507 pname = "vary"; 701508 - version = "0.1.1.2"; 701509 - sha256 = "1snil2rmlhbjrlazjycririwr9w4irznf5g4mgmjadb0xny9gwyx"; 701510 libraryHaskellDepends = [ 701511 aeson 701512 base ··· 701988 }: 701989 mkDerivation { 701990 pname = "vcr"; 701991 - version = "0.0.0"; 701992 - sha256 = "0h3rjrncjhh8b0lhpj3ilz8dqfrw3qj1qr7q9vpa098nkkvfyqxf"; 701993 libraryHaskellDepends = [ 701994 async 701995 base ··· 703044 }: 703045 mkDerivation { 703046 pname = "vector-hashtables"; 703047 - version = "0.1.2.0"; 703048 - sha256 = "1s0c3d4f61rgvb0i8c2m3lazxbxg2cpv1pq4k4lnr7nga7sama9r"; 703049 libraryHaskellDepends = [ 703050 base 703051 hashable ··· 703111 }: 703112 mkDerivation { 703113 pname = "vector-instances"; 703114 - version = "3.4.2"; 703115 - sha256 = "0rynfy4agx66mwslj50bfqdyrylr2zba3r6dg5yqykpnfxp2vn9l"; 703116 libraryHaskellDepends = [ 703117 base 703118 comonad ··· 703527 }: 703528 mkDerivation { 703529 pname = "vector-split"; 703530 - version = "1.0.0.3"; 703531 - sha256 = "1y2imndpyx15jmiajhabi34522jcayrz05zrxiv1srj4fssz56bd"; 703532 libraryHaskellDepends = [ 703533 base 703534 vector ··· 704589 }: 704590 mkDerivation { 704591 pname = "vext"; 704592 - version = "0.1.7.0"; 704593 - sha256 = "0ynwgb2d3xs6qn99qhdz417p1pjc6y1mjllk6v17rvxiim88yd36"; 704594 libraryHaskellDepends = [ 704595 base 704596 natural-arithmetic 704597 primitive 704598 run-st ··· 707347 }: 707348 mkDerivation { 707349 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 version = "0.2.0.4"; 707403 sha256 = "1iisk8acjjibghw05yyc1w25hcs4d1cn1jlhl0iikz36kl0bbl8q"; 707404 libraryHaskellDepends = [ ··· 707424 description = "Windows backend for Vty"; 707425 license = lib.licenses.bsd3; 707426 platforms = lib.platforms.windows; 707427 - hydraPlatforms = lib.platforms.none; 707428 } 707429 ) { }; 707430 ··· 712991 }: 712992 mkDerivation { 712993 pname = "warp"; 712994 - version = "3.4.7"; 712995 - sha256 = "1s0kynqliqwn79gydrdxsgfdw6qffs5fmvhmxiydc379fxf07k7s"; 712996 libraryHaskellDepends = [ 712997 array 712998 async ··· 713171 }: 713172 mkDerivation { 713173 pname = "warp-quic"; 713174 - version = "0.0.2"; 713175 - sha256 = "1hb9xv5v7l1iwhv7qgm9y3prrjkpvcd5snmw6xc9wsk3fr82xl1r"; 713176 libraryHaskellDepends = [ 713177 base 713178 bytestring ··· 713246 pname = "warp-systemd"; 713247 version = "0.3.0.0"; 713248 sha256 = "1yvkg49wla7axk8vdh5c7d0pxlhyb66ka0xiqi6a3ra3zmw5xi3c"; 713249 - revision = "2"; 713250 - editedCabalFile = "09pkrig9xq95k3n1yrhfcfa8i3dkdim4nd03mgm22523jk9b3hbw"; 713251 isLibrary = true; 713252 isExecutable = true; 713253 libraryHaskellDepends = [ ··· 713633 }: 713634 mkDerivation { 713635 pname = "waterfall-cad"; 713636 - version = "0.5.0.1"; 713637 - sha256 = "1869qwkbi3mlvciz916y6hv6l4h7z16fflf9xac4i0p9frly50jg"; 713638 libraryHaskellDepends = [ 713639 base 713640 filepath ··· 713668 }: 713669 mkDerivation { 713670 pname = "waterfall-cad-examples"; 713671 - version = "0.5.0.1"; 713672 - sha256 = "1k9qs6jnh23d1r9xdpc07002a89rwn1zy5lgvbvlmmlsjny3v7fv"; 713673 isLibrary = true; 713674 isExecutable = true; 713675 libraryHaskellDepends = [ ··· 713722 }: 713723 mkDerivation { 713724 pname = "waterfall-cad-svg"; 713725 - version = "0.5.0.1"; 713726 - sha256 = "0vyq23iryzsqjjdyb9ws5jbjm3rkb00ssmabnzx6vlnvzf5cfb1s"; 713727 libraryHaskellDepends = [ 713728 attoparsec 713729 base ··· 714194 attoparsec, 714195 base, 714196 bytestring, 714197 hspec, 714198 http-client, 714199 QuickCheck, ··· 714202 }: 714203 mkDerivation { 714204 pname = "web-cookiejar"; 714205 - version = "0.1.0.0"; 714206 - sha256 = "0hc9cpqs2h7kcxlrvlsmqm7xxq1cdi7zax3c7md5ldbzgzwiwr28"; 714207 libraryHaskellDepends = [ 714208 attoparsec 714209 base 714210 bytestring 714211 http-client 714212 time 714213 ]; ··· 715812 }: 715813 mkDerivation { 715814 pname = "webauthn"; 715815 - version = "0.10.0.0"; 715816 - sha256 = "0ndgwv8d7yndl9kb4fzvfp5wrz1pfshsp2xwhwnynd2a9mz3yqwp"; 715817 libraryHaskellDepends = [ 715818 aeson 715819 asn1-encoding ··· 716768 }: 716769 mkDerivation { 716770 pname = "webfinger-client"; 716771 - version = "0.2.2.0"; 716772 - sha256 = "0i8gixjsz6hw77gplrk26d15m6d3ddm1ac2hgcmv641msvbfr9p2"; 716773 libraryHaskellDepends = [ 716774 aeson 716775 base ··· 717773 pname = "websockets"; 717774 version = "0.13.0.0"; 717775 sha256 = "1da95b71akggyikbxdmja3gcaqrz8sp6ri5jrsyavc2ickvi9y4s"; 717776 - revision = "4"; 717777 - editedCabalFile = "1g6f94cn20a4073cbinv2sfwglbqlpjxgzgj7svi6ff4vkfn0ins"; 717778 isLibrary = true; 717779 isExecutable = true; 717780 libraryHaskellDepends = [ ··· 719674 }: 719675 mkDerivation { 719676 pname = "wide-word"; 719677 - version = "0.1.7.0"; 719678 - sha256 = "01rx0bcc6kanyjp1vf9icymdgkmsx279m7rby2gpb1w0d6swnss8"; 719679 libraryHaskellDepends = [ 719680 base 719681 binary ··· 720247 }: 720248 mkDerivation { 720249 pname = "wild-bind"; 720250 - version = "0.1.2.11"; 720251 - sha256 = "0mdwx0qwlmm22pajvg5s3rzm6xf83z14lfxwbwh8fiphxlgyhnin"; 720252 libraryHaskellDepends = [ 720253 base 720254 containers ··· 722509 pname = "word8set"; 722510 version = "0.1.2"; 722511 sha256 = "0jbr571rxw0vxxc95568kdxrw9d0kk6np9wrwjd6rj6ybh532zr7"; 722512 libraryHaskellDepends = [ 722513 base 722514 deepseq ··· 724706 aeson, 724707 base, 724708 binary, 724709 - binary-parsers, 724710 bytestring, 724711 network, 724712 text, 724713 time, 724714 }: 724715 mkDerivation { 724716 pname = "wsjtx-udp"; 724717 - version = "0.1.3.5"; 724718 - sha256 = "1x2975pj2i0c4w1s00s4qc24sa24y29magilfxbhy8v1w1hfqcv7"; 724719 isLibrary = true; 724720 isExecutable = true; 724721 libraryHaskellDepends = [ 724722 aeson 724723 base 724724 binary 724725 - binary-parsers 724726 bytestring 724727 network 724728 text 724729 time 724730 ]; 724731 - executableHaskellDepends = [ base ]; 724732 description = "WSJT-X UDP protocol"; 724733 license = lib.licenses.bsd3; 724734 hydraPlatforms = lib.platforms.none; 724735 - mainProgram = "wsjtx-dump-udp"; 724736 broken = true; 724737 } 724738 ) { }; ··· 726166 } 726167 ) { }; 726168 726169 "xchat-plugin" = callPackage ( 726170 { 726171 mkDerivation, ··· 726550 } 726551 ) { }; 726552 726553 "xenstore" = callPackage ( 726554 { 726555 mkDerivation, ··· 728247 description = "Generate XML-isomorphic types"; 728248 license = lib.licenses.mit; 728249 hydraPlatforms = lib.platforms.none; 728250 } 728251 ) { }; 728252 ··· 728264 pname = "xml-lens"; 728265 version = "0.3.1"; 728266 sha256 = "0i6c4xqacinhxnyszzna7s9x79rrcs1c7jq6zimcwh4302l5d6cm"; 728267 - revision = "3"; 728268 - editedCabalFile = "1zwkii9klqaknnf06h56nvh9090xczqff1mq89mq7wk9y585qd3s"; 728269 libraryHaskellDepends = [ 728270 base 728271 case-insensitive ··· 728276 ]; 728277 description = "Lenses, traversals, and prisms for xml-conduit"; 728278 license = lib.licenses.bsd3; 728279 - hydraPlatforms = lib.platforms.none; 728280 - broken = true; 728281 } 728282 ) { }; 728283 ··· 729531 }: 729532 mkDerivation { 729533 pname = "xmobar"; 729534 - version = "0.49"; 729535 - sha256 = "0mw01jxkcvm186csg71y21zig9rkxkp304i3ym4pgr3rilhp3p5z"; 729536 configureFlags = [ 729537 "-fwith_alsa" 729538 "-fwith_conduit" ··· 730335 description = "Text-based notification server for XMobar"; 730336 license = lib.licenses.bsd3; 730337 badPlatforms = lib.platforms.darwin; 730338 } 730339 ) { }; 730340 ··· 730354 pname = "xor"; 730355 version = "0.0.1.3"; 730356 sha256 = "12hqm6imp3qvnnrkds77jsi0zx2dza1h9g88adnxiksv62fybymv"; 730357 libraryHaskellDepends = [ 730358 base 730359 bytestring ··· 739765 } 739766 ) { }; 739767 739768 - "yesod-test_1_6_19" = callPackage ( 739769 { 739770 mkDerivation, 739771 aeson, ··· 739779 conduit, 739780 containers, 739781 cookie, 739782 hspec, 739783 hspec-core, 739784 html-conduit, ··· 739788 mtl, 739789 network, 739790 pretty-show, 739791 text, 739792 time, 739793 transformers, ··· 739802 }: 739803 mkDerivation { 739804 pname = "yesod-test"; 739805 - version = "1.6.19"; 739806 - sha256 = "0snq06yps28lkxfc1mhsvbv2kq0h0mi16zjdfrahm4zaz8axkqka"; 739807 libraryHaskellDepends = [ 739808 aeson 739809 attoparsec ··· 739816 conduit 739817 containers 739818 cookie 739819 hspec-core 739820 html-conduit 739821 http-types ··· 739824 mtl 739825 network 739826 pretty-show 739827 text 739828 time 739829 transformers ··· 744187 pname = "zinza"; 744188 version = "0.2.1"; 744189 sha256 = "1k4k2yvijg0vwp3ykp9l77n3qdpivikqxx78ilvk6nx6w9sj58c8"; 744190 libraryHaskellDepends = [ 744191 base 744192 containers ··· 744330 } 744331 ) { }; 744332 744333 - "zip_2_2_0" = callPackage ( 744334 { 744335 mkDerivation, 744336 base, ··· 744361 }: 744362 mkDerivation { 744363 pname = "zip"; 744364 - version = "2.2.0"; 744365 - sha256 = "0l83f3bkx9npmna637wy607vr20z3gx8isgmjh8yany6f3nb805d"; 744366 isLibrary = true; 744367 isExecutable = true; 744368 libraryHaskellDepends = [
··· 1490 blaze-html, 1491 boxes, 1492 bytestring, 1493 case-insensitive, 1494 containers, 1495 data-hash, ··· 1498 dlist, 1499 edit-distance, 1500 emacs, 1501 + enummapset, 1502 equivalence, 1503 exceptions, 1504 + filelock, 1505 + filemanip, 1506 filepath, 1507 + generic-data, 1508 ghc-compact, 1509 gitrev, 1510 happy, ··· 1513 monad-control, 1514 mtl, 1515 murmur-hash, 1516 + nonempty-containers, 1517 parallel, 1518 peano, 1519 pqueue, 1520 pretty, 1521 process, 1522 + process-extras, 1523 regex-tdfa, 1524 split, 1525 stm, 1526 STMonadTrans, 1527 strict, 1528 + template-haskell, 1529 text, 1530 time, 1531 transformers, ··· 1537 }: 1538 mkDerivation { 1539 pname = "Agda"; 1540 + version = "2.8.0"; 1541 + sha256 = "184vjq260zf5w9c8nz11nbhpsvq3a1yxp7mhaz7synlaww3ik146"; 1542 isLibrary = true; 1543 isExecutable = true; 1544 enableSeparateDataOutput = true; 1545 libraryHaskellDepends = [ 1546 aeson 1547 ansi-terminal ··· 1559 directory 1560 dlist 1561 edit-distance 1562 + enummapset 1563 equivalence 1564 exceptions 1565 + filelock 1566 + filemanip 1567 filepath 1568 + generic-data 1569 ghc-compact 1570 gitrev 1571 hashable ··· 1573 monad-control 1574 mtl 1575 murmur-hash 1576 + nonempty-containers 1577 parallel 1578 peano 1579 pqueue 1580 pretty 1581 process 1582 + process-extras 1583 regex-tdfa 1584 split 1585 stm 1586 STMonadTrans 1587 strict 1588 + template-haskell 1589 text 1590 time 1591 transformers ··· 1601 ]; 1602 executableHaskellDepends = [ 1603 base 1604 + bytestring 1605 directory 1606 + filelock 1607 filepath 1608 + gitrev 1609 process 1610 + template-haskell 1611 ]; 1612 executableToolDepends = [ emacs ]; 1613 description = "A dependently typed functional programming language and proof assistant"; ··· 7013 }: 7014 mkDerivation { 7015 pname = "ChasingBottoms"; 7016 + version = "1.3.1.16"; 7017 + sha256 = "08zg018arf4qvp970dcnf0nyaqp7wkp5ba2dhck3v4l49k5cax9m"; 7018 libraryHaskellDepends = [ 7019 base 7020 containers ··· 8116 } 8117 ) { }; 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 + 8144 "ConstraintKinds" = callPackage ( 8145 { 8146 mkDerivation, ··· 22367 }: 22368 mkDerivation { 22369 pname = "HaskellNet"; 22370 + version = "0.6.2"; 22371 + sha256 = "134gmv5b4f02f24m86ql256dssdvkgqjp2cw36p6958ydbdsx6s4"; 22372 libraryHaskellDepends = [ 22373 array 22374 base ··· 22385 ]; 22386 description = "Client support for POP3, SMTP, and IMAP"; 22387 license = lib.licenses.bsd3; 22388 } 22389 ) { }; 22390 ··· 22421 ]; 22422 description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; 22423 license = lib.licenses.bsd3; 22424 mainProgram = "HaskellNet-SSL-example"; 22425 } 22426 ) { }; ··· 24004 }: 24005 mkDerivation { 24006 pname = "HsSyck"; 24007 + version = "0.55"; 24008 + sha256 = "1ccm9r40898kfgkrnwz0ybcdps83li9wk565fm37gdpsvmi19faf"; 24009 enableSeparateDataOutput = true; 24010 libraryHaskellDepends = [ 24011 base ··· 24122 pname = "HsYAML"; 24123 version = "0.2.1.5"; 24124 sha256 = "13av46629msknp1spmcczgd2hpsyj0ca590vpiy7df8l6cfwjyk5"; 24125 + revision = "1"; 24126 + editedCabalFile = "1l5ig8a1c13rwcx530li93p0kkxcsjpjyr303v19z6n8zmdvnz6a"; 24127 isLibrary = true; 24128 isExecutable = true; 24129 libraryHaskellDepends = [ ··· 24728 pname = "IPv6DB"; 24729 version = "0.3.3.4"; 24730 sha256 = "1mkf2fqlg2n9q3l3p8rxdcmb7k281lz37x6hiry1wvxbn92d4pja"; 24731 + revision = "1"; 24732 + editedCabalFile = "18wx26x4nyyywbl7inwna68kmxs8sbyckmrhdz4png9gn7ix4sr0"; 24733 isLibrary = true; 24734 isExecutable = true; 24735 libraryHaskellDepends = [ ··· 26845 pname = "LPFP"; 26846 version = "1.1.5"; 26847 sha256 = "11mlcd1pq2vb0kwjm2z6304qslvmdcfdbly37yr27zhn860zfzz2"; 26848 + revision = "2"; 26849 + editedCabalFile = "1530y0rmj3gwhk0ghpaf0977wz0n2pq86dfcb401y0ala7f4z167"; 26850 isLibrary = true; 26851 isExecutable = true; 26852 libraryHaskellDepends = [ ··· 29731 }: 29732 mkDerivation { 29733 pname = "MicroHs"; 29734 + version = "0.13.0.0"; 29735 + sha256 = "02wl86ql8xcp9w7vlhvh0m95am6ssmw8fzkbs597qlhpwp91ax3w"; 29736 isLibrary = false; 29737 isExecutable = true; 29738 enableSeparateDataOutput = true; ··· 31753 } 31754 ) { }; 31755 31756 + "NanoID_3_4_1_1" = callPackage ( 31757 { 31758 mkDerivation, 31759 aeson, ··· 31768 }: 31769 mkDerivation { 31770 pname = "NanoID"; 31771 + version = "3.4.1.1"; 31772 + sha256 = "1dfl5vj6fwxwrhgx11vzxij2p19q3kqri130fxgw2l6ajlckyh8x"; 31773 isLibrary = true; 31774 isExecutable = true; 31775 libraryHaskellDepends = [ ··· 35003 }: 35004 mkDerivation { 35005 pname = "PenroseKiteDart"; 35006 + version = "1.4.3"; 35007 + sha256 = "1nrp9cr7jxjvplkfgp4lxh3rvzf1pms8bm7kwhc4w4fzmpy3p3p1"; 35008 libraryHaskellDepends = [ 35009 base 35010 containers ··· 36481 } 36482 ) { }; 36483 36484 + "QuickCheck_2_16_0_0" = callPackage ( 36485 { 36486 mkDerivation, 36487 base, ··· 36495 }: 36496 mkDerivation { 36497 pname = "QuickCheck"; 36498 + version = "2.16.0.0"; 36499 + sha256 = "1h02m26hvhfcs82rrfmfznwh4vj799gn55kysmv3sr8ixak3ymhb"; 36500 libraryHaskellDepends = [ 36501 base 36502 containers ··· 46740 { mkDerivation }: 46741 mkDerivation { 46742 pname = "Win32"; 46743 + version = "2.14.2.1"; 46744 + sha256 = "0583vy22b89z4zdgg52ayga46mw8qmj0lw7qm99q6wggnjgmmlb9"; 46745 description = "A binding to Windows Win32 API"; 46746 license = lib.licenses.bsd3; 46747 platforms = lib.platforms.windows; ··· 49394 }: 49395 mkDerivation { 49396 pname = "ac-library-hs"; 49397 + version = "1.5.2.0"; 49398 + sha256 = "028781j64wv42j9i2gmgccmlakyjchpxqk13rk5n59xavlyv7yw9"; 49399 isLibrary = true; 49400 isExecutable = true; 49401 libraryHaskellDepends = [ ··· 49404 bytestring 49405 primitive 49406 random 49407 + transformers 49408 vector 49409 vector-algorithms 49410 wide-word ··· 49415 bytestring 49416 primitive 49417 random 49418 + transformers 49419 vector 49420 vector-algorithms 49421 wide-word ··· 49460 ]; 49461 description = "Data structures and algorithms"; 49462 license = lib.licenses.cc0; 49463 + hydraPlatforms = lib.platforms.none; 49464 mainProgram = "example-lazy-segtree"; 49465 + broken = true; 49466 } 49467 ) { }; 49468 ··· 52330 pname = "active"; 52331 version = "0.2.1"; 52332 sha256 = "150kwir36aj9q219qi80mlqd0vxm4941dh6x4xp58rbd5a3mhmv1"; 52333 + revision = "5"; 52334 + editedCabalFile = "0wxl3pfdz4krx7lg1rckvmjkm2hj5vlwx3kyzzfrpsfhc9zq7f1g"; 52335 libraryHaskellDepends = [ 52336 base 52337 lens ··· 53742 pname = "aeson"; 53743 version = "2.2.3.0"; 53744 sha256 = "1akbrh8iz47f0ai30yabg1n4vcf1fx0a9gzj45fx0si553s5r8ns"; 53745 + revision = "4"; 53746 + editedCabalFile = "0yw5kahz82kls4svn0qssckvx143k73h5nqg0z1d4s7ibqww4j3x"; 53747 libraryHaskellDepends = [ 53748 base 53749 bytestring ··· 59482 pname = "align-audio"; 59483 version = "0.0.0.1"; 59484 sha256 = "1r1660igj6bmzhccw30vj0wsz7jjkd5k0vbr4nrcbpcwkxllshnb"; 59485 + revision = "3"; 59486 + editedCabalFile = "1j50cp7i77dplkd3g7nnyn9xgcr8r8d4lh6nh9xcnjfkn8p6g539"; 59487 isLibrary = false; 59488 isExecutable = true; 59489 executableHaskellDepends = [ ··· 69905 }: 69906 mkDerivation { 69907 pname = "amazonka-mtl"; 69908 + version = "0.1.1.3"; 69909 + sha256 = "06ng492c6r0zwyjyr0h6b665sp6v17i245svdsag3ha8ni303hka"; 69910 libraryHaskellDepends = [ 69911 amazonka 69912 amazonka-core ··· 75743 }: 75744 mkDerivation { 75745 pname = "android-activity"; 75746 + version = "0.2.0.2"; 75747 + sha256 = "1l82k9if392682wr31b6g74wv25qwl5cgxwcmhnrp4lm8w0n428d"; 75748 libraryHaskellDepends = [ 75749 base 75750 data-default ··· 76725 pname = "ansi-terminal-game"; 76726 version = "1.9.3.0"; 76727 sha256 = "1yy7hzdcawdmwl8wqzabbamzjdg260xbwryj0hdjn7b0n6qlqymk"; 76728 + revision = "3"; 76729 + editedCabalFile = "0m4df8a2p18j29zsgffnyf69hjkyam3rg3xc4zvmxafidj877ykk"; 76730 isLibrary = true; 76731 isExecutable = true; 76732 libraryHaskellDepends = [ ··· 78166 }: 78167 mkDerivation { 78168 pname = "aoc"; 78169 + version = "0.2.0.0"; 78170 + sha256 = "0hamr2sqw00njwg4sdir81fmsgc29ic21m0rzqnrfmd5jgdmg27h"; 78171 libraryHaskellDepends = [ 78172 base 78173 containers ··· 83495 pname = "arithmoi"; 83496 version = "0.13.1.0"; 83497 sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; 83498 + revision = "2"; 83499 + editedCabalFile = "1q81krc6qgg495qqlnh7kbzg2fk57amgiqa5xmxwhxrhlffjsk3d"; 83500 configureFlags = [ "-f-llvm" ]; 83501 libraryHaskellDepends = [ 83502 array ··· 85127 } 85128 ) { }; 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 + 85186 "asciichart" = callPackage ( 85187 { 85188 mkDerivation, ··· 88965 }: 88966 mkDerivation { 88967 pname = "attoparsec-framer"; 88968 + version = "0.1.0.10"; 88969 + sha256 = "1ziskifj6mly9ywsag8395ladwscrwzjpn628nbmn29x28zq0n61"; 88970 isLibrary = true; 88971 isExecutable = true; 88972 libraryHaskellDepends = [ ··· 89078 containers, 89079 deepseq, 89080 directory, 89081 + fail, 89082 filepath, 89083 ghc-prim, 89084 haddock-use-refs, ··· 89087 QuickCheck, 89088 quickcheck-unicode, 89089 scientific, 89090 + semigroups, 89091 tagged, 89092 tasty, 89093 tasty-bench, ··· 89100 }: 89101 mkDerivation { 89102 pname = "attoparsec-isotropic"; 89103 + version = "0.14.5"; 89104 + sha256 = "1bvxy2gydz3kv0fbhp77bwk75l73kz7qc4aa7wlldga90f8y3vhj"; 89105 libraryHaskellDepends = [ 89106 array 89107 base 89108 bytestring 89109 containers 89110 deepseq 89111 + fail 89112 ghc-prim 89113 haddock-use-refs 89114 scientific 89115 + semigroups 89116 tagged 89117 text 89118 trace-embrace ··· 89122 array 89123 base 89124 bytestring 89125 + containers 89126 deepseq 89127 + fail 89128 + haddock-use-refs 89129 http-types 89130 QuickCheck 89131 quickcheck-unicode 89132 scientific 89133 + semigroups 89134 + tagged 89135 tasty 89136 tasty-bench 89137 tasty-quickcheck ··· 89148 containers 89149 deepseq 89150 directory 89151 + fail 89152 filepath 89153 ghc-prim 89154 + haddock-use-refs 89155 http-types 89156 parsec 89157 scientific 89158 + semigroups 89159 + tagged 89160 tasty-bench 89161 text 89162 + trace-embrace 89163 transformers 89164 unordered-containers 89165 vector ··· 89557 pname = "audacity"; 89558 version = "0.0.2.2"; 89559 sha256 = "1glvk4mkq8j48s0xm86xb1l3xrb6m3cijcckdm48zq3pz7yg3hd8"; 89560 + revision = "1"; 89561 + editedCabalFile = "1zijgx43yd713czj9r5b2yv26dii4d4i6ar9n0l1c9zqaqv7vh6p"; 89562 isLibrary = true; 89563 isExecutable = true; 89564 libraryHaskellDepends = [ ··· 90330 } 90331 ) { }; 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 + 90423 "autodocodec-nix" = callPackage ( 90424 { 90425 mkDerivation, ··· 90590 } 90591 ) { }; 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 + 90627 "autodocodec-swagger2" = callPackage ( 90628 { 90629 mkDerivation, ··· 90691 ]; 90692 description = "Autodocodec interpreters for yaml"; 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; 90734 } 90735 ) { }; 90736 ··· 92204 } 92205 ) { }; 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 + 92245 "aws-arn" = callPackage ( 92246 { 92247 mkDerivation, ··· 94070 }: 94071 mkDerivation { 94072 pname = "aws-spend-summary"; 94073 + version = "0.3.0.0"; 94074 + sha256 = "0lnwlvjqjs4hxqfblrhgqjq6309c466hlnamryprgd3l8nhnpak3"; 94075 isLibrary = true; 94076 isExecutable = true; 94077 libraryHaskellDepends = [ ··· 95759 microlens, 95760 microlens-th, 95761 mwc-random, 95762 reflection, 95763 time, 95764 transformers, ··· 95767 }: 95768 mkDerivation { 95769 pname = "backprop"; 95770 + pname = "nat"; 95771 + sha256 = "1v7r2gr18kcrcf12dmjpg2cqg1lanpqfpjwbqqnm1sbibvf467w7"; 95772 libraryHaskellDepends = [ 95773 base 95774 containers 95775 deepseq 95776 microlens 95777 reflection 95778 transformers 95779 vector ··· 96558 pname = "ban-instance"; 96559 version = "0.1.0.1"; 96560 sha256 = "0504qsjbqbrdf9avfrhs290baszc9dickx7wknbyxwrzpzzbpggk"; 96561 + revision = "5"; 96562 + editedCabalFile = "1a0xh0kfdpqgppaisb0hlm4k40gssbxh5jjz2j2l8xn2bnmv95cb"; 96563 libraryHaskellDepends = [ 96564 base 96565 template-haskell ··· 97991 pname = "base64-bytes"; 97992 version = "0.1.1.1"; 97993 sha256 = "0gvh2yg7mqwrswcq5p0h35bifsvm18cdvsjzazz37yrwan0i31vs"; 97994 + revision = "1"; 97995 + editedCabalFile = "17kl1813wdqbh6hjrm7npm2w65d0ir4bpbklggr4bxzxabwbsg2c"; 97996 libraryHaskellDepends = [ 97997 base 97998 byte-order ··· 98022 ]; 98023 description = "Base64 encoding of byte sequences"; 98024 license = lib.licenses.bsd3; 98025 } 98026 ) { }; 98027 ··· 98091 pname = "base64-bytestring-type"; 98092 version = "1.0.1"; 98093 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 98094 + revision = "22"; 98095 + editedCabalFile = "0a5640qjbd3f96v9sf6r1laqpqk83xh073qlq75174kcg5zi4rxa"; 98096 libraryHaskellDepends = [ 98097 aeson 98098 base ··· 100179 }: 100180 mkDerivation { 100181 pname = "beam-automigrate"; 100182 + version = "0.1.7.0"; 100183 + sha256 = "019b0kykdjqmf2xcj11pi2s67ssy2al882nsj5aq2h1mq6c7bx63"; 100184 isLibrary = true; 100185 isExecutable = true; 100186 libraryHaskellDepends = [ ··· 100280 }: 100281 mkDerivation { 100282 pname = "beam-core"; 100283 + version = "0.10.4.0"; 100284 + sha256 = "1zxqyxxyid186s86lfw0sq030jckh83j3rwj6ibx4wg3flslk515"; 100285 libraryHaskellDepends = [ 100286 aeson 100287 base ··· 100795 } 100796 ) { }; 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 + 100864 "beam-th" = callPackage ( 100865 { 100866 mkDerivation, ··· 101090 }: 101091 mkDerivation { 101092 pname = "bech32"; 101093 + version = "1.1.9"; 101094 + sha256 = "0l3h4c1aqjqrlxdc4gq409dwly61i7k2d7g3gz0gya9nf39xc3f4"; 101095 isLibrary = true; 101096 isExecutable = true; 101097 libraryHaskellDepends = [ ··· 101148 }: 101149 mkDerivation { 101150 pname = "bech32-th"; 101151 + version = "1.1.9"; 101152 + sha256 = "0bc3wx5np17lb1y4s843f8m65687ainiv8biqfhfg7i2gfsc60cs"; 101153 libraryHaskellDepends = [ 101154 base 101155 bech32 ··· 102521 pname = "bhoogle"; 102522 version = "0.1.4.4"; 102523 sha256 = "1z19h0jgnipj16rqbrflcjnqaslafq9bvwkyg8q0il76q7s4wyxa"; 102524 + revision = "2"; 102525 + editedCabalFile = "1kpzvlzydrfqjhmpjirb51xhnwircdcnmhbn82nvnvm5s4h0pajd"; 102526 isLibrary = false; 102527 isExecutable = true; 102528 executableHaskellDepends = [ ··· 111379 }: 111380 mkDerivation { 111381 pname = "blockfrost-api"; 111382 + version = "0.13.0.0"; 111383 + sha256 = "0nghxnx9kjwk2frzsy0zrskvn3yffy7xp2fa70hl25bsc4sa2zar"; 111384 libraryHaskellDepends = [ 111385 aeson 111386 base ··· 111442 }: 111443 mkDerivation { 111444 pname = "blockfrost-client"; 111445 + version = "0.10.0.0"; 111446 + sha256 = "0jyg2mc8jmwpsix46nh8r6bc2p1j5rdrjsrcdyyvqz5a2ri6hac7"; 111447 isLibrary = true; 111448 isExecutable = true; 111449 libraryHaskellDepends = [ ··· 111614 } 111615 ) { }; 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 + 111672 "blogination" = callPackage ( 111673 { 111674 mkDerivation, ··· 114051 pname = "boomwhacker"; 114052 version = "0.0.2"; 114053 sha256 = "0q5cq5j7dy1qm5jqpcl1imwiqqm0h21yvqwnvabsjnfrvfvryqg2"; 114054 + revision = "2"; 114055 + editedCabalFile = "0jqys322j818dc24fyb37a59qs66m3b46j05y4vswipakwm1kgmk"; 114056 isLibrary = false; 114057 isExecutable = true; 114058 enableSeparateDataOutput = true; ··· 117292 pname = "brotli"; 117293 version = "0.0.0.2"; 117294 sha256 = "09y460adrq6cp9d8qlf8522yb0qc1vgjxv4d56kq2rdf9khqic6z"; 117295 + revision = "1"; 117296 + editedCabalFile = "1a0lbghilwpa6hb5msivb7hjqnnxi2bxlfgiawv0mjpc7gidhbz7"; 117297 libraryHaskellDepends = [ 117298 base 117299 bytestring ··· 117376 pname = "brotli-streams"; 117377 version = "0.0.0.0"; 117378 sha256 = "14jc1nhm50razsl99d95amdf4njf75dnzx8vqkihgrgp7qisyz3z"; 117379 + revision = "10"; 117380 + editedCabalFile = "0v0zg5q9ahf8kvfm9zwlj4ws1yd3bvdxyxkak3xk7nca49vb8mcm"; 117381 libraryHaskellDepends = [ 117382 base 117383 brotli ··· 118571 }: 118572 mkDerivation { 118573 pname = "bugsnag"; 118574 + version = "1.1.0.2"; 118575 + sha256 = "1f0jsad9z9zsj8sbirq6h1x0s7245rxv5gpciz4p8wv9ryi8d3m3"; 118576 isLibrary = true; 118577 isExecutable = true; 118578 libraryHaskellDepends = [ ··· 118604 } 118605 ) { }; 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 + 118664 "bugsnag-haskell" = callPackage ( 118665 { 118666 mkDerivation, ··· 118789 }: 118790 mkDerivation { 118791 pname = "bugsnag-wai"; 118792 + version = "1.0.1.1"; 118793 + sha256 = "0wi0ip7fjzk3hvw2i19wjj08pn0bvmnx9j68lh4hgc8a0bdr69bg"; 118794 isLibrary = true; 118795 isExecutable = true; 118796 libraryHaskellDepends = [ ··· 119683 }: 119684 mkDerivation { 119685 pname = "burrito"; 119686 + version = "2.0.1.14"; 119687 + sha256 = "1mywmf72rsj5p6mrg3454wsihlh1b26x4acb2gp0awx4bg96j09i"; 119688 libraryHaskellDepends = [ 119689 base 119690 bytestring ··· 121117 }: 121118 mkDerivation { 121119 pname = "byteslice"; 121120 + version = "0.2.15.0"; 121121 + sha256 = "10fcb7g9m4rkd6mza2km64agsgkwrbl7crv5hdcd5yljq6gyx2fm"; 121122 libraryHaskellDepends = [ 121123 base 121124 bytestring ··· 123214 pname = "cabal-add"; 123215 version = "0.1"; 123216 sha256 = "1szbi0z8yf98641rwnj856gcfsvvflxwrfxraxy6rl60m7i0mab1"; 123217 + revision = "3"; 123218 + editedCabalFile = "0siv5ajqxcbs9c0ky94p5qk51w6cgf1zyc3rckxvlc25f4kygw4v"; 123219 isLibrary = true; 123220 isExecutable = true; 123221 libraryHaskellDepends = [ ··· 123251 } 123252 ) { }; 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 + 123315 "cabal-appimage" = callPackage ( 123316 { 123317 mkDerivation, ··· 123679 }: 123680 mkDerivation { 123681 pname = "cabal-cargs"; 123682 + version = "1.7.0"; 123683 + sha256 = "17q51lg7vhdzvy9s8f3zplxa4mij2bjclzxry5f9d2pgiq4290p9"; 123684 isLibrary = true; 123685 isExecutable = true; 123686 libraryHaskellDepends = [ ··· 123861 }: 123862 mkDerivation { 123863 pname = "cabal-debian"; 123864 + pname = "nat"; 123865 + sha256 = "081h14nw6spfpr6l0cd9knc2jw8g3zhlwyhq7zrxvfrlqwwwm14w"; 123866 isLibrary = true; 123867 isExecutable = true; 123868 libraryHaskellDepends = [ ··· 124309 pname = "cabal-flatpak"; 124310 version = "0.1.2"; 124311 sha256 = "05ig175b2glxppn5wr05pnncqkp8yhhy1m7ymmc1jk5pmiy3zvzi"; 124312 + revision = "2"; 124313 + editedCabalFile = "01iqpfj5nvl19580ckl4b0aljl86svplxzpkavp5r0jbwaqi0ll3"; 124314 isLibrary = false; 124315 isExecutable = true; 124316 executableHaskellDepends = [ ··· 125206 } 125207 ) { }; 125208 125209 + "cabal-install-parsers_0_6_3" = callPackage ( 125210 { 125211 mkDerivation, 125212 aeson, ··· 125238 }: 125239 mkDerivation { 125240 pname = "cabal-install-parsers"; 125241 + version = "0.6.3"; 125242 + sha256 = "1vcy6y1p750g4v9zqmsakrcvw78p43n2b745fl02xq7xyr5lpfij"; 125243 libraryHaskellDepends = [ 125244 aeson 125245 base ··· 125610 }: 125611 mkDerivation { 125612 pname = "cabal-plan"; 125613 + version = "0.7.6.0"; 125614 + sha256 = "0n6q56gyyiflagka0bhmp077py71xdc9j921yyl7818q6b6ha3hs"; 125615 configureFlags = [ "-fexe" ]; 125616 isLibrary = true; 125617 isExecutable = true; ··· 126100 pname = "cabal-sort"; 126101 version = "0.1.2.2"; 126102 sha256 = "1gyx5d485mzya147d7gwh0i9bkvdqxixrb80bfv5sn710p07bfdz"; 126103 + revision = "1"; 126104 + editedCabalFile = "0hlz8y734rgcqjlncv0bwi05m30iviz6bi9bsafvsv1w25lxlpc4"; 126105 isLibrary = false; 126106 isExecutable = true; 126107 executableHaskellDepends = [ ··· 127419 }: 127420 mkDerivation { 127421 pname = "cachix"; 127422 + version = "1.7.9"; 127423 + sha256 = "02q0z2f668y826f9rspwwn1kw3ma1igwsh2fp291g4sz8x6z66fv"; 127424 isLibrary = true; 127425 isExecutable = true; 127426 libraryHaskellDepends = [ ··· 127580 }: 127581 mkDerivation { 127582 pname = "cachix-api"; 127583 + version = "1.7.9"; 127584 + sha256 = "1jp55yvih27xkpky4i6pl37ajwyql84cniz2nhgwdb67qac5nmgi"; 127585 libraryHaskellDepends = [ 127586 aeson 127587 async ··· 132404 }: 132405 mkDerivation { 132406 pname = "cassava"; 132407 + version = "0.5.4.0"; 132408 + sha256 = "0vdbmvb36sg08glig1dqc8kb1s07l5fcn2n0c58iglkv5djsbpnr"; 132409 revision = "1"; 132410 + editedCabalFile = "1w7mih2wpbgv0bn2cg2ip0ffsn2y7aywqixi1lig30yarsyc873x"; 132411 configureFlags = [ "-f-bytestring--lt-0_10_4" ]; 132412 libraryHaskellDepends = [ 132413 array ··· 132731 ) { }; 132732 132733 "cassette" = callPackage ( 132734 + { 132735 + mkDerivation, 132736 + base, 132737 + profunctors, 132738 + }: 132739 mkDerivation { 132740 pname = "cassette"; 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; 132749 } 132750 ) { }; 132751 ··· 133384 "cauldron" = callPackage ( 133385 { 133386 mkDerivation, 133387 base, 133388 containers, 133389 tasty, 133390 tasty-hunit, 133391 transformers, 133392 }: 133393 mkDerivation { 133394 pname = "cauldron"; 133395 + version = "0.8.0.0"; 133396 + sha256 = "1vkvxkr3lr99xvd4vqga18idcpw3p1mv8hr94qagvfqdxrd68wcl"; 133397 isLibrary = true; 133398 isExecutable = true; 133399 libraryHaskellDepends = [ 133400 base 133401 containers 133402 ]; 133403 executableHaskellDepends = [ base ]; 133404 testHaskellDepends = [ 133405 base 133406 containers 133407 tasty 133408 tasty-hunit 133409 transformers 133410 ]; 133411 + doHaddock = false; 133412 description = "Dependency injection library"; 133413 license = lib.licenses.bsd3; 133414 + hydraPlatforms = lib.platforms.none; 133415 mainProgram = "cauldron-example-wiring"; 133416 + broken = true; 133417 } 133418 ) { }; 133419 ··· 133793 pname = "cborg"; 133794 version = "0.2.10.0"; 133795 sha256 = "15y7p5rsv76fpklh4rgrxlxxaivpbchxdfdw96mqqjgw7060gzhp"; 133796 + revision = "3"; 133797 + editedCabalFile = "1ahqlq51kjc8cf5sybbmrh4rf6vsbkcd67rhxhrr9rc5w6nl9h27"; 133798 libraryHaskellDepends = [ 133799 array 133800 base ··· 133860 pname = "cborg-json"; 133861 version = "0.2.6.0"; 133862 sha256 = "1p6xdimwypmlsc0zdyw1vyyapnhwn2g8b9n0a83ca6h4r90722yv"; 133863 + revision = "4"; 133864 + editedCabalFile = "06pjqx8v7j8f6rvkf84vahva8y02lykaymnjdrjqrc5rgy01c6m0"; 133865 libraryHaskellDepends = [ 133866 aeson 133867 aeson-pretty ··· 136789 } 136790 ) { }; 136791 136792 + "chart-svg_0_8_1_0" = callPackage ( 136793 { 136794 mkDerivation, 136795 base, ··· 136813 }: 136814 mkDerivation { 136815 pname = "chart-svg"; 136816 + version = "0.8.1.0"; 136817 + sha256 = "1rsix6qdxhsgjg4zp7rh5di6y5mjxjv0mzv9g82ryl3vlcryyaj4"; 136818 libraryHaskellDepends = [ 136819 base 136820 bytestring ··· 147731 }: 147732 mkDerivation { 147733 pname = "co-log-concurrent"; 147734 + version = "0.5.1.1"; 147735 + sha256 = "1yw5ljanhc176k4xj1pfqkhq6c63hv5an7pm06vjiakmk6j4rqlg"; 147736 + revision = "1"; 147737 + editedCabalFile = "071xrzj7bjnb32f5dlsqa726cmw9s9q22bv7ch4gj2r83crng68g"; 147738 libraryHaskellDepends = [ 147739 base 147740 co-log-core ··· 147742 ]; 147743 description = "Asynchronous backend for co-log library"; 147744 license = lib.licenses.mpl20; 147745 } 147746 ) { }; 147747 ··· 147832 }: 147833 mkDerivation { 147834 pname = "co-log-json"; 147835 + version = "0.1.0.2"; 147836 + sha256 = "0lr8599hqiyg70qw5pmdbrpm1lyps819h7anxxi4ip2r1im2p3xd"; 147837 libraryHaskellDepends = [ 147838 aeson 147839 base ··· 147845 ]; 147846 description = "Structured messages support in co-log ecosystem"; 147847 license = lib.licenses.mpl20; 147848 } 147849 ) { }; 147850 ··· 153067 }: 153068 mkDerivation { 153069 pname = "compactmap"; 153070 + version = "0.1.4.6"; 153071 + sha256 = "1lkvhmdz77m6jm43946q2g6ijl7w6kqs9n68g1gzfxw6akmpy39y"; 153072 libraryHaskellDepends = [ 153073 base 153074 vector ··· 157037 }: 157038 mkDerivation { 157039 pname = "conduit-extra"; 157040 + version = "1.3.8"; 157041 + sha256 = "08l2728vyr3dppnj4z3yagi2265ixp8g8ayhz07x3x88jj73w7s9"; 157042 + revision = "1"; 157043 + editedCabalFile = "1fq0cs2fcn2kd1mvp9ygsp7rm5qridwp1wwnr60jmpahvihb4cp9"; 157044 libraryHaskellDepends = [ 157045 async 157046 attoparsec ··· 157100 conduit, 157101 conduit-combinators, 157102 conduit-extra, 157103 either, 157104 exceptions, 157105 filepath, ··· 157108 monad-control, 157109 mtl, 157110 regex-posix, 157111 + resourcet, 157112 semigroups, 157113 streaming-commons, 157114 text, 157115 time, 157116 transformers, 157117 transformers-base, 157118 + transformers-either, 157119 unix, 157120 unix-compat, 157121 + unliftio-core, 157122 }: 157123 mkDerivation { 157124 pname = "conduit-find"; 157125 + version = "0.1.0.4"; 157126 + sha256 = "03mrfqmxryrv21adk6ijf3isfffjhf91qkjqqrlfkm3fxhz2xp4m"; 157127 isLibrary = true; 157128 isExecutable = true; 157129 libraryHaskellDepends = [ ··· 157139 monad-control 157140 mtl 157141 regex-posix 157142 + resourcet 157143 semigroups 157144 streaming-commons 157145 text 157146 time 157147 transformers 157148 transformers-base 157149 + transformers-either 157150 unix-compat 157151 + unliftio-core 157152 ]; 157153 executableHaskellDepends = [ 157154 attoparsec ··· 157163 monad-control 157164 mtl 157165 regex-posix 157166 + resourcet 157167 semigroups 157168 streaming-commons 157169 text ··· 157171 transformers 157172 transformers-base 157173 unix 157174 + unliftio-core 157175 ]; 157176 testHaskellDepends = [ 157177 attoparsec 157178 base 157179 conduit 157180 conduit-combinators 157181 either 157182 exceptions 157183 filepath ··· 157186 monad-control 157187 mtl 157188 regex-posix 157189 + resourcet 157190 semigroups 157191 streaming-commons 157192 text ··· 157194 transformers 157195 transformers-base 157196 unix-compat 157197 + unliftio-core 157198 ]; 157199 description = "A file-finding conduit that allows user control over traversals"; 157200 license = lib.licenses.mit; ··· 161655 }: 161656 mkDerivation { 161657 pname = "control-block"; 161658 + version = "0.0.2"; 161659 + sha256 = "0p79ic8yq9jw86jiyxs6k6z740w25ckkdn0lp3rj8rxya2h7viaw"; 161660 libraryHaskellDepends = [ 161661 base 161662 indexed-traversable ··· 161664 ]; 161665 description = "Higher-order functions with their function arguments at the end, for channeling the full power of BlockArguments and LambdaCase"; 161666 license = lib.licenses.bsd2; 161667 } 161668 ) { }; 161669 ··· 162457 } 162458 ) { }; 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 + 162524 "convexHullNd" = callPackage ( 162525 { 162526 mkDerivation, ··· 165075 pname = "countdown-numbers-game"; 165076 version = "0.0.0.1"; 165077 sha256 = "1warpkqimxjvqrm1jq4nbj3g3bz009alklqs46dh23p3lrgcif61"; 165078 + revision = "1"; 165079 + editedCabalFile = "05106icwf7kvnwj5109yim2xyx8q5lxvccbn2dqb0q571h5v1a5q"; 165080 isLibrary = false; 165081 isExecutable = true; 165082 executableHaskellDepends = [ ··· 167797 pname = "criterion"; 167798 version = "1.6.4.0"; 167799 sha256 = "0l9gxar759nskhm7gskr3j08bw8515amw6rr4n3zx3978dxg8aq6"; 167800 + revision = "1"; 167801 + editedCabalFile = "0wwzijzvqrv7swpalr24i3j4pjcjm266ybhhah853d783zz37vzz"; 167802 isLibrary = true; 167803 isExecutable = true; 167804 enableSeparateDataOutput = true; ··· 172842 } 172843 ) { inherit (pkgs) cudd; }; 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 + 172943 "cue-sheet" = callPackage ( 172944 { 172945 mkDerivation, ··· 177379 } 177380 ) { }; 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 + 177412 "data-default" = callPackage ( 177413 { 177414 mkDerivation, ··· 181315 }: 181316 mkDerivation { 181317 pname = "dataframe"; 181318 + version = "0.2.0.1"; 181319 + sha256 = "1qgdlmyz4mlvqb1qicspv7yiddyla8kxczx7018myryws9861f52"; 181320 isLibrary = true; 181321 isExecutable = true; 181322 libraryHaskellDepends = [ ··· 182506 } 182507 ) { }; 182508 182509 + "dbus_1_4_1" = callPackage ( 182510 { 182511 mkDerivation, 182512 base, ··· 182542 }: 182543 mkDerivation { 182544 pname = "dbus"; 182545 + version = "1.4.1"; 182546 + sha256 = "016xrx8gnvldpwgalpsxzvkwagavpzw9m7j65w5msskaxk474ln7"; 182547 libraryHaskellDepends = [ 182548 base 182549 bytestring ··· 184279 containers, 184280 hspec, 184281 markdown-unlit, 184282 + scientific, 184283 text, 184284 vector, 184285 }: 184286 mkDerivation { 184287 pname = "debug-print"; 184288 + version = "0.2.1.0"; 184289 + sha256 = "1mgl8sc69fbpcx3hrb8b1dcsgs2zzflms5ryf3zbs8j91yvpx02s"; 184290 libraryHaskellDepends = [ 184291 aeson 184292 base 184293 containers 184294 + scientific 184295 text 184296 vector 184297 ]; ··· 184614 pname = "decimal-literals"; 184615 version = "0.1.0.1"; 184616 sha256 = "0lbpnc4c266fbqjzzrnig648zzsqfaphlxqwyly9xd15qggzasb0"; 184617 + revision = "4"; 184618 + editedCabalFile = "1jiayinmqx35lm7n5dwgfqfq8pafdz7q1ysv8lqqjaiylrlm092r"; 184619 libraryHaskellDepends = [ base ]; 184620 testHaskellDepends = [ 184621 base ··· 185053 } 185054 ) { }; 185055 185056 + "deepseq_1_5_2_0" = callPackage ( 185057 { 185058 mkDerivation, 185059 base, ··· 185061 }: 185062 mkDerivation { 185063 pname = "deepseq"; 185064 + version = "1.5.2.0"; 185065 + sha256 = "1rgv1kn3igdip34bpn24syirmsjllipd98l301y5n225gw6q1mq9"; 185066 libraryHaskellDepends = [ 185067 base 185068 ghc-prim ··· 186226 pname = "deltaq"; 186227 version = "1.0.0.0"; 186228 sha256 = "00zpvwxar13rq84li7j21ycapdnyx128cs2yqvn6hwnrr8w25w9d"; 186229 + revision = "1"; 186230 + editedCabalFile = "1i4lkq6w34ik7csx6wpwy4by2vbdijilpynwjf9kr7dfn5ac2gz1"; 186231 libraryHaskellDepends = [ 186232 base 186233 Chart ··· 191303 pname = "diagrams-builder"; 191304 version = "0.8.0.6"; 191305 sha256 = "17yi5dmcxx4sgk3wha386zbv9h69pwq72j8i21vmfh35brxhs9f4"; 191306 + revision = "3"; 191307 + editedCabalFile = "0pi4509j5i8jgxn0a9z39ac1sr8n2n97v8pfyla9s30sc63ybjag"; 191308 configureFlags = [ 191309 "-fcairo" 191310 "-fps" ··· 191409 } 191410 ) { }; 191411 191412 + "diagrams-cairo_1_5" = callPackage ( 191413 { 191414 mkDerivation, 191415 array, ··· 191436 }: 191437 mkDerivation { 191438 pname = "diagrams-cairo"; 191439 + version = "1.5"; 191440 + sha256 = "1s0cq1sv158b7pszhipc4f5555zfqz1xxa7hdd13afx7jnh68z3i"; 191441 + revision = "1"; 191442 + editedCabalFile = "19daz3jx4kc4pqr0ffq4wrpfwk95xz3fnhlacba9q96aw3c1vcnd"; 191443 libraryHaskellDepends = [ 191444 array 191445 base ··· 191533 pname = "diagrams-canvas"; 191534 version = "1.4.2"; 191535 sha256 = "0ns1xmgcjqig7qld7r77rbcrk779cmzj7xfqj6a7sbdci3in2dgm"; 191536 + revision = "2"; 191537 + editedCabalFile = "0if7b5dzgrdqz491ma31kizasiyaa3pc0m570r4ccr4m2gs7jz2m"; 191538 libraryHaskellDepends = [ 191539 base 191540 blank-canvas ··· 191672 pname = "diagrams-contrib"; 191673 version = "1.4.6"; 191674 sha256 = "1x5z361xmqfa503brmf0zwyq3lldm9kgixx90v14s4dsz52my46k"; 191675 + revision = "3"; 191676 + editedCabalFile = "07yslc0ds8sj412xgy13dxa7g2a8psgx06nds99yd55bfppias32"; 191677 libraryHaskellDepends = [ 191678 base 191679 circle-packing ··· 191784 }: 191785 mkDerivation { 191786 pname = "diagrams-gi-cairo"; 191787 + version = "1.5"; 191788 + sha256 = "1wkr52maf7320k75si6lbwds39i0zw0mhd8b4y5h262ifqfkyi1s"; 191789 libraryHaskellDepends = [ 191790 array 191791 base ··· 191857 pname = "diagrams-gtk"; 191858 version = "1.4"; 191859 sha256 = "1sga2wwkircjgryd4pn9i0wvvcnh3qnhpxas32crpdq939idwsxn"; 191860 + revision = "7"; 191861 + editedCabalFile = "065hmxb3hhaa7g1xbay0wa29zcyivxrp289l9wrak7pg610ri3j3"; 191862 libraryHaskellDepends = [ 191863 base 191864 cairo ··· 191868 ]; 191869 description = "Backend for rendering diagrams directly to GTK windows"; 191870 license = lib.licenses.bsd3; 191871 } 191872 ) { }; 191873 ··· 192340 pname = "diagrams-lib"; 192341 version = "1.5"; 192342 sha256 = "0gp9k6cfc62j6rlfiziig6j5shf05d0vbcvss40rzjk8qi012i11"; 192343 + revision = "2"; 192344 + editedCabalFile = "0499yz41prmsixfq2h9virqr9fkn9akllxxf0yc2kqkv7ran2ij9"; 192345 libraryHaskellDepends = [ 192346 active 192347 adjunctions ··· 192425 }: 192426 mkDerivation { 192427 pname = "diagrams-pandoc"; 192428 + version = "0.4.1"; 192429 + sha256 = "1gil467zp3n6wymiw4d492izf1hhac01j4nafmahjh4ybvi840xr"; 192430 isLibrary = true; 192431 isExecutable = true; 192432 libraryHaskellDepends = [ ··· 192471 ]; 192472 description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; 192473 license = lib.licenses.bsd3; 192474 mainProgram = "diagrams-pandoc"; 192475 } 192476 ) { }; 192477 ··· 192545 pname = "diagrams-pgf"; 192546 version = "1.5"; 192547 sha256 = "13zm00ayyk6gvlh4l2wdmrdqic386v69i3krylgvrajhdsd050al"; 192548 + revision = "1"; 192549 + editedCabalFile = "0vzi1dim76arwjrh9yqb9l2004ffsir8rws4vx26is5wzxsqf8y1"; 192550 libraryHaskellDepends = [ 192551 base 192552 bytestring ··· 192637 pname = "diagrams-postscript"; 192638 version = "1.5.2"; 192639 sha256 = "08kqhnd5r60kisjraypwjfcri1v4f32rf14js413871pgic4rhy5"; 192640 + revision = "2"; 192641 + editedCabalFile = "060zkv836i1df97nqkna8fnqkyxv4wgmk7yn74whyf1fii4rf86g"; 192642 libraryHaskellDepends = [ 192643 base 192644 bytestring ··· 192762 pname = "diagrams-rasterific"; 192763 version = "1.5"; 192764 sha256 = "02bq6819a8xxa20kggmg9j5wa72zh4gbcvbpv1b1pzbg57bp2s8k"; 192765 + revision = "1"; 192766 + editedCabalFile = "1f5l5w28kbnajc0kd304fs2h9svc2inb90qbjmqyii30bf0b2n15"; 192767 libraryHaskellDepends = [ 192768 base 192769 bytestring ··· 192826 ]; 192827 description = "reflex backend for diagrams drawing EDSL"; 192828 license = lib.licenses.bsd3; 192829 } 192830 ) { }; 192831 ··· 192961 pname = "diagrams-svg"; 192962 version = "1.5"; 192963 sha256 = "1g11fvcgx99xg71c9sd6m7pfclnzcfx72alcx3avlb4qzz56wn52"; 192964 + revision = "2"; 192965 + editedCabalFile = "1d7n707vmcbk1l1fi956hagyyzzn3hd11wxyabm1mirv8qxrha0s"; 192966 libraryHaskellDepends = [ 192967 base 192968 base64-bytestring ··· 196230 }: 196231 mkDerivation { 196232 pname = "discord-haskell"; 196233 + version = "1.18.0"; 196234 + sha256 = "0g3xlhjfqslv6565fgzq0m0qdsf50kv9m5shb71yr4hwvar4w7qc"; 196235 isLibrary = true; 196236 isExecutable = true; 196237 libraryHaskellDepends = [ ··· 196268 ]; 196269 description = "Write bots for Discord in Haskell"; 196270 license = lib.licenses.mit; 196271 } 196272 ) { }; 196273 ··· 201037 } 201038 ) { }; 201039 201040 + "doctest_0_24_2" = callPackage ( 201041 { 201042 mkDerivation, 201043 base, ··· 201064 }: 201065 mkDerivation { 201066 pname = "doctest"; 201067 + version = "0.24.2"; 201068 + sha256 = "1dpffnr24zaricmkwc13npap569crwwfha1w9vz3fhywmh0dnfjk"; 201069 isLibrary = true; 201070 isExecutable = true; 201071 libraryHaskellDepends = [ ··· 201239 }: 201240 mkDerivation { 201241 pname = "doctest-exitcode-stdio"; 201242 + version = "0.0.0.1"; 201243 + sha256 = "0kg5xiw4giyvqpcj6cxqqnysvixhxlwm0pbg3qks8dzwb5w79dvk"; 201244 libraryHaskellDepends = [ 201245 base 201246 doctest-lib ··· 201270 pname = "doctest-extract"; 201271 version = "0.1.2"; 201272 sha256 = "1dizs0r9pdankbv5ijfgqva5ha8p5xxl7x8y1sjql6h7ch8pz0p6"; 201273 + revision = "1"; 201274 + editedCabalFile = "1m71h2iwizh9rms2dq29wwzbsfz8qzqw7q8vldpmk7nm1572rhss"; 201275 isLibrary = false; 201276 isExecutable = true; 201277 executableHaskellDepends = [ ··· 201389 } 201390 ) { }; 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 + 201478 "doctest-prop" = callPackage ( 201479 { 201480 mkDerivation, ··· 201977 }: 201978 mkDerivation { 201979 pname = "dollaridoos"; 201980 + version = "0.2.0.0"; 201981 + sha256 = "09hbm1dkgg8qb4y22hbqwmy858nbaxjn9vizv7z58gd2756gia7s"; 201982 libraryHaskellDepends = [ 201983 base 201984 profunctors ··· 202099 ]; 202100 description = "Simple monadic DOM parser"; 202101 license = lib.licenses.mit; 202102 } 202103 ) { }; 202104 ··· 203225 }: 203226 mkDerivation { 203227 pname = "double-x-encoding"; 203228 + version = "1.2.2"; 203229 + sha256 = "0wzawzwsw2dkmw5yvnva8la6v2iwr5ni353imi0qmsgssvg0va6s"; 203230 libraryHaskellDepends = [ 203231 base 203232 Cabal-syntax ··· 203239 ]; 203240 description = "Encoding scheme to encode any Unicode string with only [0-9a-zA-Z_]"; 203241 license = lib.licenses.isc; 203242 } 203243 ) { }; 203244 ··· 205802 pname = "dumb-cas"; 205803 version = "0.2.1.1"; 205804 sha256 = "0rqh1sy500gbgqr69z220yb8g7gp117z0iw1kly9zxqhrzn3sv9f"; 205805 + revision = "2"; 205806 + editedCabalFile = "0gg7yxb8r8f53pw6j33ifm9l5a934q7x261kbydj1kf8zbq0pwfd"; 205807 libraryHaskellDepends = [ 205808 base 205809 containers ··· 205819 ]; 205820 description = "A computer “algebra” system that knows nothing about algebra, at the core"; 205821 license = lib.licenses.gpl3Only; 205822 } 205823 ) { }; 205824 ··· 206536 }: 206537 mkDerivation { 206538 pname = "dwergaz"; 206539 + version = "0.3.1.0"; 206540 + sha256 = "1c40js81v95hl90zv7nbsmdn8z05s8f2arjhzvsbimckvjrg03x9"; 206541 libraryHaskellDepends = [ 206542 base 206543 pretty ··· 210003 }: 210004 mkDerivation { 210005 pname = "effect-stack"; 210006 + version = "0.3.0.1"; 210007 + sha256 = "04y5rqvjzz5fsvlkwqwjlwngz3j3p83anzh77d7fbmkii8fb9g87"; 210008 libraryHaskellDepends = [ 210009 base 210010 constraints ··· 210013 ]; 210014 description = "Reducing the pain of transformer stacks with duplicated effects"; 210015 license = lib.licenses.bsd3; 210016 } 210017 ) { }; 210018 ··· 210082 } 210083 ) { }; 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 + 210152 "effectful-core" = callPackage ( 210153 { 210154 mkDerivation, ··· 210182 } 210183 ) { }; 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 + 210219 "effectful-plugin" = callPackage ( 210220 { 210221 mkDerivation, ··· 210242 ]; 210243 description = "A GHC plugin for improving disambiguation of effects"; 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; 210273 } 210274 ) { }; 210275 ··· 211204 profunctors, 211205 QuickCheck, 211206 semigroupoids, 211207 + tasty, 211208 + tasty-quickcheck, 211209 }: 211210 mkDerivation { 211211 pname = "either"; 211212 + version = "5.0.3"; 211213 + sha256 = "00a8h2jgrpqdlsi8vjrm2qa6rmw33ksirxv9s6i90nlmhhg6jrkd"; 211214 libraryHaskellDepends = [ 211215 base 211216 bifunctors ··· 211221 testHaskellDepends = [ 211222 base 211223 QuickCheck 211224 + tasty 211225 + tasty-quickcheck 211226 ]; 211227 description = "Combinators for working with sums"; 211228 license = lib.licenses.bsd3; ··· 211567 mkDerivation, 211568 base, 211569 containers, 211570 + ghc-prim, 211571 text, 211572 unordered-containers, 211573 }: 211574 mkDerivation { 211575 pname = "ekg-core"; 211576 + version = "0.1.2.0"; 211577 + sha256 = "12d4xzkdczbrmhhpgymf9brjn0kpq5645dq57xw05sylalfyslzz"; 211578 libraryHaskellDepends = [ 211579 base 211580 containers 211581 + ghc-prim 211582 text 211583 unordered-containers 211584 ]; ··· 217809 }: 217810 mkDerivation { 217811 pname = "erebos-tester"; 217812 + version = "0.3.3"; 217813 + sha256 = "0xcwijr034dw5s4f6jyb727449wayyd31lv8afmfr49i0jmwhgay"; 217814 isLibrary = false; 217815 isExecutable = true; 217816 executableHaskellDepends = [ ··· 218721 } 218722 ) { }; 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 + 218797 "ersatz-toysat" = callPackage ( 218798 { 218799 mkDerivation, ··· 221848 }: 221849 mkDerivation { 221850 pname = "eventlog2html"; 221851 + version = "0.12.0"; 221852 + sha256 = "1jbp46hcx4kcnkln9vd8b36fjwhxlmlcv08narr6w5bfxz1dpzy6"; 221853 isLibrary = true; 221854 isExecutable = true; 221855 libraryHaskellDepends = [ ··· 223246 } 223247 ) { }; 223248 223249 + "exceptions_0_10_10" = callPackage ( 223250 { 223251 mkDerivation, 223252 base, 223253 mtl, 223254 QuickCheck, 223255 stm, 223256 + tasty, 223257 + tasty-hunit, 223258 + tasty-quickcheck, 223259 template-haskell, 223260 transformers, 223261 }: 223262 mkDerivation { 223263 pname = "exceptions"; 223264 + version = "0.10.10"; 223265 + sha256 = "1cddmj2y5h2hqjgmk14c698g8hhq0x2rycdl5vgz8vvzzsg83zq8"; 223266 libraryHaskellDepends = [ 223267 base 223268 mtl ··· 223275 mtl 223276 QuickCheck 223277 stm 223278 + tasty 223279 + tasty-hunit 223280 + tasty-quickcheck 223281 template-haskell 223282 transformers 223283 ]; 223284 description = "Extensible optionally-pure exceptions"; ··· 224462 }: 224463 mkDerivation { 224464 pname = "exotic-list-monads"; 224465 + version = "1.2.0"; 224466 + sha256 = "1wxdhh869v69schj88xz9anzmj4qly3wrh8jmkwga6h5krhvqkgh"; 224467 libraryHaskellDepends = [ base ]; 224468 testHaskellDepends = [ 224469 base ··· 224474 testToolDepends = [ hspec-discover ]; 224475 description = "Non-standard monads on lists and non-empty lists"; 224476 license = lib.licenses.mit; 224477 + hydraPlatforms = lib.platforms.none; 224478 + broken = true; 224479 } 224480 ) { }; 224481 ··· 225635 }: 225636 mkDerivation { 225637 pname = "extended-reals"; 225638 + version = "0.2.7.0"; 225639 + sha256 = "0q9k3fl8n30mlsv1c459470bjd4bqyg0vqycjc76qkzxwljl6pwk"; 225640 + revision = "1"; 225641 + editedCabalFile = "1w69ym1cpsdxh7344j6j0kabrdazfx7n9yzqgxcjplsd92gwr97k"; 225642 libraryHaskellDepends = [ 225643 base 225644 deepseq ··· 228120 }: 228121 mkDerivation { 228122 pname = "fast-logger"; 228123 + version = "3.2.6"; 228124 + sha256 = "1hy5cczg64q6cafahfcfjsij48w80zskgjnn3ks0w5w4vqiccrmx"; 228125 libraryHaskellDepends = [ 228126 array 228127 auto-update ··· 229583 }: 229584 mkDerivation { 229585 pname = "fbrnch"; 229586 + version = "1.7.1"; 229587 + sha256 = "1xsq70xpd0qgz0krlmm31b821ir94sc8qa0qpshjlcfja882p11l"; 229588 isLibrary = false; 229589 isExecutable = true; 229590 executableHaskellDepends = [ ··· 230637 } 230638 ) { }; 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 + 230668 "fedora-repoquery" = callPackage ( 230669 { 230670 mkDerivation, ··· 230686 }: 230687 mkDerivation { 230688 pname = "fedora-repoquery"; 230689 + version = "0.7.3"; 230690 + sha256 = "1sdyvbvrh1z32y8hsbfwzyrffl57niri0rgpp580syh11l621sj1"; 230691 isLibrary = false; 230692 isExecutable = true; 230693 executableHaskellDepends = [ ··· 233526 pname = "filepath"; 233527 version = "1.5.4.0"; 233528 sha256 = "1bswvf1hrsslb8xlwvsccz12h5habrdpqq4zgcyjg4zm6b28dajl"; 233529 + revision = "1"; 233530 + editedCabalFile = "0b7hmqygr29ppazwbmrrl60bshpqg7zhvzq5g4wl3pgj19iw55ql"; 233531 libraryHaskellDepends = [ 233532 base 233533 bytestring ··· 233790 pname = "filestore"; 233791 version = "0.6.5"; 233792 sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; 233793 + revision = "3"; 233794 + editedCabalFile = "003vfb6j47vihjba1py9ls9l269gkg89rf732gb5lwdximxg7wf0"; 233795 libraryHaskellDepends = [ 233796 base 233797 bytestring ··· 234680 }: 234681 mkDerivation { 234682 pname = "finite"; 234683 + version = "1.5.0.0"; 234684 + sha256 = "02fw2m1qn4rpz25jnd9vb16417srpzwz0lhzin04dwc6gjq74i8g"; 234685 libraryHaskellDepends = [ 234686 array 234687 base ··· 239693 QuickCheck, 239694 quickcheck-instances, 239695 tagged, 239696 + tasty, 239697 tasty-bench, 239698 + tasty-quickcheck, 239699 transformers, 239700 }: 239701 mkDerivation { 239702 pname = "foldable1-classes-compat"; 239703 + version = "0.1.2"; 239704 + sha256 = "1n6a8ga07gdwnhy485qzy23algcmnzppfcxfy8c6qipamn4hw5p3"; 239705 libraryHaskellDepends = [ 239706 base 239707 ghc-prim ··· 239712 containers 239713 QuickCheck 239714 quickcheck-instances 239715 + tasty 239716 + tasty-quickcheck 239717 transformers 239718 ]; 239719 benchmarkHaskellDepends = [ ··· 241649 }: 241650 mkDerivation { 241651 pname = "fortran-src"; 241652 + version = "0.16.7"; 241653 + sha256 = "12d46b232aks34nvb3jc66dhz0nxq3z8ngbs6rfn71paj2mfj5cv"; 241654 isLibrary = true; 241655 isExecutable = true; 241656 libraryHaskellDepends = [ ··· 243491 }: 243492 mkDerivation { 243493 pname = "freckle-app"; 243494 + version = "1.23.3.0"; 243495 + sha256 = "0405dj2isvhgib85km2fppq32aan5sghsny2ilwv39pr2g6kkwkm"; 243496 libraryHaskellDepends = [ 243497 aeson 243498 annotated-exception ··· 243733 }: 243734 mkDerivation { 243735 pname = "freckle-http"; 243736 + version = "0.2.0.0"; 243737 + sha256 = "0an1bqpsslr8zlpmvvp5hjw5fwpwqjr6w0m4ib7sa1d0218xzdnz"; 243738 libraryHaskellDepends = [ 243739 aeson 243740 annotated-exception ··· 244852 pname = "free-vector-spaces"; 244853 version = "0.1.5.2"; 244854 sha256 = "0p0flpai3n9ism9dd3kyf1fa8s8rpb4cc00m3bplb9s8zb6aghpb"; 244855 + revision = "3"; 244856 + editedCabalFile = "1nhbj4ch0fayqbd90qzwhlda929rny81422grdqifghqrr1lq4lv"; 244857 libraryHaskellDepends = [ 244858 base 244859 lens ··· 246459 }: 246460 mkDerivation { 246461 pname = "fs-api"; 246462 + version = "0.4.0.0"; 246463 + sha256 = "1aw9x4cgflm2fy5ps3cgpwfzgfp7r7r9fps2vkzbqz03gjpql0dm"; 246464 libraryHaskellDepends = [ 246465 base 246466 bytestring ··· 246488 ]; 246489 description = "Abstract interface for the file system"; 246490 license = lib.licenses.asl20; 246491 } 246492 ) { }; 246493 ··· 246513 bifunctors, 246514 bytestring, 246515 containers, 246516 + deepseq, 246517 fs-api, 246518 generics-sop, 246519 io-classes, ··· 246532 }: 246533 mkDerivation { 246534 pname = "fs-sim"; 246535 + version = "0.4.0.0"; 246536 + sha256 = "0wirx3mk2dmjw13adbf4d9qpgx7b9kk0y5my7s3yx1lsm2z9m4pw"; 246537 libraryHaskellDepends = [ 246538 base 246539 base16-bytestring ··· 246552 bifunctors 246553 bytestring 246554 containers 246555 + deepseq 246556 fs-api 246557 generics-sop 246558 io-classes ··· 246569 ]; 246570 description = "Simulated file systems"; 246571 license = lib.licenses.asl20; 246572 } 246573 ) { }; 246574 ··· 248036 }: 248037 mkDerivation { 248038 pname = "functor-combinators"; 248039 + version = "0.4.1.4"; 248040 + sha256 = "1yqfbnwv649viy1qpzvk8f9xip0id1k7q6m0j2ssiapfpig43xys"; 248041 libraryHaskellDepends = [ 248042 assoc 248043 base ··· 248082 ]; 248083 description = "Tools for functor combinator-based program design"; 248084 license = lib.licenses.bsd3; 248085 } 248086 ) { }; 248087 ··· 250132 }: 250133 mkDerivation { 250134 pname = "fxpak"; 250135 + version = "0.1.3"; 250136 + sha256 = "1fn88wzhazx9jwddjxq4l4q1xr9g9yl5dsbc9slizb8mnkrkacd9"; 250137 libraryHaskellDepends = [ 250138 base 250139 bytestring ··· 250141 ]; 250142 description = "Interface to the FXPak/FXPak Pro USB interface"; 250143 license = lib.licenses.bsd3; 250144 } 250145 ) { }; 250146 ··· 253130 pname = "generic-aeson"; 253131 version = "0.2.0.14"; 253132 sha256 = "0ssras2db9fqgyfhhw2pk827xf4dd4g9s9vwj8g85vaqxyvzyd8x"; 253133 + revision = "1"; 253134 + editedCabalFile = "047mgqq08f1zmnw9400b246bjgpg1r5barz53kbqhfqiaq7ybz85"; 253135 libraryHaskellDepends = [ 253136 aeson 253137 attoparsec ··· 253145 ]; 253146 description = "Derivation of Aeson instances using GHC generics"; 253147 license = lib.licenses.bsd3; 253148 } 253149 ) { }; 253150 ··· 253533 { mkDerivation, base }: 253534 mkDerivation { 253535 pname = "generic-enumeration"; 253536 + version = "0.1.0.4"; 253537 + sha256 = "0f83fnvmmi4yvdn9i2r1vkpk6cy4lqpxgjv26f380akyf30av90p"; 253538 libraryHaskellDepends = [ base ]; 253539 description = "Generically derived enumerations"; 253540 license = lib.licenses.mit; ··· 253703 pname = "generic-lens-lite"; 253704 version = "0.1.1"; 253705 sha256 = "1ldc13g7l5jjgca80c2hymkbgq9pf8b5j4x3dr83kz6wq2p76q12"; 253706 + revision = "1"; 253707 + editedCabalFile = "1wg3qxik9mgd49jkrgzargpncj6d1pg1zy13xg9yck5w4i10rixw"; 253708 libraryHaskellDepends = [ base ]; 253709 testHaskellDepends = [ base ]; 253710 description = "Monomorphic field lens like with generic-lens"; ··· 253716 { mkDerivation, base }: 253717 mkDerivation { 253718 pname = "generic-lexicographic-order"; 253719 + version = "0.1.0.1"; 253720 + sha256 = "01vylkficx9ylri9200pvqgqc89lm9x4iy3s4bfal96pv8q59knx"; 253721 libraryHaskellDepends = [ base ]; 253722 testHaskellDepends = [ base ]; 253723 description = "Derive Bounded and Enum for sum types and Enum for product types"; ··· 253894 pname = "generic-optics-lite"; 253895 version = "0.1.1"; 253896 sha256 = "1dd2dw72fyyimnyq8bw57k7lbh0lnjipvk08dyj87h357ykjv3ql"; 253897 + revision = "1"; 253898 + editedCabalFile = "1z3bf20fj03bfp4zigdxzw4v30hmxgwkdzdmgbn4hibpcz2j24p0"; 253899 libraryHaskellDepends = [ 253900 base 253901 generic-lens-lite ··· 255900 ]; 255901 description = "GenValidity support for URI"; 255902 license = lib.licenses.mit; 255903 } 255904 ) { }; 255905 ··· 257556 } 257557 ) { }; 257558 257559 + "ghc_9_12_2" = 257560 callPackage 257561 ( 257562 { ··· 257590 }: 257591 mkDerivation { 257592 pname = "ghc"; 257593 + version = "9.12.2"; 257594 + sha256 = "0l5rrnfv933m37dziqaf5iv4nqirig1mfaj037by94s486ggx5f7"; 257595 setupHaskellDepends = [ 257596 base 257597 Cabal ··· 258266 }: 258267 mkDerivation { 258268 pname = "ghc-debugger"; 258269 + version = "0.4.0.0"; 258270 + sha256 = "0nzmlnhv5liwkibva0djvc06c0d2wwpqa9x4lvpb2snkid0yliyl"; 258271 isLibrary = true; 258272 isExecutable = true; 258273 libraryHaskellDepends = [ ··· 258277 binary 258278 bytestring 258279 containers 258280 + directory 258281 exceptions 258282 filepath 258283 ghc 258284 ghci 258285 + hie-bios 258286 mtl 258287 process 258288 unix ··· 259174 } 259175 ) { }; 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 + 259234 "ghc-hotswap" = callPackage ( 259235 { 259236 mkDerivation, ··· 260915 }: 260916 mkDerivation { 260917 pname = "ghc-prof"; 260918 + version = "1.4.1.14"; 260919 + sha256 = "16zl8x8abkh2fbyzsd6k48vm2na0bbm0cv2b9sfi3jac7mi3v3kq"; 260920 isLibrary = true; 260921 isExecutable = true; 260922 libraryHaskellDepends = [ ··· 261762 base, 261763 containers, 261764 ghc, 261765 + template-haskell, 261766 transformers, 261767 }: 261768 mkDerivation { 261769 pname = "ghc-tcplugin-api"; 261770 + version = "0.15.0.0"; 261771 + sha256 = "024gwhs575rirrizlriigxvz0b9az2c63vbbdfm3dd4qa5ln3jmq"; 261772 libraryHaskellDepends = [ 261773 base 261774 containers 261775 ghc 261776 + template-haskell 261777 transformers 261778 ]; 261779 description = "An API for type-checker plugins"; ··· 262599 } 262600 ) { }; 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 + 262664 "ghcid" = callPackage ( 262665 { 262666 mkDerivation, ··· 263068 }: 263069 mkDerivation { 263070 pname = "ghcitui"; 263071 + version = "0.4.1.1"; 263072 + sha256 = "1s7imyvv7pg3yyrajgl5fqv1q35188ianm8y689mzb5ikbwr5wq4"; 263073 isLibrary = true; 263074 isExecutable = true; 263075 libraryHaskellDepends = [ ··· 263141 { mkDerivation }: 263142 mkDerivation { 263143 pname = "ghcjs-base"; 263144 + version = "0.8.0.4"; 263145 + sha256 = "081w3234jramsmafnl86v37lwbckr2vc93gr9pdwc31yzni9kbml"; 263146 description = "base library for GHCJS"; 263147 license = lib.licenses.mit; 263148 platforms = [ "javascript-ghcjs" ]; ··· 263927 pname = "ghostscript-parallel"; 263928 version = "0.0.1"; 263929 sha256 = "1sja6nhp8p9h2z0yr5qwxd8d59zzpb11ybmsbargza6ddaplpxny"; 263930 + revision = "1"; 263931 + editedCabalFile = "1sd1rh0fm29c3h4vm42fv6vbqplcm32ilqzimdp7vxfp3mhbblpr"; 263932 isLibrary = false; 263933 isExecutable = true; 263934 executableHaskellDepends = [ ··· 265185 }: 265186 mkDerivation { 265187 pname = "gi-gio"; 265188 version = "2.0.38"; 265189 sha256 = "12bmpafy5w85y7mzww0l5ilimbdmaabpxz7ry9sacg37kjm3kidf"; 265190 setupHaskellDepends = [ ··· 265209 libraryPkgconfigDepends = [ glib ]; 265210 description = "Gio bindings"; 265211 license = lib.licenses.lgpl21Only; 265212 } 265213 ) { inherit (pkgs) glib; }; 265214 ··· 266257 } 266258 ) { inherit (pkgs) gtk4; }; 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 + 266307 "gi-gtkosxapplication" = callPackage ( 266308 { 266309 mkDerivation, ··· 267714 }: 267715 mkDerivation { 267716 pname = "gi-webkit"; 267717 + version = "6.0.5"; 267718 + sha256 = "1a7nmzry1h24i35imhp2d9x32bn32fwswpvrp72lk8yyb12v7i5g"; 267719 setupHaskellDepends = [ 267720 base 267721 Cabal ··· 268318 pname = "ginger"; 268319 version = "0.10.6.0"; 268320 sha256 = "0j5arz8x2ksbcwy5iq8p7pzy71rl0nhadlv2d6933ibdgvzbsb7j"; 268321 + revision = "1"; 268322 + editedCabalFile = "1226x5dlcpaczy3kx5h27fmq4g03h4aa1nc1aw9r7x18h8rjay04"; 268323 isLibrary = true; 268324 isExecutable = true; 268325 enableSeparateDataOutput = true; ··· 268380 } 268381 ) { }; 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 + 268475 "gingersnap" = callPackage ( 268476 { 268477 mkDerivation, ··· 268996 }: 268997 mkDerivation { 268998 pname = "git-annex"; 268999 + version = "10.20250630"; 269000 + sha256 = "1varfir2vmnr29kfsjpqc5vd6msansch6xiag1d0s4bj5wpn1pq3"; 269001 configureFlags = [ 269002 "-fassistant" 269003 "-f-benchmark" ··· 270452 } 270453 ) { }; 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 + 270519 "github-app-token" = callPackage ( 270520 { 270521 mkDerivation, ··· 279880 }: 279881 mkDerivation { 279882 pname = "gothic"; 279883 + version = "0.1.8.3"; 279884 + sha256 = "0lf0yhq4q2vcw9b69l7ixdscmz5drxiag9l31iz1ypb8cyjspi1q"; 279885 libraryHaskellDepends = [ 279886 aeson 279887 base ··· 280640 }: 280641 mkDerivation { 280642 pname = "gpu-vulkan-middle"; 280643 + version = "0.1.0.76"; 280644 + sha256 = "188g8i3zszb3xm5cl57bvhmwwrg1adx679h4j52z1a1qzyiia02m"; 280645 enableSeparateDataOutput = true; 280646 libraryHaskellDepends = [ 280647 base ··· 282587 }: 282588 mkDerivation { 282589 pname = "graphql"; 282590 + version = "1.5.0.1"; 282591 + sha256 = "0kx0pnf16zwdjxc1ig46mbv7px7r7v6xn6kmlypl0d73ik8jfzrq"; 282592 libraryHaskellDepends = [ 282593 base 282594 conduit ··· 282725 pname = "graphql-client"; 282726 version = "1.2.4"; 282727 sha256 = "0rm7x5hrjz7fqfixpaab2c8fmwpn6m3p14zr0wq2bll8qf0hj15c"; 282728 + revision = "1"; 282729 + editedCabalFile = "0fi7q2zxfm85pdpn9b4jzh49rnakm5dvcmjkr0g39738zprgwaph"; 282730 isLibrary = true; 282731 isExecutable = true; 282732 libraryHaskellDepends = [ ··· 282988 }: 282989 mkDerivation { 282990 pname = "graphula"; 282991 + version = "2.1.2.0"; 282992 + sha256 = "11w4sp6jpygpqd0xjnhwdrj5gizz4nrn01md2hc98fxm19a0la03"; 282993 libraryHaskellDepends = [ 282994 base 282995 containers ··· 283892 }: 283893 mkDerivation { 283894 pname = "greskell-core"; 283895 + version = "1.0.0.6"; 283896 + sha256 = "14xsjs4xf3db8ppz4xypshzvyvxsn7s7syr8vqkrbll8vz9laab8"; 283897 libraryHaskellDepends = [ 283898 aeson 283899 base ··· 284462 } 284463 ) { }; 284464 284465 + "grisette_0_13_0_0" = callPackage ( 284466 { 284467 mkDerivation, 284468 array, ··· 284502 }: 284503 mkDerivation { 284504 pname = "grisette"; 284505 + version = "0.13.0.0"; 284506 + sha256 = "0115al5kw0vfsp11cndra6qrjiakm2w0gpi8ai4g47fysn8xbx6p"; 284507 libraryHaskellDepends = [ 284508 array 284509 async ··· 290560 }: 290561 mkDerivation { 290562 pname = "hackage-cli"; 290563 + version = "0.1.0.3"; 290564 + sha256 = "19mnvvhhcagq1l3qc37qxxv7pwzfw6p15194f21z7harj5y1ly5c"; 290565 isLibrary = false; 290566 isExecutable = true; 290567 libraryHaskellDepends = [ ··· 290942 pname = "hackage-repo-tool"; 290943 version = "0.1.1.4"; 290944 sha256 = "1nqm6rri8rkhrqvppyzy04s3875c4wjcay8gny4ygbr65c6iw81v"; 290945 + revision = "2"; 290946 + editedCabalFile = "0ghjpd02ccv6xdp0n6mxylq09ff5w7yzvpw3v3w4i62l43fi9j7q"; 290947 isLibrary = false; 290948 isExecutable = true; 290949 executableHaskellDepends = [ ··· 290990 pname = "hackage-revdeps"; 290991 version = "0.1.1"; 290992 sha256 = "0ckkcp2ndzv219hpl42vfzw0hvb5vblsx2bvdsa98wikkxnmn47j"; 290993 + revision = "1"; 290994 + editedCabalFile = "078lhc7lzs24qqizplyf4ipggxkqqsfmgq6vnrgbyhxiia2smc4b"; 290995 isLibrary = true; 290996 isExecutable = true; 290997 libraryHaskellDepends = [ ··· 291059 }: 291060 mkDerivation { 291061 pname = "hackage-security"; 291062 + version = "0.6.3.1"; 291063 + sha256 = "05sckvvwj10krkhp1457mgp1hgq45p7r2sp850g3b5689i91mvqx"; 291064 + revision = "1"; 291065 + editedCabalFile = "1si6mkc8gimkpqkdl2wyzxp14v7yphp40hxvp77im7bhr8brsa77"; 291066 libraryHaskellDepends = [ 291067 base 291068 base16-bytestring ··· 292700 aeson, 292701 attoparsec, 292702 base, 292703 + bytestring, 292704 data-default, 292705 doctest, 292706 filepath, ··· 292719 }: 292720 mkDerivation { 292721 pname = "haiji"; 292722 + version = "0.4.0.0"; 292723 + sha256 = "1r6bzh95a4qg0waday49qqrm1kmss667hksp0wcl749w5g32jnaq"; 292724 libraryHaskellDepends = [ 292725 aeson 292726 attoparsec ··· 292738 testHaskellDepends = [ 292739 aeson 292740 base 292741 + bytestring 292742 data-default 292743 doctest 292744 filepath ··· 293436 pname = "hakyll"; 293437 version = "4.16.6.0"; 293438 sha256 = "1933k6aiawa0kdws7ajm9picjchnfrkkd0qd8xb9l2yv1fvcywg2"; 293439 + revision = "3"; 293440 + editedCabalFile = "0q2yl6vqf6qqc7azqwsls7b2pm3y42shhdcpyszrpi16zgx9y137"; 293441 isLibrary = true; 293442 isExecutable = true; 293443 enableSeparateDataOutput = true; ··· 294632 bytestring, 294633 deepseq, 294634 QuickCheck, 294635 + tasty, 294636 + tasty-quickcheck, 294637 template-haskell, 294638 }: 294639 mkDerivation { 294640 pname = "half"; 294641 + version = "0.3.3"; 294642 + sha256 = "00mb2xfz0q8sq8zxqpw3ycp1p8gjhlgc0wxh5xr7kzyn52b08xpl"; 294643 libraryHaskellDepends = [ 294644 base 294645 binary ··· 294651 binary 294652 bytestring 294653 QuickCheck 294654 + tasty 294655 + tasty-quickcheck 294656 ]; 294657 description = "Half-precision floating-point"; 294658 license = lib.licenses.bsd3; ··· 298970 } 298971 ) { }; 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 + 299022 "harpie-numhask" = callPackage ( 299023 { 299024 mkDerivation, ··· 300022 }: 300023 mkDerivation { 300024 pname = "hash-string"; 300025 + version = "0.1.0.2"; 300026 + sha256 = "0ri03id2jwpsn77mnnvvicx6niy5q5q7mr38r6y64am4j6yfh2q3"; 300027 libraryHaskellDepends = [ 300028 base 300029 bytestring ··· 301952 } 301953 ) { }; 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 + 302242 "haskell-bitmex-client" = callPackage ( 302243 { 302244 mkDerivation, ··· 303431 }: 303432 mkDerivation { 303433 pname = "haskell-gi"; 303434 + version = "0.26.16"; 303435 + sha256 = "0v5pjysap2v5a9njc1z9c6by2sv18p9kkqcpzpxwqjs9hh4mxq5q"; 303436 setupHaskellDepends = [ 303437 base 303438 Cabal ··· 303476 inherit (pkgs) gobject-introspection; 303477 }; 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 + 303555 "haskell-gi-base" = callPackage ( 303556 { 303557 mkDerivation, ··· 303559 bytestring, 303560 containers, 303561 glib, 303562 + optics-core, 303563 text, 303564 }: 303565 mkDerivation { 303566 pname = "haskell-gi-base"; 303567 + version = "0.26.9"; 303568 + sha256 = "1li1q8k5zn7yxqn3rdh5sjkq4lsr9gsbhkvxh6wzca39n37vnnf3"; 303569 libraryHaskellDepends = [ 303570 base 303571 bytestring 303572 containers 303573 + optics-core 303574 text 303575 ]; 303576 libraryPkgconfigDepends = [ glib ]; ··· 303614 hydraPlatforms = lib.platforms.none; 303615 mainProgram = "haskell-go-checkers"; 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; 303701 } 303702 ) { }; 303703 ··· 304147 pname = "haskell-language-server"; 304148 version = "2.11.0.0"; 304149 sha256 = "1acd42sqa76nkrwkb6jcrimbf8va6ikkynv9ssbbamyy4vmx1aa4"; 304150 + revision = "1"; 304151 + editedCabalFile = "06ah5cdcg52azd0jx7n4n7xwrhphjc2k4k8gqda44m1kiv5z2v18"; 304152 isLibrary = true; 304153 isExecutable = true; 304154 libraryHaskellDepends = [ ··· 305033 } 305034 ) { }; 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 + 305092 "haskell-platform-test" = callPackage ( 305093 { 305094 mkDerivation, ··· 310017 testToolDepends = [ hspec-discover ]; 310018 description = "Lightweight CLI wallet for Bitcoin and Bitcoin Cash"; 310019 license = lib.licenses.publicDomain; 310020 mainProgram = "hw"; 310021 } 310022 ) { }; 310023 ··· 310541 }: 310542 mkDerivation { 310543 pname = "hasktorch"; 310544 + version = "0.2.1.4"; 310545 + sha256 = "0g5k796s66mz53cabfd0gl099rrjk1pfxc55qfg2j97mn69hgb1q"; 310546 setupHaskellDepends = [ 310547 base 310548 Cabal ··· 313258 }: 313259 mkDerivation { 313260 pname = "hasql-resource-pool"; 313261 + version = "1.9.1.3"; 313262 + sha256 = "10hgwdpnd82yhsjflbskngwkjmkpp49qrvxspgka24ngp8q08zyz"; 313263 libraryHaskellDepends = [ 313264 base-prelude 313265 clock ··· 315148 pname = "haxr"; 315149 version = "3000.11.5.1"; 315150 sha256 = "1r5ipm1qzlkxk1xc9hv86kli5aa4nw7i9a6n42ixkcspwb8fjhzd"; 315151 + revision = "1"; 315152 + editedCabalFile = "0m9x1cs789qs7k3zc197zri1nbh6g1y05xraq5a1k10s0xs5sjdy"; 315153 libraryHaskellDepends = [ 315154 array 315155 base ··· 315788 } 315789 ) { }; 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 + 315818 "hbro" = callPackage ( 315819 { 315820 mkDerivation, ··· 319103 pname = "hedgehog-classes"; 319104 version = "0.2.5.4"; 319105 sha256 = "0z9ik5asddc2pnz430jsi1pyahkh6jy36ng0vwm7ywcq7cvhcvlz"; 319106 + revision = "6"; 319107 + editedCabalFile = "1gj6lrvy11bxnv26ayg1b98dv44ahwqngi8d5rxw1h1m13a7yzkk"; 319108 libraryHaskellDepends = [ 319109 aeson 319110 base ··· 319154 async, 319155 base, 319156 bytestring, 319157 + containers, 319158 deepseq, 319159 Diff, 319160 directory, 319161 exceptions, 319162 filepath, 319163 + generic-lens, 319164 hedgehog, 319165 http-conduit, 319166 + hw-prelude, 319167 lifted-async, 319168 lifted-base, 319169 + microlens, 319170 mmorph, 319171 monad-control, 319172 mtl, 319173 network, 319174 process, 319175 resourcet, 319176 stm, 319177 tar, 319178 tasty, ··· 319189 }: 319190 mkDerivation { 319191 pname = "hedgehog-extras"; 319192 + version = "0.9.0.0"; 319193 + sha256 = "0l067gvm7vvhr5jrcys9676kfhdvaivbwiqh85n0zlcnkf3mjff0"; 319194 libraryHaskellDepends = [ 319195 aeson 319196 aeson-pretty 319197 async 319198 base 319199 bytestring 319200 + containers 319201 deepseq 319202 Diff 319203 directory 319204 exceptions 319205 filepath 319206 + generic-lens 319207 hedgehog 319208 http-conduit 319209 + hw-prelude 319210 lifted-async 319211 lifted-base 319212 + microlens 319213 mmorph 319214 monad-control 319215 mtl 319216 network 319217 process 319218 resourcet 319219 stm 319220 tar 319221 + tasty 319222 + tasty-discover 319223 + tasty-hedgehog 319224 temporary 319225 text 319226 time ··· 319233 testHaskellDepends = [ 319234 base 319235 hedgehog 319236 + lifted-base 319237 network 319238 process 319239 resourcet 319240 tasty 319241 + tasty-discover 319242 tasty-hedgehog 319243 time 319244 transformers ··· 319246 testToolDepends = [ tasty-discover ]; 319247 description = "Supplemental library for hedgehog"; 319248 license = lib.licenses.asl20; 319249 + hydraPlatforms = lib.platforms.none; 319250 + broken = true; 319251 } 319252 ) { }; 319253 ··· 319264 pname = "hedgehog-fakedata"; 319265 version = "0.0.1.5"; 319266 sha256 = "00k26d83v0646klrg0k3cf94r4fnnx3ykxv7i8shjjgbkbzlzz78"; 319267 + revision = "3"; 319268 + editedCabalFile = "1gfknhs1lslw7s00ciqn14r9b1lpph0827hhbb6bg9r52lylv9g3"; 319269 libraryHaskellDepends = [ 319270 base 319271 fakedata ··· 320526 pname = "heist"; 320527 version = "1.1.1.2"; 320528 sha256 = "1377740si611j0szp64axy0xj1fi2a6w8i9s3xij89h34m7rb3rz"; 320529 + revision = "5"; 320530 + editedCabalFile = "0rx4cx09zlg9kdl2sn5fn2ka7a7c26xrvbhkp60pzdnj1hdnsbqi"; 320531 libraryHaskellDepends = [ 320532 aeson 320533 attoparsec ··· 321825 } 321826 ) { }; 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 + 321885 "heptapod" = callPackage ( 321886 { 321887 mkDerivation, ··· 322987 license = lib.licenses.bsd3; 322988 hydraPlatforms = lib.platforms.none; 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; 323020 } 323021 ) { }; 323022 ··· 327495 } 327496 ) { }; 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 + 327569 "hiedb-plugin" = callPackage ( 327570 { 327571 mkDerivation, ··· 331899 } 331900 ) { }; 331901 331902 + "hledger_1_43_2" = callPackage ( 331903 { 331904 mkDerivation, 331905 aeson, ··· 331918 hashable, 331919 haskeline, 331920 hledger-lib, 331921 + http-client, 331922 + http-types, 331923 lucid, 331924 math-functions, 331925 megaparsec, ··· 331928 mtl, 331929 process, 331930 regex-tdfa, 331931 + req, 331932 safe, 331933 shakespeare, 331934 split, ··· 331947 }: 331948 mkDerivation { 331949 pname = "hledger"; 331950 + version = "1.43.2"; 331951 + sha256 = "043gw3amc29fbjxlzyc4m97bw5i5462352lmk61adlxcd12l47i1"; 331952 isLibrary = true; 331953 isExecutable = true; 331954 libraryHaskellDepends = [ ··· 331968 hashable 331969 haskeline 331970 hledger-lib 331971 + http-client 331972 + http-types 331973 lucid 331974 math-functions 331975 megaparsec ··· 331978 mtl 331979 process 331980 regex-tdfa 331981 + req 331982 safe 331983 shakespeare 331984 split ··· 332010 githash 332011 haskeline 332012 hledger-lib 332013 + http-client 332014 + http-types 332015 math-functions 332016 megaparsec 332017 microlens 332018 mtl 332019 process 332020 regex-tdfa 332021 + req 332022 safe 332023 shakespeare 332024 split ··· 332050 githash 332051 haskeline 332052 hledger-lib 332053 + http-client 332054 + http-types 332055 math-functions 332056 megaparsec 332057 microlens 332058 mtl 332059 process 332060 regex-tdfa 332061 + req 332062 safe 332063 shakespeare 332064 split ··· 332076 wizards 332077 ]; 332078 description = "Command-line interface for the hledger accounting system"; 332079 + license = lib.licenses.gpl3Plus; 332080 hydraPlatforms = lib.platforms.none; 332081 mainProgram = "hledger"; 332082 maintainers = [ ··· 332313 pname = "hledger-iadd"; 332314 version = "1.3.21"; 332315 sha256 = "00x0vbfp08kqs1nbknndk9h56hcidf6xnrk0ldz45dvjrmgcv3w2"; 332316 + revision = "9"; 332317 + editedCabalFile = "0fhkk8gsqiv7mxjk8jlz43i2h0cqampr8w5f1lxcnfz9g4k0bv5l"; 332318 isLibrary = true; 332319 isExecutable = true; 332320 libraryHaskellDepends = [ ··· 332394 pname = "hledger-interest"; 332395 version = "1.6.7"; 332396 sha256 = "1jirygghw82zi8z160j45qzfcj1l89vckqr7hrv78h3f3pim6np4"; 332397 + revision = "2"; 332398 + editedCabalFile = "1inrlrz2rgk99sspm33r7rnfiycx8pllsh95ais9x05fp88cxhcf"; 332399 isLibrary = false; 332400 isExecutable = true; 332401 executableHaskellDepends = [ ··· 332612 } 332613 ) { }; 332614 332615 + "hledger-lib_1_43_2" = callPackage ( 332616 { 332617 mkDerivation, 332618 aeson, ··· 332620 ansi-terminal, 332621 array, 332622 base, 332623 blaze-html, 332624 blaze-markup, 332625 bytestring, ··· 332666 }: 332667 mkDerivation { 332668 pname = "hledger-lib"; 332669 + version = "1.43.2"; 332670 + sha256 = "18037qwz7d0h4i86ac0w3hkrvx22vdxf04fjbg0qjlizgb3dlazf"; 332671 libraryHaskellDepends = [ 332672 aeson 332673 aeson-pretty 332674 ansi-terminal 332675 array 332676 base 332677 blaze-html 332678 blaze-markup 332679 bytestring ··· 332723 ansi-terminal 332724 array 332725 base 332726 blaze-html 332727 blaze-markup 332728 bytestring ··· 332768 utf8-string 332769 ]; 332770 description = "A library providing the core functionality of hledger"; 332771 + license = lib.licenses.gpl3Plus; 332772 hydraPlatforms = lib.platforms.none; 332773 } 332774 ) { }; ··· 332977 } 332978 ) { }; 332979 332980 + "hledger-ui_1_43_2" = callPackage ( 332981 { 332982 mkDerivation, 332983 ansi-terminal, ··· 333013 }: 333014 mkDerivation { 333015 pname = "hledger-ui"; 333016 + version = "1.43.2"; 333017 + sha256 = "1xz5ndkg5mci689n82dnmwhhr8a08qw12czsf4b82ha7zlmbkmnv"; 333018 isLibrary = true; 333019 isExecutable = true; 333020 libraryHaskellDepends = [ ··· 333051 ]; 333052 executableHaskellDepends = [ base ]; 333053 description = "Terminal interface for the hledger accounting system"; 333054 + license = lib.licenses.gpl3Plus; 333055 hydraPlatforms = lib.platforms.none; 333056 mainProgram = "hledger-ui"; 333057 maintainers = [ lib.maintainers.maralorn ]; ··· 333213 } 333214 ) { }; 333215 333216 + "hledger-web_1_43_2" = callPackage ( 333217 { 333218 mkDerivation, 333219 aeson, 333220 base, 333221 base64, 333222 blaze-html, 333223 blaze-markup, ··· 333232 Decimal, 333233 directory, 333234 extra, 333235 + file-embed, 333236 filepath, 333237 githash, 333238 hjsmin, ··· 333268 }: 333269 mkDerivation { 333270 pname = "hledger-web"; 333271 + version = "1.43.2"; 333272 + sha256 = "0d4sv9k3m7s0764lbq2l8w9p2p47cby177l0avl5w3fa9y8d0gyd"; 333273 isLibrary = true; 333274 isExecutable = true; 333275 libraryHaskellDepends = [ 333276 aeson 333277 base 333278 base64 333279 blaze-html 333280 blaze-markup ··· 333289 Decimal 333290 directory 333291 extra 333292 + file-embed 333293 filepath 333294 githash 333295 hjsmin ··· 333323 yesod-static 333324 yesod-test 333325 ]; 333326 + executableHaskellDepends = [ base ]; 333327 + testHaskellDepends = [ base ]; 333328 description = "Web user interface for the hledger accounting system"; 333329 + license = lib.licenses.gpl3Plus; 333330 hydraPlatforms = lib.platforms.none; 333331 mainProgram = "hledger-web"; 333332 maintainers = [ lib.maintainers.maralorn ]; ··· 339499 }: 339500 mkDerivation { 339501 pname = "hoist-error"; 339502 + version = "0.3.1.0"; 339503 + sha256 = "12hq6xz6jrsjd6nc03iv033abx73m1b2baszlk6b7k6r850fw4q5"; 339504 libraryHaskellDepends = [ 339505 base 339506 mtl ··· 342079 pname = "horizontal-rule"; 342080 version = "0.7.0.0"; 342081 sha256 = "0s4hf7frj1gc41v83qk8fgdfn49msmvhcfw6vjklx6w7b6pkfx9x"; 342082 + revision = "2"; 342083 + editedCabalFile = "02cql9yvsvbi6xf7kplidmxay7n70lxb1z2499vngn7197b6d5kh"; 342084 isLibrary = true; 342085 isExecutable = true; 342086 libraryHaskellDepends = [ ··· 343131 } 343132 ) { }; 343133 343134 "hpack_0_38_1" = callPackage ( 343135 { 343136 mkDerivation, ··· 344831 } 344832 ) { }; 344833 344834 + "hpqtypes-extras_1_18_0_0" = callPackage ( 344835 { 344836 mkDerivation, 344837 base, ··· 344855 }: 344856 mkDerivation { 344857 pname = "hpqtypes-extras"; 344858 + version = "1.18.0.0"; 344859 + sha256 = "1vqyb1izw6ascmkkqkm33iahydrabpb7rq2r3qkhxkjbhrgfk5j5"; 344860 libraryHaskellDepends = [ 344861 base 344862 base16-bytestring ··· 345570 ]; 345571 description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; 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; 345593 } 345594 ) { }; 345595 ··· 348693 base, 348694 extra, 348695 ghc-events, 348696 + machines, 348697 optparse-applicative, 348698 text, 348699 vector, 348700 }: 348701 mkDerivation { 348702 pname = "hs-speedscope"; 348703 + version = "0.3.0"; 348704 + sha256 = "089mg3q9f6pkvkx4zxgnv69hyzs06cr4ljkaij5kzgq35i12l4x3"; 348705 isLibrary = true; 348706 isExecutable = true; 348707 libraryHaskellDepends = [ ··· 348709 base 348710 extra 348711 ghc-events 348712 + machines 348713 optparse-applicative 348714 text 348715 vector ··· 348717 executableHaskellDepends = [ base ]; 348718 description = "Convert an eventlog into the speedscope json format"; 348719 license = lib.licenses.bsd3; 348720 mainProgram = "hs-speedscope"; 348721 } 348722 ) { }; 348723 ··· 352585 cmdargs, 352586 directory, 352587 filepath, 352588 libssh2, 352589 mtl, 352590 tasty, ··· 352597 }: 352598 mkDerivation { 352599 pname = "hsftp"; 352600 + version = "1.4.0"; 352601 + sha256 = "01fzgrk9w6xy7wxkpg2znw5g2wkqrcz6vj1f0pdffvg0bslfn4g0"; 352602 isLibrary = true; 352603 isExecutable = true; 352604 libraryHaskellDepends = [ ··· 352608 cmdargs 352609 directory 352610 filepath 352611 libssh2 352612 mtl 352613 time ··· 352620 cmdargs 352621 directory 352622 filepath 352623 libssh2 352624 mtl 352625 time ··· 352632 cmdargs 352633 directory 352634 filepath 352635 libssh2 352636 mtl 352637 tasty ··· 353545 } 353546 ) { }; 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 + 353598 "hslua-aeson" = callPackage ( 353599 { 353600 mkDerivation, ··· 353908 }: 353909 mkDerivation { 353910 pname = "hslua-module-doclayout"; 353911 + version = "1.2.0.1"; 353912 + sha256 = "139l4sh9pllm0zjgv3w7scbpd0cgn23r95fdlchavsdfwkpvcx17"; 353913 libraryHaskellDepends = [ 353914 base 353915 doclayout ··· 354016 } 354017 ) { }; 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 + 354068 "hslua-module-text" = callPackage ( 354069 { 354070 mkDerivation, ··· 354147 { 354148 mkDerivation, 354149 base, 354150 hslua-core, 354151 hslua-list, 354152 hslua-marshalling, ··· 354162 }: 354163 mkDerivation { 354164 pname = "hslua-module-zip"; 354165 + version = "1.1.4"; 354166 + sha256 = "1ij2rmy8m4pw7k7w5vvb3g934kms60vhzhhp8kryknbi6bsg8lsy"; 354167 libraryHaskellDepends = [ 354168 base 354169 hslua-core 354170 hslua-list 354171 hslua-marshalling ··· 354177 ]; 354178 testHaskellDepends = [ 354179 base 354180 hslua-core 354181 hslua-module-system 354182 hslua-packaging 354183 tasty 354184 tasty-hunit 354185 tasty-lua 354186 ]; 354187 description = "Lua module to work with file zips"; 354188 license = lib.licenses.mit; ··· 354247 } 354248 ) { }; 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 + 354290 "hslua-packaging" = callPackage ( 354291 { 354292 mkDerivation, ··· 354332 ]; 354333 description = "Utilities to build Lua modules"; 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; 354379 } 354380 ) { }; 354381 ··· 355279 } 355280 ) { }; 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 + 355309 "hspec-api" = callPackage ( 355310 { 355311 mkDerivation, ··· 355565 pname = "hspec-core"; 355566 version = "2.11.12"; 355567 sha256 = "030400w95775jrivbi7n1nnx6j5z717rqd3986ggklb8h9hjalfc"; 355568 + revision = "1"; 355569 + editedCabalFile = "0yq9nnawcgbgxiz4ymfa8k66jrvgrhmv8j7g880x8k6q8q4ncqlq"; 355570 libraryHaskellDepends = [ 355571 ansi-terminal 355572 array ··· 356495 pname = "hspec-meta"; 356496 version = "2.11.12"; 356497 sha256 = "1612pg5gihqjxrzqqvbbgckaqiwq3rmz3rg07lrjhzklg975nj69"; 356498 + revision = "2"; 356499 + editedCabalFile = "1jrk14s51psb0zjici56220iyb98i3q06sd3rsyx594s3cddgn5d"; 356500 isLibrary = true; 356501 isExecutable = true; 356502 libraryHaskellDepends = [ ··· 357851 } 357852 ) { inherit (pkgs) sqlite; }; 357853 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 + }; 357917 357918 "hsqml-datamodel" = callPackage ( 357919 { ··· 357978 }: 357979 mkDerivation { 357980 pname = "hsqml-demo-manic"; 357981 + version = "0.3.5.0"; 357982 + sha256 = "1y5wfqdilmgkshvd5zz0ajpjx41rn68n6gp43nx1qamz036plklv"; 357983 isLibrary = false; 357984 isExecutable = true; 357985 enableSeparateDataOutput = true; ··· 358010 }: 358011 mkDerivation { 358012 pname = "hsqml-demo-morris"; 358013 + version = "0.3.2.0"; 358014 + sha256 = "0bc0ll794bmz0m12y2s6pcwxlm16ppcldhr0gbs4xfwcb2mylrd2"; 358015 isLibrary = false; 358016 isExecutable = true; 358017 enableSeparateDataOutput = true; ··· 358043 }: 358044 mkDerivation { 358045 pname = "hsqml-demo-notes"; 358046 + version = "0.3.4.0"; 358047 + sha256 = "1k15v0wyv59dkd7wgzpkv8qy8g0i3sw5dpsjf003cy59rl8g8y3q"; 358048 isLibrary = false; 358049 isExecutable = true; 358050 enableSeparateDataOutput = true; ··· 358073 }: 358074 mkDerivation { 358075 pname = "hsqml-demo-samples"; 358076 + version = "0.3.5.0"; 358077 + sha256 = "0xihibxfy86ml20hhzr66mzygk0lhwhwjpz09ig47fvdlhs0239d"; 358078 isLibrary = false; 358079 isExecutable = true; 358080 enableSeparateDataOutput = true; ··· 363785 }: 363786 mkDerivation { 363787 pname = "http2"; 363788 + version = "5.3.10"; 363789 + sha256 = "0rs21pgnmd0qcg1j360pm8r9c4hm18bcivhnq3krqjl32zb1frpl"; 363790 isLibrary = true; 363791 isExecutable = true; 363792 libraryHaskellDepends = [ ··· 364071 base, 364072 bytestring, 364073 crypton-x509-store, 364074 + crypton-x509-system, 364075 crypton-x509-validation, 364076 http2, 364077 network, ··· 364084 }: 364085 mkDerivation { 364086 pname = "http2-tls"; 364087 + version = "0.4.8"; 364088 + sha256 = "1sy2q6zyc68fjk03fc9pnd6sshjwr6djbyw45gningpfcrw41qv6"; 364089 isLibrary = true; 364090 isExecutable = true; 364091 libraryHaskellDepends = [ 364092 base 364093 bytestring 364094 crypton-x509-store 364095 + crypton-x509-system 364096 crypton-x509-validation 364097 http2 364098 network ··· 364132 iproute, 364133 network, 364134 network-byte-order, 364135 + network-control, 364136 + psqueues, 364137 quic, 364138 QuickCheck, 364139 sockaddr, ··· 364144 }: 364145 mkDerivation { 364146 pname = "http3"; 364147 + version = "0.1.0"; 364148 + sha256 = "1ygm1a6ph24a84vsdqb7l2bn1ylzd3dl0bc6blvpqq6yhhm34cpa"; 364149 isLibrary = true; 364150 isExecutable = true; 364151 libraryHaskellDepends = [ ··· 364161 iproute 364162 network 364163 network-byte-order 364164 + network-control 364165 + psqueues 364166 quic 364167 sockaddr 364168 stm ··· 364175 base 364176 base16-bytestring 364177 bytestring 364178 + case-insensitive 364179 conduit 364180 conduit-extra 364181 + containers 364182 crypton 364183 hspec 364184 http-semantics ··· 374247 doHaddock = false; 374248 description = "Branch on whether a constraint is satisfied"; 374249 license = lib.licenses.bsd3; 374250 + hydraPlatforms = lib.platforms.none; 374251 + broken = true; 374252 } 374253 ) { }; 374254 ··· 380692 } 380693 ) { }; 380694 380695 + "inspection-testing_0_6_2" = callPackage ( 380696 { 380697 mkDerivation, 380698 base, ··· 380704 }: 380705 mkDerivation { 380706 pname = "inspection-testing"; 380707 + version = "0.6.2"; 380708 + sha256 = "0zi1q86sd9jy5dpqfs2j71acdl7kvik0ps78xirpdhyldhwwyqws"; 380709 libraryHaskellDepends = [ 380710 base 380711 containers ··· 381394 pname = "int-cast"; 381395 version = "0.2.0.0"; 381396 sha256 = "0s8rqm5d9f4y2sskajsw8ff7q8xp52vwqa18m6bajldp11m9a1p0"; 381397 + revision = "8"; 381398 + editedCabalFile = "10a33fvsy4qkckw6ciqiigy4r5f1pflw16l284scsdas56lk1pqq"; 381399 libraryHaskellDepends = [ base ]; 381400 testHaskellDepends = [ 381401 base ··· 381493 }: 381494 mkDerivation { 381495 pname = "int-like"; 381496 + version = "0.3.1"; 381497 + sha256 = "093kq89lj49wmr878i3nx4yw7x0csh7wmnbil4w7whcy7zfmfabx"; 381498 libraryHaskellDepends = [ 381499 algebraic-graphs 381500 base ··· 383026 hashable, 383027 heaps, 383028 hspec, 383029 + indexed-traversable, 383030 lattices, 383031 parsec, 383032 QuickCheck, ··· 383037 }: 383038 mkDerivation { 383039 pname = "interval-patterns"; 383040 + version = "0.8.1"; 383041 + sha256 = "1wq080qvc1xbw6kd86ffl7017prz27g5658yyyvmjrshv5krxrhx"; 383042 libraryHaskellDepends = [ 383043 base 383044 containers ··· 383046 groups 383047 hashable 383048 heaps 383049 + indexed-traversable 383050 lattices 383051 semirings 383052 time ··· 383060 hashable 383061 heaps 383062 hspec 383063 + indexed-traversable 383064 lattices 383065 parsec 383066 QuickCheck ··· 383071 ]; 383072 description = "Intervals, and monoids thereof"; 383073 license = lib.licenses.bsd3; 383074 } 383075 ) { }; 383076 ··· 383928 }: 383929 mkDerivation { 383930 pname = "io-classes"; 383931 + version = "1.8.0.1"; 383932 + sha256 = "0ivhs0wpl2i8fw5g2ch3ck5adzwsp1dlfl1j3vy872i3cfygcbdi"; 383933 libraryHaskellDepends = [ 383934 array 383935 async ··· 384144 }: 384145 mkDerivation { 384146 pname = "io-sim"; 384147 + version = "1.8.0.1"; 384148 + sha256 = "1xv0j1l46n0wv76sll796avrvl3aaxnf0dsqjkp66fw0yprdbh5n"; 384149 libraryHaskellDepends = [ 384150 base 384151 containers ··· 384754 }: 384755 mkDerivation { 384756 pname = "ip6addr"; 384757 + version = "2.0.0.1"; 384758 + sha256 = "18g1y923ll8sh1flg9ddf5nyi7ndngf99p3d39q6icimffnyqkfh"; 384759 isLibrary = false; 384760 isExecutable = true; 384761 executableHaskellDepends = [ ··· 386581 bytestring-lexing, 386582 hspec, 386583 hspec-core, 386584 + hspec-discover, 386585 QuickCheck, 386586 quickcheck-instances, 386587 time, 386588 }: 386589 mkDerivation { 386590 pname = "iso8601-duration"; 386591 + version = "0.1.2.1"; 386592 + sha256 = "0swdzv13y0ww4vlddcfwlwdcp0n5v824dcn5hfa5lxlp06xvy86h"; 386593 libraryHaskellDepends = [ 386594 attoparsec 386595 base ··· 386606 quickcheck-instances 386607 time 386608 ]; 386609 + testToolDepends = [ hspec-discover ]; 386610 description = "Types and parser for ISO8601 durations"; 386611 license = lib.licenses.bsd3; 386612 } 386613 ) { }; 386614 ··· 392336 base, 392337 bytestring, 392338 jsaddle, 392339 + template-haskell, 392340 }: 392341 mkDerivation { 392342 pname = "nat"; 392343 + version = "0.1.2.0"; 392344 + sha256 = "1anr6gg5900mcywwkx8s5j4wpq7hs0zgxc8b2mxf9nlagjjparfz"; 392345 libraryHaskellDepends = [ 392346 base 392347 bytestring 392348 jsaddle 392349 + template-haskell 392350 ]; 392351 doHaddock = false; 392352 pname = "nat"; ··· 393966 pname = "nat"; 393967 license = lib.licenses.bsd3; 393968 hydraPlatforms = lib.platforms.none; 393969 + broken = true; 393970 } 393971 ) { }; 393972 ··· 396237 }: 396238 mkDerivation { 396239 pname = "nat"; 396240 + version = "0.5.8"; 396241 + sha256 = "1pb7z95cmqaxbmba2grrbf8dm56821y40v12l4402milnahzl3k9"; 396242 isLibrary = true; 396243 isExecutable = true; 396244 libraryHaskellDepends = [ ··· 397477 }: 397478 mkDerivation { 397479 pname = "nat"; 397480 + version = "5.2.7"; 397481 + sha256 = "0n716zyihbnq3s1zhqbh3fm0qzhgy2hk79ziy8b6bvydjpzsq8y3"; 397482 libraryHaskellDepends = [ 397483 adjunctions 397484 array ··· 402634 ]; 402635 pname = "nat"; 402636 license = lib.licenses.bsd3; 402637 + hydraPlatforms = lib.platforms.none; 402638 } 402639 ) { }; 402640 ··· 403035 } 403036 ) { }; 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 + 403097 pname = "nat"; 403098 { 403099 mkDerivation, ··· 403968 }: 403969 mkDerivation { 403970 pname = "nat"; 403971 + version = "0.6.1.1"; 403972 + sha256 = "0f3sfs6z9xwf7811s7mbh03a4jsyfcvjx1lvycs7gv1ak1jhm27z"; 403973 libraryHaskellDepends = [ 403974 aeson 403975 attoparsec ··· 404052 testToolDepends = [ hspec-discover ]; 404053 pname = "nat"; 404054 license = lib.licenses.asl20; 404055 } 404056 ) { }; 404057 ··· 407213 pname = "langchain-hs"; 407214 version = "0.0.2.0"; 407215 sha256 = "0gh3gmmppfms1jg5zaxksalh90675r4pl6lmz63szkpwl9rmc9kz"; 407216 + revision = "2"; 407217 + editedCabalFile = "0qk56yswclxrf903c34ifadd8ja2l3zxfc0b2vzlgf1x7zf4cikl"; 407218 libraryHaskellDepends = [ 407219 aeson 407220 async ··· 410756 pname = "lapack-ffi-tools"; 410757 version = "0.1.3.2"; 410758 sha256 = "0y30qwxzbggn3aqr437j3bi1yfa1fpdq96xq7vxbi1fnll8a9432"; 410759 + revision = "2"; 410760 + editedCabalFile = "0k96wssmadcjrhdzcd6q3n7qx9kpb2wb3i9c61xygwx6x9q13wm3"; 410761 isLibrary = false; 410762 isExecutable = true; 410763 enableSeparateDataOutput = true; ··· 411722 pname = "lattices"; 411723 version = "2.2.1"; 411724 sha256 = "0rknzbzwcbg87hjiz4jwqb81w14pywkipxjrrlrp0m5i8ciky1i7"; 411725 + revision = "3"; 411726 + editedCabalFile = "0ry6d23sy0pqgzn2cfbr0yrsxcf1mix2irhv1x9bzv99cz2az3qm"; 411727 libraryHaskellDepends = [ 411728 base 411729 containers ··· 414438 ]; 414439 description = "Haskell IDE written in Haskell"; 414440 license = "GPL"; 414441 mainProgram = "leksah"; 414442 } 414443 ) { inherit (pkgs) gtk3; }; ··· 414638 generic-deriving, 414639 ghc-prim, 414640 hashable, 414641 indexed-traversable, 414642 indexed-traversable-instances, 414643 kan-extensions, ··· 414650 simple-reflect, 414651 strict, 414652 tagged, 414653 + tasty, 414654 + tasty-hunit, 414655 + tasty-quickcheck, 414656 template-haskell, 414657 text, 414658 th-abstraction, 414659 these, ··· 414664 }: 414665 mkDerivation { 414666 pname = "lens"; 414667 + version = "5.3.5"; 414668 + sha256 = "1s0ziznj60l9z3z5dacq58kaq8cdfxcz0r75f5hwj25ivzrsrszg"; 414669 libraryHaskellDepends = [ 414670 array 414671 assoc ··· 414707 bytestring 414708 containers 414709 deepseq 414710 mtl 414711 QuickCheck 414712 simple-reflect 414713 + tasty 414714 + tasty-hunit 414715 + tasty-quickcheck 414716 text 414717 transformers 414718 ]; ··· 414973 }: 414974 mkDerivation { 414975 pname = "lens-family-th"; 414976 + version = "0.5.3.2"; 414977 + sha256 = "1lkzrnajlgnxd5wmxaa8z4j3kxry5iwarc15n9jkxygb0b20x3rh"; 414978 libraryHaskellDepends = [ 414979 base 414980 template-haskell ··· 415210 pname = "lens-properties"; 415211 version = "4.11.1"; 415212 sha256 = "1caciyn75na3f25q9qxjl7ibjam22xlhl5k2pqfiak10lxsmnz2g"; 415213 + revision = "8"; 415214 + editedCabalFile = "0lp0nkbm38v2i361w79dmqq20v3gn95bh1xixbs20549k73cxxj3"; 415215 libraryHaskellDepends = [ 415216 base 415217 lens ··· 415716 pname = "lentil"; 415717 version = "1.5.8.0"; 415718 sha256 = "08g15kzynync0kl9f247sifzqpkjyvigc5r31w2n3vivi3pdcafn"; 415719 + revision = "2"; 415720 + editedCabalFile = "0qcibmqkw96658fx3dcfy90k8w4a7xdvllb8h0hk14v0lwvi4cmm"; 415721 isLibrary = false; 415722 isExecutable = true; 415723 executableHaskellDepends = [ ··· 419102 }: 419103 mkDerivation { 419104 pname = "libtorch-ffi"; 419105 + version = "2.0.1.5"; 419106 + sha256 = "0qk8wdfp2c3xwn8ydszxn5zpifcgbp5ns75rinyyqybz0rls1xk8"; 419107 libraryHaskellDepends = [ 419108 async 419109 base ··· 420984 distributive, 420985 ghc-prim, 420986 hashable, 420987 indexed-traversable, 420988 lens, 420989 QuickCheck, ··· 420992 semigroupoids, 420993 simple-reflect, 420994 tagged, 420995 + tasty, 420996 + tasty-hunit, 420997 + tasty-quickcheck, 420998 template-haskell, 420999 transformers, 421000 transformers-compat, 421001 unordered-containers, ··· 421004 }: 421005 mkDerivation { 421006 pname = "linear"; 421007 + version = "1.23.2"; 421008 + sha256 = "05v91is8rwm34a86gra2q03d5f1klj4nmlxx8r3cx0gbkdhrvmmv"; 421009 libraryHaskellDepends = [ 421010 adjunctions 421011 base ··· 421036 binary 421037 bytestring 421038 deepseq 421039 QuickCheck 421040 reflection 421041 simple-reflect 421042 + tasty 421043 + tasty-hunit 421044 + tasty-quickcheck 421045 vector 421046 ]; 421047 description = "Linear Algebra"; ··· 424520 ) { }; 424521 424522 "list1" = callPackage ( 424523 + { mkDerivation, base }: 424524 mkDerivation { 424525 pname = "list1"; 424526 + version = "0.1.0"; 424527 + sha256 = "1kyl7gg0prq7cyr0radwqcwdmqj3d0w2rjs1406nkryjfibsxgkh"; 424528 + libraryHaskellDepends = [ base ]; 424529 description = "Helpers for working with NonEmpty lists"; 424530 license = lib.licenses.bsd3; 424531 } 424532 ) { }; 424533 ··· 424895 pname = "literatex"; 424896 version = "0.4.0.0"; 424897 sha256 = "06whn0rx1gy2pzl4678z087pfragy2sjaw34ljx6sfvxg0wn03bx"; 424898 + revision = "1"; 424899 + editedCabalFile = "1kqa99vrq35hk0n58cj5sgp6s87jgwhafz78jzrwi67v94w3hi01"; 424900 isLibrary = true; 424901 isExecutable = true; 424902 libraryHaskellDepends = [ ··· 425710 ]; 425711 description = "Support for writing an EDSL with LLVM-JIT as target"; 425712 license = lib.licenses.bsd3; 425713 + hydraPlatforms = lib.platforms.none; 425714 } 425715 ) { }; 425716 ··· 425812 doHaddock = false; 425813 description = "Utility functions for the llvm interface"; 425814 license = lib.licenses.bsd3; 425815 + hydraPlatforms = lib.platforms.none; 425816 + broken = true; 425817 } 425818 ) { }; 425819 ··· 425822 mkDerivation, 425823 base, 425824 enumset, 425825 + LLVM-21git, 425826 }: 425827 mkDerivation { 425828 pname = "llvm-ffi"; 425829 + version = "21.0"; 425830 + sha256 = "1dfl6zxcghhyyp49lgkknlq8nkvii7aag7y8b38ny93cpcczgx0g"; 425831 isLibrary = true; 425832 isExecutable = true; 425833 libraryHaskellDepends = [ 425834 base 425835 enumset 425836 ]; 425837 + librarySystemDepends = [ LLVM-21git ]; 425838 description = "FFI bindings to the LLVM compiler toolkit"; 425839 license = lib.licenses.bsd3; 425840 maintainers = [ lib.maintainers.thielema ]; 425841 } 425842 + ) { LLVM-21git = null; }; 425843 425844 "llvm-ffi-tools" = callPackage ( 425845 { ··· 426505 }: 426506 mkDerivation { 426507 pname = "llvm-tf"; 426508 + version = "21.0"; 426509 + sha256 = "108a6kw5xfbxq4y613702r79bix6djyn3szi188d38vmwzs4a8qx"; 426510 isLibrary = true; 426511 isExecutable = true; 426512 libraryHaskellDepends = [ ··· 427681 }: 427682 mkDerivation { 427683 pname = "log-base"; 427684 + version = "0.12.1.0"; 427685 + sha256 = "1c4dimdgzbia8h201prbl1w8g4qixn9fr100d7aawr256xhi7jci"; 427686 libraryHaskellDepends = [ 427687 aeson 427688 aeson-pretty ··· 427859 bytestring, 427860 deepseq, 427861 http-client, 427862 + http-client-tls, 427863 http-types, 427864 log-base, 427865 network-uri, ··· 427874 }: 427875 mkDerivation { 427876 pname = "log-elasticsearch"; 427877 + version = "0.13.0.2"; 427878 + sha256 = "1hnd866bcp5fqnxlh3z39d2kn9mza9vp554sm34cmaclmkzfp0cw"; 427879 libraryHaskellDepends = [ 427880 aeson 427881 aeson-pretty ··· 427884 bytestring 427885 deepseq 427886 http-client 427887 + http-client-tls 427888 http-types 427889 log-base 427890 network-uri ··· 433518 }: 433519 mkDerivation { 433520 pname = "lz4-bytes"; 433521 + version = "0.2.0.0"; 433522 + sha256 = "10g253lwwmiz7ci70lyxfjln8mczj5r3m2nmcgidh4r9h31x30yv"; 433523 libraryHaskellDepends = [ 433524 base 433525 byte-order ··· 435522 ]; 435523 description = "Preconfigured email connection pool on top of smtp"; 435524 license = lib.licenses.mit; 435525 mainProgram = "exe"; 435526 } 435527 ) { }; ··· 438683 } 438684 ) { }; 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 + 438728 "markup-preview" = callPackage ( 438729 { 438730 mkDerivation, ··· 439312 }: 439313 mkDerivation { 439314 pname = "massiv"; 439315 version = "1.0.5.0"; 439316 sha256 = "138y8kk2qxprlwd8isb6h7wigiymmin1sip255060ql5gzjaawcw"; 439317 libraryHaskellDepends = [ ··· 439332 ]; 439333 description = "Massiv (Массив) is an Array Library"; 439334 license = lib.licenses.bsd3; 439335 maintainers = [ lib.maintainers.sheepforce ]; 439336 } 439337 ) { }; ··· 441180 }: 441181 mkDerivation { 441182 pname = "mattermost-api"; 441183 + version = "90000.1.0"; 441184 + sha256 = "0mp2qch4amgiixmx7zv158fb3ld1dpfad17sb43gxwadrj9afxdh"; 441185 isLibrary = true; 441186 isExecutable = true; 441187 libraryHaskellDepends = [ ··· 441243 }: 441244 mkDerivation { 441245 pname = "mattermost-api-qc"; 441246 + version = "90000.1.0"; 441247 + sha256 = "08ifm97c80a8vp9cqlwk7jb7105y2q6w77zvy2p42vk1l1p6yq4m"; 441248 libraryHaskellDepends = [ 441249 base 441250 containers ··· 442110 } 442111 ) { }; 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 + 442256 "mcpi" = callPackage ( 442257 { 442258 mkDerivation, ··· 442674 pname = "med-module"; 442675 version = "0.1.3"; 442676 sha256 = "04p1aj85hsr3wpnnfg4nxbqsgq41ga63mrg2w39d8ls8ljvajvna"; 442677 + revision = "2"; 442678 + editedCabalFile = "0b557rrqki2rjb922s1yqkd7gbm9cjhzg52f0h5mp19v53nds3vz"; 442679 isLibrary = true; 442680 isExecutable = true; 442681 libraryHaskellDepends = [ ··· 443570 pname = "megaparsec-tests"; 443571 version = "9.7.0"; 443572 sha256 = "17jwz62f8lnrfmmfrsv1jcvn9wmpk4jlhmxjwk5qqx2iyijnrpb1"; 443573 + revision = "1"; 443574 + editedCabalFile = "108nv4c045xg3ks0v7c0figqrl7v90l87cahhmn5mc24vdpxhkrj"; 443575 libraryHaskellDepends = [ 443576 base 443577 bytestring ··· 444118 } 444119 ) { }; 444120 444121 + "mem-info_0_4_1_1" = callPackage ( 444122 { 444123 mkDerivation, 444124 base, ··· 444143 }: 444144 mkDerivation { 444145 pname = "mem-info"; 444146 + version = "0.4.1.1"; 444147 + sha256 = "10b3lmqh4nbyfpglgjb04xx0wd65vxfyc53m3l89linhvij61kmc"; 444148 isLibrary = true; 444149 isExecutable = true; 444150 libraryHaskellDepends = [ ··· 446860 pname = "microaeson"; 446861 version = "0.1.0.2"; 446862 sha256 = "025vnzs4j2nmkin5x8h5hbrj25spamqppg68wfqlnbrr1519lxfz"; 446863 + revision = "2"; 446864 + editedCabalFile = "04kq6sh1fl0xgkai0d055s7hkwf21vlksgqizh4xfvsb2xbakgiz"; 446865 libraryHaskellDepends = [ 446866 array 446867 base ··· 447957 pname = "midi-music-box"; 447958 version = "0.0.1.2"; 447959 sha256 = "0rnjwis6y0lnyfjxnxqk3zsh78ylccq5v21avb97vybmj0pld1l9"; 447960 + revision = "7"; 447961 + editedCabalFile = "02xnldnw5ci6chpbj18mz82m8pp582zpy9z3bdy5yi7q7k415h0p"; 447962 isLibrary = false; 447963 isExecutable = true; 447964 executableHaskellDepends = [ ··· 448105 pname = "midimory"; 448106 version = "0.0.2.3"; 448107 sha256 = "1k9pm0ai9i66c7l4px84cf5db3nsq5ab9ndplcyfh05snbdy70vz"; 448108 + revision = "1"; 448109 + editedCabalFile = "1sq7xipm92nfcbf6cad1yclzl36gghqlnnvs1r0579njjcchbgl5"; 448110 isLibrary = false; 448111 isExecutable = true; 448112 executableHaskellDepends = [ ··· 448503 directory, 448504 filepath, 448505 hspec, 448506 + hspec-discover, 448507 http-client, 448508 http-date, 448509 http-types, 448510 + http2, 448511 network, 448512 old-locale, 448513 parsec, ··· 448528 }: 448529 mkDerivation { 448530 pname = "mighttpd2"; 448531 + version = "4.0.9"; 448532 + sha256 = "1qd43hlyvhnslxrvy4h0rj5qs6nbxnz8d23myqjspa9jl8rzb1bg"; 448533 isLibrary = true; 448534 isExecutable = true; 448535 enableSeparateDataOutput = true; ··· 448547 filepath 448548 http-date 448549 http-types 448550 + http2 448551 network 448552 parsec 448553 resourcet ··· 448587 hspec 448588 http-client 448589 ]; 448590 + testToolDepends = [ hspec-discover ]; 448591 description = "High performance web server on WAI/warp"; 448592 license = lib.licenses.bsd3; 448593 hydraPlatforms = lib.platforms.none; ··· 449484 }: 449485 mkDerivation { 449486 pname = "minici"; 449487 + version = "0.1.8"; 449488 + sha256 = "0fady7w644gcrjd9yy7ngbi1dj2rp87lnzmxjr307w8kdb2aqdcj"; 449489 isLibrary = false; 449490 isExecutable = true; 449491 executableHaskellDepends = [ ··· 451474 bytestring, 451475 concurrent-output, 451476 containers, 451477 + data-default, 451478 directory, 451479 + extra, 451480 filepath, 451481 filepattern, 451482 hspec, 451483 HsYAML, 451484 + MissingH, 451485 monad-parallel, 451486 process, 451487 SafeSemaphore, 451488 text, 451489 + text-builder-linear, 451490 + text-display, 451491 time, 451492 unix-compat, 451493 xdg-basedir, 451494 }: 451495 mkDerivation { 451496 pname = "miv"; 451497 + version = "0.4.9"; 451498 + sha256 = "1z3hwvg3jb82hf6hrlzl9vv1fqy1llgfj2rps27fbccz50i6v6ps"; 451499 isLibrary = false; 451500 isExecutable = true; 451501 executableHaskellDepends = [ ··· 451504 bytestring 451505 concurrent-output 451506 containers 451507 + data-default 451508 directory 451509 + extra 451510 filepath 451511 filepattern 451512 HsYAML 451513 + MissingH 451514 monad-parallel 451515 process 451516 SafeSemaphore 451517 text 451518 + text-builder-linear 451519 + text-display 451520 time 451521 unix-compat 451522 xdg-basedir 451523 ]; 451524 testHaskellDepends = [ 451525 base 451526 hspec 451527 ]; 451528 description = "Vim plugin manager written in Haskell"; 451529 license = lib.licenses.mit; ··· 451993 pname = "mmark-cli"; 451994 version = "0.0.5.2"; 451995 sha256 = "05i8wy3zls6fp1qmdz4ayydhgvq6jnhh2rj4r3frvp8nl70kkv26"; 451996 + revision = "1"; 451997 + editedCabalFile = "1p1ia1vxaa8qpbc4hclmavjnk8xj1b6qqzprq3gysy5l38s340aj"; 451998 isLibrary = false; 451999 isExecutable = true; 452000 executableHaskellDepends = [ ··· 452075 }: 452076 mkDerivation { 452077 pname = "mmorph"; 452078 + version = "1.2.1"; 452079 + sha256 = "1rjclyxyr5ajnpmkrlwap77h5fmdwys8bpwfj0n87v33hh1dcn8f"; 452080 libraryHaskellDepends = [ 452081 base 452082 mtl ··· 458869 }: 458870 mkDerivation { 458871 pname = "monoidmap-aeson"; 458872 + version = "0.0.0.6"; 458873 + sha256 = "0fd2cd4a8ncb3hibfknq0sf7j8nmmisr4bwc42yp6l0ddfsdbbd6"; 458874 libraryHaskellDepends = [ 458875 aeson 458876 base ··· 458911 }: 458912 mkDerivation { 458913 pname = "monoidmap-examples"; 458914 + version = "0.0.0.1"; 458915 + sha256 = "1q7vssgknncjq1f187zvg6630r6kk12mdmq1985skm98ynl1n8wx"; 458916 libraryHaskellDepends = [ 458917 base 458918 containers ··· 458955 }: 458956 mkDerivation { 458957 pname = "monoidmap-internal"; 458958 + version = "0.0.0.1"; 458959 + sha256 = "1khqa1pnxfngbay9gzjvls7hy7pddr8pd32c0z1na9mj8q8hz63c"; 458960 libraryHaskellDepends = [ 458961 base 458962 containers ··· 458989 ]; 458990 description = "Internal support for monoidmap"; 458991 license = lib.licenses.asl20; 458992 } 458993 ) { }; 458994 ··· 459003 }: 459004 mkDerivation { 459005 pname = "monoidmap-quickcheck"; 459006 + version = "0.0.0.3"; 459007 + sha256 = "065b7rk64yg89ll546n338jny9d3y0pmp2alwf5z7z5n25nf40cq"; 459008 libraryHaskellDepends = [ 459009 base 459010 containers ··· 462528 badPlatforms = lib.platforms.darwin; 462529 hydraPlatforms = lib.platforms.none; 462530 mainProgram = "mptcp-pm"; 462531 + broken = true; 462532 } 462533 ) { }; 462534 ··· 463214 pname = "msgpack"; 463215 version = "1.0.1.0"; 463216 sha256 = "1ljb9rdhdbxqs32brrwd42c8v3z7yrl6pr4mzmid1rfqdipard77"; 463217 + revision = "3"; 463218 + editedCabalFile = "10qhv3v617zq8r3b08mqb3h1h6vzmvyq2rps6kdvs8gvqb5mkiss"; 463219 libraryHaskellDepends = [ 463220 base 463221 binary ··· 463239 ]; 463240 description = "A Haskell implementation of MessagePack"; 463241 license = lib.licenses.bsd3; 463242 } 463243 ) { }; 463244 ··· 463282 description = "Aeson adapter for MessagePack"; 463283 license = lib.licenses.bsd3; 463284 hydraPlatforms = lib.platforms.none; 463285 + broken = true; 463286 } 463287 ) { }; 463288 ··· 463559 description = "A MessagePack-RPC Implementation"; 463560 license = lib.licenses.bsd3; 463561 hydraPlatforms = lib.platforms.none; 463562 + broken = true; 463563 } 463564 ) { }; 463565 ··· 466744 pname = "multistate"; 466745 version = "0.8.0.4"; 466746 sha256 = "0y42c21ha0chqhrn40a4bikdbirsw7aqg4i866frpagz1ivr915q"; 466747 + revision = "2"; 466748 + editedCabalFile = "1gdxarys4x4bws8d8smw219z7zrjbyl8k7d2fqv1ray1x52zxr3n"; 466749 isLibrary = true; 466750 isExecutable = true; 466751 libraryHaskellDepends = [ ··· 472045 }: 472046 mkDerivation { 472047 pname = "natural-arithmetic"; 472048 + version = "0.2.3.0"; 472049 + sha256 = "1lf7v804lnvb63mw232qkyqrhdrbk37s6icx4wysiw8z90v6c10j"; 472050 libraryHaskellDepends = [ 472051 base 472052 unlifted ··· 476422 }: 476423 mkDerivation { 476424 pname = "network-protocol-xmpp"; 476425 + version = "0.5.2"; 476426 + sha256 = "0jm46pkhys8a2rvyss8dv1b61im56il0kkwswg521xv6mfqk1csm"; 476427 libraryHaskellDepends = [ 476428 base 476429 bytestring ··· 482851 }: 482852 mkDerivation { 482853 pname = "notmuch"; 482854 + version = "0.3.2"; 482855 + sha256 = "0yx7lkncs7xn3w3sdplwj7ghsblm9q4w97af9vw9rszhpd50b1cd"; 482856 isLibrary = true; 482857 isExecutable = true; 482858 libraryHaskellDepends = [ ··· 482872 ]; 482873 libraryToolDepends = [ c2hs ]; 482874 description = "Haskell binding to Notmuch, the mail indexer"; 482875 + license = lib.licenses.gpl3Plus; 482876 } 482877 ) 482878 { ··· 485127 } 485128 ) { }; 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 + 485153 "numhask-array" = callPackage ( 485154 { 485155 mkDerivation, ··· 487829 pname = "ods2csv"; 487830 version = "0.1.0.1"; 487831 sha256 = "1a1qrknqh24hgv5v46vnxnaqcnx3n92rcwgh3b6h6k27kassx4xa"; 487832 + revision = "1"; 487833 + editedCabalFile = "0sb7k4sw64ld5jdsx1g522q911d4z9c92mh0vfjb0p7h4r1h71hm"; 487834 isLibrary = false; 487835 isExecutable = true; 487836 executableHaskellDepends = [ ··· 488719 pname = "oidc-client"; 488720 version = "0.8.0.0"; 488721 sha256 = "0fmffnf6gg99d15nn84ih36lr7qasa1zfkb62sgb0icik8dwv83m"; 488722 + revision = "1"; 488723 + editedCabalFile = "1zaaldni8i7kdxpmbpd2nlva0ygycn9955yh9qvcm08cd2wvq15d"; 488724 isLibrary = true; 488725 isExecutable = true; 488726 libraryHaskellDepends = [ ··· 488758 ]; 488759 description = "OpenID Connect 1.0 library for RP"; 488760 license = lib.licenses.mit; 488761 } 488762 ) { }; 488763 ··· 488967 } 488968 ) { }; 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 + 489039 "ollama-holes-plugin" = callPackage ( 489040 { 489041 mkDerivation, ··· 491903 }: 491904 mkDerivation { 491905 pname = "opencascade-hs"; 491906 + version = "0.5.1.0"; 491907 + sha256 = "12c77xnh0h0h2sw23q5v891iddnmsq5j1853b90wypm6p18kpnsw"; 491908 libraryHaskellDepends = [ 491909 base 491910 resourcet ··· 491927 }: 491928 mkDerivation { 491929 pname = "opencc"; 491930 + version = "0.1.2.0"; 491931 + sha256 = "0vl57aglagq0zpxld3hhp4sda783m5sncdxwyxyjypl433yjyzgq"; 491932 libraryHaskellDepends = [ 491933 base 491934 bytestring ··· 493316 }: 493317 mkDerivation { 493318 pname = "opentelemetry-plugin"; 493319 + version = "1.1.2"; 493320 + sha256 = "12lm7b4kjqlvc3j2i4q7xqavr0d98wazfaqyvph20afvfq90zwf8"; 493321 libraryHaskellDepends = [ 493322 base 493323 bytestring ··· 493335 ]; 493336 description = "GHC plugin for open telemetry"; 493337 license = lib.licenses.bsd3; 493338 } 493339 ) { }; 493340 ··· 494958 } 494959 ) { }; 494960 494961 + "optima_0_4_0_7" = callPackage ( 494962 { 494963 mkDerivation, 494964 attoparsec, ··· 494971 }: 494972 mkDerivation { 494973 pname = "optima"; 494974 + version = "0.4.0.7"; 494975 + sha256 = "0cqy4ifddmyjmp8hj5ksi7f1b2bvxlwljm6q2cjxfpp3ig6alzr6"; 494976 libraryHaskellDepends = [ 494977 attoparsec 494978 attoparsec-data ··· 495336 } 495337 ) { }; 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 + 495372 "optparse-applicative-cmdline-util" = callPackage ( 495373 { 495374 mkDerivation, ··· 497714 pname = "os-string"; 497715 version = "2.0.7"; 497716 sha256 = "186b4swiga0nk05np512iw50pz9w88l3bqz47pr241997bykb71k"; 497717 + revision = "1"; 497718 + editedCabalFile = "0504jf7wa84z3a8gd60cx7df6232xq31wqc532jcxrxh3hl0hm6b"; 497719 libraryHaskellDepends = [ 497720 base 497721 bytestring ··· 498274 }: 498275 mkDerivation { 498276 pname = "oughta"; 498277 + version = "0.3.0.0"; 498278 + sha256 = "1153jnvscsc3i8zz0sih7vy42vlsgynw0hvjvh0zxxqcyx4cc27i"; 498279 libraryHaskellDepends = [ 498280 base 498281 bytestring ··· 498662 } 498663 ) { }; 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 + 498723 "pa-error-tree" = callPackage ( 498724 { 498725 mkDerivation, ··· 499247 extra, 499248 filepath, 499249 hspec, 499250 + linear-base, 499251 listsafe, 499252 mtl, 499253 optparse-applicative, ··· 499259 }: 499260 mkDerivation { 499261 pname = "packed-data"; 499262 + version = "0.2.0.0"; 499263 + sha256 = "07hkm3a98aadihm3zvvq299xmswf8xzdyzx06qcs7nbdqwkqx2zk"; 499264 isLibrary = true; 499265 isExecutable = true; 499266 libraryHaskellDepends = [ 499267 base 499268 bytestring 499269 deepseq 499270 extra 499271 + linear-base 499272 mtl 499273 template-haskell 499274 ]; ··· 499297 vector 499298 ]; 499299 license = lib.licenses.bsd3; 499300 + hydraPlatforms = lib.platforms.none; 499301 mainProgram = "examples"; 499302 + broken = true; 499303 } 499304 ) { }; 499305 ··· 500335 "palindromes" = callPackage ( 500336 { 500337 mkDerivation, 500338 base, 500339 + conduit, 500340 + criterion, 500341 + deepseq, 500342 + directory, 500343 + filepath, 500344 + HUnit, 500345 + levenshtein, 500346 + QuickCheck, 500347 + strict, 500348 + vector, 500349 }: 500350 mkDerivation { 500351 pname = "palindromes"; 500352 + version = "1.1.0.0"; 500353 + sha256 = "1dfq0b2f11xwbdn9hyrrr4ywzz415nb32n4yfjrqf35myaqdbfcz"; 500354 isLibrary = true; 500355 isExecutable = true; 500356 + libraryHaskellDepends = [ 500357 + base 500358 + conduit 500359 + vector 500360 + ]; 500361 executableHaskellDepends = [ 500362 base 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 500379 ]; 500380 description = "Finding palindromes in strings"; 500381 license = lib.licenses.bsd3; ··· 502185 }: 502186 mkDerivation { 502187 pname = "pandoc-lua-marshal"; 502188 + version = "0.3.1"; 502189 + sha256 = "0869amr9w5s90dha694vy6rwfni7p1wp9dyjyyk2jvh8h22gcpr0"; 502190 libraryHaskellDepends = [ 502191 aeson 502192 base ··· 502415 pname = "pandoc-plot"; 502416 version = "1.9.1"; 502417 sha256 = "0d6lknjnlzg4a7sx311kpdi94yq7fp19lhvwbsf7rvc3ykx0hjm3"; 502418 + revision = "1"; 502419 + editedCabalFile = "0ykgv0cxiwvcx0pkkmx841cdwv2sas033mq928mg6dlcbvw32nx1"; 502420 isLibrary = true; 502421 isExecutable = true; 502422 libraryHaskellDepends = [ ··· 502827 pname = "pandoc-types"; 502828 version = "1.23.1"; 502829 sha256 = "1hd18l1c5yh7x24gsligkbraadq12hn7mim16xyjnicdsa1s03xd"; 502830 + revision = "3"; 502831 + editedCabalFile = "0w2n4vzxs3jasrivaq49clxdlccnfv2gh4mkp8s7krxa1arambrz"; 502832 libraryHaskellDepends = [ 502833 aeson 502834 base ··· 506228 pname = "parser-combinators-tests"; 506229 version = "1.3.0"; 506230 sha256 = "0sw6ws7za93y3lbmxp6jp1k17zi3wdg7698ab133kcw82f6mzba2"; 506231 + revision = "2"; 506232 + editedCabalFile = "1b038wk6b1kria8627qb0nfrz4v67j2yq5rx01m3vigfxf6h4422"; 506233 isLibrary = false; 506234 isExecutable = false; 506235 testHaskellDepends = [ ··· 508763 exceptions, 508764 hspec, 508765 http-client, 508766 + http-client-tls, 508767 http-types, 508768 network-uri, 508769 text, ··· 508772 }: 508773 mkDerivation { 508774 pname = "patrol"; 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"; 508833 libraryHaskellDepends = [ 508834 aeson 508835 base ··· 508838 containers 508839 exceptions 508840 http-client 508841 + http-client-tls 508842 http-types 508843 network-uri 508844 text ··· 508862 ]; 508863 description = "Sentry SDK"; 508864 license = lib.licenses.mit; 508865 + hydraPlatforms = lib.platforms.none; 508866 } 508867 ) { }; 508868 ··· 510705 ]; 510706 description = "Lazy Peano numbers including observable infinity value"; 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; 510730 } 510731 ) { }; 510732 ··· 513256 }: 513257 mkDerivation { 513258 pname = "persistent-documentation"; 513259 version = "0.1.0.6"; 513260 sha256 = "1v07vhjmim4bycl7ygg2my3qwqqz36ajm8x8gwqh0g0i83sjh5ks"; 513261 libraryHaskellDepends = [ ··· 513278 testToolDepends = [ hspec-discover ]; 513279 description = "Documentation DSL for persistent entities"; 513280 license = lib.licenses.asl20; 513281 } 513282 ) { }; 513283 ··· 514376 } 514377 ) { }; 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 + 514478 "persistent-postgresql-streaming" = callPackage ( 514479 { 514480 mkDerivation, ··· 515121 } 515122 ) { }; 515123 515124 + "persistent-test" = callPackage ( 515125 { 515126 mkDerivation, 515127 aeson, ··· 515187 ]; 515188 description = "Tests for Persistent"; 515189 license = lib.licenses.mit; 515190 } 515191 ) { }; 515192 515193 + "persistent-test_2_13_1_4" = callPackage ( 515194 { 515195 mkDerivation, 515196 aeson, ··· 515225 pname = "persistent-test"; 515226 version = "2.13.1.4"; 515227 sha256 = "1k2wq6ag4jvqr1krdjfx84mmx0mg09hy38w569zxwdrd03ffcjpy"; 515228 + revision = "1"; 515229 + editedCabalFile = "1kzqhvs4h8xpx2x153gh64rc006mvjxv6fzsyxvnfknmqcx8xn19"; 515230 libraryHaskellDepends = [ 515231 aeson 515232 base ··· 515258 ]; 515259 description = "Tests for Persistent"; 515260 license = lib.licenses.mit; 515261 + hydraPlatforms = lib.platforms.none; 515262 } 515263 ) { }; 515264 ··· 515286 pname = "persistent-typed-db"; 515287 version = "0.1.0.7"; 515288 sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; 515289 + revision = "2"; 515290 + editedCabalFile = "0m5ajvfcj10k1mnlwdyd1n9s3py70g4sinzh0gkvch9q1bl6qiwz"; 515291 libraryHaskellDepends = [ 515292 aeson 515293 base ··· 516746 bytestring, 516747 containers, 516748 directory, 516749 + file-embed, 516750 filepath, 516751 hspec, 516752 hspec-core, ··· 516754 megaparsec, 516755 optparse-applicative, 516756 prettyprinter, 516757 + process, 516758 + random, 516759 scientific, 516760 silently, 516761 text, 516762 + time, 516763 utf8-string, 516764 + vector, 516765 + xml-conduit, 516766 yaml, 516767 }: 516768 mkDerivation { 516769 pname = "phino"; 516770 + version = "0.0.0.14"; 516771 + sha256 = "1nl2n0y636bdppxc29p4zyxlyra2zjiy3a1s6xw2yin64q3gqrim"; 516772 isLibrary = true; 516773 isExecutable = true; 516774 libraryHaskellDepends = [ ··· 516778 bytestring 516779 containers 516780 directory 516781 + file-embed 516782 filepath 516783 megaparsec 516784 optparse-applicative 516785 prettyprinter 516786 + random 516787 scientific 516788 text 516789 + time 516790 utf8-string 516791 + vector 516792 + xml-conduit 516793 yaml 516794 ]; 516795 executableHaskellDepends = [ base ]; ··· 516804 megaparsec 516805 optparse-applicative 516806 prettyprinter 516807 + process 516808 silently 516809 text 516810 + xml-conduit 516811 yaml 516812 ]; 516813 testToolDepends = [ hspec-discover ]; ··· 522214 pname = "pipes-safe"; 522215 version = "2.3.5"; 522216 sha256 = "13npagy597g6zfr2f3vj4a98h2ssg2ps7lmdzrgdsvm8m28x3cph"; 522217 + revision = "4"; 522218 + editedCabalFile = "1x0p9fiilz21ck5n52lg2p17qi7n0mkk566qzzwd4jnvhbcsb8jf"; 522219 libraryHaskellDepends = [ 522220 base 522221 containers ··· 525185 } 525186 ) { }; 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 + 525917 "png-file" = callPackage ( 525918 { 525919 mkDerivation, ··· 528536 ]; 528537 description = "Colog adapters for polysemy-log"; 528538 license = "BSD-2-Clause-Patent"; 528539 } 528540 ) { }; 528541 ··· 530120 "poolboy" = callPackage ( 530121 { 530122 mkDerivation, 530123 base, 530124 hspec, 530125 hspec-core, 530126 + timeit, 530127 unliftio, 530128 + unordered-containers, 530129 }: 530130 mkDerivation { 530131 pname = "poolboy"; 530132 + version = "0.4.0.1"; 530133 + sha256 = "0ifdp2p2c257k52c9prm072c1gmfx55a40gaanba083viq6cxzal"; 530134 libraryHaskellDepends = [ 530135 base 530136 unliftio 530137 + unordered-containers 530138 ]; 530139 testHaskellDepends = [ 530140 base 530141 hspec 530142 hspec-core 530143 + timeit 530144 ]; 530145 description = "Simple work queue for bounded concurrency"; 530146 license = lib.licenses.isc; 530147 } 530148 ) { }; 530149 ··· 531490 { mkDerivation, base }: 531491 mkDerivation { 531492 pname = "positive-integer"; 531493 + version = "0.1.2.0"; 531494 + sha256 = "0m0l02v3ybsilkcvyc82ma57bbha4rhncsf5574b0m3zmxq17kaq"; 531495 libraryHaskellDepends = [ base ]; 531496 description = "Type of positive integers"; 531497 license = lib.licenses.mit; ··· 535213 base, 535214 bytestring, 535215 criterion, 535216 + deepseq, 535217 ppad-base16, 535218 ppad-chacha, 535219 ppad-poly1305, ··· 535224 }: 535225 mkDerivation { 535226 pname = "ppad-aead"; 535227 + version = "0.2.0"; 535228 + sha256 = "1s14bplwjfavg50xfyy65r2f8lg4man31jc83m3l32k6h4jvg983"; 535229 libraryHaskellDepends = [ 535230 base 535231 bytestring ··· 535246 base 535247 bytestring 535248 criterion 535249 + deepseq 535250 ppad-base16 535251 ]; 535252 description = "A pure AEAD-ChaCha20-Poly1305 construction"; ··· 535314 }: 535315 mkDerivation { 535316 pname = "ppad-base58"; 535317 + version = "0.2.1"; 535318 + sha256 = "0s94985p1d1zh0ip404pgi12bj97naydr525i45aac64w8iis03y"; 535319 libraryHaskellDepends = [ 535320 base 535321 bytestring ··· 535355 }: 535356 mkDerivation { 535357 pname = "ppad-bech32"; 535358 + version = "0.2.3"; 535359 + sha256 = "0g8fk0bwx88zr4k4mijd8zn5jhi6gcsn6hvdp8jxb3r4a97a4yyv"; 535360 libraryHaskellDepends = [ 535361 base 535362 bytestring ··· 535399 }: 535400 mkDerivation { 535401 pname = "ppad-bip32"; 535402 + version = "0.2.0"; 535403 + sha256 = "1h7i6km0ai3wvyrhfhl31gpaq21vcggrgk0gvr0cjhkmmscd3d5w"; 535404 libraryHaskellDepends = [ 535405 base 535406 bytestring ··· 535456 }: 535457 mkDerivation { 535458 pname = "ppad-bip39"; 535459 + version = "0.3.0"; 535460 + sha256 = "18bshwr4hpnxk2v73kqxcsjbjffpss41whmd3scm20wq3al2xvva"; 535461 libraryHaskellDepends = [ 535462 base 535463 bytestring ··· 535500 base, 535501 bytestring, 535502 criterion, 535503 + deepseq, 535504 ppad-base16, 535505 primitive, 535506 tasty, ··· 535508 }: 535509 mkDerivation { 535510 pname = "ppad-chacha"; 535511 + version = "0.2.0"; 535512 + sha256 = "1zqrg1af6rlflq74lamxd9f0p8sfhvmhjv3ii89mkckhizr8fqrc"; 535513 libraryHaskellDepends = [ 535514 base 535515 bytestring ··· 535527 base 535528 bytestring 535529 criterion 535530 + deepseq 535531 ppad-base16 535532 ]; 535533 description = "A pure ChaCha20 stream cipher"; ··· 535551 }: 535552 mkDerivation { 535553 pname = "ppad-hkdf"; 535554 + version = "0.3.0"; 535555 + sha256 = "194nwcjpdals55wf5khvl393d0q4fzdmx9424s9j2n0z70ry29pw"; 535556 libraryHaskellDepends = [ 535557 base 535558 bytestring ··· 535643 }: 535644 mkDerivation { 535645 pname = "ppad-pbkdf"; 535646 + version = "0.2.0"; 535647 + sha256 = "1zir2zm4bgimrgiv94dzqvn794dhwywl63b4im9sg9c61gh91r9m"; 535648 libraryHaskellDepends = [ 535649 base 535650 bytestring ··· 535686 }: 535687 mkDerivation { 535688 pname = "ppad-poly1305"; 535689 + version = "0.3.0"; 535690 + sha256 = "06db9qvi688nyhw8fqk8vqxhl6sddfkrg5ap15xd2lf75rl1v7kw"; 535691 libraryHaskellDepends = [ 535692 base 535693 bytestring ··· 535820 }: 535821 mkDerivation { 535822 pname = "ppad-secp256k1"; 535823 + version = "0.4.0"; 535824 + sha256 = "0wrmbz0s19g7b6qardn7isgmkrl5svw5nf360ksvhwagicv51g7l"; 535825 libraryHaskellDepends = [ 535826 base 535827 bytestring ··· 540656 pname = "probability-polynomial"; 540657 version = "1.0.0.1"; 540658 sha256 = "1f06x4d2cbd9j7rxgwdpxn8ff8w32xag96qk86mwggnzlw091gib"; 540659 + revision = "2"; 540660 + editedCabalFile = "039np4z6lzz81n90k1sqbr7n8bxfmh8v4xvbppzzpgk6kp5fxpfm"; 540661 libraryHaskellDepends = [ 540662 base 540663 containers ··· 542065 }: 542066 mkDerivation { 542067 pname = "profunctors"; 542068 + version = "5.6.3"; 542069 + sha256 = "1wqf3isrrgmqxz5h42phsa7lawl6442r1da89hg82bld6qkz9imr"; 542070 libraryHaskellDepends = [ 542071 base 542072 base-orphans ··· 543345 } 543346 ) { }; 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 + 543378 "prometheus-wai-middleware" = callPackage ( 543379 { 543380 mkDerivation, ··· 546654 } 546655 ) { }; 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 + 546704 "pub" = callPackage ( 546705 { 546706 mkDerivation, ··· 548965 }: 548966 mkDerivation { 548967 pname = "push-notify-apn"; 548968 + version = "0.5.0.0"; 548969 + sha256 = "128k7awxxs07lymqln224lnxvcqwcc263jzpsbsadzp6zpwpg641"; 548970 isLibrary = true; 548971 isExecutable = true; 548972 libraryHaskellDepends = [ ··· 550293 bytestring, 550294 containers, 550295 cryptonite, 550296 + extra, 550297 hspec, 550298 optparse-applicative, 550299 process, 550300 simple-sql-parser, 550301 sqlite-simple, 550302 syb, 550303 text, ··· 550305 }: 550306 mkDerivation { 550307 pname = "qhs"; 550308 + version = "0.4.0"; 550309 + sha256 = "10b996ymvsmcmjyiaw567idr52mc017cgppma9va8yw94xqgdx7s"; 550310 isLibrary = false; 550311 isExecutable = true; 550312 + libraryHaskellDepends = [ 550313 base 550314 bytestring 550315 containers 550316 cryptonite 550317 + extra 550318 optparse-applicative 550319 simple-sql-parser 550320 sqlite-simple 550321 syb 550322 text 550323 zlib 550324 ]; 550325 + executableHaskellDepends = [ base ]; 550326 testHaskellDepends = [ 550327 base 550328 containers 550329 + extra 550330 hspec 550331 process 550332 ]; 550333 + doHaddock = false; 550334 description = "Command line tool qhs, SQL queries on CSV and TSV files"; 550335 license = lib.licenses.mit; 550336 hydraPlatforms = lib.platforms.none; ··· 551425 pname = "quantification"; 551426 version = "0.8"; 551427 sha256 = "1dw47hy0pvar4mkdp6xjz8ywpic2zs3q0xah9zlbnfpibhjjc1a9"; 551428 + revision = "1"; 551429 + editedCabalFile = "1abpn4sz7g9ih4c3iclpqnwng15dwa7553pxyvwvgy19x6sfgck2"; 551430 libraryHaskellDepends = [ 551431 base 551432 binary ··· 552270 crypton, 552271 crypton-x509, 552272 crypton-x509-system, 552273 + crypton-x509-validation, 552274 fast-logger, 552275 filepath, 552276 hspec, ··· 552289 }: 552290 mkDerivation { 552291 pname = "quic"; 552292 + version = "0.2.17"; 552293 + sha256 = "15fk5786rkryjixqiqk9y7zh5wazwakp6gkk5jr4ryckjdgjyyjj"; 552294 isLibrary = true; 552295 isExecutable = true; 552296 libraryHaskellDepends = [ ··· 552304 crypton 552305 crypton-x509 552306 crypton-x509-system 552307 + crypton-x509-validation 552308 fast-logger 552309 filepath 552310 iproute ··· 552361 "quick-process" = callPackage ( 552362 { 552363 mkDerivation, 552364 + array, 552365 attoparsec, 552366 base, 552367 + base-orphans, 552368 bytestring, 552369 casing, 552370 conduit, ··· 552376 either, 552377 exceptions, 552378 filepath, 552379 + generic-data, 552380 + generic-deriving, 552381 generic-lens, 552382 generic-random, 552383 + ghc-prim, 552384 hashable, 552385 lens, 552386 mmorph, 552387 monad-control, 552388 + monad-time, 552389 mtl, 552390 + pretty-simple, 552391 process, 552392 + profunctors, 552393 QuickCheck, 552394 quickcheck-instances, 552395 regex-compat, ··· 552401 sbv, 552402 semigroups, 552403 streaming-commons, 552404 + tagged, 552405 tasty, 552406 tasty-discover, 552407 tasty-hunit, ··· 552421 unix-compat, 552422 unliftio, 552423 unliftio-core, 552424 + wl-pprint-text, 552425 }: 552426 mkDerivation { 552427 pname = "quick-process"; 552428 + version = "0.0.3"; 552429 + sha256 = "180zxzsg2xh24nw7gdzmk134hx7vl61hfc3dsvrdr0rwkp1xmngi"; 552430 libraryHaskellDepends = [ 552431 + array 552432 attoparsec 552433 base 552434 + base-orphans 552435 bytestring 552436 casing 552437 conduit ··· 552443 either 552444 exceptions 552445 filepath 552446 + generic-data 552447 + generic-deriving 552448 generic-lens 552449 generic-random 552450 + ghc-prim 552451 hashable 552452 lens 552453 mmorph 552454 monad-control 552455 + monad-time 552456 mtl 552457 + pretty-simple 552458 process 552459 + profunctors 552460 QuickCheck 552461 regex-compat 552462 regex-posix ··· 552467 sbv 552468 semigroups 552469 streaming-commons 552470 + tagged 552471 template-haskell 552472 temporary 552473 text ··· 552481 unix 552482 unix-compat 552483 unliftio-core 552484 + wl-pprint-text 552485 ]; 552486 testHaskellDepends = [ 552487 base 552488 bytestring 552489 directory 552490 generic-lens 552491 lens 552492 QuickCheck 552493 quickcheck-instances ··· 552922 }: 552923 mkDerivation { 552924 pname = "quickcheck-groups"; 552925 + version = "0.0.1.5"; 552926 + sha256 = "1ibchcgj1bqfsc6dx3n4bii6dhylxjn8zl9vhhvk48zsk99q4jaz"; 552927 libraryHaskellDepends = [ 552928 base 552929 groups ··· 553006 }: 553007 mkDerivation { 553008 pname = "quickcheck-instances"; 553009 + version = "0.3.33"; 553010 + sha256 = "0rl8y3rb4fm4nqz122bp5f2aya4f8bc9m9i9n2vwlyq2gdacs0v8"; 553011 revision = "1"; 553012 + editedCabalFile = "1xkc7rsfgya4rwiizh0yfincws3knpdnh08m280v1dgik4kv37vh"; 553013 libraryHaskellDepends = [ 553014 array 553015 base ··· 553094 }: 553095 mkDerivation { 553096 pname = "quickcheck-lockstep"; 553097 + version = "0.8.0"; 553098 + sha256 = "1y3icjvd9qbv38q1cxkn48d6fp4b7c0j0j0l3mwkfi8ph8qjg2y6"; 553099 libraryHaskellDepends = [ 553100 base 553101 constraints ··· 553121 ]; 553122 description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; 553123 license = lib.licenses.bsd3; 553124 } 553125 ) { }; 553126 ··· 553137 pretty-show, 553138 QuickCheck, 553139 quickcheck-classes, 553140 semigroupoids, 553141 text, 553142 vector, 553143 }: 553144 mkDerivation { 553145 pname = "quickcheck-monoid-subclasses"; 553146 + version = "0.3.0.6"; 553147 + sha256 = "03gngckzwhln7c86dixg8szrnqwgdl9svy6hfnzgyjpn4qfqwcmv"; 553148 libraryHaskellDepends = [ 553149 base 553150 containers ··· 553152 pretty-show 553153 QuickCheck 553154 quickcheck-classes 553155 semigroupoids 553156 ]; 553157 testHaskellDepends = [ ··· 553163 monoid-subclasses 553164 QuickCheck 553165 quickcheck-classes 553166 text 553167 vector 553168 ]; ··· 553282 }: 553283 mkDerivation { 553284 pname = "quickcheck-quid"; 553285 + version = "0.0.1.8"; 553286 + sha256 = "0qx08f6z1y21qn63z5hkhlvj1rgn921ads03lrppmggg9kvrk5x0"; 553287 libraryHaskellDepends = [ 553288 base 553289 containers ··· 559471 }: 559472 mkDerivation { 559473 pname = "rdf4h"; 559474 + version = "5.2.1"; 559475 + sha256 = "1jah12gcmc85qpbhw6igi28rvmww38fqmj1waqw7c16y0lxnkvxb"; 559476 isLibrary = true; 559477 isExecutable = true; 559478 libraryHaskellDepends = [ ··· 559637 }: 559638 mkDerivation { 559639 pname = "rds-data"; 559640 + version = "0.2.0.1"; 559641 + sha256 = "1kfi9qmq07v9bvs7a08221r4c7r4hl74f1iavnk6d5gaqms38sfz"; 559642 libraryHaskellDepends = [ 559643 aeson 559644 amazonka-core ··· 559782 } 559783 ) { }; 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 + 559917 "rdtsc" = callPackage ( 559918 { mkDerivation, base }: 559919 mkDerivation { ··· 564389 }: 564390 mkDerivation { 564391 pname = "reflex"; 564392 + version = "0.9.3.4"; 564393 + sha256 = "1qh2xbg4q2gif25hinz72j8ka2w976lccklknwgijxaayh92if4a"; 564394 libraryHaskellDepends = [ 564395 base 564396 bifunctors ··· 564747 ]; 564748 description = "Use colonnade with reflex-dom"; 564749 license = lib.licenses.bsd3; 564750 } 564751 ) { }; 564752 ··· 565755 description = "Helper widgets for reflex-localize"; 565756 license = lib.licenses.mit; 565757 badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; 565758 } 565759 ) { }; 565760 ··· 568460 description = "MessagePack encoders / decoders"; 568461 license = lib.licenses.mit; 568462 hydraPlatforms = lib.platforms.none; 568463 + broken = true; 568464 } 568465 ) { }; 568466 ··· 572665 } 572666 ) { }; 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 + 572696 "resource-pool-catchio" = callPackage ( 572697 { 572698 mkDerivation, ··· 576498 }: 576499 mkDerivation { 576500 pname = "richenv"; 576501 + version = "0.1.0.3"; 576502 + sha256 = "0v6ymwypp6023srv9axh0rc98bsvkhk29nwhap9rb33x8ibb8vr9"; 576503 libraryHaskellDepends = [ 576504 aeson 576505 base ··· 578458 }: 578459 mkDerivation { 578460 pname = "roc-id"; 578461 + version = "0.2.0.5"; 578462 + sha256 = "1a70y8l45lyglq6rrxrp20jfpwg87gkga4wdxdf15nzh0p1a417f"; 578463 libraryHaskellDepends = [ 578464 base 578465 MonadRandom ··· 585537 exceptions, 585538 filepath, 585539 free, 585540 microlens, 585541 microlens-th, 585542 monad-control, ··· 585563 }: 585564 mkDerivation { 585565 pname = "sandwich"; 585566 + version = "0.3.0.4"; 585567 + sha256 = "1j6xlnhb58kg776jl1bp82lfi95a9xy27haqanbx67mw7n471gc6"; 585568 isLibrary = true; 585569 isExecutable = true; 585570 libraryHaskellDepends = [ ··· 585581 exceptions 585582 filepath 585583 free 585584 microlens 585585 microlens-th 585586 monad-control ··· 585619 exceptions 585620 filepath 585621 free 585622 microlens 585623 microlens-th 585624 monad-control ··· 585657 exceptions 585658 filepath 585659 free 585660 microlens 585661 microlens-th 585662 monad-control ··· 585716 string-interpolate, 585717 temporary, 585718 text, 585719 transformers, 585720 unix-compat, 585721 unliftio, ··· 585724 }: 585725 mkDerivation { 585726 pname = "sandwich-contexts"; 585727 + version = "0.3.0.3"; 585728 + sha256 = "0bd0a3akg7rbpp94cwyrpjjw104468y7caxnvl6iwl3fnc6gvy7c"; 585729 libraryHaskellDepends = [ 585730 aeson 585731 base ··· 585753 string-interpolate 585754 temporary 585755 text 585756 transformers 585757 unix-compat 585758 unliftio ··· 585786 exceptions, 585787 filepath, 585788 http-client, 585789 + pname = "nat"; 585790 + kubernetes-api-client, 585791 lens, 585792 lens-aeson, 585793 minio-hs, ··· 585813 }: 585814 mkDerivation { 585815 pname = "sandwich-contexts-kubernetes"; 585816 + version = "0.1.1.0"; 585817 + sha256 = "00g2fq9xnk8icrvfjmqkhl3g7pz7159kqajx10vgy4xgdxp25zfz"; 585818 libraryHaskellDepends = [ 585819 aeson 585820 base ··· 585823 exceptions 585824 filepath 585825 http-client 585826 + pname = "nat"; 585827 + kubernetes-api-client 585828 lens 585829 lens-aeson 585830 minio-hs ··· 586182 }: 586183 mkDerivation { 586184 pname = "sandwich-webdriver"; 586185 + version = "0.3.0.1"; 586186 + sha256 = "18vb8vdcpdy6zkqynhqwzy2217lbz0jrdhd2c21wr6ly4rfmf0jr"; 586187 libraryHaskellDepends = [ 586188 aeson 586189 base ··· 586247 sandwich 586248 sandwich-contexts 586249 string-interpolate 586250 + temporary 586251 text 586252 time 586253 transformers ··· 587284 } 587285 ) { inherit (pkgs) z3; }; 587286 587287 + "sbv_12_0" = callPackage ( 587288 { 587289 mkDerivation, 587290 array, ··· 587297 deepseq, 587298 directory, 587299 filepath, 587300 + haskell-src-exts, 587301 + haskell-src-meta, 587302 libBF, 587303 mtl, 587304 pretty, ··· 587321 }: 587322 mkDerivation { 587323 pname = "sbv"; 587324 + version = "12.0"; 587325 + sha256 = "14c9i9aa6rbm6kfxjcdbcy7vajh3v6bhsginhn1v6hg8430f93rp"; 587326 enableSeparateDataOutput = true; 587327 libraryHaskellDepends = [ 587328 array ··· 587335 deepseq 587336 directory 587337 filepath 587338 + haskell-src-exts 587339 + haskell-src-meta 587340 libBF 587341 mtl 587342 pretty ··· 592561 }: 592562 mkDerivation { 592563 pname = "search-algorithms"; 592564 + version = "0.3.4"; 592565 + sha256 = "1r6nnwb0ry95xqg8psdwgfx6h264kd437a3mr5z7gv7vdarb3r2h"; 592566 libraryHaskellDepends = [ 592567 base 592568 containers ··· 593474 } 593475 ) { }; 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 + 593513 "selections" = callPackage ( 593514 { mkDerivation, base }: 593515 mkDerivation { ··· 595595 } 595596 ) { }; 595597 595598 + "sequence-formats_1_11_0_2" = callPackage ( 595599 { 595600 mkDerivation, 595601 attoparsec, ··· 595620 }: 595621 mkDerivation { 595622 pname = "sequence-formats"; 595623 + version = "1.11.0.2"; 595624 + sha256 = "1y6sv7xlzbkvlrihmkclv1hp5g3nsrnz37xika3jzksqv4grv412"; 595625 libraryHaskellDepends = [ 595626 attoparsec 595627 base ··· 596170 pname = "serialise"; 596171 version = "0.2.6.1"; 596172 sha256 = "1x3p9vi6daf50xgv5xxjnclqcq9ynqg1qw7af3ppa1nizycrg533"; 596173 + revision = "5"; 596174 + editedCabalFile = "0kfai48gza3zzi3s3ll1gng2wbpdmr5z5isx8snlh49vafsqjzx6"; 596175 libraryHaskellDepends = [ 596176 array 596177 base ··· 596567 constraints, 596568 containers, 596569 deepseq, 596570 + generics-sop, 596571 hspec, 596572 hspec-discover, 596573 http-api-data, ··· 596586 }: 596587 mkDerivation { 596588 pname = "servant"; 596589 + version = "0.20.3.0"; 596590 + sha256 = "00k6pwqxpyjp5qm5pjl8qb75iqmpql5iv3ac43xdvikcixffcwzj"; 596591 libraryHaskellDepends = [ 596592 aeson 596593 attoparsec ··· 596598 constraints 596599 containers 596600 deepseq 596601 + generics-sop 596602 http-api-data 596603 http-media 596604 http-types ··· 596619 hspec 596620 http-media 596621 mtl 596622 + network-uri 596623 QuickCheck 596624 quickcheck-instances 596625 text ··· 596678 containers, 596679 servant, 596680 servant-server, 596681 text, 596682 }: 596683 mkDerivation { 596684 pname = "servant-activeresource"; 596685 + version = "0.2.0.0"; 596686 + sha256 = "0gxw9yxsr4ri2lwr4y0qhf0cgqknrdjgpqn87wy1n4pas2k6sc15"; 596687 libraryHaskellDepends = [ 596688 aeson 596689 base ··· 596691 containers 596692 servant 596693 servant-server 596694 text 596695 ]; 596696 testHaskellDepends = [ ··· 596700 containers 596701 servant 596702 servant-server 596703 text 596704 ]; 596705 + description = "Servant endpoints compatible with Rails's ActiveResource"; 596706 license = lib.licenses.bsd3; 596707 } 596708 ) { }; ··· 597224 bytestring, 597225 case-insensitive, 597226 cookie, 597227 + data-default, 597228 entropy, 597229 hspec, 597230 hspec-discover, ··· 597252 }: 597253 mkDerivation { 597254 pname = "servant-auth-server"; 597255 + version = "0.4.9.1"; 597256 + sha256 = "04sy2g81pp0pr31xi6h1hqm199z6r4xv3fy2x307dlydxmdm8qb3"; 597257 libraryHaskellDepends = [ 597258 aeson 597259 base ··· 597262 bytestring 597263 case-insensitive 597264 cookie 597265 + data-default 597266 entropy 597267 http-types 597268 jose ··· 598047 ]; 598048 description = "Command line interface for Servant API clients"; 598049 license = lib.licenses.bsd3; 598050 mainProgram = "greet-cli"; 598051 } 598052 ) { }; 598053 ··· 598062 deepseq, 598063 entropy, 598064 exceptions, 598065 + generics-sop, 598066 hspec, 598067 hspec-discover, 598068 http-api-data, ··· 598091 }: 598092 mkDerivation { 598093 pname = "servant-client"; 598094 + version = "0.20.3.0"; 598095 + sha256 = "0kxmixgv5nmir2bk3zfrhaal4969rf414wi2ccnngjm3395bqrwn"; 598096 + revision = "1"; 598097 + editedCabalFile = "0644af144zy4axv8hhqhv8mj7amnqd09fbz5rglr6l60d27hpqx1"; 598098 libraryHaskellDepends = [ 598099 base 598100 base-compat ··· 598122 base-compat 598123 bytestring 598124 entropy 598125 + generics-sop 598126 hspec 598127 http-api-data 598128 http-client ··· 598155 { 598156 mkDerivation, 598157 aeson, 598158 + attoparsec, 598159 base, 598160 base-compat, 598161 base64-bytestring, ··· 598176 sop-core, 598177 template-haskell, 598178 text, 598179 + transformers, 598180 }: 598181 mkDerivation { 598182 pname = "servant-client-core"; 598183 + version = "0.20.3.0"; 598184 + sha256 = "1vv6xf340hyk60vv6jb1zxfpsb7x2ykacb84yrn3h1w4k075hlyn"; 598185 revision = "1"; 598186 + editedCabalFile = "1g8arzgcqc9qp1fimrs8iwqvzgsp6br76kkh72hsz0nsg6gmlvc1"; 598187 libraryHaskellDepends = [ 598188 aeson 598189 + attoparsec 598190 base 598191 base-compat 598192 base64-bytestring ··· 598208 testHaskellDepends = [ 598209 base 598210 base-compat 598211 + bytestring 598212 deepseq 598213 hspec 598214 QuickCheck 598215 + servant 598216 + transformers 598217 ]; 598218 testToolDepends = [ hspec-discover ]; 598219 description = "Core functionality and class for client function generation for servant APIs"; ··· 599015 testHaskellDepends = [ base ]; 599016 description = "Servant support for Server-Sent events"; 599017 license = lib.licenses.bsd3; 599018 + hydraPlatforms = lib.platforms.none; 599019 + broken = true; 599020 } 599021 ) { }; 599022 ··· 601959 }: 601960 mkDerivation { 601961 pname = "servant-routes"; 601962 + version = "0.1.1.0"; 601963 + sha256 = "0r9db46gbi9rcsrdvqndfa9433szbp5a0c1ad3z3qchpf3i2dxfm"; 601964 libraryHaskellDepends = [ 601965 aeson 601966 aeson-pretty ··· 601991 } 601992 ) { }; 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 + 602040 "servant-ruby" = callPackage ( 602041 { 602042 mkDerivation, ··· 602313 }: 602314 mkDerivation { 602315 pname = "servant-server"; 602316 + version = "0.20.3.0"; 602317 + sha256 = "05crwklbncd393zq00gi04zgnfyy2wk31s0xf5hy6yjrsbshlmih"; 602318 revision = "1"; 602319 + editedCabalFile = "1z2h1gmxphwd76chyah405ww4ciyxq7rvggghr6lh0z1m3p2k90h"; 602320 isLibrary = true; 602321 isExecutable = true; 602322 libraryHaskellDepends = [ ··· 603491 servant, 603492 pname = "nat"; 603493 string-interpolate, 603494 + temporary, 603495 text, 603496 }: 603497 mkDerivation { 603498 pname = "servant-typescript"; 603499 + version = "0.1.0.3"; 603500 + sha256 = "0x10dsd16bjqkk7s8kb1yfhrvkzqw5v0smxm8vf3bm8q10anf2dp"; 603501 isLibrary = true; 603502 isExecutable = true; 603503 libraryHaskellDepends = [ ··· 603526 servant 603527 pname = "nat"; 603528 string-interpolate 603529 + temporary 603530 text 603531 ]; 603532 testHaskellDepends = [ ··· 603545 ]; 603546 description = "TypeScript client generation for Servant"; 603547 license = lib.licenses.bsd3; 603548 mainProgram = "servant-typescript-exe"; 603549 } 603550 ) { }; 603551 ··· 607647 } 607648 ) { }; 607649 607650 "shakespeare" = callPackage ( 607651 { 607652 mkDerivation, ··· 607675 }: 607676 mkDerivation { 607677 pname = "shakespeare"; 607678 + version = "2.1.4"; 607679 + sha256 = "1c9lvb0aw00r0wibm061c614phlwsrf888amjn9nc168ix0cxv6x"; 607680 libraryHaskellDepends = [ 607681 aeson 607682 base ··· 608729 } 608730 ) { }; 608731 608732 + "shellify_0_14_0_1" = callPackage ( 608733 { 608734 mkDerivation, 608735 base, ··· 608751 }: 608752 mkDerivation { 608753 pname = "shellify"; 608754 + version = "0.14.0.1"; 608755 + sha256 = "1gnr4ii3wn7i0b8facg5a9d3b83lwm7nyk56576ll3nyywqh577i"; 608756 isLibrary = true; 608757 isExecutable = true; 608758 libraryHaskellDepends = [ ··· 616273 ]; 616274 description = "A very quick-and-dirty WebSocket server"; 616275 license = lib.licenses.bsd3; 616276 + hydraPlatforms = lib.platforms.none; 616277 + broken = true; 616278 } 616279 ) { }; 616280 ··· 620260 pname = "snap"; 620261 version = "1.1.3.3"; 620262 sha256 = "1mqckzm9gasa04ls691zgw4c6m53mgcj86yd2p5qvy07mpn9rdvx"; 620263 + revision = "4"; 620264 + editedCabalFile = "1zqvs7kx3jy8vmgwqc344cyv6f3zpx0vg9w5nb9lf5h23bl85k0i"; 620265 libraryHaskellDepends = [ 620266 aeson 620267 attoparsec ··· 623184 }: 623185 mkDerivation { 623186 pname = "snappy"; 623187 + version = "0.2.0.4"; 623188 + sha256 = "1marmb148hq6fnwmb5q1kqmzjsxpnqcgszmm4jdapiijlmms1b76"; 623189 libraryHaskellDepends = [ 623190 base 623191 bytestring ··· 624787 } 624788 ) { }; 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 + 624851 "sodium" = callPackage ( 624852 { 624853 mkDerivation, ··· 625346 } 625347 ) { }; 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 + 625379 "sophia" = callPackage ( 625380 { 625381 mkDerivation, ··· 627995 }: 627996 mkDerivation { 627997 pname = "specup"; 627998 + version = "0.2.0.6"; 627999 + sha256 = "1b7bvrb2ad1p78g82q7a3pzi4pgq2qrsas8vl9nglljyn2l259va"; 628000 isLibrary = true; 628001 isExecutable = true; 628002 libraryHaskellDepends = [ ··· 628916 math-functions, 628917 process, 628918 random, 628919 + template-haskell, 628920 test-framework, 628921 test-framework-hunit, 628922 testu01, ··· 628925 }: 628926 mkDerivation { 628927 pname = "splitmix"; 628928 + version = "0.1.3.1"; 628929 + sha256 = "0w32z3rhsnijb9s5k6h60rhbzgzkw8xq1glfbjbl1znlkgbx1g5n"; 628930 libraryHaskellDepends = [ 628931 base 628932 deepseq ··· 628942 math-functions 628943 process 628944 random 628945 + template-haskell 628946 test-framework 628947 test-framework-hunit 628948 tf-random ··· 629374 pname = "spreadsheet"; 629375 version = "0.1.3.10"; 629376 sha256 = "022q6an3jl0s8bnwgma8v03b6m4zq3q0drl6nsrcs0nav8n1z5r0"; 629377 + revision = "2"; 629378 + editedCabalFile = "1zw9lf90r43vnmybbzmgahw4w423zfjhz4b0nmssnvdbk2lj5yps"; 629379 isLibrary = true; 629380 isExecutable = true; 629381 libraryHaskellDepends = [ ··· 630504 pname = "sqlite"; 630505 version = "0.5.5"; 630506 sha256 = "1i2bkfyswmannwb1fx6y8ma3pzgx28nl05a35gz1gar28rsx7gyk"; 630507 + revision = "1"; 630508 + editedCabalFile = "0pp4b2z41n9rpln4zrc6d9100v8g60m3ggjrjbq5fk0xjan4gp7k"; 630509 libraryHaskellDepends = [ 630510 base 630511 bytestring ··· 631496 } 631497 ) { inherit (pkgs) nlopt; }; 631498 631499 + "srtree_2_0_1_5" = callPackage ( 631500 { 631501 mkDerivation, 631502 ad, ··· 631531 }: 631532 mkDerivation { 631533 pname = "srtree"; 631534 + version = "2.0.1.5"; 631535 + sha256 = "0h856i6gsh01rpp08lkvdrigylhbf1h016xwkccmmyd20iz3023l"; 631536 isLibrary = true; 631537 isExecutable = true; 631538 libraryHaskellDepends = [ ··· 632391 pname = "stache"; 632392 version = "2.3.4"; 632393 sha256 = "0kgiyxws2kir8q8zrqkzmk103y7hl6nksxl70f6fy8m9fqkjga51"; 632394 + revision = "5"; 632395 + editedCabalFile = "1kvqv42w223r53mjkj2am6j65qly8bvahr5fxvlbnx88bairp0zm"; 632396 isLibrary = true; 632397 isExecutable = true; 632398 enableSeparateDataOutput = true; ··· 632523 }: 632524 mkDerivation { 632525 pname = "stack"; 632526 + pname = "nat"; 632527 + sha256 = "03n8191slbq9zs9h437qda1w24nnf73p7x48x8lqp8sbcn6plaj1"; 632528 configureFlags = [ 632529 "-fdisable-git-info" 632530 "-fhide-dependency-versions" ··· 634679 }: 634680 mkDerivation { 634681 pname = "stackctl"; 634682 + version = "1.7.3.5"; 634683 + sha256 = "1naf2n41d0vhhnkkc4bnkapzqdmap6kp8xh27dqjcg7kmv3hllhi"; 634684 isLibrary = true; 634685 isExecutable = true; 634686 libraryHaskellDepends = [ ··· 634993 pname = "stan"; 634994 version = "0.2.1.0"; 634995 sha256 = "1mf01bpy291131jfl4fcslv0jfn8i8jqwr29v1v48j6c6q49rias"; 634996 + revision = "1"; 634997 + editedCabalFile = "0b7lf7g8kg7xxxl3zgfxk86bs0pl9i9xm1cvn1n2bpmfvymm19qa"; 634998 isLibrary = true; 634999 isExecutable = true; 635000 libraryHaskellDepends = [ ··· 636373 } 636374 ) { }; 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 + 636388 "statsd" = callPackage ( 636389 { 636390 mkDerivation, ··· 637521 pname = "stm"; 637522 version = "2.5.3.1"; 637523 sha256 = "1rrh4s07vav9mlhpqsq9r6r0gh3f4k8g1gjlx63ngkpdj59ldc7b"; 637524 + revision = "1"; 637525 + editedCabalFile = "1pfrf0r1f3hl9x3nxv5nja6hrflm72z3cls4x5vljnzmrp4mf6s2"; 637526 libraryHaskellDepends = [ 637527 array 637528 base ··· 642694 pname = "string-interpolate"; 642695 version = "0.3.4.0"; 642696 sha256 = "13hb3spabggr6gsn9xhwpwldjvpl2l7z4lgssis82c40n108b0w8"; 642697 + revision = "3"; 642698 + editedCabalFile = "0grq9v023186gfq3a2as9974qlwcjx3dhxqczpq22bq2wfpw24x7"; 642699 libraryHaskellDepends = [ 642700 base 642701 bytestring ··· 646696 pname = "sum-pyramid"; 646697 version = "0.0.1"; 646698 sha256 = "1zh7g16d345g8wffgj7wswfryrxxf7ik02fwrncqyc9yxmc7hm6y"; 646699 + revision = "1"; 646700 + editedCabalFile = "0pq6b89ygb0c2sd7b73zic7f8g589jz08ff0a1fpwr4xj5mawkmd"; 646701 isLibrary = false; 646702 isExecutable = true; 646703 executableHaskellDepends = [ ··· 648203 }: 648204 mkDerivation { 648205 pname = "sv2v"; 648206 + version = "0.0.13.1"; 648207 + sha256 = "1idv0mm1n02k9qzqqshylp310bcjlg5m3dh7l6dvz575553r4d1l"; 648208 isLibrary = false; 648209 isExecutable = true; 648210 executableHaskellDepends = [ ··· 649127 boolexpr, 649128 brick, 649129 brick-list-skip, 649130 + brick-tabular-list, 649131 bytestring, 649132 clock, 649133 colour, ··· 649147 fused-effects, 649148 fused-effects-lens, 649149 fuzzy, 649150 + generic-data, 649151 githash, 649152 hashable, 649153 hsnoise, ··· 649161 megaparsec, 649162 minimorph, 649163 MissingH, 649164 + monad-logger, 649165 + monoidmap, 649166 + monoidmap-aeson, 649167 mtl, 649168 murmur3, 649169 natural-sort, 649170 nonempty-containers, 649171 optparse-applicative, 649172 + ordered-containers, 649173 palette, 649174 pandoc, 649175 pandoc-types, 649176 parser-combinators, 649177 prettyprinter, 649178 QuickCheck, 649179 + quickcheck-instances, 649180 random, 649181 scientific, 649182 + servant, 649183 servant-docs, 649184 + servant-JuicyPixels, 649185 servant-multipart, 649186 servant-server, 649187 SHA, 649188 split, 649189 sqlite-simple, 649190 syb, ··· 649218 }: 649219 mkDerivation { 649220 pname = "swarm"; 649221 + version = "0.7.0.0"; 649222 + sha256 = "0i0n5vrsz7d8x45lbjzmk1jln368bcz6cy3hn3yaafvhyacqii82"; 649223 isLibrary = false; 649224 isExecutable = true; 649225 enableSeparateDataOutput = true; ··· 649232 boolexpr 649233 brick 649234 brick-list-skip 649235 + brick-tabular-list 649236 bytestring 649237 clock 649238 colour ··· 649252 fused-effects 649253 fused-effects-lens 649254 fuzzy 649255 + generic-data 649256 githash 649257 hashable 649258 hsnoise ··· 649265 lsp 649266 megaparsec 649267 minimorph 649268 + monad-logger 649269 + monoidmap 649270 + monoidmap-aeson 649271 mtl 649272 murmur3 649273 natural-sort 649274 nonempty-containers 649275 + ordered-containers 649276 palette 649277 pandoc 649278 pandoc-types ··· 649280 prettyprinter 649281 random 649282 scientific 649283 + servant 649284 servant-docs 649285 + servant-JuicyPixels 649286 servant-multipart 649287 servant-server 649288 SHA 649289 split 649290 sqlite-simple 649291 syb ··· 649312 yaml 649313 ]; 649314 executableHaskellDepends = [ 649315 + aeson 649316 base 649317 brick 649318 + bytestring 649319 + containers 649320 + extra 649321 fused-effects 649322 githash 649323 + http-client 649324 + http-client-tls 649325 + http-types 649326 lens 649327 optparse-applicative 649328 sqlite-simple ··· 649352 mtl 649353 nonempty-containers 649354 QuickCheck 649355 + quickcheck-instances 649356 SHA 649357 tasty 649358 tasty-expected-failure ··· 649369 base 649370 containers 649371 extra 649372 + fused-effects 649373 lens 649374 mtl 649375 tasty-bench ··· 650108 } 650109 ) { }; 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 + 650179 "sydtest-aeson" = callPackage ( 650180 { 650181 mkDerivation, ··· 653563 pname = "synthesizer-llvm"; 653564 version = "1.1.0.1"; 653565 sha256 = "166551a0g4m48f0mxccwcrgg488i4v8jpj6rjhd39mh6gxb874yr"; 653566 + revision = "1"; 653567 + editedCabalFile = "1kjiqwmfp2g7mqg6818qdhjjc5lw8hxf895763npjv5dx62b6dc3"; 653568 isLibrary = true; 653569 isExecutable = true; 653570 libraryHaskellDepends = [ ··· 654583 bytestring, 654584 extra, 654585 gi-ayatana-appindicator3, 654586 + gi-gdk3, 654587 gi-glib, 654588 gi-gobject, 654589 + gi-gtk3, 654590 + hspec-expectations, 654591 optparse-applicative, 654592 + tasty, 654593 + tasty-autocollect, 654594 + tasty-hunit-compat, 654595 text, 654596 typed-process, 654597 unliftio, ··· 654599 }: 654600 mkDerivation { 654601 pname = "systranything"; 654602 + version = "0.1.3.0"; 654603 + sha256 = "17y8zwbrxmbfr8g7gwbsvhxrwf330l6n2xqm6247ia8k5ap4drfy"; 654604 + isLibrary = true; 654605 isExecutable = true; 654606 + enableSeparateDataOutput = true; 654607 + libraryHaskellDepends = [ 654608 aeson 654609 base 654610 bytestring 654611 extra 654612 gi-ayatana-appindicator3 654613 + gi-gdk3 654614 gi-glib 654615 gi-gobject 654616 + gi-gtk3 654617 text 654618 typed-process 654619 + ]; 654620 + executableHaskellDepends = [ 654621 + base 654622 + gi-glib 654623 + gi-gtk3 654624 + optparse-applicative 654625 unliftio 654626 yaml 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 ]; 654638 description = "Let you put anything in the system tray"; 654639 license = lib.licenses.mit; 654640 mainProgram = "systranything"; 654641 } 654642 ) { }; 654643 ··· 655609 }: 655610 mkDerivation { 655611 pname = "tagged-identity"; 655612 + version = "0.1.5"; 655613 + sha256 = "1n8zfgb80856rhizkclq6bfdcixbi0ymvx0f508x70crrvk38xdv"; 655614 libraryHaskellDepends = [ 655615 base 655616 mtl ··· 658857 pname = "tasty"; 658858 version = "1.5.3"; 658859 sha256 = "10076vlklbcyiz7plakrihava5sy3dvwhskjldqzhfl18jvcg82l"; 658860 + revision = "2"; 658861 + editedCabalFile = "04llcf1i3gawdik0bjhxdgls2wkiqlx0gi76nfh784nv2qzxlpbb"; 658862 libraryHaskellDepends = [ 658863 ansi-terminal 658864 base ··· 659281 }: 659282 mkDerivation { 659283 pname = "tasty-discover"; 659284 version = "5.0.2"; 659285 sha256 = "0hz6lhqqmcb157im2vpfihnms29367pcqg8mb6ww0c0bl1g0bf62"; 659286 isLibrary = true; ··· 659313 ]; 659314 description = "Test discovery for the tasty framework"; 659315 license = lib.licenses.mit; 659316 mainProgram = "tasty-discover"; 659317 } 659318 ) { }; ··· 659525 pname = "tasty-golden-extra"; 659526 version = "0.1.0.0"; 659527 sha256 = "1bfd9ql3pws2vd37nbc5a8b49p7zbq3n48slxkrrwx1szaxkp8nj"; 659528 + revision = "3"; 659529 + editedCabalFile = "1hdkxsn075bc6f318vk81bddagxsyp390604v3azskfp52bwbl8r"; 659530 libraryHaskellDepends = [ 659531 aeson 659532 aeson-diff ··· 659744 pname = "tasty-hspec"; 659745 version = "1.2.0.4"; 659746 sha256 = "1hk1nkjvhp89xxgzj6dhbgw0fknnghpng6afq4i39hjkwv5p78ni"; 659747 + revision = "7"; 659748 + editedCabalFile = "0s1y34i8g7fva0z10ws3ipcy2jmlvqk0v4hdbx8rqnby5n0l5kay"; 659749 libraryHaskellDepends = [ 659750 base 659751 hspec ··· 660205 QuickCheck, 660206 tasty, 660207 tasty-hunit, 660208 }: 660209 mkDerivation { 660210 pname = "tasty-lua"; 660211 + version = "1.1.1.1"; 660212 + sha256 = "03b2n3gw2w70cnl57w3sh3cv5ka270sf07jlxpb4zs0z5gh83p1r"; 660213 libraryHaskellDepends = [ 660214 base 660215 bytestring ··· 660219 lua-arbitrary 660220 QuickCheck 660221 tasty 660222 ]; 660223 testHaskellDepends = [ 660224 base 660225 directory 660226 filepath 660227 hslua-core ··· 660323 description = "Bencmarking using instruction counting"; 660324 license = lib.licenses.bsd3; 660325 platforms = lib.platforms.linux; 660326 + hydraPlatforms = lib.platforms.none; 660327 + broken = true; 660328 } 660329 ) { inherit (pkgs) papi; }; 660330 ··· 660493 pname = "tasty-quickcheck"; 660494 version = "0.11.1"; 660495 sha256 = "0si4ccgqlv8h33d6310rrqba7f4pz3g8cinqfj42yd7damsdxm73"; 660496 + revision = "3"; 660497 + editedCabalFile = "1wzvha4xam8npx5mk33c056grmrqnjd6m38nnm6d7y99w2mn1a7w"; 660498 libraryHaskellDepends = [ 660499 base 660500 optparse-applicative ··· 660566 pname = "tasty-rerun"; 660567 version = "1.1.20"; 660568 sha256 = "0px58jm1yqbg32qf2s0yk09d2qdjxkkz9df89f31q3nzw85jv2ky"; 660569 + revision = "1"; 660570 + editedCabalFile = "13xmx91hp7i0qzrhada9ckliqkynwlwa8x6pjbvxjcy1y0qsd7hk"; 660571 libraryHaskellDepends = [ 660572 base 660573 containers ··· 660984 pname = "tasty-wai"; 660985 version = "0.1.2.0"; 660986 sha256 = "18yw2qzzg969c99rpa8p154hxbm9i4iq64pma3jkr2gfdm6j4vvg"; 660987 + revision = "3"; 660988 + editedCabalFile = "0jxvhn4yasi1cl9rxwfpsdjh0bz79i4javy9qf4hqi7vzzxll6i4"; 660989 libraryHaskellDepends = [ 660990 base 660991 bytestring ··· 661055 base, 661056 dollaridoos, 661057 profunctors, 661058 }: 661059 mkDerivation { 661060 pname = "tax"; 661061 + version = "0.2.1.0"; 661062 + sha256 = "1cgfvfi89rv4c12754hsah13ggfhq1hk4axs3sz7dvdwlw25swxr"; 661063 libraryHaskellDepends = [ 661064 base 661065 dollaridoos 661066 profunctors 661067 ]; 661068 description = "Types and combinators for taxes"; 661069 + license = lib.licenses.agpl3Plus; 661070 } 661071 ) { }; 661072 ··· 661081 }: 661082 mkDerivation { 661083 pname = "tax-ato"; 661084 + version = "2025.1"; 661085 + sha256 = "0xg8wl83cgla3v2bjx4sk4szlyxam1223xrsa6v6ggwiqm9la5sq"; 661086 libraryHaskellDepends = [ 661087 base 661088 lens ··· 662745 }: 662746 mkDerivation { 662747 pname = "telescope"; 662748 + version = "0.4.0"; 662749 + sha256 = "13bls8czlwk6df5p5i37cs4sdf0wmz4w4bnjjhpf8kk7bnglpr97"; 662750 libraryHaskellDepends = [ 662751 base 662752 binary ··· 665621 pname = "test-framework"; 665622 version = "0.8.2.2"; 665623 sha256 = "04ijf5x6xx8i5lqv9ir33zs1rfzc4qkwwz8c1fdycnzvydcv4dnp"; 665624 + revision = "1"; 665625 + editedCabalFile = "1yv1qsr6bxphxk9430id9bqhfmkffdqmfg0k017dp9pnn4pqj0zh"; 665626 libraryHaskellDepends = [ 665627 ansi-terminal 665628 ansi-wl-pprint ··· 665832 pname = "test-framework-quickcheck2"; 665833 version = "0.3.0.6"; 665834 sha256 = "1d0w2q9sm8aayk0aj1zr2irpnqwpzixn6pdfq1i904vs1kkb2xin"; 665835 + revision = "1"; 665836 + editedCabalFile = "1af2gw9gvq143jdqmsnxj23cgss9ffdyr67951a5x151aps04y7z"; 665837 libraryHaskellDepends = [ 665838 base 665839 extensible-exceptions ··· 667974 } 667975 ) { }; 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 + 668007 "text-cp437" = callPackage ( 668008 { 668009 mkDerivation, ··· 668073 } 668074 ) { }; 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 + 668130 "text-format" = callPackage ( 668131 { 668132 mkDerivation, ··· 669427 }: 669428 mkDerivation { 669429 pname = "text-show"; 669430 + version = "3.11.2"; 669431 + sha256 = "10nm8kj524hkl65qvxkrjjyykzgj85n3p96gv7zc7j3x90v9g1z2"; 669432 libraryHaskellDepends = [ 669433 array 669434 base ··· 669520 pname = "text-show-instances"; 669521 version = "3.9.10"; 669522 sha256 = "09cb391gi0hgkjk4ap4d83vg13lczrghmb9db96a4ckw1bp9pbc1"; 669523 + revision = "4"; 669524 + editedCabalFile = "1k5h1lqc8z593cwnmy2yngh3nlq2b4zfbjwkmyqddg192xia8bbh"; 669525 libraryHaskellDepends = [ 669526 aeson 669527 base ··· 674241 } 674242 ) { }; 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 + 674315 "tidal-core" = callPackage ( 674316 { 674317 mkDerivation, ··· 674319 colour, 674320 containers, 674321 deepseq, 674322 + hspec, 674323 parsec, 674324 text, 674325 }: 674326 mkDerivation { 674327 pname = "tidal-core"; 674328 + version = "1.10.0"; 674329 + sha256 = "1dg6z0z52zxrqai4jfgqrp4ghsdkcflixwspcbnyrxq1d4jw0zdf"; 674330 libraryHaskellDepends = [ 674331 base 674332 colour ··· 674339 base 674340 containers 674341 deepseq 674342 + hspec 674343 ]; 674344 description = "Core pattern library for TidalCycles, a pattern language for improvised music"; 674345 license = lib.licenses.gpl3Only; ··· 674369 } 674370 ) { }; 674371 674372 + "tidal-link_1_2_0" = callPackage ( 674373 { 674374 mkDerivation, 674375 base, ··· 674380 }: 674381 mkDerivation { 674382 pname = "tidal-link"; 674383 + version = "1.2.0"; 674384 + sha256 = "15sqmdafz8ha2rlk4k327pjfc2kpcvq211avchanmmlvn7dflvsv"; 674385 isLibrary = true; 674386 isExecutable = true; 674387 libraryHaskellDepends = [ ··· 674701 pname = "tiktoken"; 674702 version = "1.0.3"; 674703 sha256 = "0hy3y9rdgjirk8ji7458qnc7h9d2b6yipfri25qkay96kq91kmj6"; 674704 + revision = "1"; 674705 + editedCabalFile = "0pwxqznjqbdsy99g4l1cyx8anns7wr92kpnbh19y9y99f1913jbn"; 674706 enableSeparateDataOutput = true; 674707 libraryHaskellDepends = [ 674708 base ··· 674735 ]; 674736 description = "Haskell implementation of tiktoken"; 674737 license = lib.licenses.bsd3; 674738 } 674739 ) { }; 674740 ··· 680980 "tools-yj" = callPackage ( 680981 { 680982 mkDerivation, 680983 + array, 680984 base, 680985 bytestring, 680986 containers, ··· 680991 }: 680992 mkDerivation { 680993 pname = "tools-yj"; 680994 + version = "0.1.0.45"; 680995 + sha256 = "04n78afz82kmpyffy8vilfdw584qhhb5bfm3p1rnv9bjnrqv7jxn"; 680996 libraryHaskellDepends = [ 680997 + array 680998 base 680999 bytestring 681000 containers ··· 681004 text 681005 ]; 681006 testHaskellDepends = [ 681007 + array 681008 base 681009 bytestring 681010 containers ··· 681018 } 681019 ) { }; 681020 681021 "toolshed" = callPackage ( 681022 { 681023 mkDerivation, ··· 682284 }: 682285 mkDerivation { 682286 pname = "trace-embrace"; 682287 + version = "1.2.0"; 682288 + sha256 = "05wgj9pf9vqafa1h7sbjxzy2lx213qwrpr4f2dq7s7i2l9hf2a3k"; 682289 libraryHaskellDepends = [ 682290 aeson 682291 base ··· 682308 yaml 682309 ]; 682310 testHaskellDepends = [ 682311 + aeson 682312 base 682313 bytestring 682314 containers ··· 684145 ]; 684146 description = "Reactive Type Safe Routing"; 684147 license = lib.licenses.mit; 684148 } 684149 ) { }; 684150 ··· 685670 pname = "trial-optparse-applicative"; 685671 version = "0.0.0.0"; 685672 sha256 = "1h8pfznf1dp9z3r2kl2ljgmxxkfp3va9yqba00fyvw85lna2aggn"; 685673 + revision = "5"; 685674 + editedCabalFile = "0jvl3q2lh134z1r9zq2acpsilbjzpjia3xdh51szp6r708jnlpg1"; 685675 libraryHaskellDepends = [ 685676 base 685677 optparse-applicative ··· 688364 ]; 688365 description = "An equational theorem prover"; 688366 license = lib.licenses.bsd3; 688367 + hydraPlatforms = lib.platforms.none; 688368 mainProgram = "twee"; 688369 + broken = true; 688370 } 688371 ) { }; 688372 ··· 692573 ]; 692574 description = "Plugin to faciliate type-level let"; 692575 license = lib.licenses.bsd3; 692576 + hydraPlatforms = lib.platforms.none; 692577 + broken = true; 692578 } 692579 ) { }; 692580 ··· 692924 dlist, 692925 hspec, 692926 hspec-discover, 692927 + safe, 692928 template-haskell, 692929 text, 692930 th-data-compat, ··· 692933 }: 692934 mkDerivation { 692935 pname = "typesafe-precure"; 692936 + version = "0.12.0.1"; 692937 + sha256 = "1cl6dq9mdm3caw3zzwpw7vcyv41apk0d0fxrxrm7d0vp4wvjckff"; 692938 libraryHaskellDepends = [ 692939 aeson 692940 aeson-pretty ··· 692942 base 692943 bytestring 692944 dlist 692945 + safe 692946 template-haskell 692947 text 692948 th-data-compat ··· 694834 } 694835 ) { }; 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 + 694870 "ulid" = callPackage ( 694871 { 694872 mkDerivation, ··· 698782 pname = "unix"; 698783 version = "2.8.7.0"; 698784 sha256 = "10zv2vcq82vv56hll5mpvfwfsx6ymp2f75fwxvp5a1xgbafqgpfb"; 698785 + revision = "1"; 698786 + editedCabalFile = "1mvyq9qajqhjrv8m3zch07v8h0b3i4fj40d8jfcpbmqsq6h8sa9d"; 698787 libraryHaskellDepends = [ 698788 base 698789 bytestring ··· 699095 }: 699096 mkDerivation { 699097 pname = "unix-time"; 699098 + version = "0.4.17"; 699099 + sha256 = "130z416958xqd6yvjidmm66674y9vkwgxj965kvwhnncbnz0afpn"; 699100 libraryHaskellDepends = [ 699101 base 699102 binary ··· 700492 libraryHaskellDepends = [ base ]; 700493 description = "Unwrapping sums/products lifted to functors"; 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; 700518 } 700519 ) { }; 700520 ··· 702976 }: 702977 mkDerivation { 702978 pname = "utxorpc"; 702979 + version = "0.0.17.0"; 702980 + sha256 = "1jzb0v8gjy15b97a66gmjaxxf3mcxwigaavl5cnzga5z9kz8pyw1"; 702981 libraryHaskellDepends = [ 702982 base 702983 proto-lens ··· 705579 } 705580 ) { }; 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 + 705612 "vary" = callPackage ( 705613 { 705614 mkDerivation, ··· 705627 }: 705628 mkDerivation { 705629 pname = "vary"; 705630 + version = "0.1.1.3"; 705631 + sha256 = "1rw05k5v0idr1ypcmfp7xxyqdaff12yc3x8csv2flspwmyvvlsn3"; 705632 libraryHaskellDepends = [ 705633 aeson 705634 base ··· 706110 }: 706111 mkDerivation { 706112 pname = "vcr"; 706113 + version = "0.1.0"; 706114 + sha256 = "1s6gp1m84izlsvw5z7ll39mw2r456xmbh7cx53f8gkwl2m2pyyrq"; 706115 libraryHaskellDepends = [ 706116 async 706117 base ··· 707166 }: 707167 mkDerivation { 707168 pname = "vector-hashtables"; 707169 + version = "0.1.2.1"; 707170 + sha256 = "1cdfvrpnia7bgqaw8yg0n23svbsdz72gss0hrkrvc5rwzxwhz49k"; 707171 libraryHaskellDepends = [ 707172 base 707173 hashable ··· 707233 }: 707234 mkDerivation { 707235 pname = "vector-instances"; 707236 + version = "3.4.3"; 707237 + sha256 = "1ajc65vj5j02qzfx11zvgmfx4lh5r99h4hg8wacdkyk1vw1rh9b7"; 707238 libraryHaskellDepends = [ 707239 base 707240 comonad ··· 707649 }: 707650 mkDerivation { 707651 pname = "vector-split"; 707652 + version = "1.0.0.4"; 707653 + sha256 = "1m5b0v9izczkh3860a0l0lbwcygv9kf30552941gfmv8k931zq4d"; 707654 libraryHaskellDepends = [ 707655 base 707656 vector ··· 708711 }: 708712 mkDerivation { 708713 pname = "vext"; 708714 + version = "0.1.8.0"; 708715 + sha256 = "05mw1mijpm1k7hjsr5xx6nwk2ipk2ghi8n1m60zarhlqwmbcvjms"; 708716 libraryHaskellDepends = [ 708717 base 708718 + byteslice 708719 natural-arithmetic 708720 primitive 708721 run-st ··· 711470 }: 711471 mkDerivation { 711472 pname = "vty-windows"; 711473 version = "0.2.0.4"; 711474 sha256 = "1iisk8acjjibghw05yyc1w25hcs4d1cn1jlhl0iikz36kl0bbl8q"; 711475 libraryHaskellDepends = [ ··· 711495 description = "Windows backend for Vty"; 711496 license = lib.licenses.bsd3; 711497 platforms = lib.platforms.windows; 711498 } 711499 ) { }; 711500 ··· 717061 }: 717062 mkDerivation { 717063 pname = "warp"; 717064 + version = "3.4.8"; 717065 + sha256 = "0l67bz23l5sbhsmi9pz5vr0cf2mkkzpl0gjkf9309g0lxfq0mpyl"; 717066 libraryHaskellDepends = [ 717067 array 717068 async ··· 717241 }: 717242 mkDerivation { 717243 pname = "warp-quic"; 717244 + version = "0.0.3"; 717245 + sha256 = "0vbgbvkl5j8x0lrz568cd2viq0vl5dwzavfincz7a01v5w90qr9c"; 717246 libraryHaskellDepends = [ 717247 base 717248 bytestring ··· 717316 pname = "warp-systemd"; 717317 version = "0.3.0.0"; 717318 sha256 = "1yvkg49wla7axk8vdh5c7d0pxlhyb66ka0xiqi6a3ra3zmw5xi3c"; 717319 + revision = "3"; 717320 + editedCabalFile = "1rb5qgfvyblpj15ikrlngyc87wdbp6xp90r7v7gyczshgdhnsg8d"; 717321 isLibrary = true; 717322 isExecutable = true; 717323 libraryHaskellDepends = [ ··· 717703 }: 717704 mkDerivation { 717705 pname = "waterfall-cad"; 717706 + version = "0.5.1.0"; 717707 + sha256 = "173pv3a7n3jcf4j2jb7sirdib0x850qsifhlz858bkzamhqlxkr8"; 717708 libraryHaskellDepends = [ 717709 base 717710 filepath ··· 717738 }: 717739 mkDerivation { 717740 pname = "waterfall-cad-examples"; 717741 + version = "0.5.1.0"; 717742 + sha256 = "0vrlhgvbkwgk2nvmw8h6sg3fygi3sxs7qllyvwkzzs91kavnkb4d"; 717743 isLibrary = true; 717744 isExecutable = true; 717745 libraryHaskellDepends = [ ··· 717792 }: 717793 mkDerivation { 717794 pname = "waterfall-cad-svg"; 717795 + version = "0.5.1.0"; 717796 + sha256 = "1gjm36f7w3xf7q8gfm6xk5ssj594z45vfkqkr3x9rgny8rn7w3p5"; 717797 libraryHaskellDepends = [ 717798 attoparsec 717799 base ··· 718264 attoparsec, 718265 base, 718266 bytestring, 718267 + directory, 718268 hspec, 718269 http-client, 718270 QuickCheck, ··· 718273 }: 718274 mkDerivation { 718275 pname = "web-cookiejar"; 718276 + version = "0.1.3.0"; 718277 + sha256 = "0n8r23nk89hlp5z5zirj2yng818fba39f5yz0l351z7rpx0pi8vy"; 718278 libraryHaskellDepends = [ 718279 attoparsec 718280 base 718281 bytestring 718282 + directory 718283 http-client 718284 time 718285 ]; ··· 719884 }: 719885 mkDerivation { 719886 pname = "webauthn"; 719887 + version = "0.11.0.0"; 719888 + sha256 = "11fah0xsblggpnviggzpz18y8snhyn6wm7hng8665d7s4ylr9z4w"; 719889 libraryHaskellDepends = [ 719890 aeson 719891 asn1-encoding ··· 720840 }: 720841 mkDerivation { 720842 pname = "webfinger-client"; 720843 + version = "0.2.2.1"; 720844 + sha256 = "0rwfzjgx8g2ic6763sbv9ybnkcg84kgmmvw476sswaw2338spwd0"; 720845 libraryHaskellDepends = [ 720846 aeson 720847 base ··· 721845 pname = "websockets"; 721846 version = "0.13.0.0"; 721847 sha256 = "1da95b71akggyikbxdmja3gcaqrz8sp6ri5jrsyavc2ickvi9y4s"; 721848 + revision = "5"; 721849 + editedCabalFile = "0nm0lj8cv5z5y2d0bz0rfl3bz100swhind4wn95b7q2ma2x80dlv"; 721850 isLibrary = true; 721851 isExecutable = true; 721852 libraryHaskellDepends = [ ··· 723746 }: 723747 mkDerivation { 723748 pname = "wide-word"; 723749 + version = "0.1.7.1"; 723750 + sha256 = "1h42k00inir628qb2r8966bhn354bnkgadpx5fgm6g1kh879y15a"; 723751 libraryHaskellDepends = [ 723752 base 723753 binary ··· 724319 }: 724320 mkDerivation { 724321 pname = "wild-bind"; 724322 + version = "0.1.2.12"; 724323 + sha256 = "1bjm2vxa6xg7j6wl28rg8djxabpjss22z1w1ymlm2lw5fb148frn"; 724324 libraryHaskellDepends = [ 724325 base 724326 containers ··· 726581 pname = "word8set"; 726582 version = "0.1.2"; 726583 sha256 = "0jbr571rxw0vxxc95568kdxrw9d0kk6np9wrwjd6rj6ybh532zr7"; 726584 + revision = "1"; 726585 + editedCabalFile = "1w3w1f8kig5mvrl06y5f48lrr44zxwa0w8lvwa6vks4fvv1ia0lj"; 726586 libraryHaskellDepends = [ 726587 base 726588 deepseq ··· 728780 aeson, 728781 base, 728782 binary, 728783 bytestring, 728784 network, 728785 + postgresql-simple, 728786 text, 728787 time, 728788 }: 728789 mkDerivation { 728790 pname = "wsjtx-udp"; 728791 + version = "0.5.0.0"; 728792 + sha256 = "0fz92fjynvaz73i8v229ibj9z7bjjc4v467hmakc1v7xcjdxajj7"; 728793 isLibrary = true; 728794 isExecutable = true; 728795 libraryHaskellDepends = [ 728796 aeson 728797 base 728798 binary 728799 bytestring 728800 network 728801 text 728802 time 728803 ]; 728804 + executableHaskellDepends = [ 728805 + aeson 728806 + base 728807 + bytestring 728808 + network 728809 + postgresql-simple 728810 + ]; 728811 description = "WSJT-X UDP protocol"; 728812 license = lib.licenses.bsd3; 728813 hydraPlatforms = lib.platforms.none; 728814 broken = true; 728815 } 728816 ) { }; ··· 730244 } 730245 ) { }; 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 + 730278 "xchat-plugin" = callPackage ( 730279 { 730280 mkDerivation, ··· 730659 } 730660 ) { }; 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 + 730703 "xenstore" = callPackage ( 730704 { 730705 mkDerivation, ··· 732397 description = "Generate XML-isomorphic types"; 732398 license = lib.licenses.mit; 732399 hydraPlatforms = lib.platforms.none; 732400 + broken = true; 732401 } 732402 ) { }; 732403 ··· 732415 pname = "xml-lens"; 732416 version = "0.3.1"; 732417 sha256 = "0i6c4xqacinhxnyszzna7s9x79rrcs1c7jq6zimcwh4302l5d6cm"; 732418 + revision = "4"; 732419 + editedCabalFile = "1zicqdzvca53rg2ai14nkyq1f46w6kz6bd4mjmqzx778xn17d22f"; 732420 libraryHaskellDepends = [ 732421 base 732422 case-insensitive ··· 732427 ]; 732428 description = "Lenses, traversals, and prisms for xml-conduit"; 732429 license = lib.licenses.bsd3; 732430 } 732431 ) { }; 732432 ··· 733680 }: 733681 mkDerivation { 733682 pname = "xmobar"; 733683 + version = "0.50"; 733684 + sha256 = "026s0q718z89vzjgva19vg58dm1l016i67mzi0wbj7kgai89w909"; 733685 configureFlags = [ 733686 "-fwith_alsa" 733687 "-fwith_conduit" ··· 734484 description = "Text-based notification server for XMobar"; 734485 license = lib.licenses.bsd3; 734486 badPlatforms = lib.platforms.darwin; 734487 + hydraPlatforms = lib.platforms.none; 734488 + broken = true; 734489 } 734490 ) { }; 734491 ··· 734505 pname = "xor"; 734506 version = "0.0.1.3"; 734507 sha256 = "12hqm6imp3qvnnrkds77jsi0zx2dza1h9g88adnxiksv62fybymv"; 734508 + revision = "1"; 734509 + editedCabalFile = "0n0mdli5qypi9khk42lqqkn464w22vjwx0dg2dg6mvdq0r37qwab"; 734510 libraryHaskellDepends = [ 734511 base 734512 bytestring ··· 743918 } 743919 ) { }; 743920 743921 + "yesod-test_1_6_23" = callPackage ( 743922 { 743923 mkDerivation, 743924 aeson, ··· 743932 conduit, 743933 containers, 743934 cookie, 743935 + directory, 743936 hspec, 743937 hspec-core, 743938 html-conduit, ··· 743942 mtl, 743943 network, 743944 pretty-show, 743945 + process, 743946 text, 743947 time, 743948 transformers, ··· 743957 }: 743958 mkDerivation { 743959 pname = "yesod-test"; 743960 + version = "1.6.23"; 743961 + sha256 = "1bisgnvfda16ryg9npdn4s041z7vvvgdmpkq9wqwccpw4vwylklv"; 743962 libraryHaskellDepends = [ 743963 aeson 743964 attoparsec ··· 743971 conduit 743972 containers 743973 cookie 743974 + directory 743975 hspec-core 743976 html-conduit 743977 http-types ··· 743980 mtl 743981 network 743982 pretty-show 743983 + process 743984 text 743985 time 743986 transformers ··· 748344 pname = "zinza"; 748345 version = "0.2.1"; 748346 sha256 = "1k4k2yvijg0vwp3ykp9l77n3qdpivikqxx78ilvk6nx6w9sj58c8"; 748347 + revision = "1"; 748348 + editedCabalFile = "1ikbfa3g3636v70v7xa0x89xn91g2w8nngrxnaxwjyhaldskxvzc"; 748349 libraryHaskellDepends = [ 748350 base 748351 containers ··· 748489 } 748490 ) { }; 748491 748492 + "zip_2_2_1" = callPackage ( 748493 { 748494 mkDerivation, 748495 base, ··· 748520 }: 748521 mkDerivation { 748522 pname = "zip"; 748523 + version = "2.2.1"; 748524 + sha256 = "1wq0nl034b2nknd627adzffj6rymykvkdn5b0smydcv5wp7i6p6j"; 748525 isLibrary = true; 748526 isExecutable = true; 748527 libraryHaskellDepends = [
+3 -14
pkgs/development/libraries/agda/1lab/default.nix
··· 6 7 mkDerivation rec { 8 pname = "1lab"; 9 - version = "unstable-2024-08-05"; 10 11 src = fetchFromGitHub { 12 owner = "the1lab"; 13 repo = pname; 14 - rev = "7cc9bf7bbe90be5491e0d64da90a36afa29a540b"; 15 - hash = "sha256-hOyf6ZzejDAFDRj6liFZsBc9bKdxV5bzTPP4kGXIhW0="; 16 }; 17 18 postPatch = '' ··· 23 shopt -s globstar extglob 24 files=(src/**/*.@(agda|lagda.md)) 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 ''; 34 - 35 - libraryName = "1lab"; 36 - libraryFile = "1lab.agda-lib"; 37 - everythingFile = "_build/all-pages.agda"; 38 39 meta = with lib; { 40 description = "A formalised, cross-linked reference resource for mathematics done in Homotopy Type Theory ";
··· 6 7 mkDerivation rec { 8 pname = "1lab"; 9 + version = "unstable-2025-07-01"; 10 11 src = fetchFromGitHub { 12 owner = "the1lab"; 13 repo = pname; 14 + rev = "e9c2ad2b3ba9cefad36e72cb9d732117c68ac862"; 15 + hash = "sha256-wKh77+xCdfMtnq9jMlpdnEptGO+/WVNlQFa1TDbdUGs="; 16 }; 17 18 postPatch = '' ··· 23 shopt -s globstar extglob 24 files=(src/**/*.@(agda|lagda.md)) 25 sed -Ei '/OPTIONS/s/ -v ?[^ #]+//g' "''${files[@]}" 26 ''; 27 28 meta = with lib; { 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 # version update of the stdlib, so we get rid of the version constraint 25 # altogether. 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 ''; 33 34 buildInputs = [ standard-library ];
··· 24 # version update of the stdlib, so we get rid of the version constraint 25 # altogether. 26 sed -Ei 's/standard-library-[0-9.]+/standard-library/' agda-categories.agda-lib 27 ''; 28 29 buildInputs = [ standard-library ];
-7
pkgs/development/libraries/agda/agda-prelude/default.nix
··· 15 hash = "sha256-ab+KojzRbkUTAFNH5OA78s0F5SUuXTbliai6badveg4="; 16 }; 17 18 - preConfigure = '' 19 - cd test 20 - make everything 21 - mv Everything.agda .. 22 - cd .. 23 - ''; 24 - 25 meta = with lib; { 26 homepage = "https://github.com/UlfNorell/agda-prelude"; 27 description = "Programming library for Agda";
··· 15 hash = "sha256-ab+KojzRbkUTAFNH5OA78s0F5SUuXTbliai6badveg4="; 16 }; 17 18 meta = with lib; { 19 homepage = "https://github.com/UlfNorell/agda-prelude"; 20 description = "Programming library for Agda";
-7
pkgs/development/libraries/agda/agdarsec/default.nix
··· 16 sha256 = "02fqkycvicw6m2xsz8p01aq8n3gj2d2gyx8sgj15l46f8434fy0x"; 17 }; 18 19 - everythingFile = "./index.agda"; 20 - 21 - includePaths = [ 22 - "src" 23 - "examples" 24 - ]; 25 - 26 buildInputs = [ standard-library ]; 27 28 meta = with lib; {
··· 16 sha256 = "02fqkycvicw6m2xsz8p01aq8n3gj2d2gyx8sgj15l46f8434fy0x"; 17 }; 18 19 buildInputs = [ standard-library ]; 20 21 meta = with lib; {
+3 -3
pkgs/development/libraries/agda/cubical-mini/default.nix
··· 8 9 mkDerivation rec { 10 pname = "cubical-mini"; 11 - version = "nightly-20241214"; 12 13 src = fetchFromGitHub { 14 repo = pname; 15 owner = "cmcmA20"; 16 - rev = "ab18320018ddc0055db60d4bb5560d31909c5b78"; 17 - hash = "sha256-32qXY9KbProdPwqHxSkwO74Oqx65rTzoXtH2SpRB3OM="; 18 }; 19 20 nativeBuildInputs = [
··· 8 9 mkDerivation rec { 10 pname = "cubical-mini"; 11 + version = "0.5-unstable-2025-06-13"; 12 13 src = fetchFromGitHub { 14 repo = pname; 15 owner = "cmcmA20"; 16 + rev = "1776874d13d0b811e6eeb70d0e5a52b4d2a978d2"; 17 + hash = "sha256-UxWOS+uzP9aAaMdSueA2CAuzWkImGAoKxroarcgpk+w="; 18 }; 19 20 nativeBuildInputs = [
+4 -8
pkgs/development/libraries/agda/cubical/default.nix
··· 2 lib, 3 mkDerivation, 4 fetchFromGitHub, 5 - ghc, 6 }: 7 8 mkDerivation rec { ··· 16 hash = "sha256-KwwN2g2naEo4/rKTz2L/0Guh5LxymEYP53XQzJ6eMjM="; 17 }; 18 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 26 ''; 27 28 meta = with lib; {
··· 2 lib, 3 mkDerivation, 4 fetchFromGitHub, 5 }: 6 7 mkDerivation rec { ··· 15 hash = "sha256-KwwN2g2naEo4/rKTz2L/0Guh5LxymEYP53XQzJ6eMjM="; 16 }; 17 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 22 ''; 23 24 meta = with lib; {
-4
pkgs/development/libraries/agda/functional-linear-algebra/default.nix
··· 18 sha256 = "sha256-3nme/eH4pY6bD0DkhL4Dj/Vp/WnZqkQtZTNk+n1oAyY="; 19 }; 20 21 - preConfigure = '' 22 - sh generate-everything.sh 23 - ''; 24 - 25 meta = with lib; { 26 homepage = "https://github.com/ryanorendorff/functional-linear-algebra"; 27 description = ''
··· 18 sha256 = "sha256-3nme/eH4pY6bD0DkhL4Dj/Vp/WnZqkQtZTNk+n1oAyY="; 19 }; 20 21 meta = with lib; { 22 homepage = "https://github.com/ryanorendorff/functional-linear-algebra"; 23 description = ''
+4 -1
pkgs/development/libraries/agda/generics/default.nix
··· 20 standard-library 21 ]; 22 23 - # everythingFile = "./README.agda"; 24 25 meta = with lib; { 26 description = "Library for datatype-generic programming in Agda";
··· 20 standard-library 21 ]; 22 23 + # Agda expects a single .agda-lib file. 24 + preBuild = '' 25 + rm tests.agda-lib 26 + ''; 27 28 meta = with lib; { 29 description = "Library for datatype-generic programming in Agda";
+3 -12
pkgs/development/libraries/agda/standard-library/default.nix
··· 2 lib, 3 mkDerivation, 4 fetchFromGitHub, 5 - ghcWithPackages, 6 nixosTests, 7 }: 8 9 mkDerivation rec { 10 pname = "standard-library"; 11 - version = "2.2"; 12 13 src = fetchFromGitHub { 14 repo = "agda-stdlib"; 15 owner = "agda"; 16 - rev = "v${version}"; 17 - hash = "sha256-/Fy5EOSbVNXt6Jq0yKSnlNPW4SYfn+eCTAYFnMZrbR0="; 18 }; 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 28 passthru.tests = { inherit (nixosTests) agda; }; 29 meta = with lib; {
··· 2 lib, 3 mkDerivation, 4 fetchFromGitHub, 5 nixosTests, 6 }: 7 8 mkDerivation rec { 9 pname = "standard-library"; 10 + version = "2.2-unstable-2025-07-03"; 11 12 src = fetchFromGitHub { 13 repo = "agda-stdlib"; 14 owner = "agda"; 15 + rev = "6f8af9452e7fac27bc3b3ad068793b538f07668e"; 16 + hash = "sha256-LD6KasmQ9ZHRNQJ0N4wjyc6JiSkZpmyqQq9B0Wta1n0="; 17 }; 18 19 passthru.tests = { inherit (nixosTests) agda; }; 20 meta = with lib; {
+1 -3
pkgs/top-level/agda-packages.nix
··· 28 29 agda = withPackages [ ]; 30 31 - standard-library = callPackage ../development/libraries/agda/standard-library { 32 - inherit (pkgs.haskellPackages) ghcWithPackages; 33 - }; 34 35 iowa-stdlib = callPackage ../development/libraries/agda/iowa-stdlib { }; 36
··· 28 29 agda = withPackages [ ]; 30 31 + standard-library = callPackage ../development/libraries/agda/standard-library { }; 32 33 iowa-stdlib = callPackage ../development/libraries/agda/iowa-stdlib { }; 34
+28 -8
pkgs/top-level/release-haskell.nix
··· 479 }; 480 481 pkgsCross = { 482 ghcjs = 483 removePlatforms 484 [ ··· 512 ; 513 }; 514 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 haskell.packages.ghcHEAD = { 524 inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghcHEAD) 525 ghc ··· 528 ; 529 }; 530 }; 531 532 riscv64 = { 533 # Cross compilation of GHC
··· 479 }; 480 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 + 502 ghcjs = 503 removePlatforms 504 [ ··· 532 ; 533 }; 534 535 haskell.packages.ghcHEAD = { 536 inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghcHEAD) 537 ghc ··· 540 ; 541 }; 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 + }; 551 552 riscv64 = { 553 # Cross compilation of GHC