lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
2bae93ca 71c7eb26

+1697 -1064
+17 -5
nixos/modules/services/misc/paperless-ng.nix
··· 6 6 7 7 defaultUser = "paperless"; 8 8 9 + hasCustomRedis = hasAttr "PAPERLESS_REDIS" cfg.extraConfig; 10 + 9 11 env = { 10 12 PAPERLESS_DATA_DIR = cfg.dataDir; 11 13 PAPERLESS_MEDIA_ROOT = cfg.mediaDir; 12 14 PAPERLESS_CONSUMPTION_DIR = cfg.consumptionDir; 13 15 GUNICORN_CMD_ARGS = "--bind=${cfg.address}:${toString cfg.port}"; 14 - } // lib.mapAttrs (_: toString) cfg.extraConfig; 16 + } // ( 17 + lib.mapAttrs (_: toString) cfg.extraConfig 18 + ) // (optionalAttrs (!hasCustomRedis) { 19 + PAPERLESS_REDIS = "unix://${config.services.redis.servers.paperless-ng.unixSocket}"; 20 + }); 15 21 16 22 manage = let 17 23 setupEnv = lib.concatStringsSep "\n" (mapAttrsToList (name: val: "export ${name}=\"${val}\"") env); ··· 30 36 "-/etc/hosts" 31 37 "-/etc/localtime" 32 38 "-/run/postgresql" 33 - ]; 39 + ] ++ (optional (!hasCustomRedis) config.services.redis.servers.paperless-ng.unixSocket); 34 40 BindPaths = [ 35 41 cfg.consumptionDir 36 42 cfg.dataDir ··· 44 50 NoNewPrivileges = true; 45 51 PrivateDevices = true; 46 52 PrivateMounts = true; 47 - # Needs to connect to redis 48 - # PrivateNetwork = true; 53 + PrivateNetwork = true; 49 54 PrivateTmp = true; 50 55 PrivateUsers = true; 51 56 ProcSubset = "pid"; ··· 65 70 RestrictNamespaces = true; 66 71 RestrictRealtime = true; 67 72 RestrictSUIDSGID = true; 73 + SupplementaryGroups = optional (!hasCustomRedis) config.services.redis.servers.paperless-ng.user; 68 74 SystemCallArchitectures = "native"; 69 75 SystemCallFilter = [ "@system-service" "~@privileged @resources @setuid @keyring" ]; 70 76 # Does not work well with the temporary root ··· 190 196 191 197 config = mkIf cfg.enable { 192 198 # Enable redis if no special url is set 193 - services.redis.enable = mkIf (!hasAttr "PAPERLESS_REDIS" env) true; 199 + services.redis.servers.paperless-ng.enable = mkIf (!hasCustomRedis) true; 194 200 195 201 systemd.tmpfiles.rules = [ 196 202 "d '${cfg.dataDir}' - ${cfg.user} ${config.users.users.${cfg.user}.group} - -" ··· 234 240 echo "$superuserState" > "$superuserStateFile" 235 241 fi 236 242 ''; 243 + } // optionalAttrs (!hasCustomRedis) { 244 + after = [ "redis-paperless-ng.service" ]; 237 245 }; 238 246 239 247 # Password copying can't be implemented as a privileged preStart script ··· 248 256 '${cfg.passwordFile}' '${cfg.dataDir}/superuser-password' 249 257 ''; 250 258 Type = "oneshot"; 259 + # Needs to talk to mail server for automated import rules 260 + PrivateNetwork = false; 251 261 }; 252 262 }; 253 263 ··· 279 289 CapabilityBoundingSet = "CAP_NET_BIND_SERVICE"; 280 290 # gunicorn needs setuid 281 291 SystemCallFilter = defaultServiceConfig.SystemCallFilter ++ [ "@setuid" ]; 292 + # Needs to serve web page 293 + PrivateNetwork = false; 282 294 }; 283 295 environment = env // { 284 296 PATH = mkForce cfg.package.path;
+2 -2
pkgs/applications/editors/nano/default.nix
··· 16 16 17 17 in stdenv.mkDerivation rec { 18 18 pname = "nano"; 19 - version = "6.0"; 19 + version = "6.1"; 20 20 21 21 src = fetchurl { 22 22 url = "mirror://gnu/nano/${pname}-${version}.tar.xz"; 23 - sha256 = "k6yMtotK0Q4KrrgKLdFcW7ietmWkhE960Bxn78sWnqI="; 23 + sha256 = "PVfsiT+/3tEmZbfw1WPXRDH8Q6vqzKzt6iO2avcE20A="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
+3 -23
pkgs/applications/graphics/vengi-tools/default.nix
··· 29 29 30 30 stdenv.mkDerivation rec { 31 31 pname = "vengi-tools"; 32 - version = "0.0.17"; 32 + version = "0.0.18"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "mgerhardy"; 36 36 repo = "vengi"; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-h+R9L0BBD3NSFWUh43g4V2LBcNyqVInBeJiOLY03nRk="; 38 + sha256 = "sha256-Ur1X5FhOa87jbjWBXievBfCHW+qP/8bqLiyKAC8+KU4="; 39 39 }; 40 - 41 - # Patch from the project's author for fixing an issue with AnimationShaders.h 42 - # not being included when turning off some components 43 - patches = [(writeText "vengi-tools-fix-build.patch" '' 44 - diff --git a/src/modules/voxelworldrender/CMakeLists.txt b/src/modules/voxelworldrender/CMakeLists.txt 45 - index aebe5f97b..903e62b37 100644 46 - --- a/src/modules/voxelworldrender/CMakeLists.txt 47 - +++ b/src/modules/voxelworldrender/CMakeLists.txt 48 - @@ -27,7 +27,7 @@ set(FILES 49 - voxel/models/plants/3.qb 50 - voxel/models/plants/4.qb 51 - ) 52 - -engine_add_module(TARGET ''${LIB} SRCS ''${SRCS} ''${SRCS_SHADERS} FILES ''${FILES} DEPENDENCIES frontend voxelrender) 53 - +engine_add_module(TARGET ''${LIB} SRCS ''${SRCS} ''${SRCS_SHADERS} FILES ''${FILES} DEPENDENCIES animation frontend voxelrender) 54 - generate_shaders(''${LIB} world water postprocess) 55 - 56 - set(TEST_SRCS 57 - '')]; 58 40 59 41 nativeBuildInputs = [ 60 42 cmake ··· 105 87 ''; 106 88 107 89 passthru.tests = { 108 - # There used to be a roundtrip test here, but it started failing on 0.0.17 109 - # Relevant upstream ticket: 110 - # https://github.com/mgerhardy/vengi/issues/113 90 + voxconvert-roundtrip = callPackage ./test-voxconvert-roundtrip.nix {}; 111 91 voxconvert-all-formats = callPackage ./test-voxconvert-all-formats.nix {}; 112 92 run-voxedit = nixosTests.vengi-tools; 113 93 };
+15
pkgs/applications/graphics/vengi-tools/test-voxconvert-roundtrip.nix
··· 1 + { stdenv 2 + , vengi-tools 3 + }: 4 + 5 + stdenv.mkDerivation { 6 + name = "vengi-tools-test-voxconvert-roundtrip"; 7 + meta.timeout = 10; 8 + buildCommand = '' 9 + ${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools}/share/vengi-voxedit/chr_knight.qb --output chr_knight.vox 10 + ${vengi-tools}/bin/vengi-voxconvert --input chr_knight.vox --output chr_knight.qb 11 + ${vengi-tools}/bin/vengi-voxconvert --input chr_knight.qb --output chr_knight1.vox 12 + diff chr_knight.vox chr_knight1.vox 13 + touch $out 14 + ''; 15 + }
+4 -3
pkgs/applications/graphics/xournalpp/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "xournalpp"; 26 - version = "1.1.0"; 26 + version = "1.1.1"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "xournalpp"; 30 30 repo = pname; 31 - rev = version; 32 - sha256 = "sha256-FIIpWgWvq1uo/lIQXpOkUTZ6YJPtOtxKF8VjXSgqrlE="; 31 + rev = "v${version}"; 32 + sha256 = "sha256-AzLkXGcTjtfBaPOZ/Tc+TwL63vm08G2tZw3pGzoo7po="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ]; ··· 55 55 meta = with lib; { 56 56 description = "Xournal++ is a handwriting Notetaking software with PDF annotation support"; 57 57 homepage = "https://xournalpp.github.io/"; 58 + changelog = "https://github.com/xournalpp/xournalpp/blob/v${version}/CHANGELOG.md"; 58 59 license = licenses.gpl2Plus; 59 60 maintainers = with maintainers; [ andrew-d sikmir ]; 60 61 platforms = platforms.linux;
+2 -2
pkgs/applications/networking/cluster/kn/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kn"; 5 - version = "1.1.0"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "knative"; 9 9 repo = "client"; 10 10 rev = "knative-v${version}"; 11 - sha256 = "sha256-lRQ4IXV+q1idoTyhppJGlzjuUuRykP8DtQ3t/CsxhNw="; 11 + sha256 = "sha256-yWzrMkkusRueHyWT4LwrflH4N7BNri2ycHIuAyvXceo="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/applications/networking/cluster/kubelogin/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubelogin"; 5 - version = "0.0.10"; 5 + version = "0.0.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Azure"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-YLYyU3k3I74ZuczFZBwcJoJSfCR4B9Z1EbFupA+xkiE="; 11 + sha256 = "sha256-+u+75Z2Efaq16g7kGNq1GHavXwtKvNO6dytniUr8mlE="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vJfTf9gD/qrsPAfJeMYLjGa90mYLOshgDehv2Fcl6xM=";
+23 -9
pkgs/applications/networking/cluster/talosctl/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 - 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 + let 3 + # look for GO_LDFLAGS getting set in the Makefile 4 + version = "0.14.2"; 5 + sha256 = "sha256-sQtry94T5cDO+836D/p/8ptQi3WYKDBLr1QZyEXdLQI="; 6 + vendorSha256 = "sha256-cd2iNMxWmkSWqqkPLYocUG+fCUXoeUXEuGQxjUWQnXk="; 7 + pkgsVersion = "0.9.0-4-gc875fbe"; 8 + extrasVersion = "0.7.0-2-gb4c9d21"; 9 + in 3 10 buildGoModule rec { 4 11 pname = "talosctl"; 5 - version = "0.14.1"; 12 + inherit version vendorSha256; 13 + # nixpkgs-update: no auto update 6 14 7 15 src = fetchFromGitHub { 8 16 owner = "talos-systems"; 9 17 repo = "talos"; 10 18 rev = "v${version}"; 11 - sha256 = "sha256-JeZ+Q6LTDJtoxfu4mJNc3wv3Y6OPcIUvgnozj9mWwLw="; 19 + inherit sha256; 12 20 }; 13 21 14 - vendorSha256 = "sha256-ujbEWvcNJJOUegVgAGEPwYF02TiqD1lZELvqc/Gmb4A="; 15 - 16 - # look for GO_LDFLAGS getting set in the Makefile 17 22 ldflags = 18 23 let 19 24 versionPkg = "github.com/talos-systems/talos/pkg/version"; # VERSION_PKG ··· 24 29 "-X ${versionPkg}.Name=Talos" 25 30 "-X ${versionPkg}.SHA=${src.rev}" # should be the hash, but as we build from tags, this needs to do 26 31 "-X ${versionPkg}.Tag=${src.rev}" 27 - "-X ${versionPkg}.PkgsVersion=v0.9.0-2-g447ce75" # PKGS 28 - "-X ${versionPkg}.ExtrasVersion=v0.7.0-1-gd6b73a7" # EXTRAS 32 + "-X ${versionPkg}.PkgsVersion=v${pkgsVersion}" # PKGS 33 + "-X ${versionPkg}.ExtrasVersion=v${extrasVersion}" # EXTRAS 29 34 "-X ${imagesPkgs}.Username=talos-systems" # USERNAME 30 35 "-X ${imagesPkgs}.Registry=ghcr.io" # REGISTRY 31 36 "-X ${mgmtHelpersPkg}.ArtifactsPath=_out" # ARTIFACTS 32 37 ]; 33 38 34 39 subPackages = [ "cmd/talosctl" ]; 40 + 41 + nativeBuildInputs = [ installShellFiles ]; 42 + 43 + postInstall = '' 44 + installShellCompletion --cmd talosctl \ 45 + --bash <($out/bin/talosctl completion bash) \ 46 + --fish <($out/bin/talosctl completion fish) \ 47 + --zsh <($out/bin/talosctl completion zsh) 48 + ''; 35 49 36 50 doCheck = false; 37 51
+3 -3
pkgs/applications/networking/hyprspace/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hyprspace"; 5 - version = "0.1.7"; 5 + version = "0.2.2"; 6 6 7 7 propagatedBuildInputs = lib.optional stdenv.isDarwin iproute2mac; 8 8 ··· 10 10 owner = pname; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-Ecdxs6see4uexY6DatZ/VSGgWR81zRjo3AeAsXSjJ4A="; 13 + sha256 = "sha256-UlIQCy4moW58tQ1dqxrPsU5LN1Bs/Jy5X+2CEmXdYIk="; 14 14 }; 15 15 16 - vendorSha256 = "sha256-nFiBHhtvTu9Ya6n1KUF+pOXrksHMOph7ABVtGSWVWlo="; 16 + vendorSha256 = "sha256-EV59sXmjunWs+MC++CwyuBlbWzWZI1YXDLEsOaESgRU="; 17 17 18 18 meta = with lib; { 19 19 description = "A Lightweight VPN Built on top of Libp2p for Truly Distributed Networks.";
+2 -2
pkgs/applications/networking/instant-messengers/psi-plus/default.nix
··· 43 43 44 44 mkDerivation rec { 45 45 pname = "psi-plus"; 46 - version = "1.5.1596"; 46 + version = "1.5.1600"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "psi-plus"; 50 50 repo = "psi-plus-snapshots"; 51 51 rev = version; 52 - sha256 = "sha256-8GnENdoFgFa+pDN8C+W5qoFxsCE7tl3dUHf5TBipo5g="; 52 + sha256 = "sha256-AZSxElEpYUYa92KdYxVyM+ppKHpXXwwlBFVOOKH/O7g="; 53 53 }; 54 54 55 55 cmakeFlags = [
+8 -8
pkgs/applications/networking/n8n/node-packages.nix
··· 7015 7015 sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; 7016 7016 }; 7017 7017 }; 7018 - "url-parse-1.5.5" = { 7018 + "url-parse-1.5.6" = { 7019 7019 name = "url-parse"; 7020 7020 packageName = "url-parse"; 7021 - version = "1.5.5"; 7021 + version = "1.5.6"; 7022 7022 src = fetchurl { 7023 - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.5.tgz"; 7024 - sha512 = "LYNZ15yZDI+HPHUji/yJpj+MnWvQuPZIOJ+gDtHM6gJq33bbmXLfgODIic6SE8tLLes5KWPjZnI3dWlPG6JiTg=="; 7023 + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.6.tgz"; 7024 + sha512 = "xj3QdUJ1DttD1LeSfvJlU1eiF1RvBSBfUu8GplFGdUzSO28y5yUtEl7wb//PI4Af6qh0o/K8545vUmucRrfWsw=="; 7025 7025 }; 7026 7026 }; 7027 7027 "utf7-1.0.2" = { ··· 7462 7462 n8n = nodeEnv.buildNodePackage { 7463 7463 name = "n8n"; 7464 7464 packageName = "n8n"; 7465 - version = "0.163.0"; 7465 + version = "0.163.1"; 7466 7466 src = fetchurl { 7467 - url = "https://registry.npmjs.org/n8n/-/n8n-0.163.0.tgz"; 7468 - sha512 = "7znPwaONZgCGJKfkjkHP/zTsPiSf7+Wun6TjQ9j/NmyMiPku99EiwDtH3lW5GFCcy+Doo4GUVMqXpEM8GOcNVw=="; 7467 + url = "https://registry.npmjs.org/n8n/-/n8n-0.163.1.tgz"; 7468 + sha512 = "lhup+qIy3cG0oWvBuOWi57Tn3F2k5NBD00KJ3ilKgnk4VsY+LmAca2xvyZNKvlRPa9i++3ukG6XioPTDuXylgw=="; 7469 7469 }; 7470 7470 dependencies = [ 7471 7471 (sources."@azure/abort-controller-1.0.5" // { ··· 8627 8627 sources."punycode-1.3.2" 8628 8628 ]; 8629 8629 }) 8630 - sources."url-parse-1.5.5" 8630 + sources."url-parse-1.5.6" 8631 8631 (sources."utf7-1.0.2" // { 8632 8632 dependencies = [ 8633 8633 sources."semver-5.3.0"
+2 -3
pkgs/applications/networking/wayback_machine_downloader/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 3 - source 'https://rubygems.org' do 4 - gem 'wayback_machine_downloader' 5 - end 3 + source 'https://rubygems.org' 4 + gem 'wayback_machine_downloader'
+3 -3
pkgs/applications/networking/wayback_machine_downloader/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - wayback_machine_downloader (2.2.1) 4 + wayback_machine_downloader (2.3.1) 5 5 6 6 PLATFORMS 7 7 ruby 8 8 9 9 DEPENDENCIES 10 - wayback_machine_downloader! 10 + wayback_machine_downloader 11 11 12 12 BUNDLED WITH 13 - 2.1.4 13 + 2.3.6
+2 -2
pkgs/applications/networking/wayback_machine_downloader/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "12kb1qmvmmsaihqab1prn6cmynkn6cgb4vf41mgv22wkcgv5wgk2"; 7 + sha256 = "170426sashqc2k2angg8d0bhs7spi1x1isv6cyk2hif0l6xxm3cm"; 8 8 type = "gem"; 9 9 }; 10 - version = "2.2.1"; 10 + version = "2.3.1"; 11 11 }; 12 12 }
+2 -2
pkgs/applications/radio/welle-io/default.nix
··· 5 5 6 6 mkDerivation rec { 7 7 pname = "welle-io"; 8 - version = "2.3"; 8 + version = "2.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AlbrechtL"; 12 12 repo = "welle.io"; 13 13 rev = "v${version}"; 14 - sha256 = "1xl1lanw0xgmgks67dbfb2h52jxnrd1i2zik56v0q8dwsr7f0daw"; 14 + sha256 = "sha256-xXiCL/A2SwCSr5SA4AQQEdieRzBksXx9Z78bHtlFiW4="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ cmake pkg-config ];
+52
pkgs/applications/science/math/sage/patches/no-cython-sources-in-tracebacks-on-ipython8.patch
··· 1 + diff --git a/src/sage/repl/interface_magic.py b/src/sage/repl/interface_magic.py 2 + index 8a455b69b0..a93e1c9e04 100644 3 + --- a/src/sage/repl/interface_magic.py 4 + +++ b/src/sage/repl/interface_magic.py 5 + @@ -260,7 +260,7 @@ class InterfaceMagic(object): 6 + 2 7 + 120 8 + sage: shell.run_cell('%%gap foo\n1+1;\n') 9 + - ...File "<string>", line unknown 10 + + ...File...<string>... 11 + SyntaxError: Interface magics have no options, got "foo" 12 + <BLANKLINE> 13 + sage: shell.run_cell('%%gap?') 14 + diff --git a/src/sage/repl/interpreter.py b/src/sage/repl/interpreter.py 15 + index 71dbe429fd..36b1d986d6 100644 16 + --- a/src/sage/repl/interpreter.py 17 + +++ b/src/sage/repl/interpreter.py 18 + @@ -70,25 +70,6 @@ that shell. The bulk of this functionality is provided through 19 + 20 + TESTS: 21 + 22 + -Check that Cython source code appears in tracebacks:: 23 + - 24 + - sage: from sage.repl.interpreter import get_test_shell 25 + - sage: shell = get_test_shell() 26 + - sage: print("dummy line"); shell.run_cell('1/0') # see #25320 for the reason of the `...` and the dummy line in this test 27 + - dummy line 28 + - ... 29 + - ZeroDivisionError...Traceback (most recent call last) 30 + - <ipython-input-...> in <module>... 31 + - ----> 1 Integer(1)/Integer(0) 32 + - .../sage/rings/integer.pyx in sage.rings.integer.Integer...div... 33 + - ... 34 + - -> ... raise ZeroDivisionError("rational division by zero") 35 + - ....: x = <Rational> Rational.__new__(Rational) 36 + - ....: mpq_div_zz(x.value, ....value, (<Integer>right).value) 37 + - <BLANKLINE> 38 + - ZeroDivisionError: rational division by zero 39 + - sage: shell.quit() 40 + - 41 + Test prompt transformer:: 42 + 43 + sage: from sage.repl.interpreter import SagePromptTransformer 44 + @@ -423,7 +404,7 @@ def SagePreparseTransformer(lines): 45 + sage: from sage.repl.interpreter import get_test_shell 46 + sage: shell = get_test_shell() 47 + sage: shell.run_cell(bad_syntax) 48 + - File "<string>", line unknown 49 + + File...<string>... 50 + SyntaxError: Mismatched ']' 51 + <BLANKLINE> 52 + sage: shell.quit()
+10
pkgs/applications/science/math/sage/sage-src.nix
··· 119 119 # https://trac.sagemath.org/ticket/32959 120 120 ./patches/linbox-1.7-upgrade.patch 121 121 122 + # To emit better tracebacks, IPython 8 parses Python files using the ast 123 + # module (via the stack_data package). Since Cython is a superset of Python, 124 + # this results in no Cython code being printed in tracebacks. Fixing this 125 + # properly is tracked in https://github.com/alexmojaki/stack_data/issues/21, 126 + # but for now we just disable the corresponding test. An alternative would 127 + # be to revert IPython's IPython/core/ultratb.py, but this would need to be 128 + # Sage-specific (since it would worsen tracebacks for pure Python code). 129 + # Sage tracks this at https://trac.sagemath.org/ticket/33170 130 + ./patches/no-cython-sources-in-tracebacks-on-ipython8.patch 131 + 122 132 # https://trac.sagemath.org/ticket/32968 123 133 (fetchSageDiff { 124 134 base = "9.5";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "72a59574747346b3f9aa2cd91cb7469d4e168b53", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/72a59574747346b3f9aa2cd91cb7469d4e168b53.tar.gz", 4 - "sha256": "0nspncjgh8lgr15zx8ss3fp289jl7gg21wchj0k821y3cz057ry3", 5 - "msg": "Update from Hackage at 2022-01-31T19:23:21Z" 2 + "commit": "a4422bb744c0b60e56ccbdd350df5c205caf0b20", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/a4422bb744c0b60e56ccbdd350df5c205caf0b20.tar.gz", 4 + "sha256": "1ih77xavy81mjhf8d3nknbgvhpql14nbak01pddh7y195wv1dknd", 5 + "msg": "Update from Hackage at 2022-02-06T15:34:38Z" 6 6 }
+6 -1
pkgs/development/haskell-modules/configuration-common.nix
··· 63 63 # works fine there. 64 64 fakedata = dontCheck super.fakedata; 65 65 66 + # The latest release on hackage has an upper bound on containers which 67 + # breaks the build, though it works with the version of containers present 68 + # and the upper bound doesn't exist in code anymore: 69 + # > https://github.com/roelvandijk/numerals 70 + numerals = doJailbreak (dontCheck super.numerals); 71 + 66 72 # This test keeps being aborted because it runs too quietly for too long 67 73 Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2; 68 74 ··· 307 313 network-dbus = dontCheck super.network-dbus; 308 314 notcpp = dontCheck super.notcpp; 309 315 ntp-control = dontCheck super.ntp-control; 310 - numerals = dontCheck super.numerals; 311 316 odpic-raw = dontCheck super.odpic-raw; # needs a running oracle database server 312 317 opaleye = dontCheck super.opaleye; 313 318 openpgp = dontCheck super.openpgp;
-4
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 87 87 generic-lens_2_2_1_0 = dontCheck super.generic-lens_2_2_1_0; 88 88 89 89 # Apply patches from head.hackage. 90 - alex = appendPatch (pkgs.fetchpatch { 91 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/fe192e12b88b09499d4aff0e562713e820544bd6/patches/alex-3.2.6.patch"; 92 - sha256 = "1rzs764a0nhx002v4fadbys98s6qblw4kx4g46galzjf5f7n2dn4"; 93 - }) (dontCheck super.alex); 94 90 doctest = dontCheck (doJailbreak super.doctest_0_18_2); 95 91 language-haskell-extract = appendPatch (pkgs.fetchpatch { 96 92 url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch";
+1 -1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1088 1088 - DigitalOcean 1089 1089 - digitalocean-kzs 1090 1090 - digits 1091 + - dijkstra-simple 1091 1092 - DimensionalHash 1092 1093 - dimensional-tf 1093 1094 - diophantine ··· 3437 3438 - numbered-semigroups 3438 3439 - NumberSieves 3439 3440 - NumberTheory 3440 - - numerals 3441 3441 - numerals-base 3442 3442 - numeric-qq 3443 3443 - numeric-ranges
+4 -1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 168 168 - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2 169 169 - ormolu == 0.3.* # 2021-12-03: for HLS with GHC 9.0.2 170 170 - fourmolu == 0.4.* # 2022-02-05: for HLS with GHC 9.0.2 171 + - ghc-exactprint == 1.4.* # 2022-02-07: preserve for now, 1.5.0 has a breaking change without type changes 171 172 172 173 package-maintainers: 173 174 abbradar: ··· 602 603 - dialog 603 604 - ghcjs-dom-webkit 604 605 - gi-webkit 605 - - hs-mesos 606 606 - hsqml 607 607 - hsqml-datamodel 608 608 - hsqml-demo-manic ··· 625 625 626 626 # glade relies on system libglade which is deprecated 627 627 - glade 628 + 629 + # mesos was removed from nixpkgs 630 + - hs-mesos
+25 -25
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 18.23 1 + # Stackage LTS 18.24 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 38 38 - al ==0.1.4.2 39 39 - alarmclock ==0.7.0.5 40 40 - alerts ==0.1.2.0 41 - - alex ==3.2.6 41 + - alex ==3.2.7.1 42 42 - alex-meta ==0.3.0.13 43 43 - alg ==0.2.13.1 44 44 - algebraic-graphs ==0.5 ··· 139 139 - amazonka-waf ==1.6.1 140 140 - amazonka-workspaces ==1.6.1 141 141 - amazonka-xray ==1.6.1 142 - - amqp ==0.22.0 142 + - amqp ==0.22.1 143 143 - amqp-utils ==0.6.3.2 144 144 - annotated-wl-pprint ==0.7.0 145 145 - ansi-terminal ==0.11.1 ··· 195 195 - audacity ==0.0.2 196 196 - aur ==7.0.7 197 197 - aura ==3.2.5 198 - - authenticate ==1.3.5 198 + - authenticate ==1.3.5.1 199 199 - authenticate-oauth ==1.6.0.1 200 200 - autoexporter ==1.1.20 201 201 - auto-update ==0.1.6 ··· 398 398 - circle-packing ==0.1.0.6 399 399 - circular ==0.4.0.1 400 400 - citeproc ==0.4.0.1 401 - - clash-ghc ==1.4.6 402 - - clash-lib ==1.4.6 403 - - clash-prelude ==1.4.6 401 + - clash-ghc ==1.4.7 402 + - clash-lib ==1.4.7 403 + - clash-prelude ==1.4.7 404 404 - classy-prelude ==1.5.0.2 405 405 - classy-prelude-conduit ==1.5.0 406 406 - clay ==0.13.3 ··· 468 468 - connection-pool ==0.2.2 469 469 - console-style ==0.0.2.1 470 470 - constraint ==0.1.4.0 471 - - constraints ==0.13.2 471 + - constraints ==0.13.3 472 472 - constraints-extras ==0.3.2.1 473 473 - constraint-tuples ==0.1.2 474 474 - construct ==0.3.0.2 ··· 493 493 - crackNum ==3.1 494 494 - crc32c ==0.0.0 495 495 - credential-store ==0.1.2 496 - - criterion ==1.5.12.0 496 + - criterion ==1.5.13.0 497 497 - criterion-measurement ==0.1.3.0 498 498 - cron ==0.7.0 499 499 - crypto-api ==0.13.3 ··· 769 769 - filtrable ==0.1.4.0 770 770 - fin ==0.2 771 771 - FindBin ==0.0.5 772 - - fingertree ==0.1.4.2 772 + - fingertree ==0.1.5.0 773 773 - finite-typelits ==0.1.4.2 774 774 - first-class-families ==0.8.0.1 775 775 - first-class-patterns ==0.3.2.5 ··· 899 899 - ghc-parser ==0.2.3.0 900 900 - ghc-paths ==0.1.0.12 901 901 - ghc-prof ==1.4.1.9 902 - - ghc-source-gen ==0.4.2.0 902 + - ghc-source-gen ==0.4.3.0 903 903 - ghc-syntax-highlighter ==0.0.6.0 904 904 - ghc-tcplugins-extra ==0.4.2 905 905 - ghc-trace-events ==0.1.2.4 ··· 1025 1025 - hebrew-time ==0.1.2 1026 1026 - hedgehog ==1.0.5 1027 1027 - hedgehog-corpus ==0.2.0 1028 - - hedgehog-fakedata ==0.0.1.4 1028 + - hedgehog-fakedata ==0.0.1.5 1029 1029 - hedgehog-fn ==1.0 1030 1030 - hedgehog-quickcheck ==0.1.1 1031 1031 - hedis ==0.14.4 ··· 1558 1558 - monad-unlift ==0.2.0 1559 1559 - monad-unlift-ref ==0.2.1 1560 1560 - mongoDB ==2.7.1.1 1561 - - monoid-subclasses ==1.1.2 1561 + - monoid-subclasses ==1.1.3 1562 1562 - monoid-transformer ==0.0.4 1563 1563 - mono-traversable ==1.0.15.3 1564 1564 - mono-traversable-instances ==0.1.1.0 ··· 1581 1581 - multimap ==1.2.1 1582 1582 - multipart ==0.2.1 1583 1583 - multiset ==0.3.4.3 1584 - - multistate ==0.8.0.3 1584 + - multistate ==0.8.0.4 1585 1585 - murmur3 ==1.0.5 1586 1586 - murmur-hash ==0.1.0.10 1587 1587 - MusicBrainz ==0.4.1 ··· 1619 1619 - network-bsd ==2.8.1.0 1620 1620 - network-byte-order ==0.1.6 1621 1621 - network-conduit-tls ==1.3.2 1622 - - network-info ==0.2.0.10 1622 + - network-info ==0.2.1 1623 1623 - network-ip ==0.3.0.3 1624 1624 - network-messagepack-rpc ==0.1.2.0 1625 1625 - network-messagepack-rpc-websocket ==0.1.1.1 ··· 1763 1763 - persist ==0.1.1.5 1764 1764 - persistable-record ==0.6.0.5 1765 1765 - persistable-types-HDBC-pg ==0.0.3.5 1766 - - persistent ==2.13.2.2 1766 + - persistent ==2.13.3.0 1767 1767 - persistent-mtl ==0.2.2.0 1768 - - persistent-mysql ==2.13.0.2 1768 + - persistent-mysql ==2.13.1.0 1769 1769 - persistent-pagination ==0.1.1.2 1770 - - persistent-postgresql ==2.13.2.2 1770 + - persistent-postgresql ==2.13.4.0 1771 1771 - persistent-qq ==2.12.0.2 1772 - - persistent-sqlite ==2.13.0.4 1772 + - persistent-sqlite ==2.13.1.0 1773 1773 - persistent-template ==2.12.0.0 1774 - - persistent-test ==2.13.0.4 1774 + - persistent-test ==2.13.1.0 1775 1775 - persistent-typed-db ==0.1.0.5 1776 1776 - pg-harness-client ==0.6.0 1777 1777 - pgp-wordlist ==0.1.0.3 ··· 1948 1948 - readable ==0.3.1 1949 1949 - read-editor ==0.1.0.2 1950 1950 - read-env-var ==1.0.0.0 1951 - - reanimate ==1.1.4.0 1951 + - reanimate ==1.1.5.0 1952 1952 - reanimate-svg ==0.13.0.1 1953 1953 - rebase ==1.13.2 1954 1954 - record-dot-preprocessor ==0.2.13 ··· 2270 2270 - string-conversions ==0.4.0.1 2271 2271 - string-interpolate ==0.3.1.1 2272 2272 - string-qq ==0.0.4 2273 - - string-random ==0.1.4.1 2273 + - string-random ==0.1.4.2 2274 2274 - stringsearch ==0.3.6.6 2275 2275 - string-transform ==1.1.1 2276 2276 - stripe-concepts ==1.0.3.1 ··· 2490 2490 - type-operators ==0.2.0.0 2491 2491 - typerep-map ==0.3.3.0 2492 2492 - type-spec ==0.4.0.0 2493 - - tzdata ==0.2.20201021.0 2493 + - tzdata ==0.2.20211021.0 2494 2494 - ua-parser ==0.7.6.0 2495 2495 - uglymemo ==0.1.0.1 2496 2496 - unagi-chan ==0.4.1.4 ··· 2529 2529 - unix-bytestring ==0.3.7.6 2530 2530 - unix-compat ==0.5.4 2531 2531 - unix-time ==0.4.7 2532 - - unliftio ==0.2.20 2532 + - unliftio ==0.2.20.1 2533 2533 - unliftio-core ==0.2.0.1 2534 2534 - unliftio-pool ==0.2.1.1 2535 2535 - unliftio-streams ==0.1.1.1 ··· 2574 2574 - vector-buffer ==0.4.1 2575 2575 - vector-builder ==0.3.8.3 2576 2576 - vector-bytes-instances ==0.1.1 2577 - - vector-circular ==0.1.3 2577 + - vector-circular ==0.1.4 2578 2578 - vector-instances ==3.4 2579 2579 - vector-mmap ==0.0.3 2580 2580 - vector-rotcev ==0.1.0.1
+10 -3
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 525 525 - base64-bytes 526 526 - baserock-schema 527 527 - batchd 528 + - batchd-core 529 + - batchd-docker 530 + - batchd-libvirt 528 531 - batching 529 532 - battlenet-yesod 530 533 - battleships ··· 725 728 - claferwiki 726 729 - clash 727 730 - clash-ghc 728 - - clash-ghc_1_4_7 729 731 - clash-lib 730 - - clash-lib_1_4_7 731 732 - clash-multisignal 732 733 - clash-prelude-quickcheck 733 734 - clash-shake ··· 786 787 - comic 787 788 - commsec-keyexchange 788 789 - comonad-random 790 + - compaREST 789 791 - compact-mutable 790 792 - complexity 791 793 - computational-algebra ··· 1485 1487 - hasql-cursor-query 1486 1488 - hasql-postgres 1487 1489 - hasql-postgres-options 1490 + - hasql-streams-conduit 1491 + - hasql-streams-core 1492 + - hasql-streams-example 1493 + - hasql-streams-pipes 1494 + - hasql-streams-streaming 1495 + - hasql-streams-streamly 1488 1496 - hasql-th 1489 1497 - hastache-aeson 1490 1498 - haste-app ··· 2546 2554 - reactor 2547 2555 - readpyc 2548 2556 - reanimate 2549 - - reanimate_1_1_5_0 2550 2557 - record-aeson 2551 2558 - record-gl 2552 2559 - record-preprocessor
+7 -6
pkgs/development/haskell-modules/configuration-nix.nix
··· 706 706 } super.nix-output-monitor; 707 707 708 708 haskell-language-server = overrideCabal (drv: { 709 + # starting with 1.6.1.1 haskell-language-server wants to be linked dynamically 710 + # by default. Unless we reflect this in the generic builder, GHC is going to 711 + # produce some illegal references to /build/. 712 + enableSharedExecutables = true; 709 713 postInstall = "ln -s $out/bin/haskell-language-server $out/bin/haskell-language-server-${self.ghc.version}"; 710 714 testToolDepends = [ self.cabal-install pkgs.git ]; 711 715 testTarget = "func-test"; # wrapper test accesses internet ··· 730 734 731 735 # based on https://github.com/gibiansky/IHaskell/blob/aafeabef786154d81ab7d9d1882bbcd06fc8c6c4/release.nix 732 736 ihaskell = overrideCabal (drv: { 733 - configureFlags = (drv.configureFlags or []) ++ [ 734 - # ihaskell's cabal file forces building a shared executable, 735 - # but without passing --enable-executable-dynamic, the RPATH 736 - # contains /build/ and leads to a build failure with nix 737 - "--enable-executable-dynamic" 738 - ]; 737 + # ihaskell's cabal file forces building a shared executable, which we need 738 + # to reflect here or RPATH will contain a reference to /build/. 739 + enableSharedExecutables = true; 739 740 preCheck = '' 740 741 export HOME=$TMPDIR/home 741 742 export PATH=$PWD/dist/build/ihaskell:$PATH
+1451 -919
pkgs/development/haskell-modules/hackage-packages.nix
··· 811 811 pname = "Agda"; 812 812 version = "2.6.2.1"; 813 813 sha256 = "03dw7jfqr3ffik6avigm525djqh2gn5c3qwnb2h6298zkr9lch9w"; 814 - revision = "2"; 815 - editedCabalFile = "1n037ql18gayqmdiaf592c4iw9cmwyjz12vvj6wbxrbcwylhc6ji"; 814 + revision = "4"; 815 + editedCabalFile = "0spsj8nk28lfvsv6063d1nif5hag8yal47iwicm7yln0626xsxcd"; 816 816 isLibrary = true; 817 817 isExecutable = true; 818 818 enableSeparateDataOutput = true; ··· 9760 9760 license = lib.licenses.bsd3; 9761 9761 }) {}; 9762 9762 9763 + "HaTeX_3_22_3_1" = callPackage 9764 + ({ mkDerivation, base, bibtex, bytestring, containers, hashable 9765 + , matrix, parsec, prettyprinter, QuickCheck, tasty 9766 + , tasty-quickcheck, text, transformers 9767 + }: 9768 + mkDerivation { 9769 + pname = "HaTeX"; 9770 + version = "3.22.3.1"; 9771 + sha256 = "0vgyixd8j3nzpy8s04cy3q7gj2gfblba2z0ppr58rdm8qgj16j5c"; 9772 + libraryHaskellDepends = [ 9773 + base bibtex bytestring containers hashable matrix parsec 9774 + prettyprinter QuickCheck text transformers 9775 + ]; 9776 + testHaskellDepends = [ 9777 + base parsec QuickCheck tasty tasty-quickcheck text 9778 + ]; 9779 + description = "The Haskell LaTeX library"; 9780 + license = lib.licenses.bsd3; 9781 + hydraPlatforms = lib.platforms.none; 9782 + }) {}; 9783 + 9763 9784 "HaTeX-meta" = callPackage 9764 9785 ({ mkDerivation, base, Cabal, containers, directory, filepath, ghc 9765 9786 , haddock, haskell-src-exts, mtl, parsec ··· 11806 11827 pname = "JuicyPixels-blurhash"; 11807 11828 version = "0.1.0.3"; 11808 11829 sha256 = "0kgl2j7990p8q5yrkn0wgaszc9fzva1pc3277j11k1lbjsymz360"; 11809 - revision = "6"; 11810 - editedCabalFile = "13zdfmj6p6awpy74h09czpcjs0y642aawqb7y87vsz6pfm6zqwjz"; 11830 + revision = "7"; 11831 + editedCabalFile = "0w6svmml3m1bfkycakkd8sib74nixwkr16z334w9v1cs8fjzfwjk"; 11811 11832 isLibrary = true; 11812 11833 isExecutable = true; 11813 11834 libraryHaskellDepends = [ ··· 14335 14356 }: 14336 14357 mkDerivation { 14337 14358 pname = "NanoID"; 14338 - version = "3.1.1"; 14339 - sha256 = "10zjp9675nxa7nx7qhr5cxw43fy06s5ggb39idlr87b90vm8wkw8"; 14359 + version = "3.2.0"; 14360 + sha256 = "16h4mhr16b2fkf37vpsalnzjmg06sghb86gh1n1w3z64dvad0849"; 14340 14361 isLibrary = true; 14341 14362 isExecutable = true; 14342 14363 libraryHaskellDepends = [ ··· 21025 21046 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 21026 21047 mkDerivation { 21027 21048 pname = "VulkanMemoryAllocator"; 21028 - version = "0.8"; 21029 - sha256 = "1cxgf1ly0hqlyn01jd7ipdvvw1mm5r4ifc7694a3dr2wv2pnq5c0"; 21049 + version = "0.9"; 21050 + sha256 = "1avq9njgqbvmqn5277q66bqq01jj6syyrnw82qy4477r5yln2wh2"; 21030 21051 libraryHaskellDepends = [ 21031 21052 base bytestring transformers vector vulkan 21032 21053 ]; ··· 26431 26452 }: 26432 26453 mkDerivation { 26433 26454 pname = "alex"; 26434 - version = "3.2.6"; 26435 - sha256 = "042lrkn0dbpjn5ivj6j26jzb1fwrj8c1aj18ykxja89isg0hiali"; 26436 - isLibrary = false; 26437 - isExecutable = true; 26438 - enableSeparateDataOutput = true; 26439 - executableHaskellDepends = [ array base containers directory ]; 26440 - executableToolDepends = [ happy ]; 26441 - testHaskellDepends = [ base process ]; 26442 - description = "Alex is a tool for generating lexical analysers in Haskell"; 26443 - license = lib.licenses.bsd3; 26444 - }) {}; 26445 - 26446 - "alex_3_2_7_1" = callPackage 26447 - ({ mkDerivation, array, base, containers, directory, happy, process 26448 - }: 26449 - mkDerivation { 26450 - pname = "alex"; 26451 26455 version = "3.2.7.1"; 26452 26456 sha256 = "1v0vm1l4xvybzwj1p6j5j58yiw5nhbnx7yxjnpyjy6wggsig3llv"; 26453 26457 isLibrary = false; ··· 26458 26462 testHaskellDepends = [ base process ]; 26459 26463 description = "Alex is a tool for generating lexical analysers in Haskell"; 26460 26464 license = lib.licenses.bsd3; 26461 - hydraPlatforms = lib.platforms.none; 26462 26465 }) {}; 26463 26466 26464 26467 "alex-meta" = callPackage ··· 26978 26981 pname = "align-audio"; 26979 26982 version = "0.0"; 26980 26983 sha256 = "0sa7q5fzkc0z4vzibs5l21pvrkil0swdpbl27qn30vb6giy3yh7a"; 26984 + revision = "1"; 26985 + editedCabalFile = "1599vbnfalrnq0zgwmh47k62y9yq30agpjyyfwdzxzszhc0vfq6n"; 26981 26986 isLibrary = false; 26982 26987 isExecutable = true; 26983 26988 executableHaskellDepends = [ ··· 30098 30103 }: 30099 30104 mkDerivation { 30100 30105 pname = "amqp"; 30101 - version = "0.22.0"; 30102 - sha256 = "1yr81pwmjnap5bir9nrmpwakg4rz4fwcjzbkdr8azqbp9x0hr9k2"; 30103 - isLibrary = true; 30104 - isExecutable = true; 30105 - libraryHaskellDepends = [ 30106 - base binary bytestring clock connection containers 30107 - data-binary-ieee754 monad-control network network-uri split stm 30108 - text vector 30109 - ]; 30110 - executableHaskellDepends = [ base containers xml ]; 30111 - testHaskellDepends = [ 30112 - base binary bytestring clock connection containers 30113 - data-binary-ieee754 hspec hspec-expectations network network-uri 30114 - split stm text vector 30115 - ]; 30116 - description = "Client library for AMQP servers (currently only RabbitMQ)"; 30117 - license = lib.licenses.bsd3; 30118 - }) {}; 30119 - 30120 - "amqp_0_22_1" = callPackage 30121 - ({ mkDerivation, base, binary, bytestring, clock, connection 30122 - , containers, data-binary-ieee754, hspec, hspec-expectations 30123 - , monad-control, network, network-uri, split, stm, text, vector 30124 - , xml 30125 - }: 30126 - mkDerivation { 30127 - pname = "amqp"; 30128 30106 version = "0.22.1"; 30129 30107 sha256 = "0z1w35ar0bswbjzgana52nh4ilxbidnfkvli29w2zr7cak9dgzg1"; 30130 30108 isLibrary = true; ··· 30142 30120 ]; 30143 30121 description = "Client library for AMQP servers (currently only RabbitMQ)"; 30144 30122 license = lib.licenses.bsd3; 30145 - hydraPlatforms = lib.platforms.none; 30146 30123 }) {}; 30147 30124 30148 30125 "amqp-conduit" = callPackage ··· 32806 32783 }: 32807 32784 mkDerivation { 32808 32785 pname = "arch-hs"; 32809 - version = "0.9.1.0"; 32810 - sha256 = "0k9xi2k4ifrnnh6p80pf1xhf45cbhrs1zdwy0ayp08p0ajdlh74b"; 32786 + version = "0.10.0.0"; 32787 + sha256 = "1qpd1a5jv4g4chbc5rqbf067zgcxb222qx7gpj37i83sp2rys68m"; 32811 32788 isLibrary = true; 32812 32789 isExecutable = true; 32813 32790 libraryHaskellDepends = [ ··· 33028 33005 }: 33029 33006 mkDerivation { 33030 33007 pname = "arduino-copilot"; 33031 - version = "1.5.6"; 33032 - sha256 = "06aqavds6lh4iazrlz62dhdxim0q8xqdgafj7y3f8nnmv8w37g41"; 33008 + version = "1.5.7"; 33009 + sha256 = "06qhad2v4qc5izza3j7wnfafzsidz232qqlq1iy3l8sbmdc8kw37"; 33033 33010 libraryHaskellDepends = [ 33034 33011 base containers copilot copilot-c99 copilot-language directory 33035 33012 filepath mtl optparse-applicative temporary ··· 33105 33082 }: 33106 33083 mkDerivation { 33107 33084 pname = "argo"; 33108 - version = "0.2022.1.15"; 33109 - sha256 = "0wqsrmisbgalf8p0f1zs1jfpf5iws0zb98r1krgg2adghbllg770"; 33085 + version = "0.2022.2.2"; 33086 + sha256 = "133k1jqx737y8bj92w7afvs5hxh28gcv6yyf7mdwlnvq1xphy7pa"; 33110 33087 isLibrary = true; 33111 33088 isExecutable = true; 33112 33089 libraryHaskellDepends = [ ··· 33122 33099 tasty-quickcheck template-haskell text transformers 33123 33100 ]; 33124 33101 benchmarkHaskellDepends = [ 33125 - base bytestring containers deepseq tasty-bench template-haskell 33126 - text transformers 33102 + base bytestring containers deepseq tasty tasty-bench 33103 + template-haskell text transformers 33127 33104 ]; 33128 33105 description = "Parse and render JSON"; 33129 33106 license = lib.licenses.mit; ··· 36023 36000 license = lib.licenses.bsd3; 36024 36001 }) {}; 36025 36002 36003 + "audacity_0_0_2_1" = callPackage 36004 + ({ mkDerivation, base, bytestring, deepseq, directory 36005 + , explicit-exception, filepath, non-empty, semigroups 36006 + , storable-record, storablevector, tagchup, transformers 36007 + , utility-ht, xml-basic 36008 + }: 36009 + mkDerivation { 36010 + pname = "audacity"; 36011 + version = "0.0.2.1"; 36012 + sha256 = "04r36gy8z0d2fz1l5px6yajp7izf3zpda9vci6q0wc273pxc8ck6"; 36013 + isLibrary = true; 36014 + isExecutable = true; 36015 + libraryHaskellDepends = [ 36016 + base bytestring deepseq directory explicit-exception filepath 36017 + non-empty semigroups storable-record storablevector tagchup 36018 + transformers utility-ht xml-basic 36019 + ]; 36020 + description = "Interchange with the Audacity sound signal editor"; 36021 + license = lib.licenses.bsd3; 36022 + hydraPlatforms = lib.platforms.none; 36023 + }) {}; 36024 + 36026 36025 "audiovisual" = callPackage 36027 36026 ({ mkDerivation, base, boundingboxes, colors, deepseq, directory 36028 36027 , filepath, free, freetype2, hashable, JuicyPixels ··· 36172 36171 pname = "aura"; 36173 36172 version = "3.2.7"; 36174 36173 sha256 = "07ya2vd94grh6fs7k5kq25yh95xfk5mdqcgqq84anjz0phprq5z3"; 36174 + revision = "1"; 36175 + editedCabalFile = "16z28nkj5ladbbrg2h5sc1qcl3335g3i37x02h0by8bpqbkld6xr"; 36175 36176 isLibrary = true; 36176 36177 isExecutable = true; 36177 36178 libraryHaskellDepends = [ ··· 36203 36204 }: 36204 36205 mkDerivation { 36205 36206 pname = "authenticate"; 36206 - version = "1.3.5"; 36207 - sha256 = "10df40ycd4r45p58xzdh0vcsa401909fa99nkgd18fx5alqh84sz"; 36208 - revision = "1"; 36209 - editedCabalFile = "0lmb1m5d1l2scnm2fqxfk348m8xqbc7f7kvk7zvpsvcdcpxinafz"; 36210 - libraryHaskellDepends = [ 36211 - aeson attoparsec base blaze-builder bytestring case-insensitive 36212 - conduit containers html-conduit http-conduit http-types network-uri 36213 - resourcet text transformers unordered-containers xml-conduit 36214 - ]; 36215 - description = "Authentication methods for Haskell web applications"; 36216 - license = lib.licenses.mit; 36217 - }) {}; 36218 - 36219 - "authenticate_1_3_5_1" = callPackage 36220 - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 36221 - , case-insensitive, conduit, containers, html-conduit, http-conduit 36222 - , http-types, network-uri, resourcet, text, transformers 36223 - , unordered-containers, xml-conduit 36224 - }: 36225 - mkDerivation { 36226 - pname = "authenticate"; 36227 36207 version = "1.3.5.1"; 36228 36208 sha256 = "1rhbvdgwdr68gp13p5piddfdqf3l9lmx4w7k249lc98y23780c3x"; 36229 36209 libraryHaskellDepends = [ ··· 36233 36213 ]; 36234 36214 description = "Authentication methods for Haskell web applications"; 36235 36215 license = lib.licenses.mit; 36236 - hydraPlatforms = lib.platforms.none; 36237 36216 }) {}; 36238 36217 36239 36218 "authenticate-kerberos" = callPackage ··· 37165 37144 pname = "aws-cloudfront-signed-cookies"; 37166 37145 version = "0.2.0.10"; 37167 37146 sha256 = "1mzsg6wfzgiippl8kw54m16i1m7zxwfqfwx3wbb3m372pg4h9sza"; 37147 + revision = "3"; 37148 + editedCabalFile = "0yswkjkx4xhmy11k3zcgcrmwr19dcaxw15vbl52nqsrhamw60fh3"; 37168 37149 isLibrary = true; 37169 37150 isExecutable = true; 37170 37151 libraryHaskellDepends = [ ··· 39721 39702 }) {}; 39722 39703 39723 39704 "batchd" = callPackage 39724 - ({ mkDerivation, aeson, base, bytestring, connection, containers 39725 - , cryptonite, data-default, dates, directory, esqueleto, filepath 39726 - , Glob, http-client, http-client-tls, http-types, libssh2 39727 - , monad-logger, monad-logger-syslog, mtl, optparse-applicative 39728 - , parsec, persistent, persistent-postgresql, persistent-sqlite 39729 - , persistent-template, process, readline, resourcet, scotty, syb 39730 - , template, template-haskell, text, th-lift, time, tls 39731 - , transformers, unix, unordered-containers, vault, wai, wai-cors 39732 - , wai-extra, wai-middleware-static, warp, x509-store, yaml 39705 + ({ mkDerivation, aeson, base, batchd-core, boxes, bytestring 39706 + , conduit, conduit-combinators, conduit-extra, connection 39707 + , containers, cryptonite, data-default, dates, directory, ekg-core 39708 + , ekg-json, esqueleto, exceptions, fast-logger, filepath, Glob 39709 + , haskeline, heavy-logger, heavy-logger-instances, hsyslog 39710 + , http-client, http-client-tls, http-types, libssh2 39711 + , libssh2-conduit, localize, microlens, monad-metrics, mtl 39712 + , optparse-applicative, parsec, persistent, persistent-postgresql 39713 + , persistent-sqlite, persistent-template, process, resourcet 39714 + , scotty, syb, text, text-format-heavy, th-lift, time, tls, unix 39715 + , unliftio-core, unordered-containers, vault, vector, wai, wai-cors 39716 + , wai-extra, wai-middleware-metrics, wai-middleware-static, warp 39717 + , x509-store, yaml 39733 39718 }: 39734 39719 mkDerivation { 39735 39720 pname = "batchd"; 39736 - version = "0.1.0.0"; 39737 - sha256 = "1axj4w0g34fgnn89l6f2zxbx172z6yq98clksp2bqxmnswza7di2"; 39721 + version = "0.1.1.0"; 39722 + sha256 = "19ka8xgrnyg4pkrgl8qp9l74y7qizj9r370hlwldcj19gidp9lhb"; 39738 39723 isLibrary = false; 39739 39724 isExecutable = true; 39740 39725 executableHaskellDepends = [ 39741 - aeson base bytestring connection containers cryptonite data-default 39742 - dates directory esqueleto filepath Glob http-client http-client-tls 39743 - http-types libssh2 monad-logger monad-logger-syslog mtl 39744 - optparse-applicative parsec persistent persistent-postgresql 39745 - persistent-sqlite persistent-template process readline resourcet 39746 - scotty syb template template-haskell text th-lift time tls 39747 - transformers unix unordered-containers vault wai wai-cors wai-extra 39748 - wai-middleware-static warp x509-store yaml 39726 + aeson base batchd-core boxes bytestring conduit conduit-combinators 39727 + conduit-extra connection containers cryptonite data-default dates 39728 + directory ekg-core ekg-json esqueleto exceptions fast-logger 39729 + filepath Glob haskeline heavy-logger heavy-logger-instances hsyslog 39730 + http-client http-client-tls http-types libssh2 libssh2-conduit 39731 + localize microlens monad-metrics mtl optparse-applicative parsec 39732 + persistent persistent-postgresql persistent-sqlite 39733 + persistent-template process resourcet scotty syb text 39734 + text-format-heavy th-lift time tls unix unliftio-core 39735 + unordered-containers vault vector wai wai-cors wai-extra 39736 + wai-middleware-metrics wai-middleware-static warp x509-store yaml 39749 39737 ]; 39750 39738 description = "Batch processing toolset for Linux / Unix"; 39751 39739 license = lib.licenses.bsd3; 39752 39740 hydraPlatforms = lib.platforms.none; 39753 39741 }) {}; 39754 39742 39743 + "batchd-core" = callPackage 39744 + ({ mkDerivation, aeson, base, bytestring, containers, dates 39745 + , directory, filepath, heavy-logger, hsyslog, localize, mtl 39746 + , persistent, persistent-template, resourcet, scotty, syb 39747 + , template-haskell, text, text-format-heavy, th-lift, time 39748 + , unordered-containers, wai, yaml 39749 + }: 39750 + mkDerivation { 39751 + pname = "batchd-core"; 39752 + version = "0.1.0.0"; 39753 + sha256 = "0kk1crifbynpri8wkhnni3wms759fxc6jmdm0919xlzjfkxj5psr"; 39754 + libraryHaskellDepends = [ 39755 + aeson base bytestring containers dates directory filepath 39756 + heavy-logger hsyslog localize mtl persistent persistent-template 39757 + resourcet scotty syb template-haskell text text-format-heavy 39758 + th-lift time unordered-containers wai yaml 39759 + ]; 39760 + description = "Core modules of batchd, to use in batchd extensions"; 39761 + license = lib.licenses.bsd3; 39762 + hydraPlatforms = lib.platforms.none; 39763 + }) {}; 39764 + 39765 + "batchd-docker" = callPackage 39766 + ({ mkDerivation, aeson, base, batchd-core, docker, exceptions, mtl 39767 + , text, unliftio-core 39768 + }: 39769 + mkDerivation { 39770 + pname = "batchd-docker"; 39771 + version = "0.1.0.0"; 39772 + sha256 = "11kwj1c43kqrclvg5waj0n3lw9k8an7npz23jwsi3f8nwqi86rzv"; 39773 + libraryHaskellDepends = [ 39774 + aeson base batchd-core docker exceptions mtl text unliftio-core 39775 + ]; 39776 + description = "docker containers host controller for batchd"; 39777 + license = lib.licenses.bsd3; 39778 + hydraPlatforms = lib.platforms.none; 39779 + }) {}; 39780 + 39781 + "batchd-libvirt" = callPackage 39782 + ({ mkDerivation, aeson, base, batchd-core, heavy-logger, libvirt-hs 39783 + , text, text-format-heavy, time 39784 + }: 39785 + mkDerivation { 39786 + pname = "batchd-libvirt"; 39787 + version = "0.1.0.0"; 39788 + sha256 = "1l9mw11pxda3w8lw6blk7b8q4220hfm9qnvr4v0rcaxrzjyrh9bb"; 39789 + libraryHaskellDepends = [ 39790 + aeson base batchd-core heavy-logger libvirt-hs text 39791 + text-format-heavy time 39792 + ]; 39793 + description = "host controller for batchd, which controls virtual machines via libvirt library"; 39794 + license = lib.licenses.bsd3; 39795 + hydraPlatforms = lib.platforms.none; 39796 + }) {}; 39797 + 39755 39798 "batching" = callPackage 39756 39799 ({ mkDerivation, base, primitive, QuickCheck, short-vec, sint 39757 39800 , test-framework, test-framework-quickcheck2 ··· 40592 40635 pname = "bench"; 40593 40636 version = "1.0.12"; 40594 40637 sha256 = "1sy97qpv6paar2d5syppk6lc06wjx6qyz5aidsmh30jq853nydx6"; 40595 - revision = "2"; 40596 - editedCabalFile = "055482m81h7pijiszdkk2k65p208i3c3pxs955pv6h0gwrialcsh"; 40638 + revision = "3"; 40639 + editedCabalFile = "1lprgyc8jnfys70mxnpynrkgy1m4ss2dhf7mhj9kvxkahkkqdqm2"; 40597 40640 isLibrary = false; 40598 40641 isExecutable = true; 40599 40642 executableHaskellDepends = [ ··· 40623 40666 "bench-show" = callPackage 40624 40667 ({ mkDerivation, ansi-wl-pprint, base, Chart, Chart-diagrams, csv 40625 40668 , directory, filepath, mwc-random, optparse-applicative 40626 - , optparse-simple, semigroups, split, statistics, text 40627 - , transformers, vector 40669 + , optparse-simple, split, statistics, text, transformers, vector 40628 40670 }: 40629 40671 mkDerivation { 40630 40672 pname = "bench-show"; 40631 - version = "0.3.1"; 40632 - sha256 = "0z1fdcdl9chwia9kd5pa9572mc5pmy5bld72axkzg20r7v53sr7k"; 40633 - revision = "1"; 40634 - editedCabalFile = "08a95i3xwy2yz549hqfwd3j0j6gbsbc62jjmpxnk43yk5dl8dk63"; 40673 + version = "0.3.2"; 40674 + sha256 = "1f0zx572d54dyyjifv4p550ci90gdr4mrifhwww4z6p87fbdi32j"; 40635 40675 isLibrary = true; 40636 40676 isExecutable = true; 40637 40677 libraryHaskellDepends = [ ··· 40639 40679 mwc-random split statistics transformers vector 40640 40680 ]; 40641 40681 executableHaskellDepends = [ 40642 - ansi-wl-pprint base Chart Chart-diagrams csv directory filepath 40643 - mwc-random optparse-applicative optparse-simple semigroups split 40644 - statistics transformers vector 40682 + base optparse-applicative optparse-simple 40645 40683 ]; 40646 40684 testHaskellDepends = [ base split text ]; 40647 40685 description = "Show, plot and compare benchmark results"; ··· 44839 44877 pname = "blaze-markup"; 44840 44878 version = "0.8.2.8"; 44841 44879 sha256 = "0jd30wg5yz0a97b36zwqg4hv8faifza1n2gys3l1p3fwf9l3zz23"; 44842 - revision = "1"; 44843 - editedCabalFile = "1azqgw61l5zqjrjg176glx2m4nlyrmrz7a7vrpvbbkfqymwp7mfr"; 44880 + revision = "2"; 44881 + editedCabalFile = "074zslyx5dxzz242n5rzhgdw9i58akrkm2jd37wazbk3062a7mrq"; 44844 44882 libraryHaskellDepends = [ base blaze-builder bytestring text ]; 44845 44883 testHaskellDepends = [ 44846 44884 base blaze-builder bytestring containers HUnit QuickCheck tasty ··· 49630 49668 pname = "c2hs"; 49631 49669 version = "0.28.8"; 49632 49670 sha256 = "0k482wv94jbpwd96a2c2lc7qz9k8072slx7l7943472nzk7k41ir"; 49671 + revision = "1"; 49672 + editedCabalFile = "0hbv1j9b04gm617c5xqndr4iqidabwdpcn2dcrnaacc04ylchvl2"; 49633 49673 isLibrary = false; 49634 49674 isExecutable = true; 49635 49675 enableSeparateDataOutput = true; ··· 50148 50188 pname = "cabal-flatpak"; 50149 50189 version = "0.1.0.3"; 50150 50190 sha256 = "1k0fzhyvlcq1l09fnf3f3wig4g9l61wsm1dmsjd3nwsgh52xb37v"; 50191 + revision = "1"; 50192 + editedCabalFile = "1468f116hza0l9z4n4zqy1y65q322ypx5kh646fsfi78fimwj34a"; 50151 50193 isLibrary = false; 50152 50194 isExecutable = true; 50153 50195 executableHaskellDepends = [ ··· 54592 54634 }: 54593 54635 mkDerivation { 54594 54636 pname = "cgroup-rts-threads"; 54595 - version = "0.2.0.0"; 54596 - sha256 = "1anlrgjlkjdljxnj4a1y2f5wd3rzd1b9maz97dkg95djh20wcmig"; 54637 + version = "0.2.1.0"; 54638 + sha256 = "1fzv3bgfr7r1c8m02z887ml2mzh2j571zcjjp6al272iaax8ymx0"; 54597 54639 libraryHaskellDepends = [ base directory megaparsec path text ]; 54598 54640 testHaskellDepends = [ 54599 54641 base hspec-core hspec-expectations path path-io ··· 54951 54993 }) {}; 54952 54994 54953 54995 "chart-svg" = callPackage 54954 - ({ mkDerivation, attoparsec, base, Color, containers, cubicbezier 54955 - , foldl, generic-lens, JuicyPixels, lens, linear, lucid, mtl 54956 - , numhask, numhask-space, reanimate, reanimate-svg, scientific 54957 - , tagsoup, text, time, transformers, unordered-containers 54996 + ({ mkDerivation, adjunctions, attoparsec, base, Color, containers 54997 + , cubicbezier, foldl, formatn, lucid, mtl, neat-interpolation 54998 + , numhask, numhask-array, numhask-space, optics-core, random 54999 + , scientific, tagsoup, text, time, transformers 54958 55000 }: 54959 55001 mkDerivation { 54960 55002 pname = "chart-svg"; 54961 - version = "0.2.3"; 54962 - sha256 = "1j96l71gi2nrvwrwsvww9x7whvv3vmnc0ywgiy6ak1yh71hmivm1"; 54963 - revision = "1"; 54964 - editedCabalFile = "1zanv288hlir51yv4zqkcf2b4wxqivwd5y6f1s1n9zdn9k6b7c64"; 54965 - isLibrary = true; 54966 - isExecutable = true; 55003 + version = "0.3.0"; 55004 + sha256 = "07k8r0njywbgb77mjzmsyfhmzv01spyjcdvlj6jd4h2fhjmqpmwb"; 54967 55005 libraryHaskellDepends = [ 54968 - attoparsec base Color containers cubicbezier foldl generic-lens 54969 - JuicyPixels lens linear lucid mtl numhask numhask-space reanimate 54970 - reanimate-svg scientific tagsoup text time transformers 54971 - unordered-containers 55006 + adjunctions attoparsec base Color containers cubicbezier foldl 55007 + formatn lucid mtl neat-interpolation numhask numhask-array 55008 + numhask-space optics-core random scientific tagsoup text time 55009 + transformers 54972 55010 ]; 54973 - executableHaskellDepends = [ base lens reanimate ]; 54974 55011 description = "Charting library targetting SVGs"; 54975 55012 license = lib.licenses.bsd3; 54976 55013 hydraPlatforms = lib.platforms.none; ··· 56234 56271 "cimple" = callPackage 56235 56272 ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, base 56236 56273 , bytestring, containers, data-fix, filepath, groom, happy, hspec 56237 - , hspec-discover, mtl, recursion-schemes, text, transformers-compat 56274 + , hspec-discover, monad-parallel, mtl, recursion-schemes, text 56275 + , transformers-compat 56238 56276 }: 56239 56277 mkDerivation { 56240 56278 pname = "cimple"; 56241 - version = "0.0.11"; 56242 - sha256 = "1n7633c6w4n4996i3k9v60yhpiddd8b7600c7hpam2axm9cqb19i"; 56279 + version = "0.0.13"; 56280 + sha256 = "18c3x6mb93hj2zzq63p9wczi73wm1c3b24ksjmnksldkaakwv6wy"; 56243 56281 isLibrary = true; 56244 56282 isExecutable = true; 56245 56283 libraryHaskellDepends = [ 56246 56284 aeson ansi-wl-pprint array base bytestring containers data-fix 56247 - filepath groom mtl recursion-schemes text transformers-compat 56285 + filepath groom monad-parallel mtl recursion-schemes text 56286 + transformers-compat 56248 56287 ]; 56249 56288 libraryToolDepends = [ alex happy ]; 56250 56289 executableHaskellDepends = [ base bytestring groom text ]; ··· 57026 57065 }: 57027 57066 mkDerivation { 57028 57067 pname = "clash-ghc"; 57029 - version = "1.4.6"; 57030 - sha256 = "0bxzfbpz0kz3f6jdq66vcv1h039ww90xdkivbadaz034ngzallfr"; 57031 - isLibrary = true; 57032 - isExecutable = true; 57033 - libraryHaskellDepends = [ 57034 - array base bifunctors bytestring Cabal clash-lib clash-prelude 57035 - concurrent-supply containers deepseq directory exceptions extra 57036 - filepath ghc ghc-boot ghc-prim ghc-typelits-extra 57037 - ghc-typelits-knownnat ghc-typelits-natnormalise ghci hashable 57038 - haskeline integer-gmp lens mtl primitive process reflection split 57039 - template-haskell text time transformers uniplate unix 57040 - unordered-containers utf8-string vector 57041 - ]; 57042 - executableHaskellDepends = [ base ]; 57043 - description = "Clash: a functional hardware description language - GHC frontend"; 57044 - license = lib.licenses.bsd2; 57045 - hydraPlatforms = lib.platforms.none; 57046 - }) {}; 57047 - 57048 - "clash-ghc_1_4_7" = callPackage 57049 - ({ mkDerivation, array, base, bifunctors, bytestring, Cabal 57050 - , clash-lib, clash-prelude, concurrent-supply, containers, deepseq 57051 - , directory, exceptions, extra, filepath, ghc, ghc-boot, ghc-prim 57052 - , ghc-typelits-extra, ghc-typelits-knownnat 57053 - , ghc-typelits-natnormalise, ghci, hashable, haskeline, integer-gmp 57054 - , lens, mtl, primitive, process, reflection, split 57055 - , template-haskell, text, time, transformers, uniplate, unix 57056 - , unordered-containers, utf8-string, vector 57057 - }: 57058 - mkDerivation { 57059 - pname = "clash-ghc"; 57060 57068 version = "1.4.7"; 57061 57069 sha256 = "06r97diqy6px1pf06dbnvf6ns0kmqy5gc5mr6k9xam1d2pk37xwd"; 57062 57070 isLibrary = true; ··· 57093 57101 }: 57094 57102 mkDerivation { 57095 57103 pname = "clash-lib"; 57096 - version = "1.4.6"; 57097 - sha256 = "0lw0cx2in4qfr8h43qhbxfn5s0srbp2a90nfsrnjbhfsh37aza0b"; 57098 - enableSeparateDataOutput = true; 57099 - libraryHaskellDepends = [ 57100 - aeson aeson-pretty ansi-terminal array attoparsec base 57101 - base16-bytestring binary bytestring clash-prelude concurrent-supply 57102 - containers cryptohash-sha256 data-binary-ieee754 data-default 57103 - deepseq directory dlist errors exceptions extra filepath ghc 57104 - ghc-boot-th hashable haskell-src-meta hint integer-gmp interpolate 57105 - lens mtl ordered-containers parsers pretty-show prettyprinter 57106 - primitive process reducers template-haskell temporary terminal-size 57107 - text text-show time transformers trifecta unordered-containers 57108 - utf8-string vector vector-binary-instances 57109 - ]; 57110 - testHaskellDepends = [ 57111 - aeson aeson-pretty base base16-bytestring bytestring clash-prelude 57112 - concurrent-supply containers data-default deepseq ghc 57113 - ghc-typelits-knownnat haskell-src-exts lens pretty-show 57114 - quickcheck-text tasty tasty-hunit tasty-quickcheck template-haskell 57115 - text transformers unordered-containers 57116 - ]; 57117 - description = "Clash: a functional hardware description language - As a library"; 57118 - license = lib.licenses.bsd2; 57119 - hydraPlatforms = lib.platforms.none; 57120 - }) {}; 57121 - 57122 - "clash-lib_1_4_7" = callPackage 57123 - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 57124 - , attoparsec, base, base16-bytestring, binary, bytestring 57125 - , clash-prelude, concurrent-supply, containers, cryptohash-sha256 57126 - , data-binary-ieee754, data-default, deepseq, directory, dlist 57127 - , errors, exceptions, extra, filepath, ghc, ghc-boot-th 57128 - , ghc-typelits-knownnat, hashable, haskell-src-exts 57129 - , haskell-src-meta, hint, integer-gmp, interpolate, lens, mtl 57130 - , ordered-containers, parsers, pretty-show, prettyprinter 57131 - , primitive, process, quickcheck-text, reducers, tasty, tasty-hunit 57132 - , tasty-quickcheck, template-haskell, temporary, terminal-size 57133 - , text, text-show, time, transformers, trifecta 57134 - , unordered-containers, utf8-string, vector 57135 - , vector-binary-instances 57136 - }: 57137 - mkDerivation { 57138 - pname = "clash-lib"; 57139 57104 version = "1.4.7"; 57140 57105 sha256 = "03wj0i926x8lc09nwgwh48plqxc49i5zzwil88bgnxdcwv9ncv18"; 57141 57106 enableSeparateDataOutput = true; ··· 57178 57143 }) {}; 57179 57144 57180 57145 "clash-prelude" = callPackage 57181 - ({ mkDerivation, array, arrows, base, bifunctors, binary 57182 - , bytestring, Cabal, cabal-doctest, constraints, containers 57183 - , criterion, data-binary-ieee754, data-default-class, deepseq 57184 - , doctest, ghc-prim, ghc-typelits-extra, ghc-typelits-knownnat 57185 - , ghc-typelits-natnormalise, half, hashable, hedgehog, hint 57186 - , integer-gmp, interpolate, lens, QuickCheck 57187 - , quickcheck-classes-base, recursion-schemes, reflection 57188 - , singletons, tasty, tasty-hedgehog, tasty-hunit, tasty-quickcheck 57189 - , tasty-th, template-haskell, text, text-show, th-abstraction 57190 - , th-lift, th-orphans, time, transformers, type-errors, uniplate 57191 - , vector 57192 - }: 57193 - mkDerivation { 57194 - pname = "clash-prelude"; 57195 - version = "1.4.6"; 57196 - sha256 = "1m6sk0sss5hsh9x0614vr81pdv715wbdkdf119wnyy0sfjjnmbzi"; 57197 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 57198 - libraryHaskellDepends = [ 57199 - array arrows base bifunctors binary bytestring constraints 57200 - containers data-binary-ieee754 data-default-class deepseq ghc-prim 57201 - ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 57202 - half hashable integer-gmp interpolate lens QuickCheck 57203 - recursion-schemes reflection singletons template-haskell text 57204 - text-show th-abstraction th-lift th-orphans time transformers 57205 - type-errors uniplate vector 57206 - ]; 57207 - testHaskellDepends = [ 57208 - base deepseq doctest ghc-typelits-extra ghc-typelits-knownnat 57209 - ghc-typelits-natnormalise hedgehog hint quickcheck-classes-base 57210 - tasty tasty-hedgehog tasty-hunit tasty-quickcheck tasty-th 57211 - template-haskell 57212 - ]; 57213 - benchmarkHaskellDepends = [ 57214 - base criterion deepseq template-haskell 57215 - ]; 57216 - description = "Clash: a functional hardware description language - Prelude library"; 57217 - license = lib.licenses.bsd2; 57218 - hydraPlatforms = lib.platforms.none; 57219 - broken = true; 57220 - }) {}; 57221 - 57222 - "clash-prelude_1_4_7" = callPackage 57223 57146 ({ mkDerivation, array, arrows, base, bifunctors, binary 57224 57147 , bytestring, Cabal, cabal-doctest, constraints, containers 57225 57148 , criterion, data-binary-ieee754, data-default-class, deepseq ··· 57577 57500 }: 57578 57501 mkDerivation { 57579 57502 pname = "clckwrks"; 57580 - version = "0.26.4"; 57581 - sha256 = "0gvfplid34idkfg5s7dvcwg22ij3fryn82hz958z2960a4jb7ngv"; 57503 + version = "0.27.2"; 57504 + sha256 = "088wx15f81h45ykhibq7ays5yn2ivwvgffaa459r6b6v53npkqkr"; 57582 57505 enableSeparateDataOutput = true; 57583 57506 libraryHaskellDepends = [ 57584 57507 acid-state aeson aeson-qq attoparsec base blaze-html bytestring ··· 57604 57527 }: 57605 57528 mkDerivation { 57606 57529 pname = "clckwrks-cli"; 57607 - version = "0.3.0.3"; 57608 - sha256 = "03dyhfnmqhqjahd36cdhjvrqp68grzvdl69cqk2z2aa34z0agd4a"; 57530 + version = "0.3.0.4"; 57531 + sha256 = "17ifv0awgx7fylc1pbdcdq9l8wl2shr6fy65rgb0xjv3zxnwx4i8"; 57609 57532 isLibrary = true; 57610 57533 isExecutable = true; 57611 57534 libraryHaskellDepends = [ ··· 57751 57674 }: 57752 57675 mkDerivation { 57753 57676 pname = "clckwrks-plugin-page"; 57754 - version = "0.4.3.24"; 57755 - sha256 = "0zsf8j8l99cxskjql8zh407ar7920ph6xn42j8nxnh6qir16wdar"; 57677 + version = "0.4.3.25"; 57678 + sha256 = "0ii9984y7792i7kiwnqmgn9mfyky2k9dkx3fnzkirypqbxyri92s"; 57756 57679 libraryHaskellDepends = [ 57757 57680 acid-state aeson attoparsec base clckwrks containers directory 57758 57681 filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl ··· 57776 57699 }: 57777 57700 mkDerivation { 57778 57701 pname = "clckwrks-plugin-redirect"; 57779 - version = "0.0.1"; 57780 - sha256 = "1946m4fxdj8kr7n1q39j2q9j6srdz97srq0fifnk7mil23lw2vyj"; 57702 + version = "0.0.1.2"; 57703 + sha256 = "1vb0knjy0qkbpzni10bgvznnjxc7bv7pbp1l9frdffdsrssgyx8w"; 57781 57704 isLibrary = true; 57782 57705 isExecutable = true; 57783 57706 libraryHaskellDepends = [ ··· 57798 57721 }: 57799 57722 mkDerivation { 57800 57723 pname = "clckwrks-theme-bootstrap"; 57801 - version = "0.4.3"; 57802 - sha256 = "01hs4rh89zp0y2gkfam27kdwywh5fqr10pzwf1d4c92kpnz9xd5d"; 57724 + version = "0.4.3.2"; 57725 + sha256 = "0ag94kc0csjnh88vw6ljifv6cqqwc8wizyizqk0mj4qpp73z6qd2"; 57803 57726 enableSeparateDataOutput = true; 57804 57727 libraryHaskellDepends = [ 57805 57728 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro ··· 57887 57810 "cleff" = callPackage 57888 57811 ({ mkDerivation, atomic-primops, base, containers, exceptions 57889 57812 , extra, hspec, lifted-base, microlens, monad-control, primitive 57890 - , QuickCheck, template-haskell, th-abstraction, transformers 57891 - , transformers-base, unliftio 57813 + , QuickCheck, rec-smallarray, template-haskell, th-abstraction 57814 + , transformers, transformers-base, unliftio 57892 57815 }: 57893 57816 mkDerivation { 57894 57817 pname = "cleff"; 57895 - version = "0.1.0.0"; 57896 - sha256 = "16fd1ly5299an0wlmnc3f6asikbr8n8b8vzkmvd2jq86sk0x5z1n"; 57818 + version = "0.2.0.0"; 57819 + sha256 = "0p9xmp9injfyy4d9p4cxqm103rwrwwwdghph4gawhjwsyp4611m8"; 57897 57820 libraryHaskellDepends = [ 57898 57821 atomic-primops base containers exceptions microlens monad-control 57899 - primitive template-haskell th-abstraction transformers 57900 - transformers-base unliftio 57822 + primitive rec-smallarray template-haskell th-abstraction 57823 + transformers transformers-base unliftio 57901 57824 ]; 57902 57825 testHaskellDepends = [ 57903 57826 atomic-primops base containers exceptions extra hspec lifted-base 57904 - microlens monad-control primitive QuickCheck template-haskell 57905 - th-abstraction transformers transformers-base unliftio 57827 + microlens monad-control primitive QuickCheck rec-smallarray 57828 + template-haskell th-abstraction transformers transformers-base 57829 + unliftio 57906 57830 ]; 57907 57831 description = "Fast and concise extensible effects"; 57908 57832 license = lib.licenses.bsd3; ··· 61256 61180 license = lib.licenses.bsd3; 61257 61181 }) {}; 61258 61182 61183 + "commonmark-simple" = callPackage 61184 + ({ mkDerivation, aeson, base, commonmark, commonmark-extensions 61185 + , commonmark-pandoc, containers, megaparsec, pandoc-types, parsec 61186 + , parser-combinators, relude, yaml 61187 + }: 61188 + mkDerivation { 61189 + pname = "commonmark-simple"; 61190 + version = "0.1.0.0"; 61191 + sha256 = "0fvpykqvqi12nsc95pv3xwd67sdamxc79r24w5xf30f87p0f9kna"; 61192 + libraryHaskellDepends = [ 61193 + aeson base commonmark commonmark-extensions commonmark-pandoc 61194 + containers megaparsec pandoc-types parsec parser-combinators relude 61195 + yaml 61196 + ]; 61197 + description = "Simple interface to commonmark-hs"; 61198 + license = lib.licenses.mit; 61199 + }) {}; 61200 + 61259 61201 "commsec" = callPackage 61260 61202 ({ mkDerivation, base, bytestring, cipher-aes128, crypto-api 61261 61203 , network ··· 61390 61332 license = lib.licenses.bsd3; 61391 61333 }) {}; 61392 61334 61335 + "compaREST" = callPackage 61336 + ({ mkDerivation, aeson, attoparsec, base, bytestring, comonad 61337 + , containers, data-default, directory, doctemplates, envy 61338 + , file-embed, filepath, free, freer-simple, generic-data, github 61339 + , hashable, http-media, insert-ordered-containers, lattices, lens 61340 + , mtl, open-union, openapi3, optparse-applicative 61341 + , ordered-containers, pandoc, pandoc-types, pcre2, scientific 61342 + , tagged, tasty, tasty-golden, text, transformers, type-fun 61343 + , typerep-map, unordered-containers, vector, yaml 61344 + }: 61345 + mkDerivation { 61346 + pname = "compaREST"; 61347 + version = "0.1.0.0"; 61348 + sha256 = "06y2qxl0vgka4vby5vv1njzgwbaq3615qic15iqnnm9dqwg7cczx"; 61349 + isLibrary = true; 61350 + isExecutable = true; 61351 + libraryHaskellDepends = [ 61352 + aeson attoparsec base bytestring comonad containers data-default 61353 + doctemplates file-embed free generic-data hashable http-media 61354 + insert-ordered-containers lattices mtl open-union openapi3 61355 + ordered-containers pandoc-types pcre2 scientific tagged text 61356 + transformers type-fun typerep-map unordered-containers vector 61357 + ]; 61358 + executableHaskellDepends = [ 61359 + aeson base bytestring containers data-default doctemplates envy 61360 + filepath freer-simple github mtl optparse-applicative pandoc 61361 + pandoc-types text vector yaml 61362 + ]; 61363 + testHaskellDepends = [ 61364 + base bytestring data-default directory filepath lens pandoc 61365 + pandoc-types tasty tasty-golden text yaml 61366 + ]; 61367 + description = "Compatibility checker for OpenAPI"; 61368 + license = lib.licenses.mit; 61369 + hydraPlatforms = lib.platforms.none; 61370 + }) {}; 61371 + 61393 61372 "compact" = callPackage 61394 61373 ({ mkDerivation, base, binary, bytestring, directory, ghc-compact 61395 61374 }: ··· 62913 62892 ]; 62914 62893 description = "Ungarble output from several threads or commands"; 62915 62894 license = lib.licenses.bsd2; 62895 + }) {}; 62896 + 62897 + "concurrent-output_1_10_15" = callPackage 62898 + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions 62899 + , process, stm, terminal-size, text, transformers, unix 62900 + }: 62901 + mkDerivation { 62902 + pname = "concurrent-output"; 62903 + version = "1.10.15"; 62904 + sha256 = "1n02ck0zci6y2w8dm03j2qypgbc176skapixrmnxrp9dnbwcprc0"; 62905 + libraryHaskellDepends = [ 62906 + ansi-terminal async base directory exceptions process stm 62907 + terminal-size text transformers unix 62908 + ]; 62909 + description = "Ungarble output from several threads or commands"; 62910 + license = lib.licenses.bsd2; 62911 + hydraPlatforms = lib.platforms.none; 62916 62912 }) {}; 62917 62913 62918 62914 "concurrent-resource-map" = callPackage ··· 64754 64750 }: 64755 64751 mkDerivation { 64756 64752 pname = "constraints"; 64757 - version = "0.13.2"; 64758 - sha256 = "1zfijh3jpdfrh8nwn5xv2z05jnxyf0ciqlfaja6g6ls654svrj70"; 64759 - revision = "1"; 64760 - editedCabalFile = "1h46cskb4ci2jigqlrd9x87n1i1d6q6w4r0in6i47ywmhjdv7xwg"; 64761 - libraryHaskellDepends = [ 64762 - base binary deepseq ghc-prim hashable mtl transformers 64763 - transformers-compat type-equality 64764 - ]; 64765 - testHaskellDepends = [ base hspec ]; 64766 - testToolDepends = [ hspec-discover ]; 64767 - description = "Constraint manipulation"; 64768 - license = lib.licenses.bsd2; 64769 - }) {}; 64770 - 64771 - "constraints_0_13_3" = callPackage 64772 - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, hspec 64773 - , hspec-discover, mtl, transformers, transformers-compat 64774 - , type-equality 64775 - }: 64776 - mkDerivation { 64777 - pname = "constraints"; 64778 64753 version = "0.13.3"; 64779 64754 sha256 = "0jhdix263zxsiki0pmdpyrg7vcfxx2x9w7pjiypva3wsr9agdjzr"; 64780 64755 libraryHaskellDepends = [ ··· 64785 64760 testToolDepends = [ hspec-discover ]; 64786 64761 description = "Constraint manipulation"; 64787 64762 license = lib.licenses.bsd2; 64788 - hydraPlatforms = lib.platforms.none; 64789 64763 }) {}; 64790 64764 64791 64765 "constraints-deriving" = callPackage ··· 66437 66411 }: 66438 66412 mkDerivation { 66439 66413 pname = "cornea"; 66440 - version = "0.4.0.0"; 66441 - sha256 = "0hm17g350gnklvgi5nsx03lgbx2zs9h4q11y2gi9zjnm6gv6gjrn"; 66414 + version = "0.4.0.1"; 66415 + sha256 = "1i6c2j90rban9hq7hzhf0rcq6dgzrin9jalbx2pjvqy1i6m49kn4"; 66442 66416 libraryHaskellDepends = [ 66443 66417 base either lens lifted-base monad-control mtl relude 66444 66418 template-haskell th-abstraction transformers ··· 67560 67534 67561 67535 "crdt-event-fold" = callPackage 67562 67536 ({ mkDerivation, aeson, base, binary, containers 67563 - , data-default-class, data-dword, hspec, monad-logger, mtl 67564 - , transformers 67537 + , data-default-class, data-dword, exceptions, hspec, monad-logger 67538 + , mtl, transformers 67565 67539 }: 67566 67540 mkDerivation { 67567 67541 pname = "crdt-event-fold"; 67568 - version = "1.4.0.0"; 67569 - sha256 = "0hagrbsgw58kchiifhq69s4hii7pv8zsvfzl3ijgxkb8iqp515gc"; 67542 + version = "1.5.1.1"; 67543 + sha256 = "1625x6zk6znfzz76pk1d1wkh2qvybdpwaxpm20kk88jsakhvg0br"; 67570 67544 libraryHaskellDepends = [ 67571 67545 aeson base binary containers data-default-class data-dword 67572 - monad-logger mtl transformers 67546 + exceptions monad-logger mtl transformers 67547 + ]; 67548 + testHaskellDepends = [ 67549 + aeson base binary containers data-default-class data-dword 67550 + exceptions hspec monad-logger mtl transformers 67573 67551 ]; 67574 - testHaskellDepends = [ base hspec ]; 67575 67552 description = "Garbage collected event folding CRDT"; 67576 67553 license = lib.licenses.mit; 67577 67554 hydraPlatforms = lib.platforms.none; ··· 67790 67767 }: 67791 67768 mkDerivation { 67792 67769 pname = "criterion"; 67793 - version = "1.5.12.0"; 67794 - sha256 = "0wrb48byp906f9wc9ii2mi2b2k008ycbi8ffrrj86plhp5rpvzz5"; 67770 + version = "1.5.13.0"; 67771 + sha256 = "19vrlldgw2kz5426j0iwsvvhxkbnrnan859vr6ryqh13nrg59a72"; 67795 67772 revision = "1"; 67796 - editedCabalFile = "154jscaip9y081mvf70vcwqw0acynfb9hwxgqwmzqq9q6d8b1wfw"; 67773 + editedCabalFile = "1xpbvax71yrnilq4iixjfi3by2n8wz5r5nb2r4v9wn85xz0r8dwh"; 67797 67774 isLibrary = true; 67798 67775 isExecutable = true; 67799 67776 enableSeparateDataOutput = true; ··· 69712 69689 }: 69713 69690 mkDerivation { 69714 69691 pname = "curl-runnings"; 69715 - version = "0.16.0"; 69716 - sha256 = "1dghvwmwl9x7v7dn52kadp3i72k8cgyhir5adc6hw61bgk49qll0"; 69692 + version = "0.16.4"; 69693 + sha256 = "1900v9gs4mmap4xp0bypq0wz14mw2mmak9861z4rl954pz25v9pv"; 69717 69694 isLibrary = true; 69718 69695 isExecutable = true; 69719 69696 libraryHaskellDepends = [ ··· 70365 70342 pname = "d10"; 70366 70343 version = "1.0.0.2"; 70367 70344 sha256 = "10jc4sa986r194py1gg90mixvb2h4d1m12zwi6y5hffmrc910qva"; 70345 + revision = "1"; 70346 + editedCabalFile = "1ffwq8kfg90a5gfdm41fid7n4aszzl4j2mpnr4pp95ri174awqbz"; 70368 70347 libraryHaskellDepends = [ base template-haskell ]; 70369 70348 testHaskellDepends = [ base hedgehog template-haskell ]; 70370 70349 description = "Digits 0-9"; ··· 73187 73166 73188 73167 "dates" = callPackage 73189 73168 ({ mkDerivation, base, base-unicode-symbols, hspec, parsec, syb 73190 - , time 73169 + ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 73191 73170 }: 73192 73171 mkDerivation { 73193 73172 pname = "dates"; 73194 - version = "0.2.3.0"; 73195 - sha256 = "1l9df5815gb8lxgl1kmsn4q58qrjqii5b957z5gn4hk5cjnr456k"; 73173 + version = "0.2.3.2"; 73174 + sha256 = "15x7nyzdzqqknxff4v08hij1gp8p1prwpzpl6ayva548xq70jz39"; 73196 73175 libraryHaskellDepends = [ 73197 - base base-unicode-symbols parsec syb time 73176 + base base-unicode-symbols parsec syb template-haskell time 73198 73177 ]; 73199 73178 testHaskellDepends = [ base hspec ]; 73200 73179 description = "Small library for parsing different dates formats"; ··· 75800 75779 }: 75801 75780 mkDerivation { 75802 75781 pname = "deriving-trans"; 75803 - version = "0.2.2.0"; 75804 - sha256 = "1v2iamc375i6gqavb2s644mbb99wlnv0nk07dmbyaw522svp20y4"; 75782 + version = "0.3.0.0"; 75783 + sha256 = "07847l2iwnrgskldqnjx3312rw95fp3xsmdx5rc61746ghl76aq7"; 75805 75784 libraryHaskellDepends = [ 75806 75785 base monad-control mtl transformers transformers-base 75807 75786 ]; ··· 76454 76433 pname = "dhall"; 76455 76434 version = "1.40.2"; 76456 76435 sha256 = "14wh497fipvz01zc9s31gv144spg1iqfwp6x5mlk1hjk0v9qs5by"; 76457 - revision = "1"; 76458 - editedCabalFile = "1dfnyin9rcq7ily0dlm94s7xnrsjg8ix24zsp52hl7wg4fkfc46c"; 76436 + revision = "2"; 76437 + editedCabalFile = "0mxq3knz1wpvs6jcdw6p0mnwpyy7aqriy2qdyxqzmhcbw2yn3hc1"; 76459 76438 isLibrary = true; 76460 76439 isExecutable = true; 76461 76440 enableSeparateDataOutput = true; ··· 76602 76581 pname = "dhall-docs"; 76603 76582 version = "1.0.8"; 76604 76583 sha256 = "1rkwvk6vd8l52nxv186fw3qdmsjvi8098yccnnbysmf41rz80fi7"; 76605 - revision = "1"; 76606 - editedCabalFile = "0z2xrvbfprgq5zzd862s2g8w4zr4k5wrl3vmb9vzds72yk65h3sk"; 76584 + revision = "2"; 76585 + editedCabalFile = "12virkq759imppdzpx75fyka8kqfw01xfwb0lm9mir86gjb34n2q"; 76607 76586 isLibrary = true; 76608 76587 isExecutable = true; 76609 76588 enableSeparateDataOutput = true; ··· 76700 76679 pname = "dhall-json"; 76701 76680 version = "1.7.9"; 76702 76681 sha256 = "11rl46vn6lzcm9kznpfc43c3a2cbq2si2zba3k2x4j360kvg9fgn"; 76703 - revision = "1"; 76704 - editedCabalFile = "07izgs7x8ssmalv0m6r9clhx5gbs48f1bxxr3qsyxs26liqvppzq"; 76682 + revision = "2"; 76683 + editedCabalFile = "0f1jb37f5k214dzxbbhw2hij7j7srydkdp0hpkapgs5k73vjvqm4"; 76705 76684 isLibrary = true; 76706 76685 isExecutable = true; 76707 76686 libraryHaskellDepends = [ ··· 76830 76809 pname = "dhall-nixpkgs"; 76831 76810 version = "1.0.7"; 76832 76811 sha256 = "1s7md4b2jzgmf557clln9fc5lmdrd9xjs55dd97dv8q6krm8nabg"; 76833 - revision = "2"; 76834 - editedCabalFile = "06cz8iszdgxyy9v95ppcr5zjkrxw4mx01kvc68h88jdf8g5fgp6g"; 76812 + revision = "3"; 76813 + editedCabalFile = "135j5m3dgiyvjlw67rbx1jjnnzb5v777g6a8kkplpiv92swwslfd"; 76835 76814 isLibrary = false; 76836 76815 isExecutable = true; 76837 76816 executableHaskellDepends = [ ··· 76854 76833 pname = "dhall-openapi"; 76855 76834 version = "1.0.3"; 76856 76835 sha256 = "0k7yq7g77ws7wjfzd35ydsjwaq2kc1y0rhwjwb6yvkyvljmr0ykz"; 76857 - revision = "1"; 76858 - editedCabalFile = "0jmbgjrinlsgdw4ksqmn0lr15m6r0kxw33c5g7slnqgbnimbjrgw"; 76836 + revision = "2"; 76837 + editedCabalFile = "0cqvwbpn3njl3xm4jxcsb2dvfi6y1nm6inxanqxda7pgbysqrn8j"; 76859 76838 isLibrary = true; 76860 76839 isExecutable = true; 76861 76840 libraryHaskellDepends = [ ··· 77008 76987 pname = "dhall-yaml"; 77009 76988 version = "1.2.9"; 77010 76989 sha256 = "0gn9jrqihimjs8i9ksgmlkh8c64km52rmsgz2y6k3ab0igkv8dw6"; 77011 - revision = "1"; 77012 - editedCabalFile = "1mq7si8d9mkwnh6kw4041dhfppam507blr2ji3m6xw8f1pg70rcd"; 76990 + revision = "2"; 76991 + editedCabalFile = "18qshgn6vfry37sfmdwi1lijqdrhbrximbwcyi5zzz1b5nb7sa0v"; 77013 76992 isLibrary = true; 77014 76993 isExecutable = true; 77015 76994 libraryHaskellDepends = [ ··· 77507 77486 pname = "diagrams-lib"; 77508 77487 version = "1.4.5.1"; 77509 77488 sha256 = "1hkxp549i99s45qk8zmhjvz1xyyv3i0ffl8155bifkic6fd8y2gz"; 77510 - revision = "1"; 77511 - editedCabalFile = "0yqpasggmdkzg2n67a6m20rbhzcgchnfhs66m95lnp5n9vl7v8mn"; 77489 + revision = "2"; 77490 + editedCabalFile = "12zif237fhf8r016225wsfkshwsxpqq0bm0h3k1ys5yjyk6m3x90"; 77512 77491 libraryHaskellDepends = [ 77513 77492 active adjunctions array base bytestring cereal colour containers 77514 77493 data-default-class diagrams-core diagrams-solve directory ··· 77581 77560 pname = "diagrams-pgf"; 77582 77561 version = "1.4.2"; 77583 77562 sha256 = "1x7qz8683rsfi0gpmfmhicswmmxppil779d4mhfwkp537b6l2zmh"; 77563 + revision = "1"; 77564 + editedCabalFile = "14vfl9rihrpvdjvlndg86w1ap12lp98049jz741giy94rfbj3knp"; 77584 77565 libraryHaskellDepends = [ 77585 77566 base bytestring bytestring-builder colour containers diagrams-core 77586 77567 diagrams-lib directory filepath hashable JuicyPixels mtl ··· 77637 77618 pname = "diagrams-rasterific"; 77638 77619 version = "1.4.2.2"; 77639 77620 sha256 = "1q0b3yh7wbi3yq0y8qswhvfmcz52f6njl4dawq9gl71jyfb2g8nq"; 77621 + revision = "1"; 77622 + editedCabalFile = "1cijmn8bc2j0v3a0qp7a7zl3hrn99gwmd7vl3lv9754f5s1l1m13"; 77640 77623 libraryHaskellDepends = [ 77641 77624 base bytestring containers data-default-class diagrams-core 77642 77625 diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels ··· 77708 77691 pname = "diagrams-svg"; 77709 77692 version = "1.4.3.1"; 77710 77693 sha256 = "002lgmq78c6rsvds9bgm6m4w8j6qpg260mc52hf97wj6m050l237"; 77711 - revision = "2"; 77712 - editedCabalFile = "056nfj2srbhh68jc5al8hffcfrqlr89173pjf6bhpmnzxhwlv55k"; 77694 + revision = "3"; 77695 + editedCabalFile = "03yh2nj88c91m8xq5gzcyxj55jr8sfypfgs361c90ncwn7jxz3ly"; 77713 77696 libraryHaskellDepends = [ 77714 77697 base base64-bytestring bytestring colour containers diagrams-core 77715 77698 diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl ··· 78488 78471 testHaskellDepends = [ base containers fingertree hspec ]; 78489 78472 description = "A simpler Dijkstra shortest paths implementation"; 78490 78473 license = lib.licenses.bsd3; 78474 + hydraPlatforms = lib.platforms.none; 78475 + broken = true; 78491 78476 }) {}; 78492 78477 78493 78478 "dimensional" = callPackage ··· 78643 78628 }: 78644 78629 mkDerivation { 78645 78630 pname = "diohsc"; 78646 - version = "0.1.9"; 78647 - sha256 = "1mxccj0fwj8n8zh8h997ljd4r179zyn6k63xgnhw7bgi1pjv4301"; 78631 + version = "0.1.10"; 78632 + sha256 = "1k6027dq5x156xw50pjjr8713ibqbycal653mfa8q59y6h8jvzjf"; 78648 78633 isLibrary = false; 78649 78634 isExecutable = true; 78650 78635 executableHaskellDepends = [ ··· 86730 86715 }) {}; 86731 86716 86732 86717 "ema" = callPackage 86733 - ({ mkDerivation, aeson, async, base, blaze-html, blaze-markup 86734 - , commonmark, commonmark-extensions, commonmark-pandoc 86735 - , constraints-extras, containers, data-default, dependent-sum 86736 - , dependent-sum-template, directory, filepath, filepattern 86737 - , http-types, lvar, megaparsec, monad-logger, monad-logger-extras 86738 - , neat-interpolation, optparse-applicative, pandoc-types, parsec 86739 - , parser-combinators, relude, text, time, unicode-transforms 86740 - , unionmount, unliftio, uri-encode, wai, wai-middleware-static 86741 - , wai-websockets, warp, websockets, yaml 86718 + ({ mkDerivation, aeson, async, base, constraints-extras, containers 86719 + , data-default, dependent-sum, dependent-sum-template, directory 86720 + , filepath, filepattern, http-types, lvar, monad-logger 86721 + , monad-logger-extras, neat-interpolation, optparse-applicative 86722 + , relude, text, unliftio, url-slug, wai, wai-middleware-static 86723 + , wai-websockets, warp, websockets 86742 86724 }: 86743 86725 mkDerivation { 86744 86726 pname = "ema"; 86745 - version = "0.4.0.0"; 86746 - sha256 = "1l44mmcghhgyyxxnannmqsabdbwdz5yka0vk3pbiziqjjlkjxpnj"; 86727 + version = "0.6.0.0"; 86728 + sha256 = "0xha83himdaj64pm09dpvl0lrjvs6alk6mxh73d7ah1dbfsm79h1"; 86747 86729 libraryHaskellDepends = [ 86748 - aeson async base blaze-html blaze-markup commonmark 86749 - commonmark-extensions commonmark-pandoc constraints-extras 86750 - containers data-default dependent-sum dependent-sum-template 86751 - directory filepath filepattern http-types lvar megaparsec 86752 - monad-logger monad-logger-extras neat-interpolation 86753 - optparse-applicative pandoc-types parsec parser-combinators relude 86754 - text time unicode-transforms unionmount unliftio uri-encode wai 86755 - wai-middleware-static wai-websockets warp websockets yaml 86730 + aeson async base constraints-extras containers data-default 86731 + dependent-sum dependent-sum-template directory filepath filepattern 86732 + http-types lvar monad-logger monad-logger-extras neat-interpolation 86733 + optparse-applicative relude text unliftio url-slug wai 86734 + wai-middleware-static wai-websockets warp websockets 86756 86735 ]; 86757 86736 description = "Static site generator library with hot reload"; 86758 86737 license = lib.licenses.agpl3Only; ··· 88167 88146 pname = "equivalence"; 88168 88147 version = "0.3.5"; 88169 88148 sha256 = "167njzd1cf32aa7br90rjafrxy6hw3fxkk8awifqbxjrcwm5maqp"; 88149 + revision = "1"; 88150 + editedCabalFile = "0rc68zqj518lmlp58kbgfb945gp0iszfjn6h3y777cjrbm1jp5k4"; 88170 88151 libraryHaskellDepends = [ 88171 88152 base containers fail mtl STMonadTrans transformers 88172 88153 transformers-compat ··· 88177 88158 ]; 88178 88159 description = "Maintaining an equivalence relation implemented as union-find using STT"; 88179 88160 license = lib.licenses.bsd3; 88161 + }) {}; 88162 + 88163 + "equivalence_0_4" = callPackage 88164 + ({ mkDerivation, base, containers, mtl, QuickCheck, STMonadTrans 88165 + , template-haskell, transformers, transformers-compat 88166 + }: 88167 + mkDerivation { 88168 + pname = "equivalence"; 88169 + version = "0.4"; 88170 + sha256 = "0xyj7knshfjknjd13cm7ym9hxllnbr4wvqnz8pgq8154hn7j2f1d"; 88171 + libraryHaskellDepends = [ 88172 + base containers mtl STMonadTrans transformers transformers-compat 88173 + ]; 88174 + testHaskellDepends = [ 88175 + base containers mtl QuickCheck STMonadTrans template-haskell 88176 + transformers transformers-compat 88177 + ]; 88178 + description = "Maintaining an equivalence relation implemented as union-find using STT"; 88179 + license = lib.licenses.bsd3; 88180 + hydraPlatforms = lib.platforms.none; 88180 88181 }) {}; 88181 88182 88182 88183 "erd" = callPackage ··· 95250 95251 }: 95251 95252 mkDerivation { 95252 95253 pname = "fingertree"; 95253 - version = "0.1.4.2"; 95254 - sha256 = "0zvandj8fysck7ygpn0dw5bhrhmj1s63i326nalxbfkh2ls4iacm"; 95255 - libraryHaskellDepends = [ base ]; 95256 - testHaskellDepends = [ 95257 - base HUnit QuickCheck test-framework test-framework-hunit 95258 - test-framework-quickcheck2 95259 - ]; 95260 - description = "Generic finger-tree structure, with example instances"; 95261 - license = lib.licenses.bsd3; 95262 - }) {}; 95263 - 95264 - "fingertree_0_1_5_0" = callPackage 95265 - ({ mkDerivation, base, HUnit, QuickCheck, test-framework 95266 - , test-framework-hunit, test-framework-quickcheck2 95267 - }: 95268 - mkDerivation { 95269 - pname = "fingertree"; 95270 95254 version = "0.1.5.0"; 95271 95255 sha256 = "0wdzpli8bpgk8lrsp105zb0y5gn1r2029laclvhz264bza93q9pk"; 95272 95256 libraryHaskellDepends = [ base ]; ··· 95276 95260 ]; 95277 95261 description = "Generic finger-tree structure, with example instances"; 95278 95262 license = lib.licenses.bsd3; 95279 - hydraPlatforms = lib.platforms.none; 95280 95263 }) {}; 95281 95264 95282 95265 "fingertree-psqueue" = callPackage ··· 98300 98283 }) {}; 98301 98284 98302 98285 "formatn" = callPackage 98303 - ({ mkDerivation, base, containers, text }: 98286 + ({ mkDerivation, base, containers, QuickCheck, text }: 98304 98287 mkDerivation { 98305 98288 pname = "formatn"; 98306 - version = "0.1.0"; 98307 - sha256 = "1svixdvwzxmf5n6vx3pgx065z2gkabk563pp38bmp5z4mxvf67d9"; 98308 - libraryHaskellDepends = [ base containers text ]; 98289 + version = "0.2.0"; 98290 + sha256 = "1hgrii092rlxhmf23ckj51rj53qkwljh3rahnm0rz4rpnrm6xxjq"; 98291 + libraryHaskellDepends = [ base containers QuickCheck text ]; 98309 98292 description = "Formatting of doubles"; 98310 98293 license = lib.licenses.bsd3; 98311 98294 hydraPlatforms = lib.platforms.none; ··· 98343 98326 pname = "formatting"; 98344 98327 version = "7.1.3"; 98345 98328 sha256 = "1vrc2i1b6lxx2aq5hysfl3gl6miq2wbhxc384axvgrkqjbibnqc0"; 98346 - revision = "1"; 98347 - editedCabalFile = "046cm1jvxmsmpclrwmwc1pj90f2qdhd5ysya0ckzqrc3ls6fgcxz"; 98329 + revision = "2"; 98330 + editedCabalFile = "1i3qkhxqhvqd7mqfdc1mbizw1fin7vp4dwzayc2y0sqcbg7kkns7"; 98348 98331 libraryHaskellDepends = [ 98349 98332 base clock double-conversion ghc-prim old-locale scientific text 98350 98333 time transformers ··· 98785 98768 pname = "fourmolu"; 98786 98769 version = "0.5.0.1"; 98787 98770 sha256 = "1dal9nl08g4c8pjkn8nbk5rxbdlnl9bbavybv52kzry7qhlg71px"; 98771 + revision = "1"; 98772 + editedCabalFile = "1jkam52bff82id2bhwmwxi52d3k85pami2530qp6xci1h488gqyh"; 98788 98773 isLibrary = true; 98789 98774 isExecutable = true; 98790 98775 libraryHaskellDepends = [ ··· 99160 99145 }: 99161 99146 mkDerivation { 99162 99147 pname = "freckle-app"; 99163 - version = "1.0.2.3"; 99164 - sha256 = "05khvp1gr3ngrcfz4ly9zjmxp8pdiyjmmbrc4pv2rrlpgmnj1zfk"; 99148 + version = "1.0.2.6"; 99149 + sha256 = "0fkvpc9glzp4xm21nqvn1hfv9704hxyqrvmhl6z5qn43dv97srvf"; 99165 99150 libraryHaskellDepends = [ 99166 99151 aeson ansi-terminal base bytestring case-insensitive conduit 99167 99152 containers data-default datadog doctest ekg-core errors exceptions ··· 101569 101554 }: 101570 101555 mkDerivation { 101571 101556 pname = "futhark-server"; 101572 - version = "1.1.2.0"; 101573 - sha256 = "09kc04j5lajzc4k335sc9vcj0i0is939qvrkk10k4ib9a64nrli1"; 101557 + version = "1.1.2.1"; 101558 + sha256 = "0hbglw570j09r8f7cxcyn7dr99iykw94p6fglncw8l210jvcffbm"; 101574 101559 libraryHaskellDepends = [ 101575 101560 base binary bytestring directory futhark-data mtl process temporary 101576 101561 text ··· 106215 106200 hydraPlatforms = lib.platforms.none; 106216 106201 }) {}; 106217 106202 106203 + "ghc-exactprint_1_5_0" = callPackage 106204 + ({ mkDerivation }: 106205 + mkDerivation { 106206 + pname = "ghc-exactprint"; 106207 + version = "1.5.0"; 106208 + sha256 = "07m4cg47knrrvpyimnbc0nq9176vkzwwa64b2iqfj6azn6q2hagp"; 106209 + isLibrary = true; 106210 + isExecutable = true; 106211 + description = "ExactPrint for GHC"; 106212 + license = lib.licenses.bsd3; 106213 + hydraPlatforms = lib.platforms.none; 106214 + }) {}; 106215 + 106218 106216 "ghc-gc-tune" = callPackage 106219 106217 ({ mkDerivation, base, directory, filepath, process }: 106220 106218 mkDerivation { ··· 106283 106281 license = "unknown"; 106284 106282 hydraPlatforms = lib.platforms.none; 106285 106283 broken = true; 106284 + }) {}; 106285 + 106286 + "ghc-hs-meta" = callPackage 106287 + ({ mkDerivation, base, bytestring, ghc, ghc-boot, hspec 106288 + , template-haskell 106289 + }: 106290 + mkDerivation { 106291 + pname = "ghc-hs-meta"; 106292 + version = "0.1.0.0"; 106293 + sha256 = "0csbhd6agq3siwrlkjc063jynzxplpwi3x288kw3hhaz5nz1v3ck"; 106294 + libraryHaskellDepends = [ 106295 + base bytestring ghc ghc-boot template-haskell 106296 + ]; 106297 + testHaskellDepends = [ 106298 + base bytestring ghc ghc-boot hspec template-haskell 106299 + ]; 106300 + description = "Translate Haskell source to Template Haskell expression"; 106301 + license = lib.licenses.bsd3; 106286 106302 }) {}; 106287 106303 106288 106304 "ghc-imported-from" = callPackage ··· 106913 106929 }: 106914 106930 mkDerivation { 106915 106931 pname = "ghc-source-gen"; 106916 - version = "0.4.2.0"; 106917 - sha256 = "1cb4yb48xzpdlrbw3gp6gf6nmjgyy0i9yzh63scl872allv8jfm3"; 106918 - libraryHaskellDepends = [ base ghc ]; 106919 - testHaskellDepends = [ 106920 - base ghc ghc-paths QuickCheck tasty tasty-hunit tasty-quickcheck 106921 - ]; 106922 - description = "Constructs Haskell syntax trees for the GHC API"; 106923 - license = lib.licenses.bsd3; 106924 - }) {}; 106925 - 106926 - "ghc-source-gen_0_4_3_0" = callPackage 106927 - ({ mkDerivation, base, ghc, ghc-paths, QuickCheck, tasty 106928 - , tasty-hunit, tasty-quickcheck 106929 - }: 106930 - mkDerivation { 106931 - pname = "ghc-source-gen"; 106932 106932 version = "0.4.3.0"; 106933 106933 sha256 = "1lhqsklibgiv51hs8mnrkn784rc5sxf5z8cfv8hf9jqlny50720f"; 106934 106934 libraryHaskellDepends = [ base ghc ]; ··· 106937 106937 ]; 106938 106938 description = "Constructs Haskell syntax trees for the GHC API"; 106939 106939 license = lib.licenses.bsd3; 106940 - hydraPlatforms = lib.platforms.none; 106941 106940 }) {}; 106942 106941 106943 106942 "ghc-srcspan-plugin" = callPackage ··· 115078 115077 pname = "goldplate"; 115079 115078 version = "0.2.0"; 115080 115079 sha256 = "1f2n981676ykrv08fgdj87mj5r4841a18ywvgpc2hgapsgwbgma1"; 115081 - revision = "1"; 115082 - editedCabalFile = "09lsr2pvdrlaik4icyd18yiwnm4p87831pl3bbljmdsdc4rbwkp0"; 115080 + revision = "2"; 115081 + editedCabalFile = "1wnpg7147k48nca58lp3xg8dv38jnj8k2hdbv0312d9ndqpiws8b"; 115083 115082 isLibrary = false; 115084 115083 isExecutable = true; 115085 115084 executableHaskellDepends = [ ··· 115483 115482 ({ mkDerivation, aeson, base, bytestring, containers, exceptions 115484 115483 , filepath, generic-deriving, generic-random, HUnit, lens 115485 115484 , lens-aeson, mtl, QuickCheck, quickcheck-instances, random 115486 - , raw-strings-qq, retry, tasty, tasty-hunit, tasty-quickcheck, text 115487 - , time, transformers, unix, unliftio, unordered-containers, vector 115488 - , wreq 115485 + , raw-strings-qq, retry, tasty, tasty-discover, tasty-hunit 115486 + , tasty-quickcheck, text, time, transformers, unix, unliftio 115487 + , unordered-containers, vector, wreq 115489 115488 }: 115490 115489 mkDerivation { 115491 115490 pname = "gopro-plus"; 115492 - version = "0.6.0.4"; 115493 - sha256 = "0w0nbrbv7vb9i19wqn1za1prhj9bglqm1ac0sp1jpv8vbksiv21w"; 115491 + version = "0.6.1.1"; 115492 + sha256 = "1nip991jcv1pqa5zb83wdbf6pnimzp9d39az9zbvlvgkrrnkf522"; 115494 115493 libraryHaskellDepends = [ 115495 115494 aeson base bytestring containers exceptions filepath 115496 115495 generic-deriving generic-random lens lens-aeson mtl QuickCheck ··· 115501 115500 aeson base bytestring containers exceptions filepath 115502 115501 generic-deriving generic-random HUnit lens lens-aeson mtl 115503 115502 QuickCheck quickcheck-instances random raw-strings-qq retry tasty 115504 - tasty-hunit tasty-quickcheck text time transformers unix unliftio 115505 - unordered-containers vector wreq 115503 + tasty-discover tasty-hunit tasty-quickcheck text time transformers 115504 + unix unliftio unordered-containers vector wreq 115506 115505 ]; 115506 + testToolDepends = [ tasty-discover ]; 115507 115507 description = "GoPro Plus Client API"; 115508 115508 license = lib.licenses.bsd3; 115509 115509 hydraPlatforms = lib.platforms.none; ··· 121105 121105 pname = "hakyll"; 121106 121106 version = "4.15.1.1"; 121107 121107 sha256 = "0b3bw275q1xbx8qs9a6gzzs3c9z3qdj7skqhpp09jkchi5kdvhvi"; 121108 + revision = "1"; 121109 + editedCabalFile = "020nb84lc4xl87zysy5v81f91aw494r5aa917z08vw2zsd3jdl9g"; 121108 121110 isLibrary = true; 121109 121111 isExecutable = true; 121110 121112 enableSeparateDataOutput = true; ··· 122548 122550 }: 122549 122551 mkDerivation { 122550 122552 pname = "happstack-authenticate"; 122551 - version = "2.4.1.1"; 122552 - sha256 = "164pjybk054a3h3ydfakzibngpmp8a4cbzg0sip9slfb739nz25j"; 122553 + version = "2.5.1"; 122554 + sha256 = "13v128xcjdflzqiszal8iwbnp0ia02p2n52hwlhvb5ip2c4gipkm"; 122553 122555 enableSeparateDataOutput = true; 122554 122556 libraryHaskellDepends = [ 122555 122557 acid-state aeson authenticate base base64-bytestring boomerang ··· 125207 125209 }: 125208 125210 mkDerivation { 125209 125211 pname = "haskell-language-server"; 125210 - version = "1.6.1.0"; 125211 - sha256 = "1dc711b46kilb7dqr19m63hc20q2nzy5c6p5dzg3a4g5ixkaimwl"; 125212 + version = "1.6.1.1"; 125213 + sha256 = "03z650zk7ma0gsmb7mirzarwg0535kwmwyf0h8a89s8bqfcd5mxf"; 125212 125214 isLibrary = true; 125213 125215 isExecutable = true; 125214 125216 libraryHaskellDepends = [ ··· 127450 127452 }: 127451 127453 mkDerivation { 127452 127454 pname = "haskoin-store"; 127453 - version = "0.64.18"; 127454 - sha256 = "19prs0gz8klr52w0kiad7s26mpr352i4q98ixdn2409di4mzl42x"; 127455 + version = "0.64.19"; 127456 + sha256 = "1vbq7wq26lc1kknrfcrxlvfbadkxjrzbv6biqkvwylg3m7iwdd7d"; 127455 127457 isLibrary = true; 127456 127458 isExecutable = true; 127457 127459 libraryHaskellDepends = [ ··· 127498 127500 }: 127499 127501 mkDerivation { 127500 127502 pname = "haskoin-store-data"; 127501 - version = "0.64.18"; 127502 - sha256 = "0kpzvl4xv4gxln9qcnlg658fakjr6j1yxxz8f6ixn8bsaqmaicrx"; 127503 + version = "0.64.19"; 127504 + sha256 = "1ik200gd6lzd86kcfksjs49025ym47byih1k4aghck6hc55dh3jf"; 127503 127505 libraryHaskellDepends = [ 127504 127506 aeson base binary bytes bytestring cereal containers data-default 127505 127507 deepseq hashable haskoin-core http-client http-types lens mtl ··· 128607 128609 license = lib.licenses.mit; 128608 128610 }) {}; 128609 128611 128612 + "hasql-optparse-applicative_0_3_0_8" = callPackage 128613 + ({ mkDerivation, base-prelude, hasql, hasql-pool 128614 + , optparse-applicative 128615 + }: 128616 + mkDerivation { 128617 + pname = "hasql-optparse-applicative"; 128618 + version = "0.3.0.8"; 128619 + sha256 = "1yx56vi1dpymxk5c3rkk74bbghcxfp6x333xn2j4x2ls38676dvg"; 128620 + libraryHaskellDepends = [ 128621 + base-prelude hasql hasql-pool optparse-applicative 128622 + ]; 128623 + description = "\"optparse-applicative\" parsers for \"hasql\""; 128624 + license = lib.licenses.mit; 128625 + hydraPlatforms = lib.platforms.none; 128626 + }) {}; 128627 + 128610 128628 "hasql-pipes" = callPackage 128611 128629 ({ mkDerivation, base, bytestring-tree-builder, hasql, pipes 128612 128630 , pipes-safe, protolude ··· 128737 128755 broken = true; 128738 128756 }) {}; 128739 128757 128758 + "hasql-streams-conduit" = callPackage 128759 + ({ mkDerivation, base, conduit, hasql, hasql-streams-core 128760 + , hasql-transaction-io, transformers 128761 + }: 128762 + mkDerivation { 128763 + pname = "hasql-streams-conduit"; 128764 + version = "0.1.0.0"; 128765 + sha256 = "0cv6lzn6pax98ch1qm5yjxdg3p4z6k4bjvmcz1srr9hqda2bv15b"; 128766 + libraryHaskellDepends = [ 128767 + base conduit hasql hasql-streams-core hasql-transaction-io 128768 + transformers 128769 + ]; 128770 + description = "Stream Hasql queries with Conduit"; 128771 + license = lib.licenses.mit; 128772 + hydraPlatforms = lib.platforms.none; 128773 + }) {}; 128774 + 128775 + "hasql-streams-core" = callPackage 128776 + ({ mkDerivation, base, hasql, hasql-transaction-io }: 128777 + mkDerivation { 128778 + pname = "hasql-streams-core"; 128779 + version = "0.1.0.0"; 128780 + sha256 = "01dqqs0daknyz4zn6dq13zyw5fky8ahq2mwv9kra1zl30f6xd3kh"; 128781 + libraryHaskellDepends = [ base hasql hasql-transaction-io ]; 128782 + description = "Stream Hasql queries"; 128783 + license = lib.licenses.mit; 128784 + hydraPlatforms = lib.platforms.none; 128785 + }) {}; 128786 + 128787 + "hasql-streams-example" = callPackage 128788 + ({ mkDerivation, base, bytestring, conduit, hasql 128789 + , hasql-streams-conduit, hasql-streams-pipes 128790 + , hasql-streams-streaming, hasql-streams-streamly, hasql-th 128791 + , hasql-transaction, hasql-transaction-io, mtl, pipes, rel8 128792 + , resourcet, safe-exceptions, streaming, streamly, text 128793 + , unliftio-core 128794 + }: 128795 + mkDerivation { 128796 + pname = "hasql-streams-example"; 128797 + version = "0.1.0.0"; 128798 + sha256 = "1mj5jg1mjsn08yn1ndia1wyygbrn62dbj7fw6y2gkmqz5aysip86"; 128799 + isLibrary = false; 128800 + isExecutable = true; 128801 + executableHaskellDepends = [ 128802 + base bytestring conduit hasql hasql-streams-conduit 128803 + hasql-streams-pipes hasql-streams-streaming hasql-streams-streamly 128804 + hasql-th hasql-transaction hasql-transaction-io mtl pipes rel8 128805 + resourcet safe-exceptions streaming streamly text unliftio-core 128806 + ]; 128807 + description = "An example program that shows how to use Hasql streams with Rel8"; 128808 + license = lib.licenses.mit; 128809 + hydraPlatforms = lib.platforms.none; 128810 + }) {}; 128811 + 128812 + "hasql-streams-pipes" = callPackage 128813 + ({ mkDerivation, base, hasql, hasql-streams-core 128814 + , hasql-transaction-io, pipes, transformers 128815 + }: 128816 + mkDerivation { 128817 + pname = "hasql-streams-pipes"; 128818 + version = "0.1.0.0"; 128819 + sha256 = "1gnlz8zq1k9gngg7qyxbiyvypmjfd1idykad8vq3q3rjwxjp4i0j"; 128820 + libraryHaskellDepends = [ 128821 + base hasql hasql-streams-core hasql-transaction-io pipes 128822 + transformers 128823 + ]; 128824 + description = "Stream Hasql queries with Pipes"; 128825 + license = lib.licenses.mit; 128826 + hydraPlatforms = lib.platforms.none; 128827 + }) {}; 128828 + 128829 + "hasql-streams-streaming" = callPackage 128830 + ({ mkDerivation, base, hasql, hasql-streams-core 128831 + , hasql-transaction-io, streaming, transformers 128832 + }: 128833 + mkDerivation { 128834 + pname = "hasql-streams-streaming"; 128835 + version = "0.1.0.0"; 128836 + sha256 = "0qmwm6skp8llsj43rzkkl55if7qmgrg3lrc8nknil3z9282pbx9r"; 128837 + libraryHaskellDepends = [ 128838 + base hasql hasql-streams-core hasql-transaction-io streaming 128839 + transformers 128840 + ]; 128841 + description = "Stream Hasql queries with Streaming"; 128842 + license = lib.licenses.mit; 128843 + hydraPlatforms = lib.platforms.none; 128844 + }) {}; 128845 + 128846 + "hasql-streams-streamly" = callPackage 128847 + ({ mkDerivation, base, hasql, hasql-streams-core 128848 + , hasql-transaction-io, streamly, transformers 128849 + }: 128850 + mkDerivation { 128851 + pname = "hasql-streams-streamly"; 128852 + version = "0.1.0.0"; 128853 + sha256 = "08afl6cb86q46cfr86y3zzdrh6rfvj5s6l91v3y2v9mr56yr1knl"; 128854 + libraryHaskellDepends = [ 128855 + base hasql hasql-streams-core hasql-transaction-io streamly 128856 + transformers 128857 + ]; 128858 + description = "Stream Hasql queries with Streamly"; 128859 + license = lib.licenses.mit; 128860 + hydraPlatforms = lib.platforms.none; 128861 + }) {}; 128862 + 128740 128863 "hasql-th" = callPackage 128741 128864 ({ mkDerivation, base, bytestring, containers, contravariant, foldl 128742 128865 , hasql, postgresql-syntax, template-haskell ··· 130873 130996 }: 130874 130997 mkDerivation { 130875 130998 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130876 - version = "0.3.2.1"; 130877 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130999 + version = "0.3.2.2"; 131000 + sha256 = "0cav6m9h4wbawzy1kpbhlm3lqsgbvsl41znya1vpdmbgn0a416mf"; 130878 131001 libraryHaskellDepends = [ 130879 131002 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130880 131003 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels ··· 130904 131027 130905 131028 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130906 131029 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130907 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131030 + , mtl, template-haskell, text, text-format-heavy, unliftio-core 130908 131031 }: 130909 131032 mkDerivation { 130910 131033 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130911 - version = "0.2.0.0"; 130912 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131034 + version = "0.2.1.1"; 131035 + sha256 = "18pcg16v0azjzvc9dsr46s3y7wx5sz4i4lmly3d1rk2hwxc29r2q"; 130913 131036 libraryHaskellDepends = [ 130914 131037 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130915 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131038 + text text-format-heavy unliftio-core 130916 131039 ]; 130917 131040 testHaskellDepends = [ 130918 131041 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130919 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131042 + text text-format-heavy unliftio-core 130920 131043 ]; 130921 131044 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 130922 131045 license = lib.licenses.bsd3; ··· 131133 131256 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131134 131257 mkDerivation { 131135 131258 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131136 - version = "0.0.1.4"; 131137 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131138 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131139 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131140 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131141 - license = lib.licenses.bsd3; 131142 - }) {}; 131143 - 131144 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131145 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131146 - mkDerivation { 131147 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131148 131259 version = "0.0.1.5"; 131149 131260 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131150 131261 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131151 131262 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131152 131263 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131153 131264 license = lib.licenses.bsd3; 131154 - hydraPlatforms = lib.platforms.none; 131155 131265 }) {}; 131156 131266 131157 131267 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels ··· 131160 131270 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131161 131271 version = "1.0"; 131162 131272 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 131273 + revision = "1"; 131274 + editedCabalFile = "1rl2mf182yrlpgcm2130lsnq5jwrcpp16x6p47i27kjrpbm55g54"; 131163 131275 isLibrary = true; 131164 131276 isExecutable = true; 131165 131277 libraryHaskellDepends = [ ··· 142010 142122 }: 142011 142123 mkDerivation { 142012 142124 pname = "hs-opentelemetry-api"; 142013 - version = "0.0.3.0"; 142014 - sha256 = "03h84hks4g7nvkr38li5f59vcm48if7zjjcwcyx6kakk6hikmwx1"; 142125 + version = "0.0.3.1"; 142126 + sha256 = "04mhiqk8xbm07dfqc33vwzxd0kwb9jxqbfzd3pc4qvfpkkygmy7v"; 142015 142127 libraryHaskellDepends = [ 142016 142128 async attoparsec base binary bytestring charset clock containers 142017 142129 ghc-prim hashable http-types memory mtl template-haskell text ··· 142086 142198 }: 142087 142199 mkDerivation { 142088 142200 pname = "hs-opentelemetry-instrumentation-http-client"; 142089 - version = "0.0.1.1"; 142090 - sha256 = "0rhskdibz7g87b04yr44yqxfjf28iavf2akp4m9104yp8vf099hb"; 142201 + version = "0.0.2.0"; 142202 + sha256 = "1miw1p8dzwsnmdl63jyrbw8lygb5gk1j76dix9pmpsjp2520977j"; 142091 142203 libraryHaskellDepends = [ 142092 142204 aeson base bytestring case-insensitive conduit hs-opentelemetry-api 142093 142205 hs-opentelemetry-instrumentation-conduit http-client ··· 142865 142977 }: 142866 142978 mkDerivation { 142867 142979 pname = "hsaml2"; 142868 - version = "0.1.1"; 142869 - sha256 = "1jlsmsnrr3ya7az4mpb6f2spwcw3m45yzix2p3lkajbz8a6kfzac"; 142980 + version = "0.1.2"; 142981 + sha256 = "06vnnq5lvx3wrh6jl64vcm14fi4yj2yv9q424p2ixn55x0bsfk3i"; 142870 142982 libraryHaskellDepends = [ 142871 142983 asn1-encoding asn1-types base base64-bytestring bytestring 142872 142984 cryptonite data-default http-types hxt hxt-charproperties ··· 142875 142987 ]; 142876 142988 libraryPkgconfigDepends = [ libxml2 ]; 142877 142989 testHaskellDepends = [ 142878 - base base64-bytestring bytestring cryptonite HUnit hxt hxt-http 142879 - network-uri semigroups string-conversions time x509 142990 + base base64-bytestring bytestring cryptonite http-types HUnit hxt 142991 + hxt-http network-uri semigroups string-conversions time x509 142880 142992 ]; 142881 142993 description = "OASIS Security Assertion Markup Language (SAML) V2.0"; 142882 142994 license = lib.licenses.asl20; ··· 144699 144811 license = lib.licenses.mit; 144700 144812 }) {}; 144701 144813 144702 - "hslua-module-doclayout_1_0_1" = callPackage 144814 + "hslua-module-doclayout_1_0_2" = callPackage 144703 144815 ({ mkDerivation, base, doclayout, hslua, tasty, tasty-hunit 144704 144816 , tasty-lua, text 144705 144817 }: 144706 144818 mkDerivation { 144707 144819 pname = "hslua-module-doclayout"; 144708 - version = "1.0.1"; 144709 - sha256 = "05k4cpi3mpm9gialy0m8by808xl8nc6ccjwfqhh1sp4xm46zp0px"; 144820 + version = "1.0.2"; 144821 + sha256 = "06r1vz2xpvmwd6pghq0g38h3xzagy9043zjqx0ilnxhdx5v5fwcd"; 144710 144822 libraryHaskellDepends = [ base doclayout hslua text ]; 144711 144823 testHaskellDepends = [ 144712 144824 base doclayout hslua tasty tasty-hunit tasty-lua ··· 147712 147824 pname = "htoml-megaparsec"; 147713 147825 version = "2.1.0.4"; 147714 147826 sha256 = "08pka0z97b461bf45nvh9gymbvbwhn2dh70dy7x22xmzrigxnxw1"; 147827 + revision = "1"; 147828 + editedCabalFile = "0sziwadc2wlkfpip65d0v2wl6ldlcbn1fww4bwgw4rvmfhyrwbbc"; 147715 147829 libraryHaskellDepends = [ 147716 147830 base composition-prelude containers deepseq megaparsec mtl text 147717 147831 time unordered-containers vector ··· 147956 148070 license = lib.licenses.mit; 147957 148071 }) {}; 147958 148072 147959 - "http-client_0_7_10" = callPackage 148073 + "http-client_0_7_11" = callPackage 147960 148074 ({ mkDerivation, array, async, base, base64-bytestring 147961 148075 , blaze-builder, bytestring, case-insensitive, containers, cookie 147962 148076 , deepseq, directory, exceptions, filepath, ghc-prim, hspec 147963 - , http-types, iproute, mime-types, monad-control, network 147964 - , network-uri, random, stm, streaming-commons, text, time 148077 + , hspec-discover, http-types, iproute, mime-types, monad-control 148078 + , network, network-uri, random, stm, streaming-commons, text, time 147965 148079 , transformers, zlib 147966 148080 }: 147967 148081 mkDerivation { 147968 148082 pname = "http-client"; 147969 - version = "0.7.10"; 147970 - sha256 = "1rypq8hvnsb5g5hhhfhjym5lvvkz82z7yg5d8078scmhzb3r2ck2"; 148083 + version = "0.7.11"; 148084 + sha256 = "12j7vkpkm2djws6ny7vm2324c7916d0iaf1mbvf4mfjxzy2w7imv"; 147971 148085 libraryHaskellDepends = [ 147972 - array base base64-bytestring blaze-builder bytestring 148086 + array async base base64-bytestring blaze-builder bytestring 147973 148087 case-insensitive containers cookie deepseq exceptions filepath 147974 148088 ghc-prim http-types iproute mime-types network network-uri random 147975 148089 stm streaming-commons text time transformers ··· 147979 148093 cookie deepseq directory hspec http-types monad-control network 147980 148094 network-uri streaming-commons text time transformers zlib 147981 148095 ]; 148096 + testToolDepends = [ hspec-discover ]; 147982 148097 doCheck = false; 147983 148098 description = "An HTTP client engine"; 147984 148099 license = lib.licenses.mit; ··· 148218 148333 doCheck = false; 148219 148334 description = "http-client backend using the connection package and tls library"; 148220 148335 license = lib.licenses.mit; 148336 + }) {}; 148337 + 148338 + "http-client-tls_0_3_6" = callPackage 148339 + ({ mkDerivation, base, bytestring, case-insensitive, connection 148340 + , containers, cryptonite, data-default-class, exceptions, gauge 148341 + , hspec, http-client, http-types, memory, network, network-uri 148342 + , text, tls, transformers 148343 + }: 148344 + mkDerivation { 148345 + pname = "http-client-tls"; 148346 + version = "0.3.6"; 148347 + sha256 = "0c6pbkvk25z7xnv88mkjysfqvqjs1vmbxrdcrblald44nbs2prvd"; 148348 + libraryHaskellDepends = [ 148349 + base bytestring case-insensitive connection containers cryptonite 148350 + data-default-class exceptions http-client http-types memory network 148351 + network-uri text tls transformers 148352 + ]; 148353 + testHaskellDepends = [ 148354 + base connection hspec http-client http-types 148355 + ]; 148356 + benchmarkHaskellDepends = [ base gauge http-client ]; 148357 + doCheck = false; 148358 + description = "http-client backend using the connection package and tls library"; 148359 + license = lib.licenses.mit; 148360 + hydraPlatforms = lib.platforms.none; 148221 148361 }) {}; 148222 148362 148223 148363 "http-client-websockets" = callPackage ··· 148906 149046 license = lib.licenses.bsd3; 148907 149047 }) {}; 148908 149048 149049 + "http-streams_0_8_9_6" = callPackage 149050 + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base 149051 + , base64-bytestring, blaze-builder, bytestring, case-insensitive 149052 + , directory, filepath, ghc-prim, HsOpenSSL, hspec 149053 + , hspec-expectations, http-common, HUnit, io-streams, lifted-base 149054 + , mtl, network, network-uri, openssl-streams, random, snap-core 149055 + , snap-server, text, transformers, unordered-containers 149056 + }: 149057 + mkDerivation { 149058 + pname = "http-streams"; 149059 + version = "0.8.9.6"; 149060 + sha256 = "1h8nnp1y4ngv6mwr3fxv428kcvrd3ming179sza8fkn49pcwdlxs"; 149061 + libraryHaskellDepends = [ 149062 + aeson attoparsec base base64-bytestring blaze-builder bytestring 149063 + case-insensitive directory filepath HsOpenSSL http-common 149064 + io-streams mtl network network-uri openssl-streams text 149065 + transformers unordered-containers 149066 + ]; 149067 + testHaskellDepends = [ 149068 + aeson aeson-pretty attoparsec base base64-bytestring blaze-builder 149069 + bytestring case-insensitive directory ghc-prim HsOpenSSL hspec 149070 + hspec-expectations http-common HUnit io-streams lifted-base mtl 149071 + network network-uri openssl-streams random snap-core snap-server 149072 + text transformers unordered-containers 149073 + ]; 149074 + description = "An HTTP client using io-streams"; 149075 + license = lib.licenses.bsd3; 149076 + hydraPlatforms = lib.platforms.none; 149077 + }) {}; 149078 + 148909 149079 "http-test" = callPackage 148910 149080 ({ mkDerivation, aeson, base, bytestring, http-client, lens 148911 149081 , lens-aeson, mtl, tasty, tasty-hunit, text, time, wreq ··· 152286 152456 ({ mkDerivation, base }: 152287 152457 mkDerivation { 152288 152458 pname = "hypergeometric"; 152289 - version = "0.1.0.0"; 152290 - sha256 = "0fpwn13bmx750k6ch79aa2alh2dhc2sjdj95272knhc3khp9zxi9"; 152459 + version = "0.1.1.0"; 152460 + sha256 = "0wajl2wyxy7j44khx9bipwvz0z1dqazwym3bk5w997b8f87irpfk"; 152291 152461 libraryHaskellDepends = [ base ]; 152292 152462 description = "Hypergeometric functions"; 152293 152463 license = lib.licenses.agpl3Only; ··· 163211 163381 }: 163212 163382 mkDerivation { 163213 163383 pname = "katip-wai"; 163214 - version = "0.1.0.0"; 163215 - sha256 = "1y7f7a0pa9gdp9cvbdqd4xfrd5gazp2wy92hjmrf1fvp35xv1b2f"; 163384 + version = "0.1.1.0"; 163385 + sha256 = "0ajwa6ya0azbffcz2cpsd2kd8fy2s2hbklyj604f27pghl7fki06"; 163216 163386 libraryHaskellDepends = [ 163217 163387 aeson base bytestring clock http-types katip network text uuid wai 163218 163388 ]; ··· 166654 166824 pname = "language-c"; 166655 166825 version = "0.9.0.1"; 166656 166826 sha256 = "01yj353n85qcv9zvaf19f1260rip26h6gxqahplkx9fy7ybbnk6l"; 166827 + revision = "1"; 166828 + editedCabalFile = "0wvrvfphz5r2yqxgxfn0ki9vmqhxh49qx41xdidmibp5i826c2mn"; 166657 166829 libraryHaskellDepends = [ 166658 166830 array base bytestring containers deepseq directory filepath mtl 166659 166831 pretty process ··· 168029 168201 license = lib.licenses.bsd3; 168030 168202 }) {}; 168031 168203 168204 + "lapack-ffi-tools_0_1_3" = callPackage 168205 + ({ mkDerivation, base, bytestring, cassava, containers 168206 + , explicit-exception, filepath, non-empty, optparse-applicative 168207 + , parsec, pathtype, transformers, unordered-containers, utility-ht 168208 + , vector 168209 + }: 168210 + mkDerivation { 168211 + pname = "lapack-ffi-tools"; 168212 + version = "0.1.3"; 168213 + sha256 = "0qk5a43w8xn8pp9bhmjmjyvriiin2dyf4nvk13w858hsxyx6xqkx"; 168214 + isLibrary = false; 168215 + isExecutable = true; 168216 + enableSeparateDataOutput = true; 168217 + executableHaskellDepends = [ 168218 + base bytestring cassava containers explicit-exception filepath 168219 + non-empty optparse-applicative parsec pathtype transformers 168220 + unordered-containers utility-ht vector 168221 + ]; 168222 + description = "Generator for Haskell interface to Fortran LAPACK"; 168223 + license = lib.licenses.bsd3; 168224 + hydraPlatforms = lib.platforms.none; 168225 + }) {}; 168226 + 168032 168227 "lapack-hmatrix" = callPackage 168033 168228 ({ mkDerivation, base, comfort-array, hmatrix, lapack, netlib-ffi 168034 168229 , transformers, utility-ht, vector ··· 170118 170313 pname = "lentil"; 170119 170314 version = "1.5.3.2"; 170120 170315 sha256 = "0knc3g5n6h0yzr0kpgmgk44kbwh200qafjdvwpca92n3s0wf76py"; 170121 - revision = "1"; 170122 - editedCabalFile = "07f2bmplq73fvr2qylaz5w1p5ma20nrs32jwf1gbndp3cqklwjzi"; 170316 + revision = "2"; 170317 + editedCabalFile = "0n5wklh6f33c9yzblxwbx3mx04fxdx7mmqp551z9xfy6nnwg8hrp"; 170123 170318 isLibrary = false; 170124 170319 isExecutable = true; 170125 170320 executableHaskellDepends = [ ··· 171933 172128 }: 171934 172129 mkDerivation { 171935 172130 pname = "lifx-lan"; 171936 - version = "0.6.0.1"; 171937 - sha256 = "0fld72ndissfkpqzkzxvqgqqpjvii8slb5vdz4h9w5s1fzpz8rvj"; 172131 + version = "0.6.2"; 172132 + sha256 = "1lshzfgx0cgjqpxlknbsqwvhkmn2jc30zgyzj7lsr3jqqr41zssn"; 171938 172133 libraryHaskellDepends = [ 171939 172134 base binary bytestring composition containers extra monad-loops mtl 171940 172135 network random safe text time transformers ··· 174150 174345 license = lib.licenses.mit; 174151 174346 }) {}; 174152 174347 174153 - "literatex_0_2_0_1" = callPackage 174348 + "literatex_0_2_0_2" = callPackage 174154 174349 ({ mkDerivation, ansi-wl-pprint, base, bytestring, conduit 174155 174350 , filepath, optparse-applicative, tasty, tasty-hunit, text, ttc 174156 174351 , unliftio 174157 174352 }: 174158 174353 mkDerivation { 174159 174354 pname = "literatex"; 174160 - version = "0.2.0.1"; 174161 - sha256 = "0rc8ks4z9sb99ziv1ancdypsbfhb7qpyi4ha76rmq4jhs7kznkcq"; 174355 + version = "0.2.0.2"; 174356 + sha256 = "1j82z5q6dzgi7b8si0fzxa3zv8rgqdhwm82sxh3wqsb6z1jfwk37"; 174162 174357 isLibrary = true; 174163 174358 isExecutable = true; 174164 174359 libraryHaskellDepends = [ ··· 175041 175236 pname = "loc"; 175042 175237 version = "0.1.3.16"; 175043 175238 sha256 = "0bizqfczhc5higdzrrhinr5q3s971a3klfl3gpffnq9gyzd16nrq"; 175239 + revision = "1"; 175240 + editedCabalFile = "1j3xgxyfqby8nca2xs0x5lvvq1pyhadkzkgrwzlkckxvhghv231h"; 175044 175241 libraryHaskellDepends = [ base containers ]; 175045 175242 testHaskellDepends = [ base containers doctest hedgehog ]; 175046 175243 description = "Types representing line and column positions and ranges in text files"; ··· 175053 175250 pname = "loc-test"; 175054 175251 version = "0.1.3.10"; 175055 175252 sha256 = "0mppiz4nv86mfdk43w83jx3wn8c6w7g9k3m3jhgmwlgqpcpdrryd"; 175253 + revision = "1"; 175254 + editedCabalFile = "0cv2w939gdz5n8mip3d6rp7zs2s28synll1k3pbgp9w42mcw52lw"; 175056 175255 libraryHaskellDepends = [ base containers hedgehog loc ]; 175057 175256 description = "Test-related utilities related to the /loc/ package"; 175058 175257 license = lib.licenses.asl20; ··· 175106 175305 }: 175107 175306 mkDerivation { 175108 175307 pname = "localize"; 175109 - version = "0.2.0.0"; 175110 - sha256 = "1c0y3blyr36qrbqwnrb802h7nl6m3qzch4ivzajjan9xj5cbbswh"; 175308 + version = "0.2.0.1"; 175309 + sha256 = "1h1jarc6rg0ncb8grk0xf8jzjkxpiyc08jiz9qryh495v8fshdcm"; 175111 175310 libraryHaskellDepends = [ 175112 175311 base binary bytestring containers data-default directory filepath 175113 175312 Glob haskell-gettext mtl setlocale text text-format-heavy time ··· 180834 181033 "matrix-client" = callPackage 180835 181034 ({ mkDerivation, aeson, aeson-casing, aeson-pretty, base, base64 180836 181035 , bytestring, containers, exceptions, hashable, hspec, http-client 180837 - , http-client-tls, http-types, profunctors, retry, SHA, text, time 180838 - , unordered-containers 181036 + , http-client-tls, http-types, network-uri, profunctors, retry, SHA 181037 + , text, time, unordered-containers 180839 181038 }: 180840 181039 mkDerivation { 180841 181040 pname = "matrix-client"; 180842 - version = "0.1.3.0"; 180843 - sha256 = "14vsz507l93zdddr3k6rwvqwpwdmsansv5ryq87k58v04fyfmvz6"; 181041 + version = "0.1.4.0"; 181042 + sha256 = "1adcg3c3lar5c0cxhbgy8whlcm28xhnvbhk5qgfnss6b35bhsajk"; 180844 181043 libraryHaskellDepends = [ 180845 181044 aeson aeson-casing base base64 bytestring containers exceptions 180846 - hashable http-client http-client-tls http-types profunctors retry 180847 - SHA text time unordered-containers 181045 + hashable http-client http-client-tls http-types network-uri 181046 + profunctors retry SHA text time unordered-containers 180848 181047 ]; 180849 181048 testHaskellDepends = [ 180850 181049 aeson aeson-casing aeson-pretty base base64 bytestring containers 180851 181050 exceptions hashable hspec http-client http-client-tls http-types 180852 - profunctors retry SHA text time unordered-containers 181051 + network-uri profunctors retry SHA text time unordered-containers 180853 181052 ]; 180854 181053 description = "A matrix client library"; 180855 181054 license = lib.licenses.asl20; ··· 181712 181911 license = lib.licenses.gpl3Only; 181713 181912 }) {}; 181714 181913 181914 + "med-module_0_1_2_2" = callPackage 181915 + ({ mkDerivation, base, bytestring, storable-endian, transformers 181916 + , utility-ht 181917 + }: 181918 + mkDerivation { 181919 + pname = "med-module"; 181920 + version = "0.1.2.2"; 181921 + sha256 = "0qvwz49xz4bbhkkh9c7zjqzvbdhmgnraxpj8a4fc5lf0yb1k79ba"; 181922 + isLibrary = true; 181923 + isExecutable = true; 181924 + libraryHaskellDepends = [ 181925 + base bytestring storable-endian transformers utility-ht 181926 + ]; 181927 + description = "Parse song module files from Amiga MED and OctaMED"; 181928 + license = lib.licenses.gpl3Only; 181929 + hydraPlatforms = lib.platforms.none; 181930 + }) {}; 181931 + 181715 181932 "medea" = callPackage 181716 181933 ({ mkDerivation, aeson, algebraic-graphs, base, bytestring 181717 181934 , containers, deepseq, directory, filepath, free, hashable, hspec ··· 183865 184082 pname = "midi-music-box"; 183866 184083 version = "0.0.1.2"; 183867 184084 sha256 = "0rnjwis6y0lnyfjxnxqk3zsh78ylccq5v21avb97vybmj0pld1l9"; 183868 - revision = "1"; 183869 - editedCabalFile = "1z8ahx8hkg1gciddin86w7x136y49i6ymwvkjmf28a397kkxmcb7"; 184085 + revision = "2"; 184086 + editedCabalFile = "1w595kidg493vnv871ga2xsh94g2f80yxn4k5mlrm0jip45xxi7m"; 183870 184087 isLibrary = false; 183871 184088 isExecutable = true; 183872 184089 executableHaskellDepends = [ ··· 183934 184151 183935 184152 "midimory" = callPackage 183936 184153 ({ mkDerivation, alsa-core, alsa-seq, array, base, containers 183937 - , optparse-applicative, random, transformers, utility-ht, wx 183938 - , wxcore 184154 + , optparse-applicative, random, shell-utility, transformers 184155 + , utility-ht, wx, wxcore 183939 184156 }: 183940 184157 mkDerivation { 183941 184158 pname = "midimory"; 183942 - version = "0.0.2.1"; 183943 - sha256 = "07p0f7a0nm7h8li8rl6adrszrz7hhzn19mfy0vgkw8axdaira66r"; 184159 + version = "0.0.2.2"; 184160 + sha256 = "01zbwkx9aalxyqa7x59sqb3qagkabvsn6q57j8f7xavgch6cljiq"; 183944 184161 isLibrary = false; 183945 184162 isExecutable = true; 183946 184163 executableHaskellDepends = [ 183947 184164 alsa-core alsa-seq array base containers optparse-applicative 183948 - random transformers utility-ht wx wxcore 184165 + random shell-utility transformers utility-ht wx wxcore 183949 184166 ]; 183950 184167 description = "A Memory-like (Concentration, Pairs, ...) game for tones"; 183951 184168 license = lib.licenses.bsd3; ··· 186034 186251 license = lib.licenses.bsd3; 186035 186252 }) {}; 186036 186253 186254 + "modern-uri_0_3_4_3" = callPackage 186255 + ({ mkDerivation, base, bytestring, containers, contravariant 186256 + , criterion, deepseq, exceptions, hspec, hspec-discover 186257 + , hspec-megaparsec, megaparsec, mtl, profunctors, QuickCheck 186258 + , reflection, tagged, template-haskell, text, weigh 186259 + }: 186260 + mkDerivation { 186261 + pname = "modern-uri"; 186262 + version = "0.3.4.3"; 186263 + sha256 = "0904ff8pzcbk1swp0s1v5js468qnf3ccyzfcvaa62nsaj4qb7shq"; 186264 + libraryHaskellDepends = [ 186265 + base bytestring containers contravariant deepseq exceptions 186266 + megaparsec mtl profunctors QuickCheck reflection tagged 186267 + template-haskell text 186268 + ]; 186269 + testHaskellDepends = [ 186270 + base bytestring hspec hspec-megaparsec megaparsec QuickCheck text 186271 + ]; 186272 + testToolDepends = [ hspec-discover ]; 186273 + benchmarkHaskellDepends = [ 186274 + base bytestring criterion deepseq megaparsec text weigh 186275 + ]; 186276 + description = "Modern library for working with URIs"; 186277 + license = lib.licenses.bsd3; 186278 + hydraPlatforms = lib.platforms.none; 186279 + }) {}; 186280 + 186037 186281 "modify-fasta" = callPackage 186038 186282 ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative 186039 186283 , pipes, pipes-text, regex-tdfa, regex-tdfa-text, semigroups, split ··· 188347 188591 }: 188348 188592 mkDerivation { 188349 188593 pname = "monoid-subclasses"; 188350 - version = "1.1.2"; 188351 - sha256 = "0c9amb4yw6487kbpy3gslhpzjkzz3kiwhzz9qrmv8l7cvc2m1cb3"; 188352 - libraryHaskellDepends = [ 188353 - base bytestring containers primes text vector 188354 - ]; 188355 - testHaskellDepends = [ 188356 - base bytestring containers primes QuickCheck quickcheck-instances 188357 - tasty tasty-quickcheck text vector 188358 - ]; 188359 - description = "Subclasses of Monoid"; 188360 - license = lib.licenses.bsd3; 188361 - }) {}; 188362 - 188363 - "monoid-subclasses_1_1_3" = callPackage 188364 - ({ mkDerivation, base, bytestring, containers, primes, QuickCheck 188365 - , quickcheck-instances, tasty, tasty-quickcheck, text, vector 188366 - }: 188367 - mkDerivation { 188368 - pname = "monoid-subclasses"; 188369 188594 version = "1.1.3"; 188370 188595 sha256 = "1nglki10rlpi872p55pa8g809q5sna7yzh3zw4rqfhq89kb15wcv"; 188371 188596 libraryHaskellDepends = [ ··· 188377 188602 ]; 188378 188603 description = "Subclasses of Monoid"; 188379 188604 license = lib.licenses.bsd3; 188380 - hydraPlatforms = lib.platforms.none; 188381 188605 }) {}; 188382 188606 188383 188607 "monoid-transformer" = callPackage ··· 191679 191903 }: 191680 191904 mkDerivation { 191681 191905 pname = "multistate"; 191682 - version = "0.8.0.3"; 191683 - sha256 = "0sbrm28rjw4qgpn8p0974ljkgi30d4akbngjm58kf96x9zp7ln8g"; 191684 - isLibrary = true; 191685 - isExecutable = true; 191686 - libraryHaskellDepends = [ 191687 - base monad-control mtl tagged transformers transformers-base 191688 - ]; 191689 - testHaskellDepends = [ base hspec transformers ]; 191690 - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; 191691 - license = lib.licenses.bsd3; 191692 - }) {}; 191693 - 191694 - "multistate_0_8_0_4" = callPackage 191695 - ({ mkDerivation, base, hspec, monad-control, mtl, tagged 191696 - , transformers, transformers-base 191697 - }: 191698 - mkDerivation { 191699 - pname = "multistate"; 191700 191906 version = "0.8.0.4"; 191701 191907 sha256 = "0y42c21ha0chqhrn40a4bikdbirsw7aqg4i866frpagz1ivr915q"; 191702 191908 isLibrary = true; ··· 191707 191913 testHaskellDepends = [ base hspec transformers ]; 191708 191914 description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; 191709 191915 license = lib.licenses.bsd3; 191710 - hydraPlatforms = lib.platforms.none; 191711 191916 }) {}; 191712 191917 191713 191918 "multivariant" = callPackage ··· 195657 195862 ({ mkDerivation, base }: 195658 195863 mkDerivation { 195659 195864 pname = "network-info"; 195660 - version = "0.2.0.10"; 195661 - sha256 = "0anmgzcpnz7nw3n6vq0r25m1s9l2svpwi83wza0lzkrlbnbzd02n"; 195662 - revision = "1"; 195663 - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; 195664 - libraryHaskellDepends = [ base ]; 195665 - description = "Access the local computer's basic network configuration"; 195666 - license = lib.licenses.bsd3; 195667 - }) {}; 195668 - 195669 - "network-info_0_2_1" = callPackage 195670 - ({ mkDerivation, base }: 195671 - mkDerivation { 195672 - pname = "network-info"; 195673 195865 version = "0.2.1"; 195674 195866 sha256 = "015lm3b8n8sb16qsffjxz1jvijyy0z600ch0sm8h6a685wqqhbcv"; 195675 195867 libraryHaskellDepends = [ base ]; 195676 195868 description = "Access the local computer's basic network configuration"; 195677 195869 license = lib.licenses.bsd3; 195678 - hydraPlatforms = lib.platforms.none; 195679 195870 }) {}; 195680 195871 195681 195872 "network-interfacerequest" = callPackage ··· 198757 198948 license = lib.licenses.bsd3; 198758 198949 }) {}; 198759 198950 198951 + "nri-env-parser_0_1_0_8" = callPackage 198952 + ({ mkDerivation, base, modern-uri, network-uri, nri-prelude, text 198953 + }: 198954 + mkDerivation { 198955 + pname = "nri-env-parser"; 198956 + version = "0.1.0.8"; 198957 + sha256 = "0hwl363iya38hi021an2l4cinclz1p96n4lck2x9yi9cf4yfqzk8"; 198958 + libraryHaskellDepends = [ 198959 + base modern-uri network-uri nri-prelude text 198960 + ]; 198961 + description = "Read environment variables as settings to build 12-factor apps"; 198962 + license = lib.licenses.bsd3; 198963 + hydraPlatforms = lib.platforms.none; 198964 + }) {}; 198965 + 198760 198966 "nri-http" = callPackage 198761 198967 ({ mkDerivation, aeson, base, bytestring, conduit, http-client 198762 198968 , http-client-tls, http-types, mime-types, network-uri ··· 198764 198970 }: 198765 198971 mkDerivation { 198766 198972 pname = "nri-http"; 198767 - version = "0.1.0.3"; 198768 - sha256 = "1km4jv0g79455m3687cpihzz14pxg3wxw4r5b21mby7c8knzd1vl"; 198973 + version = "0.1.0.4"; 198974 + sha256 = "1zf55k4c4zlx2229xxs2hfl7y5c0fb3ab7vrms08imfp0hblj91x"; 198769 198975 libraryHaskellDepends = [ 198770 198976 aeson base bytestring conduit http-client http-client-tls 198771 198977 http-types mime-types network-uri nri-observability nri-prelude ··· 198787 198993 }: 198788 198994 mkDerivation { 198789 198995 pname = "nri-kafka"; 198790 - version = "0.1.0.2"; 198791 - sha256 = "0bqpfcivp2hx5s2dmx2jwndia4pwfppslzr3krqwmph1qy3h2v9i"; 198996 + version = "0.1.0.4"; 198997 + sha256 = "1cmrssyr32ks7wy8ypk6wq5daljk26a7yx61jlq2m56p5b0nvam2"; 198792 198998 libraryHaskellDepends = [ 198793 198999 aeson async base bytestring conduit containers hw-kafka-client 198794 199000 nri-env-parser nri-observability nri-prelude safe-exceptions stm ··· 198829 199035 ]; 198830 199036 description = "Report log spans collected by nri-prelude"; 198831 199037 license = lib.licenses.bsd3; 199038 + }) {}; 199039 + 199040 + "nri-observability_0_1_1_4" = callPackage 199041 + ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs 199042 + , bytestring, conduit, directory, hostname, http-client 199043 + , http-client-tls, nri-env-parser, nri-prelude, random 199044 + , safe-exceptions, stm, text, time, unordered-containers, uuid 199045 + }: 199046 + mkDerivation { 199047 + pname = "nri-observability"; 199048 + version = "0.1.1.4"; 199049 + sha256 = "077zj96iapjp6cn38z0g6didpwq866xz5m03d8kbp3pwdmfpr65c"; 199050 + libraryHaskellDepends = [ 199051 + aeson aeson-pretty async base bugsnag-hs bytestring conduit 199052 + directory hostname http-client http-client-tls nri-env-parser 199053 + nri-prelude random safe-exceptions stm text time 199054 + unordered-containers uuid 199055 + ]; 199056 + testHaskellDepends = [ 199057 + aeson aeson-pretty async base bugsnag-hs bytestring conduit 199058 + directory hostname http-client http-client-tls nri-env-parser 199059 + nri-prelude random safe-exceptions stm text time 199060 + unordered-containers uuid 199061 + ]; 199062 + description = "Report log spans collected by nri-prelude"; 199063 + license = lib.licenses.bsd3; 199064 + hydraPlatforms = lib.platforms.none; 198832 199065 }) {}; 198833 199066 198834 199067 "nri-postgresql" = callPackage ··· 198839 199072 }: 198840 199073 mkDerivation { 198841 199074 pname = "nri-postgresql"; 198842 - version = "0.1.0.3"; 198843 - sha256 = "0v07b6yq2i2pnfmiaks2vp3yj2ncfr9c3f2fx9sq6hr9z56q8hqd"; 199075 + version = "0.1.0.4"; 199076 + sha256 = "0g5wvpzd6p648hvqrwiadqfzlfsqh2fm2yxmi1ix76a2lsfhbnb9"; 198844 199077 libraryHaskellDepends = [ 198845 199078 attoparsec base bytestring filepath network nri-env-parser 198846 199079 nri-observability nri-prelude postgresql-typed resource-pool ··· 198884 199117 license = lib.licenses.bsd3; 198885 199118 }) {}; 198886 199119 199120 + "nri-prelude_0_6_0_6" = callPackage 199121 + ({ mkDerivation, aeson, aeson-pretty, async, auto-update, base 199122 + , bytestring, containers, directory, exceptions, filepath, ghc 199123 + , hedgehog, junit-xml, lens, pretty-diff, pretty-show 199124 + , safe-coloured-text, safe-coloured-text-terminfo, safe-exceptions 199125 + , terminal-size, text, time, unix, vector 199126 + }: 199127 + mkDerivation { 199128 + pname = "nri-prelude"; 199129 + version = "0.6.0.6"; 199130 + sha256 = "1i1y16pc8rph7ahj53jxrhr18qnw114zfb9z0fnd4k2cs0sryyqz"; 199131 + libraryHaskellDepends = [ 199132 + aeson aeson-pretty async auto-update base bytestring containers 199133 + directory exceptions filepath ghc hedgehog junit-xml lens 199134 + pretty-diff pretty-show safe-coloured-text 199135 + safe-coloured-text-terminfo safe-exceptions terminal-size text time 199136 + unix vector 199137 + ]; 199138 + testHaskellDepends = [ 199139 + aeson aeson-pretty async auto-update base bytestring containers 199140 + directory exceptions filepath ghc hedgehog junit-xml lens 199141 + pretty-diff pretty-show safe-coloured-text 199142 + safe-coloured-text-terminfo safe-exceptions terminal-size text time 199143 + unix vector 199144 + ]; 199145 + description = "A Prelude inspired by the Elm programming language"; 199146 + license = lib.licenses.bsd3; 199147 + hydraPlatforms = lib.platforms.none; 199148 + }) {}; 199149 + 198887 199150 "nri-redis" = callPackage 198888 199151 ({ mkDerivation, aeson, async, base, bytestring, conduit, hedis 198889 199152 , nri-env-parser, nri-observability, nri-prelude, resourcet ··· 198891 199154 }: 198892 199155 mkDerivation { 198893 199156 pname = "nri-redis"; 198894 - version = "0.1.0.3"; 198895 - sha256 = "1mdzqvnx7gzr8j99c8nza40y518jg8ajxfrvdvf90gvbglknimb0"; 199157 + version = "0.1.0.4"; 199158 + sha256 = "1ws5j8r4ny8dhw2bf2zqvq42ab9h44ly562cjrl6ha5mlk78mvpq"; 198896 199159 libraryHaskellDepends = [ 198897 199160 aeson async base bytestring conduit hedis nri-env-parser 198898 199161 nri-observability nri-prelude resourcet safe-exceptions text ··· 198914 199177 }: 198915 199178 mkDerivation { 198916 199179 pname = "nri-test-encoding"; 198917 - version = "0.1.1.1"; 198918 - sha256 = "07hrkjbyp07p0yryx92q0bjqkkjji4d952sxcm9j2w5mdvlc08mq"; 199180 + version = "0.1.1.2"; 199181 + sha256 = "1b2k4g1vm3mc72g4j979pk5y9jqn4y1aa394wfzwck7n1jhg8rzb"; 198919 199182 libraryHaskellDepends = [ 198920 199183 aeson aeson-pretty base bytestring filepath nri-prelude nri-redis 198921 199184 servant servant-auth-server servant-server text ··· 199218 199481 benchmarkHaskellDepends = [ base criterion ]; 199219 199482 description = "Convert numbers to number words"; 199220 199483 license = lib.licenses.bsd3; 199221 - hydraPlatforms = lib.platforms.none; 199222 - broken = true; 199223 199484 }) {}; 199224 199485 199225 199486 "numerals-base" = callPackage ··· 199470 199731 broken = true; 199471 199732 }) {}; 199472 199733 199473 - "numhask_0_8_1_0" = callPackage 199474 - ({ mkDerivation, base }: 199734 + "numhask_0_10_0_0" = callPackage 199735 + ({ mkDerivation, base, QuickCheck }: 199475 199736 mkDerivation { 199476 199737 pname = "numhask"; 199477 - version = "0.8.1.0"; 199478 - sha256 = "0qq9fr4nm5swarc266mnz5xly296db4nwzm7k5cwsn2pjijmyknk"; 199738 + version = "0.10.0.0"; 199739 + sha256 = "132s0yccg8fhigd6a463lrg2cqx032xfpdirvvfhrczdzirbm7xy"; 199479 199740 libraryHaskellDepends = [ base ]; 199741 + testHaskellDepends = [ base QuickCheck ]; 199480 199742 description = "A numeric class hierarchy"; 199481 199743 license = lib.licenses.bsd3; 199482 199744 hydraPlatforms = lib.platforms.none; ··· 199488 199750 }: 199489 199751 mkDerivation { 199490 199752 pname = "numhask-array"; 199491 - version = "0.9.1"; 199492 - sha256 = "02xklvpk21h97005xs1ywll83qn3h6845zxp9baljk12b9j4ls1r"; 199753 + version = "0.10.0"; 199754 + sha256 = "0dsjh20y46774hih4ijmr1d50mgm7kz5imah6ynggxmdd595lp0x"; 199493 199755 libraryHaskellDepends = [ 199494 199756 adjunctions base distributive numhask vector 199495 199757 ]; ··· 199592 199854 }: 199593 199855 mkDerivation { 199594 199856 pname = "numhask-space"; 199595 - version = "0.8.1.0"; 199596 - sha256 = "1j117m1qfnl5h286x6c8kbm06xpm8rqqkipv1qbw0sp7a0cc022z"; 199857 + version = "0.10.0.0"; 199858 + sha256 = "09x53pmn2skbv1zhjmd4wq5wxhi7sshzg3ksjx1n0fy0x16d19lf"; 199597 199859 libraryHaskellDepends = [ 199598 199860 adjunctions base containers distributive numhask random 199599 199861 semigroupoids tdigest text time vector ··· 199780 200042 license = lib.licenses.asl20; 199781 200043 }) {}; 199782 200044 199783 - "nvim-hs_2_2_0_0" = callPackage 200045 + "nvim-hs_2_2_0_1" = callPackage 199784 200046 ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit 199785 200047 , containers, data-default, deepseq, foreign-store, hslogger, hspec 199786 200048 , hspec-discover, HUnit, megaparsec, messagepack, mtl, network ··· 199793 200055 }: 199794 200056 mkDerivation { 199795 200057 pname = "nvim-hs"; 199796 - version = "2.2.0.0"; 199797 - sha256 = "196szwcd156029hsg0ql3m4zphz3hnz09yic3037hj12yp87fdzf"; 200058 + version = "2.2.0.1"; 200059 + sha256 = "1jj9n792cgv964rpgbbhc491wvyfyiplsg30n20x62gxclmjvir7"; 199798 200060 libraryHaskellDepends = [ 199799 200061 base bytestring cereal cereal-conduit conduit containers 199800 200062 data-default deepseq foreign-store hslogger megaparsec messagepack ··· 200499 200761 license = lib.licenses.bsd3; 200500 200762 }) {inherit (pkgs) unixODBC;}; 200501 200763 200764 + "odbc_0_2_6" = callPackage 200765 + ({ mkDerivation, async, attoparsec, base, bytestring, containers 200766 + , deepseq, formatting, hashable, hspec, optparse-applicative 200767 + , parsec, QuickCheck, semigroups, template-haskell, text, time 200768 + , transformers, unixODBC, unliftio-core, weigh 200769 + }: 200770 + mkDerivation { 200771 + pname = "odbc"; 200772 + version = "0.2.6"; 200773 + sha256 = "0yyyjnnlnd3zpvnh55l5gsvakrciml91jaqy5hdgnlpqfslz330r"; 200774 + isLibrary = true; 200775 + isExecutable = true; 200776 + libraryHaskellDepends = [ 200777 + async attoparsec base bytestring containers deepseq formatting 200778 + hashable parsec semigroups template-haskell text time transformers 200779 + unliftio-core 200780 + ]; 200781 + librarySystemDepends = [ unixODBC ]; 200782 + executableHaskellDepends = [ 200783 + base bytestring optparse-applicative text 200784 + ]; 200785 + testHaskellDepends = [ 200786 + base bytestring hspec parsec QuickCheck text time 200787 + ]; 200788 + benchmarkHaskellDepends = [ async base text weigh ]; 200789 + description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; 200790 + license = lib.licenses.bsd3; 200791 + hydraPlatforms = lib.platforms.none; 200792 + }) {inherit (pkgs) unixODBC;}; 200793 + 200502 200794 "odd-jobs" = callPackage 200503 200795 ({ mkDerivation, aeson, base, bytestring, containers 200504 200796 , direct-daemonize, directory, either, fast-logger, filepath ··· 201754 202046 license = lib.licenses.bsd3; 201755 202047 }) {}; 201756 202048 201757 - "openapi3_3_2_0" = callPackage 202049 + "openapi3_3_2_1" = callPackage 201758 202050 ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries 201759 202051 , bytestring, Cabal, cabal-doctest, containers, cookie, doctest 201760 202052 , generics-sop, Glob, hashable, hspec, hspec-discover, http-media ··· 201765 202057 }: 201766 202058 mkDerivation { 201767 202059 pname = "openapi3"; 201768 - version = "3.2.0"; 201769 - sha256 = "0xlfjpcl8l7xf8g65hqbiynhqh9yzsm11gm0qaax8mn7hc8k7jji"; 201770 - revision = "1"; 201771 - editedCabalFile = "0mhfsg1mgkanxy9rzhvsn3zibqhbqwsvqj6pawhsnbfn9fcyjmgb"; 202060 + version = "3.2.1"; 202061 + sha256 = "0xspxp5rma3mx5p0qy6mmq94540agl44vkc65sylp5k62x68588d"; 201772 202062 isLibrary = true; 201773 202063 isExecutable = true; 201774 202064 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 201834 202124 }) {}; 201835 202125 201836 202126 "opencc" = callPackage 201837 - ({ mkDerivation, base, bytestring, mtl, text, transformers }: 202127 + ({ mkDerivation, base, bytestring, mtl, opencc, text, transformers 202128 + }: 201838 202129 mkDerivation { 201839 202130 pname = "opencc"; 201840 - version = "0.1.0.0"; 201841 - sha256 = "09gsd816xh0237m94bnysdpjzqngsva3rl29f171rvhdpashcjx2"; 202131 + version = "0.1.1.0"; 202132 + sha256 = "06jz04352bgqnfvzds75n65x352x07ffj8aan01q6m2mjs3xidfa"; 201842 202133 libraryHaskellDepends = [ base bytestring mtl text transformers ]; 202134 + librarySystemDepends = [ opencc ]; 201843 202135 testHaskellDepends = [ base bytestring mtl text transformers ]; 201844 202136 description = "OpenCC bindings"; 201845 202137 license = lib.licenses.mit; 201846 202138 hydraPlatforms = lib.platforms.none; 201847 202139 broken = true; 201848 - }) {}; 202140 + }) {inherit (pkgs) opencc;}; 201849 202141 201850 202142 "opench-meteo" = callPackage 201851 202143 ({ mkDerivation, aeson, base, data-default, text, time }: ··· 203152 203444 }: 203153 203445 mkDerivation { 203154 203446 pname = "optima"; 203155 - version = "0.4.0.2"; 203156 - sha256 = "05jpgf4lyq4pg4j98cl2jlax1jjy27knsgjqcbbg38p1n33m7gki"; 203447 + version = "0.4.0.3"; 203448 + sha256 = "0pah3p4f5j8ah2ccb5mpq1dcjrlzvwg6pf0yfqhnq4m7j1nqhzlj"; 203157 203449 libraryHaskellDepends = [ 203158 203450 attoparsec attoparsec-data base optparse-applicative text 203159 203451 text-builder ··· 203350 203642 license = lib.licenses.bsd3; 203351 203643 }) {}; 203352 203644 203645 + "optparse-applicative_0_17_0_0" = callPackage 203646 + ({ mkDerivation, ansi-wl-pprint, base, process, QuickCheck 203647 + , transformers, transformers-compat 203648 + }: 203649 + mkDerivation { 203650 + pname = "optparse-applicative"; 203651 + version = "0.17.0.0"; 203652 + sha256 = "097p1bkvw9r3rvcr65w53yw14drb0s46ldkkl1jbmq5g7m6jwnw2"; 203653 + libraryHaskellDepends = [ 203654 + ansi-wl-pprint base process transformers transformers-compat 203655 + ]; 203656 + testHaskellDepends = [ base QuickCheck ]; 203657 + description = "Utilities and combinators for parsing command line options"; 203658 + license = lib.licenses.bsd3; 203659 + hydraPlatforms = lib.platforms.none; 203660 + }) {}; 203661 + 203353 203662 "optparse-applicative-simple" = callPackage 203354 203663 ({ mkDerivation, attoparsec, attoparsec-data, base-prelude 203355 203664 , optparse-applicative, rerebase, text ··· 203402 203711 pname = "optparse-generic"; 203403 203712 version = "1.4.7"; 203404 203713 sha256 = "03s6iwfr2iiypnx3wmnrb37zz7kflk40dj38v8j4ccqxkkf9h0kk"; 203405 - revision = "1"; 203406 - editedCabalFile = "0q3nq4qnsnx875a9vp08hgzhrbq463cdjdc4xlswcalip2qjw4y2"; 203714 + revision = "2"; 203715 + editedCabalFile = "1qypq8841xym39kmlnm0608lghh258azr6d424is96kj340bwlwz"; 203407 203716 libraryHaskellDepends = [ 203408 203717 base bytestring Only optparse-applicative system-filepath text time 203409 203718 transformers transformers-compat void ··· 204903 205212 license = lib.licenses.mit; 204904 205213 }) {}; 204905 205214 205215 + "padic" = callPackage 205216 + ({ mkDerivation, base, constraints, criterion, integer-gmp, mod 205217 + , QuickCheck, tasty, tasty-expected-failure, tasty-hunit 205218 + , tasty-quickcheck 205219 + }: 205220 + mkDerivation { 205221 + pname = "padic"; 205222 + version = "0.1.0.0"; 205223 + sha256 = "1r54aav4305sjp0wg4kkhvgqsgs9pxd3mn2l99iyabc3vd4wzmrr"; 205224 + libraryHaskellDepends = [ base constraints integer-gmp mod ]; 205225 + testHaskellDepends = [ 205226 + base constraints integer-gmp mod QuickCheck tasty 205227 + tasty-expected-failure tasty-hunit tasty-quickcheck 205228 + ]; 205229 + benchmarkHaskellDepends = [ 205230 + base constraints criterion integer-gmp mod 205231 + ]; 205232 + description = "Fast, type-safe p-adic arithmetic"; 205233 + license = lib.licenses.mit; 205234 + }) {}; 205235 + 204906 205236 "pads-haskell" = callPackage 204907 205237 ({ mkDerivation, base, byteorder, bytestring, containers, ghc-prim 204908 205238 , haskell-src-meta, HUnit, mainland-pretty, mtl, mwc-random, parsec ··· 205940 206270 ({ mkDerivation }: 205941 206271 mkDerivation { 205942 206272 pname = "pandora"; 205943 - version = "0.5.0"; 205944 - sha256 = "144k1cqb4gkwyh3w01cwsax58n9w3h1giggdb8b0dw64pnhsq8zd"; 206273 + version = "0.5.1"; 206274 + sha256 = "0xx3fjdkxrabwnqhz3bs3rai1q83zkkhq90z50pzam08nng34sw5"; 205945 206275 description = "A box of patterns and paradigms"; 205946 206276 license = lib.licenses.mit; 205947 206277 }) {}; ··· 207025 207355 pname = "park-bench"; 207026 207356 version = "0.1.0"; 207027 207357 sha256 = "0ygj4x3s0s53pwp256ypwarfiwccg3mr7drgjxp41bpc8hs66v4y"; 207358 + revision = "1"; 207359 + editedCabalFile = "07qczda4bmijbz5ci4bazikizbz4fy51c4gw1sqq7hkcfm4rz7ga"; 207028 207360 libraryHaskellDepends = [ base bytestring text ]; 207029 207361 description = "A quick-and-dirty, low-friction benchmark tool with immediate feedback"; 207030 207362 license = lib.licenses.bsd3; ··· 210400 210732 , monad-logger, mtl, path-pieces, QuickCheck, quickcheck-instances 210401 210733 , resource-pool, resourcet, scientific, shakespeare, silently 210402 210734 , template-haskell, text, th-lift-instances, time, transformers 210403 - , unliftio, unliftio-core, unordered-containers, vector 210404 - }: 210405 - mkDerivation { 210406 - pname = "persistent"; 210407 - version = "2.13.2.2"; 210408 - sha256 = "1pj5svwf85b0yndixlcqzjpqwp50zfqra99qm7hf1hlwq5g4amy9"; 210409 - libraryHaskellDepends = [ 210410 - aeson attoparsec base base64-bytestring blaze-html bytestring 210411 - conduit containers fast-logger http-api-data lift-type monad-logger 210412 - mtl path-pieces resource-pool resourcet scientific silently 210413 - template-haskell text th-lift-instances time transformers unliftio 210414 - unliftio-core unordered-containers vector 210415 - ]; 210416 - testHaskellDepends = [ 210417 - aeson attoparsec base base64-bytestring blaze-html bytestring 210418 - conduit containers fast-logger hspec http-api-data monad-logger mtl 210419 - path-pieces QuickCheck quickcheck-instances resource-pool resourcet 210420 - scientific shakespeare silently template-haskell text 210421 - th-lift-instances time transformers unliftio unliftio-core 210422 - unordered-containers vector 210423 - ]; 210424 - benchmarkHaskellDepends = [ 210425 - base criterion deepseq file-embed template-haskell text 210426 - ]; 210427 - description = "Type-safe, multi-backend data serialization"; 210428 - license = lib.licenses.mit; 210429 - maintainers = with lib.maintainers; [ psibi ]; 210430 - }) {}; 210431 - 210432 - "persistent_2_13_3_0" = callPackage 210433 - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 210434 - , blaze-html, bytestring, conduit, containers, criterion, deepseq 210435 - , fast-logger, file-embed, hspec, http-api-data, lift-type 210436 - , monad-logger, mtl, path-pieces, QuickCheck, quickcheck-instances 210437 - , resource-pool, resourcet, scientific, shakespeare, silently 210438 - , template-haskell, text, th-lift-instances, time, transformers 210439 210735 , unliftio, unliftio-core, unordered-containers, vault, vector 210440 210736 }: 210441 210737 mkDerivation { ··· 210462 210758 ]; 210463 210759 description = "Type-safe, multi-backend data serialization"; 210464 210760 license = lib.licenses.mit; 210465 - hydraPlatforms = lib.platforms.none; 210466 210761 maintainers = with lib.maintainers; [ psibi ]; 210467 210762 }) {}; 210468 210763 ··· 210792 211087 }: 210793 211088 mkDerivation { 210794 211089 pname = "persistent-mysql"; 210795 - version = "2.13.0.2"; 210796 - sha256 = "18ji7a7lb1mjgqvi2mv2cg4vlgjkyzg2hgp09s7c9v071p3ll732"; 210797 - libraryHaskellDepends = [ 210798 - aeson base blaze-builder bytestring conduit containers monad-logger 210799 - mysql mysql-simple persistent resource-pool resourcet text 210800 - transformers unliftio-core 210801 - ]; 210802 - testHaskellDepends = [ 210803 - aeson base bytestring containers fast-logger hspec http-api-data 210804 - HUnit monad-logger mysql path-pieces persistent persistent-qq 210805 - persistent-test QuickCheck quickcheck-instances resourcet text time 210806 - transformers unliftio-core 210807 - ]; 210808 - description = "Backend for the persistent library using MySQL database server"; 210809 - license = lib.licenses.mit; 210810 - }) {}; 210811 - 210812 - "persistent-mysql_2_13_1_0" = callPackage 210813 - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 210814 - , containers, fast-logger, hspec, http-api-data, HUnit 210815 - , monad-logger, mysql, mysql-simple, path-pieces, persistent 210816 - , persistent-qq, persistent-test, QuickCheck, quickcheck-instances 210817 - , resource-pool, resourcet, text, time, transformers, unliftio-core 210818 - }: 210819 - mkDerivation { 210820 - pname = "persistent-mysql"; 210821 211090 version = "2.13.1.0"; 210822 211091 sha256 = "16balbklf4800pqivmvnamjhy3xvnr9939fz3qkicfs4ba68m62k"; 210823 211092 libraryHaskellDepends = [ ··· 210833 211102 ]; 210834 211103 description = "Backend for the persistent library using MySQL database server"; 210835 211104 license = lib.licenses.mit; 210836 - hydraPlatforms = lib.platforms.none; 210837 211105 }) {}; 210838 211106 210839 211107 "persistent-mysql-haskell" = callPackage ··· 210933 211201 , postgresql-libpq, postgresql-simple, QuickCheck 210934 211202 , quickcheck-instances, resource-pool, resourcet 210935 211203 , string-conversions, text, time, transformers, unliftio 210936 - ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 210937 - }: 210938 - mkDerivation { 210939 - pname = "persistent-postgresql"; 210940 - version = "2.13.2.2"; 210941 - sha256 = "0giwwndy8f6pr4xvqgkv939x93r3sj2a6rkz4v8xrrrvmgq9hbpi"; 210942 - isLibrary = true; 210943 - isExecutable = true; 210944 - libraryHaskellDepends = [ 210945 - aeson attoparsec base blaze-builder bytestring conduit containers 210946 - monad-logger mtl persistent postgresql-libpq postgresql-simple 210947 - resource-pool resourcet string-conversions text time transformers 210948 - unliftio-core 210949 - ]; 210950 - testHaskellDepends = [ 210951 - aeson base bytestring containers fast-logger hspec 210952 - hspec-expectations hspec-expectations-lifted http-api-data HUnit 210953 - monad-logger path-pieces persistent persistent-qq persistent-test 210954 - QuickCheck quickcheck-instances resourcet text time transformers 210955 - unliftio unliftio-core unordered-containers vector 210956 - ]; 210957 - description = "Backend for the persistent library using postgresql"; 210958 - license = lib.licenses.mit; 210959 - }) {}; 210960 - 210961 - "persistent-postgresql_2_13_4_0" = callPackage 210962 - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 210963 - , conduit, containers, fast-logger, hspec, hspec-expectations 210964 - , hspec-expectations-lifted, http-api-data, HUnit, monad-logger 210965 - , mtl, path-pieces, persistent, persistent-qq, persistent-test 210966 - , postgresql-libpq, postgresql-simple, QuickCheck 210967 - , quickcheck-instances, resource-pool, resourcet 210968 - , string-conversions, text, time, transformers, unliftio 210969 211204 , unliftio-core, unordered-containers, vault, vector 210970 211205 }: 210971 211206 mkDerivation { ··· 210989 211224 ]; 210990 211225 description = "Backend for the persistent library using postgresql"; 210991 211226 license = lib.licenses.mit; 210992 - hydraPlatforms = lib.platforms.none; 210993 211227 }) {}; 210994 211228 210995 211229 "persistent-postgresql-streaming" = callPackage ··· 211155 211389 }: 211156 211390 mkDerivation { 211157 211391 pname = "persistent-sqlite"; 211158 - version = "2.13.0.4"; 211159 - sha256 = "1lvjdh2c4c7z8z8fsl8bz5rygnkph6ql01jnn53mp0v98crk2s9w"; 211160 - configureFlags = [ "-fsystemlib" ]; 211161 - isLibrary = true; 211162 - isExecutable = true; 211163 - libraryHaskellDepends = [ 211164 - aeson base bytestring conduit containers microlens-th monad-logger 211165 - mtl persistent resource-pool resourcet text time transformers 211166 - unliftio-core unordered-containers 211167 - ]; 211168 - librarySystemDepends = [ sqlite ]; 211169 - testHaskellDepends = [ 211170 - base bytestring conduit containers exceptions fast-logger hspec 211171 - HUnit microlens monad-logger mtl persistent persistent-test 211172 - QuickCheck resourcet system-fileio system-filepath temporary text 211173 - time transformers unliftio-core 211174 - ]; 211175 - description = "Backend for the persistent library using sqlite3"; 211176 - license = lib.licenses.mit; 211177 - maintainers = with lib.maintainers; [ psibi ]; 211178 - }) {inherit (pkgs) sqlite;}; 211179 - 211180 - "persistent-sqlite_2_13_1_0" = callPackage 211181 - ({ mkDerivation, aeson, base, bytestring, conduit, containers 211182 - , exceptions, fast-logger, hspec, HUnit, microlens, microlens-th 211183 - , monad-logger, mtl, persistent, persistent-test, QuickCheck 211184 - , resource-pool, resourcet, sqlite, system-fileio, system-filepath 211185 - , temporary, text, time, transformers, unliftio-core 211186 - , unordered-containers 211187 - }: 211188 - mkDerivation { 211189 - pname = "persistent-sqlite"; 211190 211392 version = "2.13.1.0"; 211191 211393 sha256 = "1z8650nv10f6yldn9sihk54c7mlcnkxwaj956igvs6q3x3s8aa1b"; 211192 211394 configureFlags = [ "-fsystemlib" ]; ··· 211206 211408 ]; 211207 211409 description = "Backend for the persistent library using sqlite3"; 211208 211410 license = lib.licenses.mit; 211209 - hydraPlatforms = lib.platforms.none; 211210 211411 maintainers = with lib.maintainers; [ psibi ]; 211211 211412 }) {inherit (pkgs) sqlite;}; 211212 211413 ··· 211255 211456 }: 211256 211457 mkDerivation { 211257 211458 pname = "persistent-test"; 211258 - version = "2.13.0.4"; 211259 - sha256 = "0vcq5wg63py4k5nv5042lcdzz24wbpwzhd2ww02ijf5wmgqqg63p"; 211260 - libraryHaskellDepends = [ 211261 - aeson base blaze-html bytestring conduit containers exceptions 211262 - hspec hspec-expectations http-api-data HUnit monad-control 211263 - monad-logger mtl path-pieces persistent QuickCheck 211264 - quickcheck-instances random resourcet text time transformers 211265 - transformers-base unliftio unliftio-core unordered-containers 211266 - ]; 211267 - description = "Tests for Persistent"; 211268 - license = lib.licenses.mit; 211269 - }) {}; 211270 - 211271 - "persistent-test_2_13_1_0" = callPackage 211272 - ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit 211273 - , containers, exceptions, hspec, hspec-expectations, http-api-data 211274 - , HUnit, monad-control, monad-logger, mtl, path-pieces, persistent 211275 - , QuickCheck, quickcheck-instances, random, resourcet, text, time 211276 - , transformers, transformers-base, unliftio, unliftio-core 211277 - , unordered-containers 211278 - }: 211279 - mkDerivation { 211280 - pname = "persistent-test"; 211281 211459 version = "2.13.1.0"; 211282 211460 sha256 = "1ccv9rrnjngwf8av3zyq28myd1iyb6831nnqjpllwlyrpgnmafvr"; 211283 211461 libraryHaskellDepends = [ ··· 211289 211467 ]; 211290 211468 description = "Tests for Persistent"; 211291 211469 license = lib.licenses.mit; 211292 - hydraPlatforms = lib.platforms.none; 211293 211470 }) {}; 211294 211471 211295 211472 "persistent-typed-db" = callPackage ··· 213243 213420 pname = "pipes"; 213244 213421 version = "4.3.16"; 213245 213422 sha256 = "163lx5sf68zx5kik5h1fjsyckwr9shdsn5k2dsjq3mhg077nxqgl"; 213246 - revision = "1"; 213247 - editedCabalFile = "1b2hkxrb3sv2jgxw3pwhzkskdbgwmli1ckmnycba4llajn9yczmh"; 213423 + revision = "2"; 213424 + editedCabalFile = "1djfzrqq5dz9gpljyf3kbrz7vhp4rvbrk5z7r3x9n3yhw00dwiwp"; 213248 213425 libraryHaskellDepends = [ 213249 213426 base exceptions mmorph mtl transformers void 213250 213427 ]; ··· 219363 219540 219364 219541 "powerdns" = callPackage 219365 219542 ({ mkDerivation, aeson, base, base64-bytestring, bytestring 219366 - , case-insensitive, containers, deepseq, http-client, servant 219367 - , servant-client, servant-client-core, tasty, tasty-hunit, text 219368 - , time 219543 + , case-insensitive, containers, deepseq, hashable, http-client 219544 + , servant, servant-client, servant-client-core, tasty, tasty-hunit 219545 + , text, time 219369 219546 }: 219370 219547 mkDerivation { 219371 219548 pname = "powerdns"; 219372 - version = "0.2.2"; 219373 - sha256 = "05znwk4s6b60rz4qf63b75y84a0yljyiynmkxj4sjafd810cbnwc"; 219549 + version = "0.3.0"; 219550 + sha256 = "1gm9rwxs6iyvwnyigxdihs3djq83z75w74rkbrmlwdrmz21pww13"; 219374 219551 libraryHaskellDepends = [ 219375 219552 aeson base base64-bytestring bytestring case-insensitive containers 219376 - deepseq servant servant-client servant-client-core text time 219553 + deepseq hashable servant servant-client servant-client-core text 219554 + time 219377 219555 ]; 219378 219556 testHaskellDepends = [ 219379 219557 base http-client servant-client servant-client-core tasty ··· 221471 221649 ]; 221472 221650 description = "Convert colors to different color spaces, interpolate colors, and transform colors"; 221473 221651 license = lib.licenses.bsd3; 221652 + }) {}; 221653 + 221654 + "pro-source" = callPackage 221655 + ({ mkDerivation, base, deepseq, hashable, optics-core 221656 + , prettyprinter, tasty, tasty-hunit, tasty-quickcheck, text, vector 221657 + }: 221658 + mkDerivation { 221659 + pname = "pro-source"; 221660 + version = "0.1.0.0"; 221661 + sha256 = "0c3xhdggw6cw8h8jxlkh4vi2xmcaibvj1c5klm9mf8cfyr4f6722"; 221662 + revision = "1"; 221663 + editedCabalFile = "1mxc6lbwdhk1d5in711ma1vvd60nckfb17ss8xbj68b8irw160ng"; 221664 + libraryHaskellDepends = [ 221665 + base deepseq hashable optics-core prettyprinter text vector 221666 + ]; 221667 + testHaskellDepends = [ 221668 + base deepseq hashable optics-core prettyprinter tasty tasty-hunit 221669 + tasty-quickcheck text vector 221670 + ]; 221671 + description = "Utilities for tracking source locations"; 221672 + license = lib.licenses.mpl20; 221474 221673 }) {}; 221475 221674 221476 221675 "probability" = callPackage ··· 226281 226480 license = lib.licenses.mit; 226282 226481 }) {}; 226283 226482 226483 + "quickcheck-higherorder_0_1_0_1" = callPackage 226484 + ({ mkDerivation, base, QuickCheck, tasty, tasty-hunit 226485 + , tasty-quickcheck, test-fun 226486 + }: 226487 + mkDerivation { 226488 + pname = "quickcheck-higherorder"; 226489 + version = "0.1.0.1"; 226490 + sha256 = "17bnbq6hndlvfv2ryingw181vhv6ab5npkjxkxs0bijv654dca2h"; 226491 + libraryHaskellDepends = [ base QuickCheck test-fun ]; 226492 + testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; 226493 + description = "QuickCheck extension for higher-order properties"; 226494 + license = lib.licenses.mit; 226495 + hydraPlatforms = lib.platforms.none; 226496 + }) {}; 226497 + 226284 226498 "quickcheck-instances" = callPackage 226285 226499 ({ mkDerivation, array, base, bytestring, case-insensitive 226286 226500 , containers, data-fix, hashable, integer-logarithms, old-time ··· 230130 230344 }: 230131 230345 mkDerivation { 230132 230346 pname = "reanimate"; 230133 - version = "1.1.4.0"; 230134 - sha256 = "0gz651ipn5w6w7adxkvkcgi6nb1d2vs72l8glz5jdll44mchdk55"; 230135 - enableSeparateDataOutput = true; 230136 - libraryHaskellDepends = [ 230137 - aeson ansi-terminal array attoparsec base base64-bytestring 230138 - bytestring cassava cereal colour containers cryptohash-sha256 230139 - cubicbezier directory filelock filepath fingertree fsnotify geojson 230140 - hashable hgeometry hgeometry-combinatorial JuicyPixels lens linear 230141 - matrix mtl neat-interpolation network open-browser 230142 - optparse-applicative parallel process random random-shuffle 230143 - reanimate-svg split temporary text time unix unordered-containers 230144 - vector vector-space websockets xml 230145 - ]; 230146 - testHaskellDepends = [ 230147 - base bytestring directory filepath linear process QuickCheck tasty 230148 - tasty-expected-failure tasty-golden tasty-hunit tasty-quickcheck 230149 - tasty-rerun temporary text vector 230150 - ]; 230151 - description = "Animation library based on SVGs"; 230152 - license = lib.licenses.publicDomain; 230153 - hydraPlatforms = lib.platforms.none; 230154 - }) {}; 230155 - 230156 - "reanimate_1_1_5_0" = callPackage 230157 - ({ mkDerivation, aeson, ansi-terminal, array, attoparsec, base 230158 - , base64-bytestring, bytestring, cassava, cereal, colour 230159 - , containers, cryptohash-sha256, cubicbezier, directory, filelock 230160 - , filepath, fingertree, fsnotify, geojson, hashable, hgeometry 230161 - , hgeometry-combinatorial, JuicyPixels, lens, linear, matrix, mtl 230162 - , neat-interpolation, network, open-browser, optparse-applicative 230163 - , parallel, process, QuickCheck, random, random-shuffle 230164 - , reanimate-svg, split, tasty, tasty-expected-failure, tasty-golden 230165 - , tasty-hunit, tasty-quickcheck, tasty-rerun, temporary, text, time 230166 - , unix, unordered-containers, vector, vector-space, websockets, xml 230167 - }: 230168 - mkDerivation { 230169 - pname = "reanimate"; 230170 230347 version = "1.1.5.0"; 230171 230348 sha256 = "0gy5s68d00szs1ljfcyisp19g3vz4i1mlbxpym0mymzc5v723wfa"; 230172 230349 enableSeparateDataOutput = true; ··· 230319 230496 libraryHaskellDepends = [ base data-default-class indexed ]; 230320 230497 description = "A library to facilitate rebinding of Haskell syntax"; 230321 230498 license = lib.licenses.mit; 230499 + }) {}; 230500 + 230501 + "rec-smallarray" = callPackage 230502 + ({ mkDerivation, base, hspec, primitive }: 230503 + mkDerivation { 230504 + pname = "rec-smallarray"; 230505 + version = "0.1.0.0"; 230506 + sha256 = "1a4vsag2h955i2pgcwiy9rzs1dpvd3j2lc1drhyg6svpm7h82amk"; 230507 + libraryHaskellDepends = [ base primitive ]; 230508 + testHaskellDepends = [ base hspec primitive ]; 230509 + description = "SmallArray-based extensible records for small-scale fast reads"; 230510 + license = lib.licenses.bsd3; 230322 230511 }) {}; 230323 230512 230324 230513 "recaptcha" = callPackage ··· 231502 231691 }: 231503 231692 mkDerivation { 231504 231693 pname = "reflex-dom-core"; 231505 - version = "0.7.0.0"; 231506 - sha256 = "0g96z0qd658g5zhcb01f7gzpk3kb016w6w67wcyrigvg4zxk2vyn"; 231694 + version = "0.7.0.1"; 231695 + sha256 = "0lhi04i5wfkgblcifah6znkwi6v7294pna48527ns74f0bjc7yy3"; 231507 231696 libraryHaskellDepends = [ 231508 231697 aeson base bifunctors bimap blaze-builder bytestring 231509 231698 case-insensitive constraints containers contravariant data-default ··· 232526 232715 pname = "regex-pcre-builtin"; 232527 232716 version = "0.95.2.3.8.44"; 232528 232717 sha256 = "0pn55ssrwr05c9sa9jvp0knvzjksz04wn3pmzf5dz4xgbyjadkna"; 232718 + revision = "1"; 232719 + editedCabalFile = "1j7wcw3f8fmd0m1iqndliw2w4jrm4rr7lyydn3xi7wxyvy8a0kmf"; 232529 232720 libraryHaskellDepends = [ 232530 232721 array base bytestring containers regex-base text 232531 232722 ]; ··· 234561 234752 maintainers = with lib.maintainers; [ maralorn ]; 234562 234753 }) {}; 234563 234754 234564 - "req_3_9_2" = callPackage 234755 + "req_3_10_0" = callPackage 234565 234756 ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder 234566 234757 , bytestring, case-insensitive, connection, exceptions, hspec 234567 234758 , hspec-core, hspec-discover, http-api-data, http-client ··· 234571 234762 }: 234572 234763 mkDerivation { 234573 234764 pname = "req"; 234574 - version = "3.9.2"; 234575 - sha256 = "17xkj5pypn4k6ncsahjc0h827kg3cyx5iy5q6iv1gvk8dwdiim0g"; 234765 + version = "3.10.0"; 234766 + sha256 = "176zl3ihmp8iz4fwfi5dalmiz658dis0hxni6bqzqgnaxhd0230w"; 234576 234767 enableSeparateDataOutput = true; 234577 234768 libraryHaskellDepends = [ 234578 234769 aeson authenticate-oauth base blaze-builder bytestring ··· 237250 237441 }: 237251 237442 mkDerivation { 237252 237443 pname = "robots-txt"; 237253 - version = "0.4.1.5"; 237254 - sha256 = "025dm3rv4cpig8j02yzkr7xinzfcqmfiaaj8x5kzjw8mgcb1qpn3"; 237444 + version = "0.4.1.7"; 237445 + sha256 = "0krmqznkkrq16bf78hs98ck6793nl68sn6lb5dv6skn8f10pzyfg"; 237255 237446 libraryHaskellDepends = [ 237256 237447 attoparsec base bytestring old-locale time 237257 237448 ]; ··· 243083 243274 pname = "sdp"; 243084 243275 version = "0.2.1.1"; 243085 243276 sha256 = "19s78i5aaj24wbbqkfa6xjkj95fgl23gyqan57pkdjcnknwpymqq"; 243277 + revision = "1"; 243278 + editedCabalFile = "1bq7gnbdk5fvxd8zbfzqxwg3xxz9k42f7xxjxqrpd3rm2m4ciski"; 243086 243279 libraryHaskellDepends = [ base data-default-class fmr ghc-prim ]; 243087 243280 libraryToolDepends = [ cpphs ]; 243088 243281 description = "Simple Data Processing"; ··· 245095 245288 license = lib.licenses.bsd3; 245096 245289 }) {}; 245097 245290 245291 + "servant_0_19" = callPackage 245292 + ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors 245293 + , bytestring, case-insensitive, constraints, deepseq, hspec 245294 + , hspec-discover, http-api-data, http-media, http-types, mmorph 245295 + , mtl, network-uri, QuickCheck, quickcheck-instances 245296 + , singleton-bool, sop-core, string-conversions, tagged, text 245297 + , transformers, vault 245298 + }: 245299 + mkDerivation { 245300 + pname = "servant"; 245301 + version = "0.19"; 245302 + sha256 = "1rahn436vc3xajn563ni25jqkg87fvhqkpswan1xy6qsfr0ikdjb"; 245303 + libraryHaskellDepends = [ 245304 + aeson attoparsec base base-compat bifunctors bytestring 245305 + case-insensitive constraints deepseq http-api-data http-media 245306 + http-types mmorph mtl network-uri QuickCheck singleton-bool 245307 + sop-core string-conversions tagged text transformers vault 245308 + ]; 245309 + testHaskellDepends = [ 245310 + aeson base base-compat bytestring hspec http-media mtl QuickCheck 245311 + quickcheck-instances string-conversions text transformers 245312 + ]; 245313 + testToolDepends = [ hspec-discover ]; 245314 + description = "A family of combinators for defining webservices APIs"; 245315 + license = lib.licenses.bsd3; 245316 + hydraPlatforms = lib.platforms.none; 245317 + }) {}; 245318 + 245098 245319 "servant-JuicyPixels" = callPackage 245099 245320 ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant 245100 245321 , servant-server, wai, warp ··· 245161 245382 license = lib.licenses.bsd3; 245162 245383 }) {}; 245163 245384 245385 + "servant-auth_0_4_1_0" = callPackage 245386 + ({ mkDerivation, aeson, base, containers, jose, lens, servant, text 245387 + , unordered-containers 245388 + }: 245389 + mkDerivation { 245390 + pname = "servant-auth"; 245391 + version = "0.4.1.0"; 245392 + sha256 = "08ggnlknhzdpf49zjm1qpzm12gckss7yr8chmzm6h6ycigz77ndd"; 245393 + libraryHaskellDepends = [ 245394 + aeson base containers jose lens servant text unordered-containers 245395 + ]; 245396 + description = "Authentication combinators for servant"; 245397 + license = lib.licenses.bsd3; 245398 + hydraPlatforms = lib.platforms.none; 245399 + }) {}; 245400 + 245164 245401 "servant-auth-client" = callPackage 245165 245402 ({ mkDerivation, aeson, base, bytestring, containers, hspec 245166 245403 , hspec-discover, http-client, http-types, jose, QuickCheck ··· 245172 245409 pname = "servant-auth-client"; 245173 245410 version = "0.4.1.0"; 245174 245411 sha256 = "16rmwdrx0qyqa821ipayczzl3gv8gvqgx8k9q8qaw19w87hwkh83"; 245175 - revision = "2"; 245176 - editedCabalFile = "0mq9nhrlh44jxkngj06pasrrjzv5193lj6d2szprnncgrk36zi31"; 245412 + revision = "3"; 245413 + editedCabalFile = "102p6mcafxsp41kzqzp59dm5d58r7mdhdijxnhhw25913qzi2pl3"; 245177 245414 libraryHaskellDepends = [ 245178 245415 base bytestring containers servant servant-auth servant-client-core 245179 245416 ]; ··· 245228 245465 pname = "servant-auth-docs"; 245229 245466 version = "0.2.10.0"; 245230 245467 sha256 = "0j1ynnrb6plrhpb2vzs2p7a9jb41llp0j1jwgap7hjhkwhyc7wxd"; 245231 - revision = "8"; 245232 - editedCabalFile = "01mb003lajxs1x82k20dbnxzdvxdla51vi4dh4f0a1xycvyhfpyi"; 245468 + revision = "9"; 245469 + editedCabalFile = "0bqs4l7iwzdx0ppyh7v4b4rmy8va3p3ijknp2dc2lwj5yclzfl32"; 245233 245470 setupHaskellDepends = [ base Cabal cabal-doctest ]; 245234 245471 libraryHaskellDepends = [ 245235 245472 base lens servant servant-auth servant-docs text ··· 245312 245549 license = lib.licenses.bsd3; 245313 245550 }) {}; 245314 245551 245552 + "servant-auth-server_0_4_7_0" = callPackage 245553 + ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder 245554 + , bytestring, case-insensitive, cookie, data-default-class, entropy 245555 + , hspec, hspec-discover, http-client, http-types, jose, lens 245556 + , lens-aeson, markdown-unlit, memory, monad-time, mtl, QuickCheck 245557 + , servant, servant-auth, servant-server, tagged, text, time 245558 + , transformers, unordered-containers, wai, warp, wreq 245559 + }: 245560 + mkDerivation { 245561 + pname = "servant-auth-server"; 245562 + version = "0.4.7.0"; 245563 + sha256 = "1m145xxqg1xy7i1br9yfh3avwkb30zh808nr658ljl7j2imlknj2"; 245564 + libraryHaskellDepends = [ 245565 + aeson base base64-bytestring blaze-builder bytestring 245566 + case-insensitive cookie data-default-class entropy http-types jose 245567 + lens memory monad-time mtl servant servant-auth servant-server 245568 + tagged text time unordered-containers wai 245569 + ]; 245570 + testHaskellDepends = [ 245571 + aeson base bytestring case-insensitive hspec http-client http-types 245572 + jose lens lens-aeson mtl QuickCheck servant servant-auth 245573 + servant-server time transformers wai warp wreq 245574 + ]; 245575 + testToolDepends = [ hspec-discover markdown-unlit ]; 245576 + description = "servant-server/servant-auth compatibility"; 245577 + license = lib.licenses.bsd3; 245578 + hydraPlatforms = lib.platforms.none; 245579 + }) {}; 245580 + 245315 245581 "servant-auth-swagger" = callPackage 245316 245582 ({ mkDerivation, base, hspec, hspec-discover, lens, QuickCheck 245317 245583 , servant, servant-auth, servant-swagger, swagger2, text ··· 245320 245586 pname = "servant-auth-swagger"; 245321 245587 version = "0.2.10.1"; 245322 245588 sha256 = "029nvb4wxwl98ah26bgcq1b7izrnvssxwn1682liimvsh4a8bady"; 245323 - revision = "3"; 245324 - editedCabalFile = "1hkszdp7c7c34b2yp2gb7khzlzq8iw5ma066r30kq2nw5jj895k0"; 245589 + revision = "4"; 245590 + editedCabalFile = "1rwywxhiz7fl5gp90nvdlc0gw0f0lg3pnigj6cpah1fsay4arscf"; 245325 245591 libraryHaskellDepends = [ 245326 245592 base lens servant servant-auth servant-swagger swagger2 text 245327 245593 ]; ··· 245527 245793 pname = "servant-blaze"; 245528 245794 version = "0.9.1"; 245529 245795 sha256 = "08fvy904mz5xjqda702kq4ch25m3nda1yhpp4g7i62j0jmxs2ji6"; 245796 + revision = "1"; 245797 + editedCabalFile = "1y38lzmh5jr3bix0cqrcx9zkjdr1598hz7rvpnm827qw0ln3cmra"; 245530 245798 libraryHaskellDepends = [ base blaze-html http-media servant ]; 245531 245799 testHaskellDepends = [ base blaze-html servant-server wai warp ]; 245532 245800 description = "Blaze-html support for servant"; ··· 245654 245922 license = lib.licenses.bsd3; 245655 245923 }) {}; 245656 245924 245925 + "servant-client_0_19" = callPackage 245926 + ({ mkDerivation, aeson, base, base-compat, bytestring, containers 245927 + , deepseq, entropy, exceptions, hspec, hspec-discover 245928 + , http-api-data, http-client, http-media, http-types, HUnit 245929 + , kan-extensions, markdown-unlit, monad-control, mtl, network 245930 + , QuickCheck, semigroupoids, servant, servant-client-core 245931 + , servant-server, sop-core, stm, tdigest, text, time, transformers 245932 + , transformers-base, transformers-compat, wai, warp 245933 + }: 245934 + mkDerivation { 245935 + pname = "servant-client"; 245936 + version = "0.19"; 245937 + sha256 = "1bdapsr6il0f019ss8wsxndpc8cd5czj40xczay5qhl7fqnxg5pa"; 245938 + libraryHaskellDepends = [ 245939 + base base-compat bytestring containers deepseq exceptions 245940 + http-client http-media http-types kan-extensions monad-control mtl 245941 + semigroupoids servant servant-client-core stm text time 245942 + transformers transformers-base transformers-compat 245943 + ]; 245944 + testHaskellDepends = [ 245945 + aeson base base-compat bytestring entropy hspec http-api-data 245946 + http-client http-types HUnit kan-extensions markdown-unlit mtl 245947 + network QuickCheck servant servant-client-core servant-server 245948 + sop-core stm tdigest text transformers transformers-compat wai warp 245949 + ]; 245950 + testToolDepends = [ hspec-discover markdown-unlit ]; 245951 + description = "Automatic derivation of querying functions for servant"; 245952 + license = lib.licenses.bsd3; 245953 + hydraPlatforms = lib.platforms.none; 245954 + }) {}; 245955 + 245657 245956 "servant-client-core" = callPackage 245658 245957 ({ mkDerivation, aeson, base, base-compat, base64-bytestring 245659 245958 , bytestring, containers, deepseq, exceptions, free, hspec ··· 245675 245974 license = lib.licenses.bsd3; 245676 245975 }) {}; 245677 245976 245977 + "servant-client-core_0_19" = callPackage 245978 + ({ mkDerivation, aeson, base, base-compat, base64-bytestring 245979 + , bytestring, constraints, containers, deepseq, exceptions, free 245980 + , hspec, hspec-discover, http-media, http-types, network-uri 245981 + , QuickCheck, safe, servant, sop-core, template-haskell, text 245982 + , transformers 245983 + }: 245984 + mkDerivation { 245985 + pname = "servant-client-core"; 245986 + version = "0.19"; 245987 + sha256 = "0cisc5cyl367cwrch1gr812aspd36a21hkwi6mwj708rpspwvrmc"; 245988 + libraryHaskellDepends = [ 245989 + aeson base base-compat base64-bytestring bytestring constraints 245990 + containers deepseq exceptions free http-media http-types 245991 + network-uri safe servant sop-core template-haskell text 245992 + transformers 245993 + ]; 245994 + testHaskellDepends = [ base base-compat deepseq hspec QuickCheck ]; 245995 + testToolDepends = [ hspec-discover ]; 245996 + description = "Core functionality and class for client function generation for servant APIs"; 245997 + license = lib.licenses.bsd3; 245998 + hydraPlatforms = lib.platforms.none; 245999 + }) {}; 246000 + 245678 246001 "servant-client-js" = callPackage 245679 246002 ({ mkDerivation, base, binary, bytestring, case-insensitive 245680 246003 , containers, exceptions, http-media, http-types, jsaddle ··· 245727 246050 pname = "servant-conduit"; 245728 246051 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 245729 246052 sha256 = "1vy3ihypb0zm2yd16rq120qw3898i3c0mahh2jysssv65g0avdwp"; 245730 - revision = "1"; 245731 - editedCabalFile = "0j7jrwyj6vnfr8wyyzjjm6gakx401aylrq8shc2y9ciy0mhf8lrv"; 246053 + revision = "3"; 246054 + editedCabalFile = "1rcxn2m95zvxqvjbagk9gmwcyvx9wanhxmafwar4y4p15mvzd8d1"; 245732 246055 libraryHaskellDepends = [ 245733 246056 base bytestring conduit mtl resourcet servant unliftio-core 245734 246057 ]; ··· 245850 246173 license = lib.licenses.bsd3; 245851 246174 }) {}; 245852 246175 246176 + "servant-docs_0_12" = callPackage 246177 + ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring 246178 + , case-insensitive, hashable, http-media, http-types, lens, servant 246179 + , string-conversions, tasty, tasty-golden, tasty-hunit, text 246180 + , transformers, universe-base, unordered-containers 246181 + }: 246182 + mkDerivation { 246183 + pname = "servant-docs"; 246184 + version = "0.12"; 246185 + sha256 = "0531jldq35sl1qlna0s1n8bakbsplg15611305dk48z80vcpa933"; 246186 + isLibrary = true; 246187 + isExecutable = true; 246188 + libraryHaskellDepends = [ 246189 + aeson aeson-pretty base base-compat bytestring case-insensitive 246190 + hashable http-media http-types lens servant string-conversions text 246191 + universe-base unordered-containers 246192 + ]; 246193 + executableHaskellDepends = [ 246194 + aeson base lens servant string-conversions text 246195 + ]; 246196 + testHaskellDepends = [ 246197 + aeson base base-compat lens servant string-conversions tasty 246198 + tasty-golden tasty-hunit transformers 246199 + ]; 246200 + description = "generate API docs for your servant webservice"; 246201 + license = lib.licenses.bsd3; 246202 + hydraPlatforms = lib.platforms.none; 246203 + }) {}; 246204 + 245853 246205 "servant-docs-simple" = callPackage 245854 246206 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, hspec 245855 246207 , hspec-core, prettyprinter, raw-strings-qq, servant, text ··· 246077 246429 pname = "servant-foreign"; 246078 246430 version = "0.15.4"; 246079 246431 sha256 = "0bznb73rbgfgkg7n4pxghkqsfca0yw9vak73c6w8sqvc2mjnc7mz"; 246432 + revision = "1"; 246433 + editedCabalFile = "0lwz3cjbz072xpg6ak0q4grs2c6i7fvvpcsbmc4ngqm695vd9ff8"; 246080 246434 libraryHaskellDepends = [ 246081 246435 base base-compat http-types lens servant text 246082 246436 ]; ··· 246278 246632 broken = true; 246279 246633 }) {}; 246280 246634 246635 + "servant-http-streams_0_18_4" = callPackage 246636 + ({ mkDerivation, aeson, base, base-compat, bytestring 246637 + , case-insensitive, containers, deepseq, entropy, exceptions, hspec 246638 + , hspec-discover, http-api-data, http-common, http-media 246639 + , http-streams, http-types, HUnit, io-streams, kan-extensions 246640 + , markdown-unlit, monad-control, mtl, network, QuickCheck 246641 + , semigroupoids, servant, servant-client-core, servant-server, stm 246642 + , tdigest, text, time, transformers, transformers-base 246643 + , transformers-compat, wai, warp 246644 + }: 246645 + mkDerivation { 246646 + pname = "servant-http-streams"; 246647 + version = "0.18.4"; 246648 + sha256 = "15f24rcgz839cb38q4gs1liqrdyqjbazcqzjdxmv4307x072pv3a"; 246649 + libraryHaskellDepends = [ 246650 + base base-compat bytestring case-insensitive containers deepseq 246651 + exceptions http-common http-media http-streams http-types 246652 + io-streams kan-extensions monad-control mtl semigroupoids servant 246653 + servant-client-core text time transformers transformers-base 246654 + transformers-compat 246655 + ]; 246656 + testHaskellDepends = [ 246657 + aeson base base-compat bytestring deepseq entropy hspec 246658 + http-api-data http-streams http-types HUnit kan-extensions 246659 + markdown-unlit mtl network QuickCheck servant servant-client-core 246660 + servant-server stm tdigest text transformers transformers-compat 246661 + wai warp 246662 + ]; 246663 + testToolDepends = [ hspec-discover markdown-unlit ]; 246664 + description = "Automatic derivation of querying functions for servant"; 246665 + license = lib.licenses.bsd3; 246666 + hydraPlatforms = lib.platforms.none; 246667 + broken = true; 246668 + }) {}; 246669 + 246281 246670 "servant-http2-client" = callPackage 246282 246671 ({ mkDerivation, aeson, async, base, binary, bytestring 246283 246672 , case-insensitive, containers, data-default-class, exceptions ··· 246457 246846 pname = "servant-machines"; 246458 246847 ({ mkDerivation, base, bytestring, directory, ihaskell, JuicyPixels 246459 246848 sha256 = "0k8abcc72s5bzcf2vmjkxxjnhk45rww6hr3l93msm2510hi6gda4"; 246460 - revision = "1"; 246461 - editedCabalFile = "0zplgs1kqfmnnx8yv8ay594misiamgmvy41b8w1h3mr7n4vrgk8j"; 246849 + revision = "2"; 246850 + editedCabalFile = "0231278v3vs5ca3cx43711kzfbhqj2s7g67zcwrj39ly8i9kxm2n"; 246462 246851 libraryHaskellDepends = [ base bytestring machines mtl servant ]; 246463 246852 testHaskellDepends = [ 246464 246853 base base-compat bytestring http-client http-media machines servant ··· 246545 246934 pname = "servant-multipart"; 246546 246935 version = "0.12.1"; 246547 246936 sha256 = "1p55kb3zhq25ncp7wimhggssn68abfgsnlldk13rk1iajaj6y8y5"; 246937 + revision = "1"; 246938 + editedCabalFile = "1vjdly7n614gzzxyf2sdkgmhkfqxbdvaf0f2pyk9mr9fxlss1g2q"; 246548 246939 libraryHaskellDepends = [ 246549 246940 base bytestring directory lens resourcet servant servant-docs 246550 246941 servant-foreign servant-multipart-api servant-server ··· 246564 246955 pname = "servant-multipart-api"; 246565 246956 version = "0.12.1"; 246566 246957 sha256 = "1gifa9g7ggs0plzffrd9a8j24dmqvgbkkdkfzyy7mpmwrjqw7mcj"; 246958 + revision = "1"; 246959 + editedCabalFile = "0nwk49xmzwxxlgcsqa62nwvyfqmxb0ab1ncnn96gpqyxkqbv2gxd"; 246567 246960 libraryHaskellDepends = [ 246568 246961 base bytestring servant text transformers 246569 246962 ]; ··· 246581 246974 pname = "servant-multipart-client"; 246582 246975 version = "0.12.1"; 246583 246976 sha256 = "07haaf9nq96lfv2dhqf4319vl321f53v0mypbbg3swzb6rrfkw9h"; 246977 + revision = "1"; 246978 + editedCabalFile = "1mzh1a37hmq4zl0annnk3xabgli2jndkvx80amhsn97111fiz7lz"; 246584 246979 isLibrary = true; 246585 246980 isExecutable = true; 246586 246981 libraryHaskellDepends = [ ··· 246663 247058 pname = "servant-openapi3"; 246664 247059 version = "2.0.1.3"; 246665 247060 sha256 = "1nvxaskizv5qgznvxdg4crdh4dra5rj7abiky5bd927gnwvbir6s"; 246666 - revision = "1"; 246667 - editedCabalFile = "08ajlbydnklqdv8gyrqihdn27h5hjvlvjv628xg05w7waa2c15vy"; 247061 + revision = "2"; 247062 + editedCabalFile = "08cfsqx530kyc90p83kf35pyyl90vx85kz1xvmd9lm54785d2znv"; 246668 247063 setupHaskellDepends = [ base Cabal cabal-doctest ]; 246669 247064 libraryHaskellDepends = [ 246670 247065 aeson aeson-pretty base base-compat bytestring hspec http-media ··· 246744 247139 pname = "servant-pipes"; 246745 247140 version = "0.15.3"; 246746 247141 sha256 = "1sd01f95rkraa0zdqqg2vwx91zsih0i0hqqkz55nnw9bsbsqhq1n"; 247142 + revision = "2"; 247143 + editedCabalFile = "1idjvfr8w5hr9dvhj9x08sfpy5xvjf0l7a5jhx9hdlfmrxk1cd8c"; 246747 247144 libraryHaskellDepends = [ 246748 247145 base bytestring monad-control mtl pipes pipes-safe servant 246749 247146 ]; ··· 247182 247579 license = lib.licenses.bsd3; 247183 247580 }) {}; 247184 247581 247582 + "servant-server_0_19" = callPackage 247583 + ({ mkDerivation, aeson, base, base-compat, base64-bytestring 247584 + , bytestring, constraints, containers, directory, exceptions 247585 + , filepath, hspec, hspec-discover, hspec-wai, http-api-data 247586 + , http-media, http-types, monad-control, mtl, network, network-uri 247587 + , QuickCheck, resourcet, safe, servant, should-not-typecheck 247588 + , sop-core, string-conversions, tagged, temporary, text 247589 + , transformers, transformers-base, transformers-compat, wai 247590 + , wai-app-static, wai-extra, warp, word8 247591 + }: 247592 + mkDerivation { 247593 + pname = "servant-server"; 247594 + version = "0.19"; 247595 + sha256 = "0d7z1r9g86cshqqacnw1ls4h5ijpwznbprk2kvnc8j8drjcmnrf1"; 247596 + isLibrary = true; 247597 + isExecutable = true; 247598 + libraryHaskellDepends = [ 247599 + base base-compat base64-bytestring bytestring constraints 247600 + containers exceptions filepath http-api-data http-media http-types 247601 + monad-control mtl network network-uri resourcet servant sop-core 247602 + string-conversions tagged text transformers transformers-base wai 247603 + wai-app-static word8 247604 + ]; 247605 + executableHaskellDepends = [ 247606 + aeson base base-compat servant text wai warp 247607 + ]; 247608 + testHaskellDepends = [ 247609 + aeson base base-compat base64-bytestring bytestring directory hspec 247610 + hspec-wai http-types mtl QuickCheck resourcet safe servant 247611 + should-not-typecheck sop-core string-conversions temporary text 247612 + transformers transformers-compat wai wai-extra 247613 + ]; 247614 + testToolDepends = [ hspec-discover ]; 247615 + description = "A family of combinators for defining webservices APIs and serving them"; 247616 + license = lib.licenses.bsd3; 247617 + hydraPlatforms = lib.platforms.none; 247618 + }) {}; 247619 + 247185 247620 "servant-server-namedargs" = callPackage 247186 247621 ({ mkDerivation, base, bytestring, http-api-data, http-types, named 247187 247622 , servant, servant-namedargs, servant-server, string-conversions ··· 247461 247896 pname = "servant-swagger"; 247462 247897 version = "1.1.10"; 247463 247898 sha256 = "0y6zylhs4z0nfz75d4i2azcq0yh2bd4inanwblx4035dgkk1q78a"; 247899 + revision = "1"; 247900 + editedCabalFile = "1x18nl7sriqwphdyy8v819vbcx27my5mcx9h9hnds2ph82p3zywc"; 247464 247901 setupHaskellDepends = [ base Cabal cabal-doctest ]; 247465 247902 libraryHaskellDepends = [ 247466 247903 aeson aeson-pretty base base-compat bytestring hspec http-media ··· 247502 247939 pname = "servant-swagger-ui"; 247503 247940 version = "0.3.5.3.52.5"; 247504 247941 sha256 = "1m7scy7fm19zk6xq5mb9l12ajdhm0ml9zl60rqr2m86x4q2i6gq0"; 247942 + revision = "1"; 247943 + editedCabalFile = "1hdwdhw8ipwf16asbpjgkbvchvc3ax1wqnpcdcjpagniay2x253r"; 247505 247944 libraryHaskellDepends = [ 247506 247945 aeson base bytestring file-embed-lzma servant servant-server 247507 247946 servant-swagger-ui-core text ··· 247510 247949 license = lib.licenses.bsd3; 247511 247950 }) {}; 247512 247951 247952 + "servant-swagger-ui_0_3_5_4_5_0" = callPackage 247953 + ({ mkDerivation, aeson, base, bytestring, file-embed-lzma, servant 247954 + , servant-server, servant-swagger-ui-core, text 247955 + }: 247956 + mkDerivation { 247957 + pname = "servant-swagger-ui"; 247958 + version = "0.3.5.4.5.0"; 247959 + sha256 = "12w75z23bnygyr3ki9w3zfy9nhxyjawf9pyzhfg6rp2mq3nji9gg"; 247960 + libraryHaskellDepends = [ 247961 + aeson base bytestring file-embed-lzma servant servant-server 247962 + servant-swagger-ui-core text 247963 + ]; 247964 + description = "Servant swagger ui"; 247965 + license = lib.licenses.bsd3; 247966 + hydraPlatforms = lib.platforms.none; 247967 + }) {}; 247968 + 247513 247969 "servant-swagger-ui-core" = callPackage 247514 247970 ({ mkDerivation, aeson, base, blaze-markup, bytestring, http-media 247515 247971 , servant, servant-blaze, servant-server, text, transformers ··· 247519 247975 pname = "servant-swagger-ui-core"; 247520 247976 version = "0.3.5"; 247521 247977 sha256 = "0ckvrwrb3x39hfl2hixcj3fhibh0vqsh6y7n1lsm25yvzfrg02zd"; 247522 - revision = "1"; 247523 - editedCabalFile = "0fk7bj8fndxf1aw8xhhacjp8rrvx10gj7kh9d2pvjavnz310ymxg"; 247978 + revision = "2"; 247979 + editedCabalFile = "02g98dy08wj7ryrrbk8547s6ad4a59d6z4pczmf6pc59kdjvjx3n"; 247524 247980 libraryHaskellDepends = [ 247525 247981 aeson base blaze-markup bytestring http-media servant servant-blaze 247526 247982 servant-server text transformers transformers-compat wai-app-static ··· 247537 247993 pname = "servant-swagger-ui-jensoleg"; 247538 247994 version = "0.3.4"; 247539 247995 sha256 = "04s4syfmnjwa52xqm29x2sfi1ka6p7fpjff0pxry099rh0d59hkm"; 247540 - revision = "1"; 247541 - editedCabalFile = "0yvgbyqdkjp5qv88gm7wgcl5rb4haijc4jfmmfcq8g63ya7msx9x"; 247996 + revision = "2"; 247997 + editedCabalFile = "0a98f9xxy69741fj4cqx7qgh9cpbjk03bgga3h3yx2kjidps0cdm"; 247542 247998 libraryHaskellDepends = [ 247543 247999 aeson base bytestring file-embed-lzma servant servant-server 247544 248000 servant-swagger-ui-core text ··· 247555 248011 pname = "servant-swagger-ui-redoc"; 247556 248012 version = "0.3.4.1.22.3"; 247557 248013 sha256 = "0ln2sz7ffhddk4dqvczpxb5g8f6bic7sandn5zifpz2jg7lgzy0f"; 247558 - revision = "1"; 247559 - editedCabalFile = "1w6h6g8hlsyv87xxxyrsjz5gdkphmxgc4y63g8mmv4hgdncrb1jk"; 248014 + revision = "2"; 248015 + editedCabalFile = "0pd85v4fbz6la90qll5mb9v2f2v8c5x1iwy4s3kk6mxcvzxih968"; 247560 248016 libraryHaskellDepends = [ 247561 248017 aeson base bytestring file-embed-lzma servant servant-server 247562 248018 servant-swagger-ui-core text ··· 256971 257427 pname = "sound-collage"; 256972 257428 version = "0.2.1"; 256973 257429 sha256 = "09g63b3k0l30z3lxmcz0zpggqqhnr7m01wh2vpm5v561rbnl8rsi"; 257430 + revision = "1"; 257431 + editedCabalFile = "07zs924gils8nsb5b8q6lmh4g6iln6dkj3qic8p8cpwkrazjfwsx"; 256974 257432 isLibrary = false; 256975 257433 isExecutable = true; 256976 257434 executableHaskellDepends = [ ··· 257779 258237 description = "Computational combinatorial species"; 257780 258238 license = lib.licenses.bsd3; 257781 258239 hydraPlatforms = lib.platforms.none; 258240 + }) {}; 258241 + 258242 + "spectacle" = callPackage 258243 + ({ mkDerivation, base, comonad, containers, hashable, hedgehog 258244 + , logict, microlens, microlens-mtl, mtl, optparse-applicative 258245 + , prettyprinter, prettyprinter-ansi-terminal, tasty, tasty-hedgehog 258246 + , text, transformers 258247 + }: 258248 + mkDerivation { 258249 + pname = "spectacle"; 258250 + version = "1.0.0"; 258251 + sha256 = "0zbxbhjid1j44f31n9h8hsildfx2lf92p1s9dw62gr0xn30kf4gj"; 258252 + libraryHaskellDepends = [ 258253 + base comonad containers hashable logict microlens microlens-mtl mtl 258254 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 258255 + transformers 258256 + ]; 258257 + testHaskellDepends = [ 258258 + base comonad containers hashable hedgehog microlens tasty 258259 + tasty-hedgehog 258260 + ]; 258261 + description = "Embedded specification language & model checker in Haskell"; 258262 + license = lib.licenses.asl20; 257782 258263 }) {}; 257783 258264 257784 258265 "spectral-clustering" = callPackage ··· 259711 260192 }: 259712 260193 mkDerivation { 259713 260194 pname = "stack-clean-old"; 259714 - version = "0.4.5"; 259715 - sha256 = "04qc3z7xgs8p814lnpwyqgwza7i6wz9mkmzzk0ggq6mv32zzz7kb"; 260195 + version = "0.4.6"; 260196 + sha256 = "0ymzri4pxs0dvqbs3nyrc6hq2lp6y6glva1kbjzpkzgk9r93x3kn"; 259716 260197 isLibrary = false; 259717 260198 isExecutable = true; 259718 260199 executableHaskellDepends = [ 259719 260200 base directory extra filemanip filepath simple-cmd simple-cmd-args 259720 260201 ]; 259721 - description = "Clean away old stack build artefacts"; 260202 + description = "Clean away old stack build artifacts"; 259722 260203 license = lib.licenses.bsd3; 259723 260204 }) {}; 259724 260205 ··· 262796 263277 license = lib.licenses.mit; 262797 263278 }) {}; 262798 263279 263280 + "streaming-commons_0_2_2_4" = callPackage 263281 + ({ mkDerivation, array, async, base, bytestring, deepseq, directory 263282 + , gauge, hspec, network, process, QuickCheck, random, stm, text 263283 + , transformers, unix, zlib 263284 + }: 263285 + mkDerivation { 263286 + pname = "streaming-commons"; 263287 + version = "0.2.2.4"; 263288 + sha256 = "1wnc2hi90djilj1m0la3h3xri723pbpmfdyp0kxxs33irs6418an"; 263289 + libraryHaskellDepends = [ 263290 + array async base bytestring directory network process random stm 263291 + text transformers unix zlib 263292 + ]; 263293 + testHaskellDepends = [ 263294 + array async base bytestring deepseq hspec network QuickCheck text 263295 + unix zlib 263296 + ]; 263297 + benchmarkHaskellDepends = [ base bytestring deepseq gauge text ]; 263298 + description = "Common lower-level functions needed by various streaming data libraries"; 263299 + license = lib.licenses.mit; 263300 + hydraPlatforms = lib.platforms.none; 263301 + }) {}; 263302 + 262799 263303 "streaming-concurrency" = callPackage 262800 263304 ({ mkDerivation, base, exceptions, hspec, HUnit, lifted-async 262801 263305 , monad-control, QuickCheck, quickcheck-instances, stm, streaming ··· 263784 264288 license = lib.licenses.bsd3; 263785 264289 }) {}; 263786 264290 264291 + "strict-tuple_0_1_5" = callPackage 264292 + ({ mkDerivation, base, bifunctors, deepseq, hashable }: 264293 + mkDerivation { 264294 + pname = "strict-tuple"; 264295 + version = "0.1.5"; 264296 + sha256 = "1n0rw1vvvsgznx4i21480qzzs44iw35hcdiw0d160war7nf2pyp5"; 264297 + libraryHaskellDepends = [ base bifunctors deepseq hashable ]; 264298 + testHaskellDepends = [ base ]; 264299 + description = "Strict tuples"; 264300 + license = lib.licenses.bsd3; 264301 + hydraPlatforms = lib.platforms.none; 264302 + }) {}; 264303 + 263787 264304 "strict-tuple-lens" = callPackage 263788 264305 ({ mkDerivation, base, lens, strict-tuple }: 263789 264306 mkDerivation { ··· 264072 264589 }: 264073 264590 mkDerivation { 264074 264591 pname = "string-random"; 264075 - version = "0.1.4.1"; 264076 - sha256 = "1ggz48mzyzch3ga4682jd9y4g1j6px1anv7k8cczjlz9f4lh73nd"; 264077 - isLibrary = true; 264078 - isExecutable = true; 264079 - libraryHaskellDepends = [ 264080 - attoparsec base containers random text transformers 264081 - ]; 264082 - executableHaskellDepends = [ base optparse-applicative text ]; 264083 - testHaskellDepends = [ 264084 - base bytestring pcre-heavy QuickCheck tasty tasty-hunit 264085 - tasty-quickcheck text 264086 - ]; 264087 - description = "A library for generating random string from a regular experession"; 264088 - license = lib.licenses.bsd3; 264089 - }) {}; 264090 - 264091 - "string-random_0_1_4_2" = callPackage 264092 - ({ mkDerivation, attoparsec, base, bytestring, containers 264093 - , optparse-applicative, pcre-heavy, QuickCheck, random, tasty 264094 - , tasty-hunit, tasty-quickcheck, text, transformers 264095 - }: 264096 - mkDerivation { 264097 - pname = "string-random"; 264098 264592 version = "0.1.4.2"; 264099 264593 sha256 = "0rqh0cwywlzg4xyb1s80mghl3kq3sngg8xjbh4g9x4p8fc6maiw9"; 264100 264594 isLibrary = true; ··· 264109 264603 ]; 264110 264604 description = "A library for generating random string from a regular experession"; 264111 264605 license = lib.licenses.bsd3; 264112 - hydraPlatforms = lib.platforms.none; 264113 264606 }) {}; 264114 264607 264115 264608 "string-similarity" = callPackage ··· 266358 266851 license = lib.licenses.bsd3; 266359 266852 }) {}; 266360 266853 266361 - "swagger2_2_7" = callPackage 266854 + "swagger2_2_8_1" = callPackage 266362 266855 ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries 266363 266856 , bytestring, Cabal, cabal-doctest, containers, cookie, doctest 266364 266857 , generics-sop, Glob, hashable, hspec, hspec-discover, http-media ··· 266369 266862 }: 266370 266863 mkDerivation { 266371 266864 pname = "swagger2"; 266372 - version = "2.7"; 266373 - sha256 = "1p3vi90siylgg94s7izmdvp2i36g017q2hnl90d1rpphi0nd1f6b"; 266865 + version = "2.8.1"; 266866 + sha256 = "19y7krvgx5vdrr0wx3jkkwvdncn3gzyn168sqs333dxs4l3jnxvx"; 266374 266867 setupHaskellDepends = [ base Cabal cabal-doctest ]; 266375 266868 libraryHaskellDepends = [ 266376 266869 aeson aeson-pretty base base-compat-batteries bytestring containers ··· 268114 268607 pname = "synthesizer-llvm"; 268115 268608 version = "0.9"; 268116 268609 sha256 = "0bqncysaq164235792657yyf1ngkr7gm9vkzkbiqy6f7g7a62shd"; 268610 + revision = "1"; 268611 + editedCabalFile = "04z0s3hkpdcmri4w34s2ssz9wwf60z1ccc0bc3bphs1caz8i61j2"; 268117 268612 isLibrary = true; 268118 268613 isExecutable = true; 268119 268614 libraryHaskellDepends = [ ··· 269432 269927 }: 269433 269928 mkDerivation { 269434 269929 pname = "tailwind"; 269435 - version = "0.1.0.0"; 269436 - sha256 = "1wvmygaf8dmy9h0wzxb3623rpdmzvhzr879yc4sm94bzd42y8cy6"; 269930 + version = "0.2.0.0"; 269931 + sha256 = "08m4mkk3fsrzpna3747gc2ln981nd7x17p3kzzvirs7p6js513yh"; 269437 269932 isLibrary = true; 269438 269933 isExecutable = true; 269439 269934 libraryHaskellDepends = [ ··· 271542 272037 }) {}; 271543 272038 271544 272039 "telegram-bot-simple" = callPackage 271545 - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron 271546 - , filepath, hashable, http-api-data, http-client, http-client-tls 271547 - , monad-control, mtl, pretty-show, profunctors, servant 271548 - , servant-client, servant-multipart, servant-multipart-api 271549 - , servant-multipart-client, split, stm, template-haskell, text 271550 - , time, transformers, unordered-containers 272040 + ({ mkDerivation, aeson, aeson-pretty, base, blaze-html, bytestring 272041 + , cookie, cron, dhall, filepath, hashable, http-api-data 272042 + , http-client, http-client-tls, http-types, monad-control, mtl 272043 + , optparse-applicative, pretty-show, prettyprinter, profunctors 272044 + , QuickCheck, random, servant, servant-blaze, servant-client 272045 + , servant-multipart, servant-multipart-api 272046 + , servant-multipart-client, servant-server, split, stm 272047 + , template-haskell, text, time, transformers, unix 272048 + , unordered-containers, uuid, warp 271551 272049 }: 271552 272050 mkDerivation { 271553 272051 pname = "telegram-bot-simple"; 271554 - version = "0.3.8"; 271555 - sha256 = "0nqzghd3apfic1idrx03g5a6xihghi35ha28mcksgji9zp42595q"; 272052 + version = "0.4"; 272053 + sha256 = "1c73vyhl8xlac0vjgyjh8rfszm9zri4absmxpdr79djs9rrfwk2s"; 271556 272054 isLibrary = true; 271557 272055 isExecutable = true; 271558 272056 libraryHaskellDepends = [ ··· 271563 272061 template-haskell text time transformers unordered-containers 271564 272062 ]; 271565 272063 executableHaskellDepends = [ 271566 - aeson aeson-pretty base bytestring cron filepath hashable 271567 - http-api-data http-client http-client-tls monad-control mtl 271568 - pretty-show profunctors servant servant-client servant-multipart 271569 - servant-multipart-api servant-multipart-client split stm 271570 - template-haskell text time transformers unordered-containers 272064 + aeson aeson-pretty base blaze-html bytestring cookie cron dhall 272065 + filepath hashable http-api-data http-client http-client-tls 272066 + http-types monad-control mtl optparse-applicative pretty-show 272067 + prettyprinter profunctors QuickCheck random servant servant-blaze 272068 + servant-client servant-multipart servant-multipart-api 272069 + servant-multipart-client servant-server split stm template-haskell 272070 + text time transformers unix unordered-containers uuid warp 271571 272071 ]; 271572 272072 description = "Easy to use library for building Telegram bots"; 271573 272073 license = lib.licenses.bsd3; ··· 273945 274445 license = lib.licenses.bsd3; 273946 274446 }) {inherit (pkgs) icu;}; 273947 274447 274448 + "text-icu_0_8_0" = callPackage 274449 + ({ mkDerivation, array, base, bytestring, deepseq, directory 274450 + , ghc-prim, HUnit, icu, icu-i18n, icu-uc, QuickCheck, random 274451 + , test-framework, test-framework-hunit, test-framework-quickcheck2 274452 + , text, time 274453 + }: 274454 + mkDerivation { 274455 + pname = "text-icu"; 274456 + version = "0.8.0"; 274457 + sha256 = "1dpnh5izvjma0i3diqjdyag389cbnsv9fysyla2jy1nrpfrf9z8m"; 274458 + revision = "1"; 274459 + editedCabalFile = "0mz894ykvyb9ziprnwx3s9lcda6lsy60s0dgrh5silgsym99r3s9"; 274460 + libraryHaskellDepends = [ base bytestring deepseq text time ]; 274461 + librarySystemDepends = [ icu ]; 274462 + libraryPkgconfigDepends = [ icu-i18n icu-uc ]; 274463 + testHaskellDepends = [ 274464 + array base bytestring deepseq directory ghc-prim HUnit QuickCheck 274465 + random test-framework test-framework-hunit 274466 + test-framework-quickcheck2 text 274467 + ]; 274468 + description = "Bindings to the ICU library"; 274469 + license = lib.licenses.bsd3; 274470 + hydraPlatforms = lib.platforms.none; 274471 + }) {inherit (pkgs) icu; icu-i18n = null; icu-uc = null;}; 274472 + 273948 274473 "text-icu-normalized" = callPackage 273949 274474 ({ mkDerivation, base, base-unicode-symbols, bytestring, containers 273950 274475 , exceptions, filepath, HUnit, lens, parsec, QuickCheck ··· 275535 276060 275536 276061 "thank-you-stars" = callPackage 275537 276062 ({ mkDerivation, aeson, base, bytestring, Cabal, containers 275538 - , directory, filepath, hackage-db, hspec, req, split, text 276063 + , directory, filepath, hackage-db, hspec, hspec-discover, req 276064 + , split, text 275539 276065 }: 275540 276066 mkDerivation { 275541 276067 pname = "thank-you-stars"; 275542 - version = "0.3.0"; 275543 - sha256 = "0cks475c8ivhikci7h8zkvxhxmp7n9w85b16wvx998q3bjrbkj04"; 276068 + version = "1.0.1"; 276069 + sha256 = "1nlmfpm05fsn18rygj33vf4sydn6zk4sx6sp72s1f73llvqrpvhs"; 275544 276070 isLibrary = true; 275545 276071 isExecutable = true; 275546 276072 libraryHaskellDepends = [ ··· 275551 276077 testHaskellDepends = [ 275552 276078 base Cabal containers directory filepath hspec 275553 276079 ]; 276080 + testToolDepends = [ hspec-discover ]; 275554 276081 description = "Give your dependencies stars on GitHub!"; 275555 276082 license = lib.licenses.bsd3; 275556 276083 hydraPlatforms = lib.platforms.none; ··· 280104 280631 hydraPlatforms = lib.platforms.none; 280105 280632 }) {}; 280106 280633 280107 - "transformers_0_6_0_2" = callPackage 280634 + "transformers_0_6_0_3" = callPackage 280108 280635 ({ mkDerivation, base }: 280109 280636 mkDerivation { 280110 280637 pname = "transformers"; 280111 - version = "0.6.0.2"; 280112 - sha256 = "1d907i06lgmis4s1mhjn6f4f3991vpycv9pl61h4xn2hwxasq3k2"; 280113 - revision = "1"; 280114 - editedCabalFile = "0g536mmdq72j72jy6437q64vsxj8yba0mamm15xirs67j551azn1"; 280638 + version = "0.6.0.3"; 280639 + sha256 = "070v6kwxinls0w48mfyjqz6rfz03sphyig2ar13lplqjr01kaa67"; 280115 280640 libraryHaskellDepends = [ base ]; 280116 280641 description = "Concrete functor and monad transformers"; 280117 280642 license = lib.licenses.bsd3; ··· 282305 282830 pname = "turtle"; 282306 282831 version = "1.5.23"; 282307 282832 sha256 = "02g0a6az01lfikrinx2027zqrp8wyivldwi36s2yqk9a5qm3ap5c"; 282308 - revision = "2"; 282309 - editedCabalFile = "0i8fnwzqc6j599d19rzcggk29ky45izy5wc9y9ii54lc95d8c7xg"; 282833 + revision = "3"; 282834 + editedCabalFile = "1zc1djz1xi5pmw58rjwmxb7kkzxssnkng9qx93wz9n6bdjiyc2gd"; 282310 282835 libraryHaskellDepends = [ 282311 282836 ansi-wl-pprint async base bytestring clock containers directory 282312 282837 exceptions foldl hostname managed optional-args ··· 284583 285108 284584 285109 "tzdata" = callPackage 284585 285110 ({ mkDerivation, base, bytestring, containers, deepseq, HUnit 284586 - , test-framework, test-framework-hunit, test-framework-th, unix 284587 - , vector 284588 - }: 284589 - mkDerivation { 284590 - pname = "tzdata"; 284591 - version = "0.2.20201021.0"; 284592 - sha256 = "0bkd7k0q8dflp21hzf71kbqyk0jq279z7sgwlq1pdzs2ggmnrwm9"; 284593 - enableSeparateDataOutput = true; 284594 - libraryHaskellDepends = [ 284595 - base bytestring containers deepseq vector 284596 - ]; 284597 - testHaskellDepends = [ 284598 - base bytestring HUnit test-framework test-framework-hunit 284599 - test-framework-th unix 284600 - ]; 284601 - description = "Time zone database (as files and as a module)"; 284602 - license = lib.licenses.asl20; 284603 - }) {}; 284604 - 284605 - "tzdata_0_2_20211021_0" = callPackage 284606 - ({ mkDerivation, base, bytestring, containers, deepseq, HUnit 284607 285111 , tasty, tasty-hunit, tasty-th, unix, vector 284608 285112 }: 284609 285113 mkDerivation { ··· 284619 285123 ]; 284620 285124 description = "Time zone database (as files and as a module)"; 284621 285125 license = lib.licenses.asl20; 284622 - hydraPlatforms = lib.platforms.none; 284623 285126 }) {}; 284624 285127 284625 285128 "u2f" = callPackage ··· 287089 287592 }: 287090 287593 mkDerivation { 287091 287594 pname = "unliftio"; 287092 - version = "0.2.20"; 287093 - sha256 = "0mbm57h7r16qd7kpglbm50qrnfjmazd70avbrl647n4jwhlrp7my"; 287094 - libraryHaskellDepends = [ 287095 - async base bytestring deepseq directory filepath process stm time 287096 - transformers unix unliftio-core 287097 - ]; 287098 - testHaskellDepends = [ 287099 - async base bytestring containers deepseq directory filepath hspec 287100 - process QuickCheck stm time transformers unix unliftio-core 287101 - ]; 287102 - benchmarkHaskellDepends = [ 287103 - async base bytestring deepseq directory filepath gauge process stm 287104 - time transformers unix unliftio-core 287105 - ]; 287106 - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; 287107 - license = lib.licenses.mit; 287108 - }) {}; 287109 - 287110 - "unliftio_0_2_20_1" = callPackage 287111 - ({ mkDerivation, async, base, bytestring, containers, deepseq 287112 - , directory, filepath, gauge, hspec, process, QuickCheck, stm, time 287113 - , transformers, unix, unliftio-core 287114 - }: 287115 - mkDerivation { 287116 - pname = "unliftio"; 287117 287595 version = "0.2.20.1"; 287118 287596 sha256 = "13fv7wfq7g1pilpk1vprbf2mbdj7qfm2y9v8glwr6dqyswv8z9dn"; 287119 287597 libraryHaskellDepends = [ ··· 287130 287608 ]; 287131 287609 description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; 287132 287610 license = lib.licenses.mit; 287133 - hydraPlatforms = lib.platforms.none; 287134 287611 }) {}; 287135 287612 287136 287613 "unliftio-core" = callPackage ··· 288181 288658 license = lib.licenses.bsd3; 288182 288659 hydraPlatforms = lib.platforms.none; 288183 288660 broken = true; 288661 + }) {}; 288662 + 288663 + "url-slug" = callPackage 288664 + ({ mkDerivation, aeson, base, relude, text, unicode-transforms 288665 + , uri-encode 288666 + }: 288667 + mkDerivation { 288668 + pname = "url-slug"; 288669 + version = "0.1.0.0"; 288670 + sha256 = "0x5xkfxzml1cnqcmmyvm3gj0ikw2371jbsqya6ng7pfjlcsmdfzn"; 288671 + libraryHaskellDepends = [ 288672 + aeson base relude text unicode-transforms uri-encode 288673 + ]; 288674 + description = "Encoding and decoding of URL slugs"; 288675 + license = lib.licenses.mit; 288184 288676 }) {}; 288185 288677 288186 288678 "urlcheck" = callPackage ··· 290543 291035 }) {}; 290544 291036 290545 291037 "vector-circular" = callPackage 290546 - ({ mkDerivation, base, deepseq, doctest, hedgehog, hedgehog-classes 290547 - , nonempty-vector, primitive, semigroupoids, template-haskell 290548 - , vector 290549 - }: 290550 - mkDerivation { 290551 - pname = "vector-circular"; 290552 - version = "0.1.3"; 290553 - sha256 = "0xz2ih8x7a5731bbirhmkl7hyarzijnwgvj8zm9wxs1nky8yjyb7"; 290554 - libraryHaskellDepends = [ 290555 - base deepseq nonempty-vector primitive semigroupoids 290556 - template-haskell vector 290557 - ]; 290558 - testHaskellDepends = [ base doctest hedgehog hedgehog-classes ]; 290559 - description = "circular vectors"; 290560 - license = lib.licenses.mit; 290561 - }) {}; 290562 - 290563 - "vector-circular_0_1_4" = callPackage 290564 291038 ({ mkDerivation, base, deepseq, hedgehog, hedgehog-classes 290565 291039 , nonempty-vector, primitive, semigroupoids, template-haskell 290566 291040 , vector ··· 290576 291050 testHaskellDepends = [ base hedgehog hedgehog-classes ]; 290577 291051 description = "circular vectors"; 290578 291052 license = lib.licenses.mit; 290579 - hydraPlatforms = lib.platforms.none; 290580 291053 }) {}; 290581 291054 290582 291055 "vector-clock" = callPackage ··· 292481 292954 }: 292482 292955 mkDerivation { 292483 292956 pname = "vulkan"; 292484 - version = "3.15"; 292485 - sha256 = "1b76crd9nib0pcgpwbrbwr88zij5wrc6hs240w3sg16zxhwpllh1"; 292957 + version = "3.16.1"; 292958 + sha256 = "1cm5ws9kp2dcrknj4vsw92xnl35gq33k9ijhf5aclpm95q1dw0hc"; 292486 292959 libraryHaskellDepends = [ base bytestring transformers vector ]; 292487 292960 libraryPkgconfigDepends = [ vulkan ]; 292488 292961 testHaskellDepends = [ ··· 292514 292987 }: 292515 292988 mkDerivation { 292516 292989 pname = "vulkan-utils"; 292517 - version = "0.5.5"; 292518 - sha256 = "0p5ciadgkamgkzmay5rwc1mjs2wq8pqv21rbbbxlnjwmfsayrb9j"; 292990 + version = "0.5.6"; 292991 + sha256 = "1d8nnv31f35k2qn232vx8g3w06vbvik0ih98g7m7lrv0bqi74i12"; 292519 292992 setupHaskellDepends = [ base Cabal cabal-doctest ]; 292520 292993 libraryHaskellDepends = [ 292521 292994 base bytestring containers dependent-map dependent-sum extra ··· 294763 295236 license = lib.licenses.mit; 294764 295237 }) {}; 294765 295238 295239 + "warp_3_3_19" = callPackage 295240 + ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked 295241 + , bytestring, case-insensitive, containers, directory, gauge 295242 + , ghc-prim, hashable, hspec, http-client, http-date, http-types 295243 + , http2, HUnit, iproute, network, process, QuickCheck 295244 + , simple-sendfile, stm, streaming-commons, text, time, time-manager 295245 + , unix, unix-compat, unliftio, vault, wai, word8, x509 295246 + }: 295247 + mkDerivation { 295248 + pname = "warp"; 295249 + version = "3.3.19"; 295250 + sha256 = "1wq63wrxk4p6ziig9qgqimmd1mx167868qiczd1avh8896p1f6rb"; 295251 + libraryHaskellDepends = [ 295252 + array auto-update base bsb-http-chunked bytestring case-insensitive 295253 + containers ghc-prim hashable http-date http-types http2 iproute 295254 + network simple-sendfile stm streaming-commons text time-manager 295255 + unix unix-compat unliftio vault wai word8 x509 295256 + ]; 295257 + testHaskellDepends = [ 295258 + array async auto-update base bsb-http-chunked bytestring 295259 + case-insensitive containers directory ghc-prim hashable hspec 295260 + http-client http-date http-types http2 HUnit iproute network 295261 + process QuickCheck simple-sendfile stm streaming-commons text time 295262 + time-manager unix unix-compat unliftio vault wai word8 x509 295263 + ]; 295264 + benchmarkHaskellDepends = [ 295265 + auto-update base bytestring containers gauge hashable http-date 295266 + http-types network time-manager unix unix-compat unliftio x509 295267 + ]; 295268 + description = "A fast, light-weight web server for WAI applications"; 295269 + license = lib.licenses.mit; 295270 + hydraPlatforms = lib.platforms.none; 295271 + }) {}; 295272 + 294766 295273 "warp-dynamic" = callPackage 294767 295274 ({ mkDerivation, base, data-default, dyre, http-types, wai, warp }: 294768 295275 mkDerivation { ··· 295769 296276 }: 295770 296277 mkDerivation { 295771 296278 pname = "webauthn"; 295772 - version = "0.2.0.0"; 295773 - sha256 = "0vdx1rlc2mb9nnxyzw94vw1kpjxd5qg9nqg1bh4wkdrxqqb3n7aj"; 296279 + version = "0.3.0.0"; 296280 + sha256 = "0nn6nx6f0wlbfipfhs4irkqhk4bknhcy83n3wxpml9lkgvf8m1kj"; 295774 296281 libraryHaskellDepends = [ 295775 296282 aeson asn1-encoding asn1-parse asn1-types base base16-bytestring 295776 296283 base64-bytestring binary bytestring cborg containers cryptonite ··· 303875 304382 testHaskellDepends = [ base hspec uri-bytestring ]; 303876 304383 description = "OAuth 2.0 authentication plugins"; 303877 304384 license = lib.licenses.mit; 304385 + }) {}; 304386 + 304387 + "yesod-auth-oauth2_0_7_0_0" = callPackage 304388 + ({ mkDerivation, aeson, base, bytestring, cryptonite, errors 304389 + , hoauth2, hspec, http-client, http-conduit, http-types, memory 304390 + , microlens, mtl, safe-exceptions, text, unliftio, uri-bytestring 304391 + , yesod-auth, yesod-core 304392 + }: 304393 + mkDerivation { 304394 + pname = "yesod-auth-oauth2"; 304395 + version = "0.7.0.0"; 304396 + sha256 = "183ck29b43nvvih2vcpavzvj0ajdwpcjsa6lq6f5labqqk929cww"; 304397 + revision = "1"; 304398 + editedCabalFile = "1vpcb40a3f5dblfdvqw0v55gzh97kp7d2b9pri153v5ri60pgvw5"; 304399 + isLibrary = true; 304400 + isExecutable = true; 304401 + libraryHaskellDepends = [ 304402 + aeson base bytestring cryptonite errors hoauth2 http-client 304403 + http-conduit http-types memory microlens mtl safe-exceptions text 304404 + unliftio uri-bytestring yesod-auth yesod-core 304405 + ]; 304406 + testHaskellDepends = [ base hspec uri-bytestring ]; 304407 + description = "OAuth 2.0 authentication plugins"; 304408 + license = lib.licenses.mit; 304409 + hydraPlatforms = lib.platforms.none; 303878 304410 }) {}; 303879 304411 303880 304412 "yesod-auth-oidc" = callPackage
+4 -3
pkgs/development/ocaml-modules/camlimages/4.2.4.nix
··· 15 15 , ghostscript 16 16 }: 17 17 18 - assert lib.versionOlder ocaml.version "4.06"; 18 + lib.throwIfNot (lib.versionAtLeast ocaml.version "4.02" && lib.versionOlder ocaml.version "4.10") 19 + "camlimages 4.2.4 is not available for OCaml ${ocaml.version}" 19 20 20 21 stdenv.mkDerivation rec { 21 22 name = "ocaml${ocaml.version}-${pname}-${version}"; ··· 54 55 ''; 55 56 56 57 installPhase = '' 57 - runHook preBuild 58 + runHook preInstall 58 59 omake install 59 - runHook postBuild 60 + runHook postInstall 60 61 ''; 61 62 62 63 createFindlibDestdir = true;
+2 -2
pkgs/development/python-modules/flux-led/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "flux-led"; 11 - version = "0.28.22"; 11 + version = "0.28.24"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "Danielhiversen"; 18 18 repo = "flux_led"; 19 19 rev = version; 20 - sha256 = "sha256-GNuc8WAiC0S4WFFUYgayU6c0treWCPfPhbyteZ68eWs="; 20 + sha256 = "sha256-4VajN6w+W7WZzwnsqLAnR4IO2ODuolCEotbgxV9luYA="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/omnikinverter/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "omnikinverter"; 15 - version = "0.6.2"; 15 + version = "0.7.0"; 16 16 format = "pyproject"; 17 17 18 - disabled = pythonOlder "3.7"; 18 + disabled = pythonOlder "3.9"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "klaasnicolaas"; 22 22 repo = "python-omnikinverter"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-NnwjiaFUi2vzORu8sndtfdVpZEAIMCvT+9VEr2ZOx3k="; 24 + sha256 = "sha256-IiU7nhwH0Mc6s+g9WtJugpORuL0qGNJFKDY5hvxIZAU="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pywlroots/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pywlroots"; 21 - version = "0.15.7"; 21 + version = "0.15.8"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - sha256 = "EJAqtzFKx9Zripspv3lXIDj54pqHV0in6RrOCgFUyU8="; 25 + sha256 = "5oKeiNRO/5/6gWHPgatn0sHRtPL2B2Fa7S1A7LWr0qM="; 26 26 }; 27 27 28 28 # The XWayland detection uses some hard-coded FHS paths. Since we
+16 -11
pkgs/development/tools/haskell/haskell-language-server/withWrapper.nix
··· 2 2 , stdenv 3 3 , supportedGhcVersions ? [ "884" "8107" "902" ] 4 4 ++ lib.optionals (!stdenv.hostPlatform.isAarch64) [ "921" ] 5 + , dynamic ? false 5 6 , haskellPackages 6 7 , haskell 7 8 }: ··· 13 14 # for example. Read more about this in the haskell-language-server section of the nixpkgs manual. 14 15 # 15 16 let 16 - inherit (lib) concatStringsSep concatMapStringsSep take splitString; 17 + inherit (lib) concatStringsSep concatMapStringsSep take splitString pipe optionals; 18 + inherit (haskell.lib.compose) justStaticExecutables overrideCabal enableCabalFlag disableCabalFlag; 17 19 getPackages = version: haskell.packages."ghc${version}"; 18 20 tunedHls = hsPkgs: 19 - haskell.lib.compose.justStaticExecutables 20 - (haskell.lib.compose.overrideCabal (old: { 21 - postInstall = '' 22 - remove-references-to -t ${hsPkgs.ghc} $out/bin/haskell-language-server 23 - remove-references-to -t ${hsPkgs.shake.data} $out/bin/haskell-language-server 24 - remove-references-to -t ${hsPkgs.js-jquery.data} $out/bin/haskell-language-server 25 - remove-references-to -t ${hsPkgs.js-dgtable.data} $out/bin/haskell-language-server 26 - remove-references-to -t ${hsPkgs.js-flot.data} $out/bin/haskell-language-server 27 - ''; 28 - }) hsPkgs.haskell-language-server); 21 + lib.pipe hsPkgs.haskell-language-server ([ 22 + (haskell.lib.compose.overrideCabal (old: { 23 + enableSharedExecutables = dynamic; 24 + ${if !dynamic then "postInstall" else null} = '' 25 + ${old.postInstall or ""} 26 + 27 + remove-references-to -t ${hsPkgs.ghc} $out/bin/haskell-language-server 28 + ''; 29 + })) 30 + ((if dynamic then enableCabalFlag else disableCabalFlag) "dynamic") 31 + ] ++ optionals (!dynamic) [ 32 + justStaticExecutables 33 + ]); 29 34 targets = version: 30 35 let packages = getPackages version; 31 36 in [
+3 -3
pkgs/development/tools/rust/rust-script/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rust-script"; 5 - version = "0.19.0"; 5 + version = "0.20.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fornwall"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CYeTt6PzVGu62/GJB+gUlOXG2bs4RV0LWECF4CN3Uic="; 11 + sha256 = "sha256-WcvRkp57VyBB5gQgamFoR6wK1cRJ+3hQqixOBgeapJU="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-IUzaVeOTBAOo/jkDytk6qc7VatKX75l1yZy99iSIqyE="; 14 + cargoSha256 = "sha256-qJIftByppOrT4g3sxmKRSLhxtpAW4eXWX0FhmMDJNu0="; 15 15 16 16 # tests require network access 17 17 doCheck = false;
+2 -2
pkgs/os-specific/linux/zenmonitor/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zenmonitor"; 5 - version = "1.5.0"; 5 + version = "2.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Ta180m"; 9 9 repo = "zenmonitor3"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-dbjLpfflIsEU+wTApghJYBPxBXqS/7MJqcMBcj50o6I="; 11 + sha256 = "sha256-2EsuSMXnnMg0e0JD1TXJplsi7sOg9em0qqge2WlC6ro="; 12 12 }; 13 13 14 14 buildInputs = [ gtk3 ];
+3 -3
pkgs/tools/backup/kopia/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kopia"; 5 - version = "0.10.4"; 5 + version = "0.10.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-L6aAcIGNNts4rsJNCmuKSFtBWe/VUzhwiNmlpKCZ+B4="; 11 + sha256 = "sha256-9H57NlvyEEOX2F3ooWWqDAo7MnS9J+XrYv/cIyNo6+Y="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-jswXHGjDnH3dVjpvdbr/sMYyWmGvTAZB77oKBMkBsnI="; 14 + vendorSha256 = "sha256-c8WohMyaOicPq2q+DkgNBBulMEJCZFNFe+xECUEpelI="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/tools/misc/latex2html/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "latex2html"; 7 - version = "2021.2"; 7 + version = "2022"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = pname; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-WxMB70TeN53S6PNYDUVZ7lBKw7DvKnJDiHek9/GUYcA="; 13 + sha256 = "sha256-a+OFBNMtP6mDqg1k9rjDLEJhZDM+zdRpPbn3aeC+Qks="; 14 14 }; 15 15 16 16 buildInputs = [ ghostscript netpbm perl ];