diff --git a/pkgs/data/misc/hackage/default.nix b/pkgs/data/misc/hackage/default.nix index 932e400946e..73429770b29 100644 --- a/pkgs/data/misc/hackage/default.nix +++ b/pkgs/data/misc/hackage/default.nix @@ -1,6 +1,6 @@ { fetchurl }: fetchurl { - url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/6515ef12bbcf8fbac87e12b4cb30b7eefa9ce9ce.tar.gz"; - sha256 = "0plf0kk0wj1lbmks09afyqrl70z0miwxzfk3zh7y2qiw3g5l1v0x"; + url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/e8df5568f80e6230e29c2381e842db35fe11cd71.tar.gz"; + sha256 = "1fz4iax88pmlqpb4zp3l6mb6bmkzzha0q6mm3xasabh5yl83dbhy"; } diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6ce71eb4731..e231e7d6bcb 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -710,18 +710,7 @@ self: super: { }); # The standard libraries are compiled separately. - # The megaparsec-7 override is needed because https://github.com/idris-lang/Idris-dev/issues/4826 declares that - # idris1 has no plans to migrate to megaparsec-8. - # The idris-lang/Idris-dev#4808 patch is for GHC 8.8 compatibility, and can likely be removed with the next release. - idris = generateOptparseApplicativeCompletion "idris" (doJailbreak (dontCheck - (appendPatches - (super.idris.override { megaparsec = self.megaparsec_7_0_5; }) [ - (pkgs.fetchpatch { - url = "https://github.com/idris-lang/Idris-dev/pull/4808.diff"; - sha256 = "060ib1rczy34ip8xf3bv1pf28655f6s0bvvij19jhh5dpcr0pf71"; - excludes = [ ".travis.yml" "Makefile" "appveyor.yml" ]; - }) - ]))); + idris = generateOptparseApplicativeCompletion "idris" (dontCheck super.idris); # https://github.com/bos/math-functions/issues/25 math-functions = dontCheck super.math-functions; @@ -1018,6 +1007,9 @@ self: super: { # This package refers to the wrong library (itself in fact!) vulkan = super.vulkan.override { vulkan = pkgs.vulkan-loader; }; + # Compiles some C++ source which requires these headers + VulkanMemoryAllocator = addExtraLibrary super.VulkanMemoryAllocator pkgs.vulkan-headers; + # # Builds only with the latest version of indexed-list-literals. # vector-sized_1_0_3_0 = super.vector-sized_1_0_3_0.override { # indexed-list-literals = self.indexed-list-literals_0_2_1_1; @@ -1311,9 +1303,6 @@ self: super: { ''; }); - # cabal-fmt requires Cabal3 - cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_0_0; }; - # Several gtk2hs-provided packages at v0.13.8.0 fail to build on Darwin # until we pick up https://github.com/gtk2hs/gtk2hs/pull/293 so apply that # patch here. That single patch is for the gtk2hs super-repo, out of which @@ -1502,16 +1491,16 @@ self: super: { }); # stackage right now is not new enough for hlint-3.0 - ghc-lib-parser-ex_8_10_0_8 = super.ghc-lib-parser-ex_8_10_0_8.override { - ghc-lib-parser = self.ghc-lib-parser_8_10_1_20200412; + ghc-lib-parser-ex_8_10_0_11 = super.ghc-lib-parser-ex_8_10_0_11.override { + ghc-lib-parser = self.ghc-lib-parser_8_10_1_20200523; }; hlint = super.hlint.override { - ghc-lib-parser = self.ghc-lib-parser_8_10_1_20200412; - ghc-lib-parser-ex = self.ghc-lib-parser-ex_8_10_0_8; - extra = self.extra_1_7_1; + ghc-lib-parser = self.ghc-lib-parser_8_10_1_20200523; + ghc-lib-parser-ex = self.ghc-lib-parser-ex_8_10_0_11; + extra = self.extra_1_7_2; filepattern = self.filepattern.override { - extra = self.extra_1_7_1; + extra = self.extra_1_7_2; }; }; @@ -1519,4 +1508,8 @@ self: super: { # upstream: https://github.com/obsidiansystems/which/pull/6 which = doJailbreak super.which; + # the test suite attempts to run the binaries built in this package + # through $PATH but they aren't in $PATH + dhall-lsp-server = dontCheck super.dhall-lsp-server; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix index 7395d059b4d..c23b15ffef3 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix @@ -106,4 +106,7 @@ self: super: { # The package needs the latest Cabal version. cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_2_0_0; }); + # cabal-fmt requires Cabal3 + cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_0_0; }; + } diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index a30e4d93e6a..1fb0ce64cee 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -67,12 +67,14 @@ core-packages: # comment saying "# LTS Haskell x.y". Any changes after that commend will be # lost the next time `update-stackage.sh` runs. default-package-overrides: + # Newer versions have test suite failures. + - git-annex < 8.20200522 # This was only intended for ghc-7.0.4, and has very old deps, one hidden behind a flag - MissingH ==1.4.2.0 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and # not yet available in Nixpkgs - gi-gdkx11 < 4 - # LTS Haskell 15.12 + # LTS Haskell 15.13 - abstract-deque ==0.3 - abstract-par ==0.3.3 - AC-Angle ==1.0 @@ -345,7 +347,7 @@ default-package-overrides: - btrfs ==0.2.0.0 - buffer-builder ==0.2.4.7 - buffer-pipe ==0.0 - - bugsnag-hs ==0.1.0.0 + - bugsnag-hs ==0.1.0.1 - butcher ==1.3.3.1 - bv ==0.5 - bv-little ==1.1.1 @@ -576,7 +578,7 @@ default-package-overrides: - data-tree-print ==0.1.0.2 - dataurl ==0.1.0.0 - DAV ==1.3.4 - - dbus ==1.2.14 + - dbus ==1.2.15.1 - debian-build ==0.10.2.0 - debug-trace-var ==0.2.0 - dec ==0.0.3 @@ -725,10 +727,11 @@ default-package-overrides: - fft ==0.1.8.6 - fgl ==5.7.0.2 - filecache ==0.4.1 - - file-embed ==0.0.11.2 + - file-embed ==0.0.12.0 - file-embed-lzma ==0 - filelock ==0.1.1.4 - filemanip ==0.3.6.3 + - file-path-th ==0.1.0.0 - filepattern ==0.1.2 - fileplow ==0.1.0.0 - filtrable ==0.1.3.0 @@ -929,7 +932,7 @@ default-package-overrides: - haskoin-node ==0.9.21 - hasql ==1.4.2 - hasql-optparse-applicative ==0.3.0.5 - - hasql-pool ==0.5.1 + - hasql-pool ==0.5.2 - hasql-transaction ==1.0.0.1 - hasty-hamiltonian ==1.3.2 - HaXml ==1.25.5 @@ -983,7 +986,7 @@ default-package-overrides: - hourglass ==0.2.12 - hourglass-orphans ==0.1.0.0 - hp2pretty ==0.9 - - hpack ==0.33.0 + - hpack ==0.33.1 - hpc-codecov ==0.1.0.0 - hreader ==1.1.0 - hreader-lens ==0.1.3.0 @@ -1043,7 +1046,7 @@ default-package-overrides: - HTTP ==4000.3.14 - http-api-data ==0.4.1.1 - http-client ==0.6.4.1 - - http-client-openssl ==0.3.0.0 + - http-client-openssl ==0.3.1.0 - http-client-overrides ==0.1.1.0 - http-client-tls ==0.3.5.3 - http-common ==0.8.2.0 @@ -1060,11 +1063,11 @@ default-package-overrides: - human-readable-duration ==0.2.1.4 - HUnit ==1.6.0.0 - HUnit-approx ==1.1.1.1 - - hunit-dejafu ==2.0.0.2 + - hunit-dejafu ==2.0.0.3 - hvect ==0.4.0.0 - hvega ==0.5.0.0 - hw-balancedparens ==0.3.1.0 - - hw-bits ==0.7.2.0 + - hw-bits ==0.7.2.1 - hw-conduit ==0.2.1.0 - hw-conduit-merges ==0.2.1.0 - hw-diagnostics ==0.0.1.0 @@ -1116,7 +1119,7 @@ default-package-overrides: - Imlib ==0.1.2 - immortal ==0.3 - include-file ==0.1.0.4 - - incremental-parser ==0.4.0.1 + - incremental-parser ==0.4.0.2 - indents ==0.5.0.1 - indexed ==0.1.3 - indexed-list-literals ==0.2.1.3 @@ -1170,7 +1173,7 @@ default-package-overrides: - ix-shapable ==0.1.0 - jack ==0.7.1.4 - jira-wiki-markup ==1.0.0 - - jose ==0.8.2.1 + - jose ==0.8.3 - jose-jwt ==0.8.0 - js-dgtable ==0.5.2 - js-flot ==0.8.3 @@ -1183,7 +1186,7 @@ default-package-overrides: - JuicyPixels ==3.3.5 - JuicyPixels-extra ==0.4.1 - JuicyPixels-scale-dct ==0.1.2 - - junit-xml ==0.1.0.0 + - junit-xml ==0.1.0.1 - justified-containers ==0.3.0.0 - jwt ==0.10.0 - kan-extensions ==5.2 @@ -1268,6 +1271,7 @@ default-package-overrides: - log-base ==0.8.0.1 - log-domain ==0.13 - logfloat ==0.13.3.3 + - logging ==3.0.5 - logging-effect ==1.3.9 - logging-facade ==0.3.0 - logging-facade-syslog ==1 @@ -1307,7 +1311,7 @@ default-package-overrides: - median-stream ==0.7.0.0 - megaparsec ==8.0.0 - megaparsec-tests ==8.0.0 - - membrain ==0.0.0.1 + - membrain ==0.0.0.2 - memory ==0.15.0 - MemoTrie ==0.6.10 - mercury-api ==0.1.0.2 @@ -1341,6 +1345,7 @@ default-package-overrides: - mintty ==0.1.2 - miso ==1.4.0.0 - missing-foreign ==0.1.1 + - MissingH ==1.4.3.0 - mixed-types-num ==0.4.0.1 - mixpanel-client ==0.2.1 - mltool ==0.2.0.1 @@ -1428,7 +1433,7 @@ default-package-overrides: - netwire-input-glfw ==0.0.11 - network ==3.1.1.1 - network-bsd ==2.8.1.0 - - network-byte-order ==0.1.4.0 + - network-byte-order ==0.1.5 - network-conduit-tls ==1.3.2 - network-info ==0.2.0.10 - network-ip ==0.3.0.3 @@ -1506,6 +1511,7 @@ default-package-overrides: - packcheck ==0.4.2 - pager ==0.1.1.0 - pagination ==0.2.1 + - pagure-cli ==0.2 - pandoc ==2.9.1.1 - pandoc-citeproc ==0.16.4.1 - pandoc-csv2table ==1.0.8 @@ -1546,7 +1552,7 @@ default-package-overrides: - percent-format ==0.0.1 - perfect-hash-generator ==0.2.0.6 - perfect-vector-shuffle ==0.1.1.1 - - persist ==0.1.1.4 + - persist ==0.1.1.5 - persistable-record ==0.6.0.4 - persistable-types-HDBC-pg ==0.0.3.5 - persistent ==2.10.5.2 @@ -1787,7 +1793,7 @@ default-package-overrides: - salve ==1.0.9 - sample-frame ==0.0.3 - sample-frame-np ==0.0.4.1 - - sampling ==0.3.3 + - sampling ==0.3.4 - say ==0.1.0.1 - sbp ==2.6.3 - scalpel ==0.6.2 @@ -1930,6 +1936,8 @@ default-package-overrides: - splitmix ==0.0.4 - spoon ==0.3.1 - spreadsheet ==0.1.3.8 + - sqlcli ==0.2.2.0 + - sqlcli-odbc ==0.2.0.1 - sql-words ==0.1.6.4 - srcloc ==0.5.1.2 - stache ==2.1.1 @@ -2010,7 +2018,7 @@ default-package-overrides: - tardis ==0.4.1.0 - tasty ==1.2.3 - tasty-ant-xml ==1.1.6 - - tasty-dejafu ==2.0.0.3 + - tasty-dejafu ==2.0.0.4 - tasty-discover ==4.2.1 - tasty-expected-failure ==0.11.1.2 - tasty-golden ==2.3.3.2 @@ -2239,7 +2247,7 @@ default-package-overrides: - vector-split ==1.0.0.2 - vector-th-unbox ==0.2.1.7 - verbosity ==0.3.0.0 - - versions ==3.5.3 + - versions ==3.5.4 - vformat ==0.14.1.0 - vformat-aeson ==0.1.0.1 - vformat-time ==0.1.0.0 @@ -2260,7 +2268,7 @@ default-package-overrides: - wai-session ==0.3.3 - wai-slack-middleware ==0.2.0 - wai-websockets ==3.0.1.2 - - warp ==3.3.10 + - warp ==3.3.11 - warp-tls ==3.2.11 - warp-tls-uid ==0.2.0.6 - wave ==0.2.0 @@ -2406,8 +2414,6 @@ extra-packages: - http-conduit ^>= 2.2 # pre-lts-11.x versions neeed by git-annex 6.20180227 - inline-c < 0.6 # required on GHC 8.0.x - inline-c-cpp < 0.2 # required on GHC 8.0.x - - lens-family ==1.2.3 # required for tensorflow - - lens-family-core ==1.2.3 # required for tensorflow - lens-labels == 0.1.* # required for proto-lens-descriptors - megaparsec >= 7.0.4 && < 8 # required for idris: https://github.com/idris-lang/Idris-dev/issues/4826 - mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x @@ -2421,11 +2427,6 @@ extra-packages: - persistent-sqlite < 2.7 # pre-lts-11.x versions neeed by git-annex 6.20180227 - prettyprinter == 1.6.1 # required by ghc 8.8.x, and dhall-1.29.0 - primitive == 0.5.1.* # required to build alex with GHC 6.12.3 - - proto-lens == 0.5.* # required for tensorflow-proto - - proto-lens-protobuf-types == 0.5.* # required for tensorflow-proto - - proto-lens-protoc == 0.5.* # required for tensorflow-proto - - proto-lens-runtime == 0.5.* # required for tensorflow-proto - - proto-lens-setup == 0.4.0.2 # required for tensorflow-proto - QuickCheck < 2 # required by test-framework-quickcheck and its users - resolv == 0.1.1.2 # required to build cabal-install-3.0.0.0 with pre ghc-8.8.x - resourcet ==1.1.* # pre-lts-11.x versions neeed by git-annex 6.20180227 @@ -2502,6 +2503,15 @@ package-maintainers: - icepeak terlar: - nix-diff + maralorn: + - ghcide + - cabal-fmt + - neuron + - shh + - brittany + - hlint + - releaser + - taskwarrior unsupported-platforms: alsa-mixer: [ x86_64-darwin ] @@ -2794,7 +2804,6 @@ broken-packages: - amazon-emailer - amazon-emailer-client-snap - amazon-products - - amazonka-dynamodb - amby - AMI - ampersand @@ -3388,7 +3397,6 @@ broken-packages: - cabal-dependency-licenses - cabal-dev - cabal-dir - - cabal-fmt - cabal-ghc-dynflags - cabal-ghci - cabal-graphdeps @@ -4181,7 +4189,6 @@ broken-packages: - dgs - dhall-check - dhall-fly - - dhall-lsp-server - dhall-nix - dhall-text - dhall-to-cabal @@ -5319,7 +5326,6 @@ broken-packages: - gtksourceview3 - guarded-rewriting - guess-combinator - - guid - GuiHaskell - GuiTV - gulcii @@ -6785,8 +6791,10 @@ broken-packages: - keera-hails-mvc-model-lightmodel - keera-hails-mvc-model-protectedmodel - keera-hails-mvc-solutions-gtk + - keera-hails-reactive-cbmvar - keera-hails-reactive-fs - keera-hails-reactive-gtk + - keera-hails-reactive-htmldom - keera-hails-reactive-network - keera-hails-reactive-polling - keera-hails-reactive-wx @@ -7987,6 +7995,7 @@ broken-packages: - optparse-applicative-simple - optparse-enum - optparse-helper + - orbits - orc - orchestrate - OrchestrateDB @@ -8890,8 +8899,6 @@ broken-packages: - rfc-psql - rfc-redis - rfc-servant - - rhine - - rhine-gloss - rhythm-game-tutorial - ribbit - RichConditional @@ -9269,8 +9276,6 @@ broken-packages: - shellish - shellmate - shellmate-extras - - shh - - shh-extras - shimmer - shine-examples - shivers-cfg @@ -9855,7 +9860,6 @@ broken-packages: - tapioca - tar-bytestring - target - - tart - task - task-distribution - taskell @@ -9906,10 +9910,6 @@ broken-packages: - tempus - tensor - tensor-safe - - tensorflow - - tensorflow-core-ops - - tensorflow-logging - - tensorflow-ops - termbox - termbox-banana - termbox-bindings @@ -10492,8 +10492,6 @@ broken-packages: - vty-menu - vty-ui - vty-ui-extras - - vulkan - - VulkanMemoryAllocator - waargonaut - wacom-daemon - waddle diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 6d0c93e85a5..db627581d8c 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -542,6 +542,9 @@ self: super: builtins.intersectAttrs super { # Break infinite recursion cycle between tasty and clock. clock = dontCheck super.clock; + # Break infinite recursion cycle between devtools and mprelude. + devtools = super.devtools.override { mprelude = dontCheck super.mprelude; }; + # loc and loc-test depend on each other for testing. Break that infinite cycle: loc-test = super.loc-test.override { loc = dontCheck self.loc; }; @@ -718,6 +721,7 @@ self: super: builtins.intersectAttrs super { # dhall's tests access the network. dhall_1_29_0 = dontCheck super.dhall_1_29_0; dhall_1_31_1 = dontCheck super.dhall_1_31_1; + dhall_1_32_0 = dontCheck super.dhall_1_32_0; cut-the-crap = let path = pkgs.stdenv.lib.makeBinPath [ pkgs.ffmpeg ]; @@ -750,4 +754,26 @@ self: super: builtins.intersectAttrs super { ''; }); + postgresql-syntax = super.postgresql-syntax.override { + rerebase = self.rerebase_1_6_1; + }; + + rerebase_1_6_1 = super.rerebase_1_6_1.override { + rebase = self.rebase_1_6_1; + }; + + rebase_1_6_1 = super.rebase_1_6_1.override { + selective = super.selective_0_4_1; + }; + + # Fix compilation of Setup.hs by removing the module declaration. + # See: https://github.com/tippenein/guid/issues/1 + guid = overrideCabal (super.guid) (drv: { + prePatch = "sed -i '1d' Setup.hs"; # 1st line is module declaration, remove it + doCheck = false; + }); + + # Tests disabled as recommended at https://github.com/luke-clifton/shh/issues/39 + shh = dontCheck super.shh; + } diff --git a/pkgs/development/haskell-modules/configuration-tensorflow.nix b/pkgs/development/haskell-modules/configuration-tensorflow.nix index aab416b9a87..1be2b2e8ec3 100644 --- a/pkgs/development/haskell-modules/configuration-tensorflow.nix +++ b/pkgs/development/haskell-modules/configuration-tensorflow.nix @@ -11,79 +11,28 @@ let tensorflow-haskell = pkgs.fetchFromGitHub { owner = "tensorflow"; repo = "haskell"; - rev = "0f322b2e0611cbe7011c84ba8b6cb822e4725ebc"; - sha256 = "15gn66i547q20sd50ixwm6yk1g00syfgxp8xa6xjd0i3kcsl3gs1"; + rev = "568c9b6f03e5d66a25685a776386e2ff50b61aa9"; + sha256 = "0v58zhqipa441hzdvp9pwgv6srir2fm7cp0bq2pb5jl1imwyd37h"; fetchSubmodules = true; }; setTensorflowSourceRoot = dir: drv: (overrideCabal drv (drv: { src = tensorflow-haskell; })) .overrideAttrs (_oldAttrs: {sourceRoot = "source/${dir}";}); - - proto-lens = self.proto-lens_0_5_1_0; - proto-lens-protoc = self.proto-lens-protoc_0_5_0_0; - proto-lens-runtime = self.proto-lens-runtime_0_5_0_0; - proto-lens-protobuf-types = self.proto-lens-protobuf-types_0_5_0_0; - proto-lens-setup = self.proto-lens-setup_0_4_0_2; - lens-family = self.lens-family_1_2_3; in { - lens-family_1_2_3 = super.lens-family_1_2_3.override { - lens-family-core = self.lens-family-core_1_2_3; - }; - - proto-lens_0_5_1_0 = (appendPatch (doJailbreak super.proto-lens_0_5_1_0) ./patches/proto-lens-0.5.1.0.patch).override { - inherit lens-family; - }; - - proto-lens-runtime_0_5_0_0 = doJailbreak (super.proto-lens-runtime_0_5_0_0.override { - inherit lens-family proto-lens; - }); - - proto-lens-protoc_0_5_0_0 = doJailbreak (super.proto-lens-protoc_0_5_0_0.override { - inherit lens-family proto-lens; - haskell-src-exts = self.haskell-src-exts_1_19_1; - }); - proto-lens-setup_0_4_0_2 = appendPatch (doJailbreak (super.proto-lens-setup_0_4_0_2.override { - inherit proto-lens-protoc; - })) ./patches/proto-lens-setup-0.4.0.2.patch; - - proto-lens-protobuf-types_0_5_0_0 = doJailbreak (super.proto-lens-protobuf-types_0_5_0_0.override { - inherit lens-family proto-lens proto-lens-runtime proto-lens-setup; - }); - - haskell-src-exts_1_19_1 = appendPatches (doJailbreak super.haskell-src-exts_1_19_1) [ - # Adapt to the Semigroup–Monoid Proposal (enables building on GHC >= 8.4) - (pkgs.fetchpatch { - url = "https://github.com/haskell-suite/haskell-src-exts/commit/258e072fe9e37f94360b7488b58ea2832843bbb8.patch"; - sha256 = "0ja6ai41v9plinlhjwja282m6ahn6mw4xi79np0jxqk83cg0z1ff"; - }) - # Adapt to MonadFail proposal (enables building on GHC >= 8.8) - (pkgs.fetchpatch { - url = "https://gist.githubusercontent.com/mikesperber/0f2addaf3fbe97ffb4a5234d8711ba41/raw/e09e20998283c7195e82d546ba9266d290eb000d/gistfile1.txt"; - sha256 = "18clvli7vpqsqlf2f3qidn71738j9zdlpana6wha3x0dxwan5ly0"; - }) ]; - - tensorflow-proto = (setTensorflowSourceRoot "tensorflow-proto" super.tensorflow-proto).override { - inherit proto-lens proto-lens-runtime proto-lens-setup proto-lens-protobuf-types; - }; + tensorflow-proto = doJailbreak (setTensorflowSourceRoot "tensorflow-proto" super.tensorflow-proto); tensorflow = (setTensorflowSourceRoot "tensorflow" super.tensorflow).override { - inherit lens-family proto-lens; # the "regular" Python package does not seem to include the binary library libtensorflow = pkgs.libtensorflow-bin; }; - tensorflow-core-ops = (setTensorflowSourceRoot "tensorflow-core-ops" super.tensorflow-core-ops).override { - inherit lens-family proto-lens; - }; + tensorflow-core-ops = setTensorflowSourceRoot "tensorflow-core-ops" super.tensorflow-core-ops; - tensorflow-logging = (setTensorflowSourceRoot "tensorflow-logging" super.tensorflow-logging).override { - inherit lens-family proto-lens; - }; + tensorflow-logging = setTensorflowSourceRoot "tensorflow-logging" super.tensorflow-logging; tensorflow-mnist = (setTensorflowSourceRoot "tensorflow-mnist" super.tensorflow-mnist).override { - inherit lens-family proto-lens; # https://github.com/tensorflow/haskell/issues/215 tensorflow-mnist-input-data = self.tensorflow-mnist-input-data; }; @@ -124,11 +73,7 @@ in } ) {}); - tensorflow-opgen = (setTensorflowSourceRoot "tensorflow-opgen" super.tensorflow-opgen).override { - inherit lens-family proto-lens; - }; + tensorflow-opgen = setTensorflowSourceRoot "tensorflow-opgen" super.tensorflow-opgen; - tensorflow-ops = (setTensorflowSourceRoot "tensorflow-ops" super.tensorflow-ops).override { - inherit lens-family proto-lens; - }; + tensorflow-ops = setTensorflowSourceRoot "tensorflow-ops" super.tensorflow-ops; } diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index a03d6a9b33d..41fb1fe7be0 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -11071,6 +11071,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "IPv6Addr_1_1_4" = callPackage + ({ mkDerivation, aeson, attoparsec, base, HUnit, iproute, network + , network-info, random, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "IPv6Addr"; + version = "1.1.4"; + sha256 = "1bkib3mzbc0lzmi4vqkmihgi9vdcsksgss5rp3czhc893wc3hzah"; + libraryHaskellDepends = [ + aeson attoparsec base iproute network network-info random text + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit text + ]; + description = "Library to deal with IPv6 address text representations"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "IPv6DB" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, fast-logger , hedis, hspec, http-client, http-types, IPv6Addr, mtl @@ -11600,6 +11619,33 @@ self: { broken = true; }) {}; + "JuicyPixels-blurhash" = callPackage + ({ mkDerivation, base, bytestring, containers, doctest, filepath + , Glob, hedgehog, JuicyPixels, optparse-applicative, tasty + , tasty-discover, tasty-hedgehog, tasty-hunit, vector + }: + mkDerivation { + pname = "JuicyPixels-blurhash"; + version = "0.1.0.3"; + sha256 = "0kgl2j7990p8q5yrkn0wgaszc9fzva1pc3277j11k1lbjsymz360"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers filepath JuicyPixels vector + ]; + executableHaskellDepends = [ + base bytestring containers filepath JuicyPixels + optparse-applicative vector + ]; + testHaskellDepends = [ + base bytestring containers doctest filepath Glob hedgehog + JuicyPixels tasty tasty-discover tasty-hedgehog tasty-hunit vector + ]; + testToolDepends = [ tasty-discover ]; + description = "Blurhash is a very compact represenation of a placeholder for an image"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "JuicyPixels-canvas" = callPackage ({ mkDerivation, base, containers, JuicyPixels }: mkDerivation { @@ -13319,29 +13365,6 @@ self: { }) {}; "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory - , errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network - , network-bsd, old-locale, old-time, parsec, process, random - , regex-compat, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.2.0"; - sha256 = "1wfhpb351nrqjryf9si9j13nkvrqybhkkyc9643wqq8ywkdd59b9"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger mtl network - network-bsd old-locale old-time parsec process random regex-compat - time unix - ]; - testHaskellDepends = [ - base containers directory errorcall-eq-instance filepath HUnit - old-time parsec regex-compat time unix - ]; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "MissingH_1_4_3_0" = callPackage ({ mkDerivation, array, base, containers, directory , errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network , network-bsd, old-locale, old-time, parsec, process, random @@ -13362,7 +13385,6 @@ self: { ]; description = "Large utility library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MissingK" = callPackage @@ -14007,6 +14029,27 @@ self: { broken = true; }) {}; + "NaCl" = callPackage + ({ mkDerivation, base, bytestring, gdp, hedgehog, HUnit, libsodium + , memory, safe-exceptions, tasty, tasty-discover, tasty-hedgehog + , tasty-hunit + }: + mkDerivation { + pname = "NaCl"; + version = "0.0.2.0"; + sha256 = "0qmca7kgbg25xfdv6dd5793gr1dkwdivqqvd5b6rgq58ypzs8y4v"; + libraryHaskellDepends = [ + base bytestring gdp libsodium memory safe-exceptions + ]; + testHaskellDepends = [ + base bytestring hedgehog HUnit libsodium tasty tasty-hedgehog + tasty-hunit + ]; + testToolDepends = [ tasty-discover ]; + description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "NameGenerator" = callPackage ({ mkDerivation, base, containers, random }: mkDerivation { @@ -15225,8 +15268,8 @@ self: { pname = "PSQueue"; version = "1.1.0.1"; sha256 = "1cik7sw10sacsijmfhghzy54gm1qcyxw14shlp86lx8z89kcnkza"; - revision = "1"; - editedCabalFile = "0pswr49mg0ww0w579w4qsv5hjgcnsswdi283lxk6cvxw3wafif07"; + revision = "2"; + editedCabalFile = "0n1yrv1x1dxbjn9hjr8lk4k5in9c75ixzldlmszayi26bvax7329"; libraryHaskellDepends = [ base ]; description = "Priority Search Queue"; license = stdenv.lib.licenses.bsd3; @@ -16252,6 +16295,8 @@ self: { pname = "QuickCheck"; version = "2.13.2"; sha256 = "0426j43af8v3qmdjjqxivazsvr3a2brac8yw09vpgpjkb2m0nmkv"; + revision = "1"; + editedCabalFile = "0ynhx1n135b0zg539c9m7gp75dykm93pqqlp5xz2w4kmpxjp4vk3"; libraryHaskellDepends = [ base containers deepseq random splitmix template-haskell transformers @@ -16269,6 +16314,8 @@ self: { pname = "QuickCheck"; version = "2.14"; sha256 = "0jiqdk8ma8m68vg6vbxd0s1x0djmfjn1zm06masz7x8rzc3i9gjj"; + revision = "1"; + editedCabalFile = "0i8hh6f8y2jxn9hfchhbp9w5mb65fs6yy12z08wyrxxyhr5nllrz"; libraryHaskellDepends = [ base containers deepseq random splitmix template-haskell transformers @@ -18137,8 +18184,8 @@ self: { }: mkDerivation { pname = "Shpadoinkle-backend-snabbdom"; - version = "0.1.0.0"; - sha256 = "1j00ivjlmpb55h4ygldlads9135qnx3q0k0w946xqqlbyca1qzir"; + version = "0.1.0.1"; + sha256 = "1hky3qvskrpkpdhhppx6ghqalv5hsb1iw7mrsvmkigj1y20dskh1"; libraryHaskellDepends = [ base file-embed jsaddle mtl Shpadoinkle text ]; @@ -18152,8 +18199,8 @@ self: { ({ mkDerivation, base, compactable, Shpadoinkle, text }: mkDerivation { pname = "Shpadoinkle-backend-static"; - version = "0.1.0.0"; - sha256 = "1mpia2qzv8cmd3ss20sj0bc15zjjkdj1g0byvnb3yakpbjky44j5"; + version = "0.1.0.1"; + sha256 = "05ffkpp008b4cpf05xb754q5y7a5wjyygz8dc81hlx4lxfixlzzv"; libraryHaskellDepends = [ base compactable Shpadoinkle text ]; description = "A backend for rendering Shpadoinkle as Text"; license = stdenv.lib.licenses.bsd3; @@ -20454,15 +20501,13 @@ self: { ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: mkDerivation { pname = "VulkanMemoryAllocator"; - version = "0.3"; - sha256 = "1b16vbhml17knx2jk22dqv3hjq98p23g9vmqnd4c0igw76ih46nb"; + version = "0.3.1"; + sha256 = "01l8pfa1h00pk9md4z2i6jp91byp9rqfnvdgialpw62jfxv5a0ca"; libraryHaskellDepends = [ base bytestring transformers vector vulkan ]; description = "Bindings to the VulkanMemoryAllocator library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "WAVE" = callPackage @@ -22509,8 +22554,8 @@ self: { }: mkDerivation { pname = "acid-state"; - version = "0.16.0"; - sha256 = "18pdxawx28wsvjah2rih6fa8mgxpkrpskfkvb5gjb1yn29dd8cmn"; + version = "0.16.0.1"; + sha256 = "0n8qp002w972lf7z9hhn5bbz2rslh8m6am07c88y755nj5xk6y88"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -23777,6 +23822,39 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson_1_5_1_0" = callPackage + ({ mkDerivation, attoparsec, base, base-compat + , base-compat-batteries, base-orphans, base16-bytestring + , bytestring, containers, deepseq, Diff, directory, dlist, filepath + , generic-deriving, ghc-prim, hashable, hashable-time + , integer-logarithms, primitive, QuickCheck, quickcheck-instances + , scientific, tagged, tasty, tasty-golden, tasty-hunit + , tasty-quickcheck, template-haskell, text, th-abstraction, these + , time, time-compat, unordered-containers, uuid-types, vector + }: + mkDerivation { + pname = "aeson"; + version = "1.5.1.0"; + sha256 = "0xz27czzvd1ywzv4wkc7gj8pg8jynbkqrybgdg6j0ms5sappc6d0"; + libraryHaskellDepends = [ + attoparsec base base-compat-batteries bytestring containers deepseq + dlist ghc-prim hashable primitive scientific tagged + template-haskell text th-abstraction these time time-compat + unordered-containers uuid-types vector + ]; + testHaskellDepends = [ + attoparsec base base-compat base-orphans base16-bytestring + bytestring containers Diff directory dlist filepath + generic-deriving ghc-prim hashable hashable-time integer-logarithms + QuickCheck quickcheck-instances scientific tagged tasty + tasty-golden tasty-hunit tasty-quickcheck template-haskell text + these time time-compat unordered-containers uuid-types vector + ]; + description = "Fast JSON parsing and encoding"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-applicative" = callPackage ({ mkDerivation, aeson, base, text, unordered-containers }: mkDerivation { @@ -23894,8 +23972,8 @@ self: { pname = "aeson-compat"; version = "0.3.9"; sha256 = "1j13gykv4ryvmr14w5blz0nnpdb4p0hpa27wahw3mhb1lwdr8hz0"; - revision = "3"; - editedCabalFile = "1fnahwplqcnv9m4kcf8i588ankafd2125ch71027plciqxxwid70"; + revision = "4"; + editedCabalFile = "0l2ggm3lfnww4sq9frr0cga4ad9vlfhjsh323f9lvx3jk0g9pn7y"; libraryHaskellDepends = [ aeson attoparsec attoparsec-iso8601 base base-compat bytestring containers exceptions hashable scientific tagged text time @@ -23943,6 +24021,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-deriving" = callPackage + ({ mkDerivation, aeson, base, hedgehog, text, unordered-containers + }: + mkDerivation { + pname = "aeson-deriving"; + version = "0.1.0.0"; + sha256 = "18zdncbvhlpa5v6yvsj30fyrh44hchaps8jjh93z6ji08cb6wdni"; + libraryHaskellDepends = [ aeson base text unordered-containers ]; + testHaskellDepends = [ + aeson base hedgehog text unordered-containers + ]; + description = "data types for compositional, type-directed serialization"; + license = stdenv.lib.licenses.mit; + }) {}; + "aeson-diff" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, doctest , edit-distance-vector, filepath, Glob, hashable, mtl @@ -23970,6 +24063,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-diff_1_1_0_9" = callPackage + ({ mkDerivation, aeson, base, bytestring, directory, doctest + , edit-distance-vector, filepath, Glob, hashable, mtl + , optparse-applicative, QuickCheck, quickcheck-instances + , scientific, text, unordered-containers, vector + }: + mkDerivation { + pname = "aeson-diff"; + version = "1.1.0.9"; + sha256 = "18bm4qyjjwgrr6dxc4y0vai0z6qgrh2lcqb4jrr4xqs4cxrlwr92"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring edit-distance-vector hashable mtl scientific + text unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring optparse-applicative text + ]; + testHaskellDepends = [ + aeson base bytestring directory doctest filepath Glob QuickCheck + quickcheck-instances text unordered-containers vector + ]; + description = "Extract and apply patches to JSON documents"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-diff-generic" = callPackage ({ mkDerivation, aeson, aeson-diff, base, base-compat, bytestring , containers, dlist, hashable, lens, scientific, tagged @@ -24003,6 +24124,8 @@ self: { pname = "aeson-extra"; version = "0.4.1.3"; sha256 = "1k15vkyf635nh904diyg931ziwdngikvp7c9c339pys3savf5qr2"; + revision = "3"; + editedCabalFile = "04j4af350hfyl01dwxhn6051cgxsaj46f3vy55d1kbwg1ajffdqq"; libraryHaskellDepends = [ aeson aeson-compat attoparsec attoparsec-iso8601 base base-compat-batteries bytestring containers deepseq exceptions @@ -24132,8 +24255,8 @@ self: { }: mkDerivation { pname = "aeson-injector"; - version = "1.1.2.0"; - sha256 = "05506d6nkw7q924l2ww5mg1ahzs9122vj02mgscdh7g72n3krdd4"; + version = "1.1.3.0"; + sha256 = "0188g4z204dw8gyza5hn3xljwmvfk9jq1wq4gnh43894nbrcm4ji"; libraryHaskellDepends = [ aeson base bifunctors deepseq hashable lens servant-docs swagger2 text unordered-containers @@ -24244,8 +24367,8 @@ self: { pname = "aeson-optics"; version = "1.1.0.1"; sha256 = "1pfi84cl7w5bp7dwdhcyi8kchvbfjybqcp0sifqrn70dj2b50mf7"; - revision = "1"; - editedCabalFile = "08nyfzxcw2j9wkm0cnbw2dl8f3zj2zrv85wrjayqq9v06hqk0dkl"; + revision = "3"; + editedCabalFile = "1hxkahjf6znybqiv622n3syn5pp1a6jdpzq8ryrq9y45yczg82pi"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring optics-core optics-extra scientific text unordered-containers vector @@ -24460,8 +24583,8 @@ self: { pname = "aeson-schemas"; version = "1.1.0"; sha256 = "1w01mdixja6f8176ra0lrkhbrr68hcsiib7sq8sdfh1rsx3hsn62"; - revision = "1"; - editedCabalFile = "1z74b2barkaq4hmx29i39lgbq925z2ws226ad9cyicz8nlgrghbv"; + revision = "3"; + editedCabalFile = "1f8ay4m6ncqysyi9nx7c2ndvnzyg0caxm2iqmgfprp9dd8xahh4l"; libraryHaskellDepends = [ aeson base bytestring first-class-families megaparsec template-haskell text unordered-containers @@ -24685,6 +24808,8 @@ self: { pname = "aeson-yaml"; version = "1.0.6.0"; sha256 = "16rm4jgl4wznsc4nna3vdx186qy3jl71r9y89dgcc7k00qvlxb7y"; + revision = "1"; + editedCabalFile = "1k1wv06fzic9c85c5fl2piang0w1kxi9kzq02hp4chgmbj983jmz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -27046,8 +27171,6 @@ self: { ]; description = "Amazon DynamoDB SDK"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "amazonka-dynamodb-dax" = callPackage @@ -28761,6 +28884,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "amqp_0_20_0" = callPackage + ({ mkDerivation, base, binary, bytestring, clock, connection + , containers, data-binary-ieee754, hspec, hspec-expectations + , monad-control, network, network-uri, split, stm, text, vector + , xml + }: + mkDerivation { + pname = "amqp"; + version = "0.20.0"; + sha256 = "1vi8kccvvnym8v4cnsghkiicbjzvkbc7binr12priqmvwvis34rv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring clock connection containers + data-binary-ieee754 monad-control network network-uri split stm + text vector + ]; + executableHaskellDepends = [ base containers xml ]; + testHaskellDepends = [ + base binary bytestring clock connection containers + data-binary-ieee754 hspec hspec-expectations network network-uri + split stm text vector + ]; + description = "Client library for AMQP servers (currently only RabbitMQ)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amqp-conduit" = callPackage ({ mkDerivation, amqp, base, bytestring, conduit, exceptions, hspec , HUnit, lifted-base, monad-control, mtl, resourcet, text @@ -32544,8 +32695,8 @@ self: { }: mkDerivation { pname = "ascii"; - version = "1.0.0.0"; - sha256 = "0sgn93l08fgaxqgfpxmymqfqh5697cx6765yifpzdr7ayxfpf8b2"; + version = "1.0.0.2"; + sha256 = "13v1zpll4x72ib5pwrs01kkhw5yc5xq8aazwm9zfni9452sw3r3w"; libraryHaskellDepends = [ ascii-case ascii-char ascii-group ascii-predicates ascii-superset ascii-th base bytestring data-ascii text @@ -32575,8 +32726,8 @@ self: { ({ mkDerivation, ascii-char, base, hashable }: mkDerivation { pname = "ascii-case"; - version = "1.0.0.0"; - sha256 = "10j65n9pdm5gxq0bsp06s1k7n4357kyw4xjy0mzncp9d81mbz9w4"; + version = "1.0.0.2"; + sha256 = "1qs1rccslixsg4szgp7y98sqhhn0asp9qmk9vfrwdjfipmf3z72p"; libraryHaskellDepends = [ ascii-char base hashable ]; description = "ASCII letter case"; license = stdenv.lib.licenses.asl20; @@ -32586,8 +32737,8 @@ self: { ({ mkDerivation, base, hashable }: mkDerivation { pname = "ascii-char"; - version = "1.0.0.0"; - sha256 = "1y50m20np2id71lvfl3z9ysh5qblcajgqcl5gi1ggg7wvg2r4r97"; + version = "1.0.0.2"; + sha256 = "0pglcppji9irbz0fjc6hb1fv7qjbjcii6k4qdv389l7kbb77w318"; libraryHaskellDepends = [ base hashable ]; description = "A Char type representing an ASCII character"; license = stdenv.lib.licenses.asl20; @@ -32624,8 +32775,8 @@ self: { ({ mkDerivation, ascii-char, base, hashable }: mkDerivation { pname = "ascii-group"; - version = "1.0.0.0"; - sha256 = "0a6sx8hxjwzhbd7cz74k3zqw4vr8ykim1ds95zp7rl646mhlv4bk"; + version = "1.0.0.2"; + sha256 = "19l50ksqa7jdsl0pmrmy8q8jbgmb1j3hr63jjzys220f0agsgcwr"; libraryHaskellDepends = [ ascii-char base hashable ]; description = "ASCII character groups"; license = stdenv.lib.licenses.asl20; @@ -32650,8 +32801,8 @@ self: { ({ mkDerivation, ascii-char, base }: mkDerivation { pname = "ascii-predicates"; - version = "1.0.0.0"; - sha256 = "1d44m97nqvfzxgxk2l7ch1693kccbx91fbg2hspfmkk3kyq16vk0"; + version = "1.0.0.2"; + sha256 = "0dzrxqhq7vqplg4aanc4kindwpizv3d777ri81sj1m1zn3vzvrrq"; libraryHaskellDepends = [ ascii-char base ]; description = "Various categorizations of ASCII characters"; license = stdenv.lib.licenses.asl20; @@ -32705,8 +32856,8 @@ self: { ({ mkDerivation, ascii-char, base, bytestring, hashable, text }: mkDerivation { pname = "ascii-superset"; - version = "1.0.0.0"; - sha256 = "0cpva5r2bxrbkqg1mifp3gcz01hnzlylyc9gqxcms4xxvi3sj22q"; + version = "1.0.0.2"; + sha256 = "1wanvb18h1jlf33f6zr7l1swvagdhw5w3554fsvjq1dm37nygd5m"; libraryHaskellDepends = [ ascii-char base bytestring hashable text ]; @@ -32737,8 +32888,8 @@ self: { }: mkDerivation { pname = "ascii-th"; - version = "1.0.0.0"; - sha256 = "1wh9zssgjrxd7z8wg5p0h3advbmc0v9p8lwjhra2c6860xzli9an"; + version = "1.0.0.2"; + sha256 = "1dmr2g4kx14qad62awk4pv3izx5gm8bmzvs03gn3xrbzssjb8pvc"; libraryHaskellDepends = [ ascii-char ascii-superset base template-haskell ]; @@ -33763,24 +33914,24 @@ self: { "atom-conduit" = callPackage ({ mkDerivation, base-noprelude, blaze-builder, conduit - , data-default, filepath, generic-random, lens-simple, parsers - , pretty-simple, prettyprinter, QuickCheck, quickcheck-instances - , refined, relude, resourcet, safe-exceptions, tasty, tasty-golden - , tasty-hunit, tasty-quickcheck, text, time, timerep - , uri-bytestring, xml-conduit, xml-types + , data-default, filepath, generic-random, microlens, microlens-th + , parsers, pretty-simple, prettyprinter, QuickCheck + , quickcheck-instances, refined, relude, resourcet, safe-exceptions + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text, time + , timerep, uri-bytestring, xml-conduit, xml-types }: mkDerivation { pname = "atom-conduit"; - version = "0.7.0.0"; - sha256 = "1xl2p06s26zm65sn9a13bzcq30d5vggnq32s8f51ss86b4h431q2"; + version = "0.8.0.0"; + sha256 = "0vakq72n9q6hk6ysl64qcyrrya2gp2l3s97n3vggwv84p167xqwd"; libraryHaskellDepends = [ - base-noprelude blaze-builder conduit lens-simple parsers + base-noprelude blaze-builder conduit microlens microlens-th parsers prettyprinter refined relude safe-exceptions text time timerep uri-bytestring xml-conduit xml-types ]; testHaskellDepends = [ base-noprelude conduit data-default filepath generic-random - lens-simple pretty-simple QuickCheck quickcheck-instances refined + microlens pretty-simple QuickCheck quickcheck-instances refined relude resourcet tasty tasty-golden tasty-hunit tasty-quickcheck text time uri-bytestring xml-conduit xml-types ]; @@ -34566,14 +34717,14 @@ self: { broken = true; }) {}; - "aur_7_0_1" = callPackage + "aur_7_0_3" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, http-types, tasty, tasty-hunit, text }: mkDerivation { pname = "aur"; - version = "7.0.1"; - sha256 = "17gizmkbclgxsllsy4lcvxyw09bz5l51l40j74y8bzxzryvwdrq8"; + version = "7.0.3"; + sha256 = "0q54p9lb65k8n41gya09k8232y1piyfmks71c2z38kybh783mgg2"; libraryHaskellDepends = [ aeson base bytestring http-client http-types text ]; @@ -34610,24 +34761,25 @@ self: { , http-types, language-bash, megaparsec, microlens, network-uri , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal , rio, scheduler, stm, tasty, tasty-hunit, text, time, transformers - , typed-process, unliftio, versions + , typed-process, versions }: mkDerivation { pname = "aura"; - version = "2.3.0"; - sha256 = "0m0f06qbg3dn4l5di5fmidjyk9qi14ppbbgbh126naccybjj3231"; + version = "3.1.0"; + sha256 = "07f2q6d2zwg6nqp7pkasb3i1wm6mld3c2x2fm7s8bhnd9kpxzvk6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson algebraic-graphs aur base bytestring containers filepath hashable http-client http-types language-bash megaparsec microlens network-uri prettyprinter prettyprinter-ansi-terminal rio scheduler - stm text time transformers typed-process unliftio versions + stm text time transformers typed-process versions ]; executableHaskellDepends = [ - base bytestring containers http-client http-client-tls microlens - optparse-applicative prettyprinter prettyprinter-ansi-terminal rio - text transformers typed-process versions + aeson aur base bytestring containers http-client http-client-tls + megaparsec microlens optparse-applicative prettyprinter + prettyprinter-ansi-terminal rio scheduler text transformers + typed-process versions ]; testHaskellDepends = [ base bytestring containers megaparsec microlens rio tasty @@ -35004,8 +35156,8 @@ self: { pname = "avers"; version = "0.0.17.1"; sha256 = "1x96fvx0z7z75c39qcggw70qvqnw7kzjf0qqxb3jwg3b0fmdhi8v"; - revision = "34"; - editedCabalFile = "0mj6881npk0xdkf4nkcy52sn6y4414wdpysbw03kkb5vx6cgjws9"; + revision = "36"; + editedCabalFile = "12bwnqb8m1z3f84xml7wf8h0lvs5wb67fdhdp5bl1pf42yr94izz"; libraryHaskellDepends = [ aeson attoparsec base bytestring clock containers cryptonite filepath inflections memory MonadRandom mtl network network-uri @@ -35393,6 +35545,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "aws-cloudfront-signed-cookies_0_2_0_6" = callPackage + ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types + , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog + , lens, lens-aeson, neat-interpolation, optparse-applicative, pem + , text, time, unordered-containers, vector + }: + mkDerivation { + pname = "aws-cloudfront-signed-cookies"; + version = "0.2.0.6"; + sha256 = "19kzrmjw3vfv3v1s35fqdvixlxha43sdb29d60fwjkzvg7al9scv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring + bytestring cookie cryptonite lens lens-aeson optparse-applicative + pem text time unordered-containers vector + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hedgehog neat-interpolation ]; + description = "Generate signed cookies for AWS CloudFront"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aws-cloudfront-signer" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, base, base64-bytestring , bytestring, crypto-pubkey-types, RSA, time @@ -35719,17 +35895,18 @@ self: { }) {}; "aws-lambda-haskell-runtime" = callPackage - ({ mkDerivation, aeson, base, bytestring, hspec, http-client - , http-types, path, path-io, safe-exceptions-checked - , template-haskell, text + ({ mkDerivation, aeson, base, bytestring, case-insensitive, hspec + , http-client, http-types, path, path-io, safe-exceptions-checked + , template-haskell, text, unordered-containers }: mkDerivation { pname = "aws-lambda-haskell-runtime"; - version = "2.0.4"; - sha256 = "0gzg1g5669lr7p5sg22r6b952c7pn39rjr9y0ss77jvl7klhykr8"; + version = "2.0.6"; + sha256 = "0czswk0a8ivvq31wc322imxhvhsnzkj6cygny7y3avvnclmrzm0h"; libraryHaskellDepends = [ - aeson base bytestring http-client http-types path path-io - safe-exceptions-checked template-haskell text + aeson base bytestring case-insensitive http-client http-types path + path-io safe-exceptions-checked template-haskell text + unordered-containers ]; testHaskellDepends = [ base hspec ]; description = "Haskell runtime for AWS Lambda"; @@ -36221,8 +36398,8 @@ self: { pname = "b-tree"; version = "0.1.4"; sha256 = "17hcv85020dm5h3449bfa763bcbl723h17chah4418dby2ql5lxg"; - revision = "1"; - editedCabalFile = "106vsqgv7545p0rky073sd7viidbg4zy3fzlb39r9irbl3p3giih"; + revision = "2"; + editedCabalFile = "0dvmbs7dd2crv5qiziry2dlrpvsvcgj9hbpq04rbd25pzpk28hqi"; libraryHaskellDepends = [ base binary bytestring containers directory errors exceptions filepath lens mmap mtl pipes pipes-interleave transformers vector @@ -37301,6 +37478,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "base64_0_4_2" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, criterion + , deepseq, ghc-byteorder, memory, QuickCheck, quickcheck-instances + , random-bytestring, tasty, tasty-hunit, tasty-quickcheck, text + , text-short + }: + mkDerivation { + pname = "base64"; + version = "0.4.2"; + sha256 = "1q3cz1d2zj2bi57g4yrfk1bbfqrcppl6nh0g5fb5dpmf2wdrfv44"; + revision = "1"; + editedCabalFile = "076pn64fpfx7m7hqvhj35p80mwimnq8gyf7frmcj8wdxq1y4igj0"; + libraryHaskellDepends = [ + base bytestring ghc-byteorder text text-short + ]; + testHaskellDepends = [ + base base64-bytestring bytestring QuickCheck quickcheck-instances + random-bytestring tasty tasty-hunit tasty-quickcheck text + text-short + ]; + benchmarkHaskellDepends = [ + base base64-bytestring bytestring criterion deepseq memory + random-bytestring text + ]; + description = "A modern RFC 4648-compliant Base64 library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base64-bytestring" = callPackage ({ mkDerivation, base, bytestring, containers, criterion, deepseq , HUnit, QuickCheck, split, test-framework, test-framework-hunit @@ -37353,8 +37559,8 @@ self: { pname = "base64-bytestring-type"; version = "1.0.1"; sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; - revision = "4"; - editedCabalFile = "0w7pzjyyhan42zbk8mn9dw1hzjcr0nv9nhpi4hs7s16d6cc80qwa"; + revision = "6"; + editedCabalFile = "05z53pc1gi62lzl262mc1qx12qqrds6ab6rflwpfcxbp0a67c825"; libraryHaskellDepends = [ aeson base base-compat base64-bytestring binary bytestring cereal deepseq hashable http-api-data QuickCheck serialise text @@ -38334,6 +38540,8 @@ self: { pname = "bech32"; version = "1.0.2"; sha256 = "0km1jy3fhpnzqhi4pd5yn6y7214ij7rg47xwnp915c0x6j72ykym"; + revision = "1"; + editedCabalFile = "00zw8s5gp7l9872mhm4xcra6z1maw3pwb8klvaik9r7w3gwx6b4h"; libraryHaskellDepends = [ array base bytestring containers extra text ]; @@ -38354,6 +38562,8 @@ self: { pname = "bech32-th"; version = "1.0.2"; sha256 = "0ypn8y4b0iw7jb167biy0zjs4hp9k9nlf8y4nsczfv5n4p4cadnq"; + revision = "1"; + editedCabalFile = "1b614lymjd3idcbzrkha7labfskv1m0kbljrnhwcz7sbymfcbdbk"; libraryHaskellDepends = [ base bech32 template-haskell text ]; testHaskellDepends = [ base bech32 hspec template-haskell ]; testToolDepends = [ hspec-discover ]; @@ -38535,12 +38745,12 @@ self: { ({ mkDerivation, base, bytestring, mtl, time }: mkDerivation { pname = "benchpress"; - version = "0.2.2.13"; - sha256 = "1x14mynjwjd8j7l0dl8nn6w8wf5y95wvww445glkih4p1yvzqm8z"; + version = "0.2.2.14"; + sha256 = "02d4ndwz0xyvfa5j1a4564sfn6fmpf4757dfxr6k20z5vgcdbqih"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base mtl time ]; - executableHaskellDepends = [ base bytestring ]; + executableHaskellDepends = [ base bytestring time ]; description = "Micro-benchmarking with detailed statistics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -39448,6 +39658,8 @@ self: { pname = "binary-instances"; version = "1.0.0.1"; sha256 = "0f8ilzpwj7gbyvlswlkd48dzpj9m13ipinw55lvjag0ir52idk9a"; + revision = "1"; + editedCabalFile = "19xmaj5vlabsifkdk1kpxp4nadfml7a51w316sd4fxd69ncvwd72"; libraryHaskellDepends = [ aeson base binary binary-orphans case-insensitive hashable scientific tagged text text-binary time-compat unordered-containers @@ -39466,8 +39678,8 @@ self: { ({ mkDerivation, base, binary, bytestring, hspec, process }: mkDerivation { pname = "binary-io"; - version = "0.0.1"; - sha256 = "1w0wqi60wdfhlmif7ji47cvf5608fg1b9hh7cz657ybv1lpc6s89"; + version = "0.1.0"; + sha256 = "10a0rhpapnfmfhcsm1qj844vi1ym7sdfzswxa5mc9khyjvm5lzs5"; libraryHaskellDepends = [ base binary bytestring ]; testHaskellDepends = [ base binary bytestring hspec process ]; description = "Read and write values of types that implement Binary from and to Handles"; @@ -39741,6 +39953,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "binary-tagged_0_3" = callPackage + ({ mkDerivation, array, base, base16-bytestring, binary + , binary-instances, bytestring, containers, criterion, deepseq + , QuickCheck, quickcheck-instances, singleton-bool, structured + , tagged, tasty, tasty-hunit, tasty-quickcheck, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "binary-tagged"; + version = "0.3"; + sha256 = "1bvzwhdjxxr7b3lk23rwcygi34d6a5mairi2j2gh7k3p8983fgss"; + libraryHaskellDepends = [ + array base base16-bytestring binary bytestring containers + structured tagged + ]; + testHaskellDepends = [ + base binary binary-instances bytestring QuickCheck + quickcheck-instances singleton-bool tagged tasty tasty-hunit + tasty-quickcheck transformers + ]; + benchmarkHaskellDepends = [ + base binary binary-instances bytestring criterion deepseq text + unordered-containers + ]; + description = "Tagged binary serialisation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "binary-tree" = callPackage ({ mkDerivation, base, ChasingBottoms, checkers, criterion, deepseq , doctest, ghc-prim, HUnit, QuickCheck, random, test-framework @@ -41017,8 +41258,8 @@ self: { }: mkDerivation { pname = "birch-beer"; - version = "0.2.4.2"; - sha256 = "09bk2qsq6rpa2sk817vb9w1y21rqjkj25i74cfw4rgzy2c550ffj"; + version = "0.2.5.0"; + sha256 = "11ijdd4j9yi3k2blzh8rpzix3w1hfsz188xqharwsk3sxqjbws5c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -41063,6 +41304,18 @@ self: { broken = true; }) {}; + "birds-of-paradise" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "birds-of-paradise"; + version = "0.1.1.0"; + sha256 = "1s7d10m6p9zw9m3mkf20k45nna3ayvb4y2r9z3vslm9ahqazk5l8"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + description = "Birds of Paradise"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "bisc" = callPackage ({ mkDerivation, base, configurator, directory, filepath, mtl , selda, selda-sqlite, text @@ -42051,8 +42304,8 @@ self: { ({ mkDerivation, base, memory, tasty, tasty-hunit }: mkDerivation { pname = "blake3"; - version = "0.1"; - sha256 = "005d7zqxbr0yc18c15llpd3mqwhvvc3nqgv9djmlf8xhzbmll4ar"; + version = "0.2"; + sha256 = "1a6pfcsdnqwr116jypzla6nvl1wzny60r5ypi2yj4gjpmpbkj8b8"; libraryHaskellDepends = [ base memory ]; testHaskellDepends = [ base memory tasty tasty-hunit ]; description = "BLAKE3 hashing algorithm"; @@ -42130,6 +42383,8 @@ self: { pname = "blank-canvas"; version = "0.7.1"; sha256 = "02w428jpb49yaqzw93121lf1m4pjxi8wniqhnrvqh2zh63gsfws1"; + revision = "2"; + editedCabalFile = "0rvdgsmlfkk135qx0y0df5r7sw9xv5i89r84q5ylf32icsivlrr7"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base base-compat-batteries base64-bytestring bytestring @@ -43196,8 +43451,8 @@ self: { }: mkDerivation { pname = "bond"; - version = "0.12.0.1"; - sha256 = "0zhfhr1ya0ljvg5s0s6fpqyrb0f25qdkschblfcmf68c6xmy4ws0"; + version = "0.12.1.0"; + sha256 = "1jh2gczg2xlkn26s4pfi81rhcfm83qb51fcsrhi4yq5nlvjzlvm6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -43786,6 +44041,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "both_0_1_1_1" = callPackage + ({ mkDerivation, base, semigroups, zero }: + mkDerivation { + pname = "both"; + version = "0.1.1.1"; + sha256 = "0kdqz901fpdgggmkm9rpnpv7gma9c8d887bszhnz6xd3v96gg7xn"; + libraryHaskellDepends = [ base semigroups zero ]; + description = "Like Maybe, but with a different Monoid instance"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "botpp" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -43950,13 +44217,13 @@ self: { }: mkDerivation { pname = "box"; - version = "0.3.0"; - sha256 = "1xm4dd2h8fylfadfb4gsw1vs2a5l5ngjz956zh5cnm0rdma63j14"; + version = "0.4.0"; + sha256 = "0vacsh2b6sdsy360513hpij5bdwr74x0aawfm64m7iw3a7909fpj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ async attoparsec base concurrency contravariant exceptions foldl - lens pipes profunctors streaming text time transformers + lens pipes profunctors protolude streaming text time transformers transformers-base typed-process ]; executableHaskellDepends = [ @@ -44191,7 +44458,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "brick_0_53" = callPackage + "brick_0_54" = callPackage ({ mkDerivation, base, bytestring, config-ini, containers , contravariant, data-clist, deepseq, directory, dlist, exceptions , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm @@ -44200,8 +44467,8 @@ self: { }: mkDerivation { pname = "brick"; - version = "0.53"; - sha256 = "15k9sc5y3xcjd3kfjs0rnsqxbiy9k34khncbi7jyyl3khq7rhw5n"; + version = "0.54"; + sha256 = "10a20w01wyi6rg883s9gcgkyr8vn317y67bmf7wa71lrhl283khv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -44463,6 +44730,7 @@ self: { ]; description = "Haskell source code formatter"; license = stdenv.lib.licenses.agpl3; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "broadcast-chan" = callPackage @@ -44471,8 +44739,8 @@ self: { }: mkDerivation { pname = "broadcast-chan"; - version = "0.2.1"; - sha256 = "1pigxkncv71p51qnhxkag6hry14jp5s2skmxxbq2pmlrkj9j6rgs"; + version = "0.2.1.1"; + sha256 = "01r57v2ghfkv37cwh64zs1lrz1rd7is3pa5k7y8h16ws1ddglirg"; libraryHaskellDepends = [ base transformers unliftio-core ]; benchmarkHaskellDepends = [ async base criterion deepseq stm ]; description = "Closable, fair, single-wakeup channel type that avoids 0 reader space leaks"; @@ -44485,8 +44753,8 @@ self: { }: mkDerivation { pname = "broadcast-chan-conduit"; - version = "0.2.1"; - sha256 = "1n9hqmdyw3v58kv8czbvvw5sfy4il3izqvn6rk8gak84hb51brxq"; + version = "0.2.1.1"; + sha256 = "0w0f4skprhnm1x4vzchkgjgjljzqizpb678251jgj65jsg1mnyfc"; libraryHaskellDepends = [ base broadcast-chan conduit resourcet transformers unliftio-core ]; @@ -44521,8 +44789,8 @@ self: { }: mkDerivation { pname = "broadcast-chan-tests"; - version = "0.2.1"; - sha256 = "01vlhxxwhkakllffw7vdqr7fcsf9m7rkwkbs8x6d5dfwb5qxs6gk"; + version = "0.2.1.1"; + sha256 = "0qx8j9sfky5qvrxrn4is9sja4qh6jh7jahq3zkyyq3a54jkwc8d3"; libraryHaskellDepends = [ async base broadcast-chan clock containers optparse-applicative paramtree stm tagged tasty tasty-golden tasty-hunit tasty-travis @@ -45153,8 +45421,8 @@ self: { }: mkDerivation { pname = "bugsnag-hs"; - version = "0.1.0.0"; - sha256 = "1p27q90k39rch3sy7m5n65qkqkn5f5jnrrk5sq182v2dfl1x2j36"; + version = "0.1.0.1"; + sha256 = "1b9ps0yhqvph9ax767xfq1v9v6pggm66ngsv96kww9lj8isg0y5d"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson auto-update base bytestring http-client stm text time @@ -45165,14 +45433,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bugsnag-hs_0_1_0_1" = callPackage + "bugsnag-hs_0_1_0_3" = callPackage ({ mkDerivation, aeson, auto-update, base, bytestring, hedgehog , http-client, stm, text, time, unordered-containers }: mkDerivation { pname = "bugsnag-hs"; - version = "0.1.0.1"; - sha256 = "1b9ps0yhqvph9ax767xfq1v9v6pggm66ngsv96kww9lj8isg0y5d"; + version = "0.1.0.3"; + sha256 = "0xm7qf4kzbgk3qnchns7bb2578x4ivmym5a93272849klybjjqk9"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson auto-update base bytestring http-client stm text time @@ -45760,6 +46028,21 @@ self: { broken = true; }) {}; + "byte-count-reader" = callPackage + ({ mkDerivation, base, extra, hspec, parsec, parsec-numbers, text + }: + mkDerivation { + pname = "byte-count-reader"; + version = "0.10.0.0"; + sha256 = "1zln6g45hizyh7rgh3f7i552a6g74s0p14zm15n1ybch9zizp5yp"; + libraryHaskellDepends = [ base extra parsec parsec-numbers text ]; + testHaskellDepends = [ + base extra hspec parsec parsec-numbers text + ]; + description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "byte-order" = callPackage ({ mkDerivation, base, primitive, primitive-unaligned }: mkDerivation { @@ -46909,6 +47192,17 @@ self: { broken = true; }) {youProbablyWantCapitalCabal = null;}; + "cabal-appimage" = callPackage + ({ mkDerivation, base, Cabal, filepath }: + mkDerivation { + pname = "cabal-appimage"; + version = "0.3.0.0"; + sha256 = "0m3xq3k4s6rn90vd2sp115jyb722vi9wgih3lz05fnc2bypyg6zi"; + libraryHaskellDepends = [ base Cabal filepath ]; + description = "Cabal support for creating AppImage applications"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "cabal-audit" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, HTTP , optparse-applicative @@ -47175,6 +47469,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cabal-file" = callPackage + ({ mkDerivation, base, bytestring, Cabal, directory, extra + , filepath, hackage-security, optparse-applicative, simple-cabal + , simple-cmd, simple-cmd-args, time + }: + mkDerivation { + pname = "cabal-file"; + version = "0.1.0"; + sha256 = "1khf39awvpnqxs0rlqa6n5810x9kkn31975v6kbmwwdrjjp2qlqw"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal directory extra filepath hackage-security + optparse-applicative simple-cabal simple-cmd time + ]; + executableHaskellDepends = [ + base bytestring Cabal directory extra filepath optparse-applicative + simple-cabal simple-cmd simple-cmd-args + ]; + description = "Cabal file access"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cabal-file-th" = callPackage ({ mkDerivation, base, Cabal, directory, pretty, template-haskell }: @@ -47214,7 +47531,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "cabal-flatpak_0_1_0_1" = callPackage + "cabal-flatpak_0_1_0_2" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cabal-plan , containers, cryptohash-sha256, http-client, http-client-tls , http-types, optparse-applicative, pathtype, shell-utility, tar @@ -47222,8 +47539,10 @@ self: { }: mkDerivation { pname = "cabal-flatpak"; - version = "0.1.0.1"; - sha256 = "12jyzbh4xhqj6rhg9n2za5r8n4j6zdw3x5ixdh5xvw4wivfxqxq9"; + version = "0.1.0.2"; + sha256 = "1h7yklhqrsgxk841fryxz0sk03zb02p34g1nvwdz6c6mfpwc8y54"; + revision = "1"; + editedCabalFile = "0ba63swfx2xd6aw2iq1nkrl9932hvkn3lf7x74wqimcykm4vbws7"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -47244,8 +47563,8 @@ self: { }: mkDerivation { pname = "cabal-fmt"; - version = "0.1.2"; - sha256 = "0h4qxbwykddbdbiw5j140v8cin5h4aqi260wd9fddpxdpkpmdrda"; + version = "0.1.3"; + sha256 = "1d91kmx2q6ygx2avwgi9ihkdazngjf7i3ajyp3cmry5ahvv62x7z"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ @@ -47261,8 +47580,7 @@ self: { doHaddock = false; description = "Format .cabal files"; license = "GPL-3.0-or-later AND BSD-3-Clause"; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "cabal-ghc-dynflags" = callPackage @@ -47471,6 +47789,8 @@ self: { pname = "cabal-install-parsers"; version = "0.3.0.1"; sha256 = "1skv3psqs26m68n5xqsw4jil2f3dz5yv8hmskl58sg0q22mjbspm"; + revision = "1"; + editedCabalFile = "1q89viamcwb49qi8as9pdscsi2a0pkjpfj275ch4rx0qj0vwkr67"; libraryHaskellDepends = [ aeson base base16-bytestring binary binary-instances bytestring Cabal containers cryptohash-sha256 deepseq directory filepath lukko @@ -47621,6 +47941,36 @@ self: { license = stdenv.lib.licenses.gpl2Plus; }) {}; + "cabal-plan_0_7_0_0" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat + , base16-bytestring, bytestring, containers, directory, filepath + , mtl, optics-core, optparse-applicative, parsec, process + , semialign, singleton-bool, text, these, topograph, transformers + , vector + }: + mkDerivation { + pname = "cabal-plan"; + version = "0.7.0.0"; + sha256 = "1wv375dq50fibzg6xa9vrr8q4lhaqcl254b9a2vc42rrjvhxxmzc"; + revision = "1"; + editedCabalFile = "0gc64mgk11nszilkbid351zxh5cpy85kqcc3mrkrw2fsbcga08as"; + configureFlags = [ "-fexe" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base16-bytestring bytestring containers directory + filepath text + ]; + executableHaskellDepends = [ + ansi-terminal async base base-compat bytestring containers + directory mtl optics-core optparse-applicative parsec process + semialign singleton-bool text these topograph transformers vector + ]; + description = "Library and utility for processing cabal's plan.json file"; + license = stdenv.lib.licenses.gpl2Plus; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-progdeps" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { @@ -48586,23 +48936,23 @@ self: { , containers, data-default-class, deepseq, deque, df1, di-polysemy , exceptions, fmt, focus, generic-lens, generic-override , generic-override-aeson, hashable, http-date, http-types, lens - , lens-aeson, mtl, polysemy, polysemy-plugin, reflection - , safe-exceptions, scientific, stm, stm-chans, stm-containers, text - , text-show, time, typerep-map, unagi-chan, unordered-containers - , vector, websockets, wreq-patchable, wuss + , lens-aeson, megaparsec, mtl, polysemy, polysemy-plugin + , reflection, safe-exceptions, scientific, stm, stm-chans + , stm-containers, text, text-show, time, typerep-map, unagi-chan + , unordered-containers, vector, websockets, wreq-patchable, wuss }: mkDerivation { pname = "calamity"; - version = "0.1.8.0"; - sha256 = "1fn2nq1hzcn3lpk3y7i8s3xlbp68h6ikxmi0hvcp9mx9xhlw8yk0"; + version = "0.1.10"; + sha256 = "0f5bdswc9bjqyhs7wainh91r2zxmymjqjdwzf2xygbai269amf5s"; libraryHaskellDepends = [ aeson async base bytestring concurrent-extra containers data-default-class deepseq deque df1 di-polysemy exceptions fmt focus generic-lens generic-override generic-override-aeson hashable - http-date http-types lens lens-aeson mtl polysemy polysemy-plugin - reflection safe-exceptions scientific stm stm-chans stm-containers - text text-show time typerep-map unagi-chan unordered-containers - vector websockets wreq-patchable wuss + http-date http-types lens lens-aeson megaparsec mtl polysemy + polysemy-plugin reflection safe-exceptions scientific stm stm-chans + stm-containers text text-show time typerep-map unagi-chan + unordered-containers vector websockets wreq-patchable wuss ]; description = "A library for writing discord bots"; license = stdenv.lib.licenses.mit; @@ -49806,6 +50156,26 @@ self: { broken = true; }) {}; + "cases_0_1_4" = callPackage + ({ mkDerivation, attoparsec, base, base-prelude, criterion, HTF + , HUnit, loch-th, mwc-random, placeholders, QuickCheck, rerebase + , text + }: + mkDerivation { + pname = "cases"; + version = "0.1.4"; + sha256 = "14mn0cjbnx4jlm5gqkprim5jfc39ffzj2xzv4vvzi2yq3pwcycv0"; + libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; + testHaskellDepends = [ + base HTF HUnit loch-th placeholders QuickCheck text + ]; + benchmarkHaskellDepends = [ criterion mwc-random rerebase ]; + description = "A converter for spinal, snake and camel cases"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "cash" = callPackage ({ mkDerivation, base, deepseq, haskell98, HaXml, network, parallel , pretty @@ -50529,6 +50899,27 @@ self: { broken = true; }) {}; + "cayley-client_0_4_13" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, bytestring + , exceptions, hspec, http-client, http-conduit, lens, lens-aeson + , mtl, text, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "cayley-client"; + version = "0.4.13"; + sha256 = "1sak0rg9gydcwk7ahx51czp3akispxrkkfgq94n6hgg3dqvm646l"; + libraryHaskellDepends = [ + aeson attoparsec base binary bytestring exceptions http-client + http-conduit lens lens-aeson mtl text transformers + unordered-containers vector + ]; + testHaskellDepends = [ aeson base hspec unordered-containers ]; + description = "A Haskell client for the Cayley graph database"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "cayley-dickson" = callPackage ({ mkDerivation, base, random }: mkDerivation { @@ -50573,6 +50964,8 @@ self: { pname = "cbor-tool"; version = "0.2.2.0"; sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p"; + revision = "1"; + editedCabalFile = "1z87h65g6y1w43g76r5i9ps8wkpiabbgkqq85ni8mz1m3rjizl4n"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -50594,6 +50987,8 @@ self: { pname = "cborg"; version = "0.2.3.0"; sha256 = "14y7yckj1xzldadyq8g84dgsdaygf9ss0gd38vjfw62smdjq1in8"; + revision = "1"; + editedCabalFile = "0rwliw9xl6y5ypwcywlmr1adqi4c8zi0vghxxarkwh7s5ny34q9f"; libraryHaskellDepends = [ array base bytestring containers deepseq ghc-prim half integer-gmp primitive text @@ -50616,6 +51011,8 @@ self: { pname = "cborg-json"; version = "0.2.2.0"; sha256 = "0ysilz7rrjk94sqr3a61s98hr9qfi1xg13bskmlpc6mpgi2s4s5b"; + revision = "2"; + editedCabalFile = "1hbabjvmyqha75v2ivyvj6yzrnj9vs3h9988j4p68x9bcwmgyjyd"; libraryHaskellDepends = [ aeson aeson-pretty base cborg scientific text unordered-containers vector @@ -51605,30 +52002,29 @@ self: { }) {}; "chart-svg" = callPackage - ({ mkDerivation, attoparsec, base, bifunctors, colour, containers - , foldl, generic-lens, javascript-bridge, JuicyPixels, lens, lucid - , lucid-svg, numhask-space, palette, pretty-simple, protolude - , scientific, scotty, tagsoup, text, text-format, time - , transformers, unordered-containers, wai-middleware-static - , web-rep + ({ mkDerivation, attoparsec, base, bifunctors, Color, containers + , foldl, generic-lens, javascript-bridge, lens, lucid, lucid-svg + , numhask-space, pretty-simple, protolude, scientific, scotty + , tagsoup, text, text-format, time, transformers + , unordered-containers, wai-middleware-static, web-rep }: mkDerivation { pname = "chart-svg"; - version = "0.0.1"; - sha256 = "1mdvqvj5bj04vgfl7wv64kbx096hrlhwr78jxg2mdnhhzr4xciq6"; + version = "0.0.3"; + sha256 = "04p2ijvsf47j9r1hck5qby6w2x18r8mpk40pywc4wsbgxcdw6rfa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base bifunctors colour foldl generic-lens JuicyPixels - lens lucid lucid-svg numhask-space palette pretty-simple protolude - scientific tagsoup text text-format time transformers web-rep + attoparsec base bifunctors Color foldl generic-lens lens lucid + lucid-svg numhask-space pretty-simple protolude scientific tagsoup + text text-format time transformers web-rep ]; executableHaskellDepends = [ base bifunctors containers generic-lens javascript-bridge lens lucid-svg numhask-space protolude scotty text transformers unordered-containers wai-middleware-static web-rep ]; - description = "See readme.md"; + description = "Charts in SVG"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -52493,6 +52889,8 @@ self: { pname = "chronos"; version = "1.1.1"; sha256 = "10nxhnj5y984c3mf2wkc2zl6afbph0b0vj7f722g0yp7cq4908yj"; + revision = "1"; + editedCabalFile = "0yspjcgnzl8kvfw6lgndkd2m4cp1s5gvga0kfm5fbrf0g8kwhns8"; libraryHaskellDepends = [ aeson attoparsec base bytestring hashable primitive semigroups text torsor vector @@ -52970,8 +53368,8 @@ self: { pname = "circle-packing"; version = "0.1.0.6"; sha256 = "06z8irwrjxxgk5xqlpy6a9mjl44kp9pgx2xpslhgxrd31nll9vk4"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; + revision = "4"; + editedCabalFile = "1jp1b6l5v1llmggy316s4bb78wjvgq8iya0i2zz4k5v6l5dl8ln2"; libraryHaskellDepends = [ base ]; description = "Simple heuristic for packing discs of varying radii in a circle"; license = stdenv.lib.licenses.bsd3; @@ -53821,8 +54219,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.25.5"; - sha256 = "1sis7xqvnbaqw513xibzrfyvhbcfsg7yz6syd3lx9rqz26b1byih"; + version = "0.26.0"; + sha256 = "0yjw0kk241qbh2z6248savy3a99asd3smva1qbplga31232a8025"; enableSeparateDataOutput = true; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring @@ -53849,8 +54247,8 @@ self: { }: mkDerivation { pname = "clckwrks-cli"; - version = "0.3.0.2"; - sha256 = "0gan0x38ymi9s0bxv34girdh6pz2dy797yrifnzkv9p8gnlh0648"; + version = "0.3.0.3"; + sha256 = "03dyhfnmqhqjahd36cdhjvrqp68grzvdl69cqk2z2aa34z0agd4a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -53977,16 +54375,15 @@ self: { }: mkDerivation { pname = "clckwrks-plugin-media"; - version = "0.6.16.8"; - sha256 = "0l6rb5gjag9mxcn067yp3h0bd37jg18p3sg79gkf2pzkxyzhgwqk"; + version = "0.6.16.9"; + sha256 = "025zxvb3qynqsl39rnsvfyr7wrpfymmhc120nspd46sv4pvqmgvb"; enableSeparateDataOutput = true; libraryHaskellDepends = [ acid-state attoparsec base blaze-html cereal clckwrks containers - directory filepath gd happstack-server hsp ixset magic mtl reform - reform-happstack reform-hsp safecopy text web-plugins web-routes - web-routes-th + directory filepath gd happstack-server hsp hsx2hs ixset magic mtl + reform reform-happstack reform-hsp safecopy text web-plugins + web-routes web-routes-th ]; - libraryToolDepends = [ hsx2hs ]; description = "media plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -54003,8 +54400,8 @@ self: { }: mkDerivation { pname = "clckwrks-plugin-page"; - version = "0.4.3.20"; - sha256 = "0w1vyw5jvypbha4i5m7f7kpwmyqarm9wzdklldabx41cm3ab48li"; + version = "0.4.3.22"; + sha256 = "00ad6ricd8jrjs7l5l2pg3k87x1cjm0x5zlgppzknns4xzjldips"; libraryHaskellDepends = [ acid-state aeson attoparsec base clckwrks containers directory filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl @@ -54026,8 +54423,8 @@ self: { }: mkDerivation { pname = "clckwrks-theme-bootstrap"; - version = "0.4.2.2"; - sha256 = "0sa3k34m1kf6r7i42rfg5v3g1m9drisfnn2bvlfcbyk8sna7mf80"; + version = "0.4.2.3"; + sha256 = "1a00rrb49m358ds408wzm40f6g98w1lnd70rhp4jpkirj94bmaz4"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro @@ -55516,8 +55913,8 @@ self: { }: mkDerivation { pname = "cobot-io"; - version = "0.1.3.4"; - sha256 = "059lijjlf31xw94fqp8ylzmvdf99v43vwa35q8an7qg5df81yc1j"; + version = "0.1.3.5"; + sha256 = "0h3pray036ddjwxvda5m6x7nx8p3ksaj4fkbw2afwgvn3gl7y991"; libraryHaskellDepends = [ array attoparsec base binary bytestring containers data-msgpack deepseq http-conduit hyraxAbif lens linear mtl split text vector @@ -59168,6 +59565,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit-zstd_0_0_2_0" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-combinators + , conduit-extra, directory, quickcheck-instances, tasty + , tasty-quickcheck, zstd + }: + mkDerivation { + pname = "conduit-zstd"; + version = "0.0.2.0"; + sha256 = "0f0ir4zs3skw33c8mfppxhfsyqh1c2cnc4gkf8bvv3bdiikdj1yl"; + libraryHaskellDepends = [ base bytestring conduit zstd ]; + testHaskellDepends = [ + base bytestring conduit conduit-combinators conduit-extra directory + quickcheck-instances tasty tasty-quickcheck zstd + ]; + description = "Conduit-based ZStd Compression"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conf" = callPackage ({ mkDerivation, base, haskell-src, HUnit, test-framework , test-framework-hunit, test-framework-th @@ -59257,14 +59673,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "conferer_0_3_0_0" = callPackage + "conferer_0_4_1_0" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, directory , hspec, text }: mkDerivation { pname = "conferer"; - version = "0.3.0.0"; - sha256 = "0irbi1b5fwxcm68a8dbh6qhl2sin998qv8pazw574a3s4z38slv5"; + version = "0.4.1.0"; + sha256 = "10wkzd7418jk6lvjn21h0qyk2lmsx12pvhn5j23b8vim89nb3p1c"; libraryHaskellDepends = [ base bytestring containers directory text ]; @@ -59280,8 +59696,8 @@ self: { ({ mkDerivation, base, conferer, hedis, hspec, text }: mkDerivation { pname = "conferer-hedis"; - version = "0.3.0.0"; - sha256 = "1d5y15xlsmvj5vbfyp5hmx3zjrwyz58q08aq3w90ia4pi206sq1l"; + version = "0.4.0.0"; + sha256 = "0w6ndawqcc25kq3jzlr907pga69php06sfnmkm2dnw5sw4ws5766"; libraryHaskellDepends = [ base conferer hedis text ]; testHaskellDepends = [ base conferer hedis hspec text ]; description = "conferer's FromConfig instances for hedis settings"; @@ -59302,12 +59718,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "conferer-hspec_0_3_0_0" = callPackage + "conferer-hspec_0_4_0_0" = callPackage ({ mkDerivation, base, conferer, hspec, hspec-core, text }: mkDerivation { pname = "conferer-hspec"; - version = "0.3.0.0"; - sha256 = "0vgg0fadcd3xkjrjrvvwl6ybxp6sccr82rjdxswrr0x38c5q42xz"; + version = "0.4.0.0"; + sha256 = "1zj132a0m043lyk8bi9scvpcyhskivn2hrkcyrbms73i800dd59v"; libraryHaskellDepends = [ base conferer hspec-core text ]; testHaskellDepends = [ base conferer hspec hspec-core text ]; description = "conferer's FromConfig instances for hspec Config"; @@ -59404,8 +59820,8 @@ self: { }: mkDerivation { pname = "conferer-snap"; - version = "0.3.0.0"; - sha256 = "19kw9g0f7znc7as6nhjvnx5kypd71ygr5ialhk4pfjva3bp121ij"; + version = "0.4.0.0"; + sha256 = "1k7pnk3jlrrgky7fb3bf397w5ad9qkh2k42bw5777s35ni3v7955"; libraryHaskellDepends = [ base conferer snap-core snap-server text ]; @@ -59418,6 +59834,63 @@ self: { broken = true; }) {}; + "conferer-source-dhall" = callPackage + ({ mkDerivation, base, bytestring, conferer, conferer-source-json + , dhall, dhall-json, directory, hspec, text + }: + mkDerivation { + pname = "conferer-source-dhall"; + version = "0.4.0.0"; + sha256 = "0s3f0r9q16b08g6kv7vbk7hy48a6bgf5xqalw7n9zkmn4i6qb2cf"; + libraryHaskellDepends = [ + base bytestring conferer conferer-source-json dhall dhall-json + directory text + ]; + testHaskellDepends = [ + base bytestring conferer conferer-source-json dhall dhall-json + directory hspec text + ]; + description = "Configuration for reading dhall files"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "conferer-source-json" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, bytestring, conferer + , directory, hspec, text, unordered-containers, vector + }: + mkDerivation { + pname = "conferer-source-json"; + version = "0.4.0.0"; + sha256 = "0dml6xcs3bx3ay1f415k58xdr5xwy2201ibbi2v5lcs9dcb5vnhb"; + libraryHaskellDepends = [ + aeson base bytestring conferer directory text unordered-containers + vector + ]; + testHaskellDepends = [ + aeson aeson-qq base bytestring conferer directory hspec text + unordered-containers vector + ]; + description = "conferer's source for reading json files"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "conferer-source-yaml" = callPackage + ({ mkDerivation, base, conferer, conferer-source-json, hspec, yaml + }: + mkDerivation { + pname = "conferer-source-yaml"; + version = "0.4.0.0"; + sha256 = "1cpq88z525fw0zabvn4m14shp0pvbchzbmhiby4cyp7qzb5cjiyn"; + libraryHaskellDepends = [ + base conferer conferer-source-json yaml + ]; + testHaskellDepends = [ + base conferer conferer-source-json hspec yaml + ]; + description = "Configuration for reading yaml files"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "conferer-warp" = callPackage ({ mkDerivation, base, conferer, hspec, http-types, text, wai, warp }: @@ -59433,13 +59906,13 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "conferer-warp_0_3_0_0" = callPackage + "conferer-warp_0_4_0_0" = callPackage ({ mkDerivation, base, conferer, hspec, http-types, text, wai, warp }: mkDerivation { pname = "conferer-warp"; - version = "0.3.0.0"; - sha256 = "19rld3xl4mfzl08wyciwh9amfcadnbn0rgjxvdy2s0vgk3nj7677"; + version = "0.4.0.0"; + sha256 = "1xwvk22diwfww82v7q7paq0aqnp5lqqayq4z76lq41zmp1l6nkzc"; libraryHaskellDepends = [ base conferer http-types text wai warp ]; testHaskellDepends = [ base conferer hspec http-types text wai warp @@ -61660,18 +62133,21 @@ self: { }) {inherit (pkgs) rocksdb;}; "cornea" = callPackage - ({ mkDerivation, base, HTF, lens, mtl, template-haskell - , th-abstraction, transformers + ({ mkDerivation, base-noprelude, either, HTF, lens, lifted-base + , monad-control, mtl, relude, template-haskell, th-abstraction + , transformers }: mkDerivation { pname = "cornea"; - version = "0.2.2.0"; - sha256 = "0b33599clz9cxlqhci8xlizhqzslw7k0mv60g04vf8b5pj3q2zyk"; + version = "0.3.0.1"; + sha256 = "0kdj6ii6k8x9i87vgfl2cjlwkj4vls09w781xab6ix7h264asi71"; libraryHaskellDepends = [ - base lens mtl template-haskell th-abstraction transformers + base-noprelude either lens lifted-base monad-control mtl relude + template-haskell th-abstraction transformers ]; testHaskellDepends = [ - base HTF lens mtl template-haskell th-abstraction transformers + base-noprelude either HTF lens lifted-base monad-control mtl relude + template-haskell th-abstraction transformers ]; description = "classy optical monadic state"; license = "unknown"; @@ -62172,8 +62648,8 @@ self: { ({ mkDerivation, base, containers, directory, parallel }: mkDerivation { pname = "cpsa"; - version = "3.6.5"; - sha256 = "03qf4gd28097ra0vndizxxdqvqdgl4p3cl41w9r0rfcw4367bzjf"; + version = "3.6.6"; + sha256 = "1mg85yjx4fjsnzfmbz0gh78agis44nqqmnc8rwdqkrp6vka1v9ks"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -63412,8 +63888,8 @@ self: { pname = "crypto-enigma"; version = "0.1.1.6"; sha256 = "07qxrpwg9r2w2l0d2nrvn703vzsfhchznly93bnr2pfpbwj4iv2z"; - revision = "1"; - editedCabalFile = "15n8jb3g89x1cj5vk9a3x3g55c3agdz611sjlp5ixvqzf1kz5jiq"; + revision = "3"; + editedCabalFile = "0djn9pyvhlk964mzqdw0fpczwsvzadcp6jkkryhi8vbvkb88i9rn"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers split text ]; @@ -63623,6 +64099,25 @@ self: { broken = true; }) {}; + "crypto-sodium" = callPackage + ({ mkDerivation, base, bytestring, gdp, HUnit, libsodium, memory + , NaCl, safe-exceptions, tasty, tasty-discover, tasty-hunit + }: + mkDerivation { + pname = "crypto-sodium"; + version = "0.0.2.0"; + sha256 = "12sfmxfd5ci3iybl2cv4mil461ga81gv7hywmbrk4d3vjs3lfil8"; + libraryHaskellDepends = [ + base bytestring gdp libsodium memory NaCl safe-exceptions + ]; + testHaskellDepends = [ + base bytestring HUnit libsodium memory tasty tasty-hunit + ]; + testToolDepends = [ tasty-discover ]; + description = "Easy-and-safe-to-use high-level cryptography based on Sodium"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "crypto-token" = callPackage ({ mkDerivation, array, base, cryptonite, memory }: mkDerivation { @@ -65290,6 +65785,25 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "cyclotomic_1_1_1" = callPackage + ({ mkDerivation, arithmoi, base, containers, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , test-framework-smallcheck + }: + mkDerivation { + pname = "cyclotomic"; + version = "1.1.1"; + sha256 = "1m3977xi7s78h5bcq8gksamqimdm1h0hnjzalg3d63rvanjv4v84"; + libraryHaskellDepends = [ arithmoi base containers ]; + testHaskellDepends = [ + base HUnit QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 test-framework-smallcheck + ]; + description = "A subfield of the complex numbers for exact calculation"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cypher" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , classy-parallel, conduit, http-conduit, http-types, resourcet @@ -65359,8 +65873,8 @@ self: { ({ mkDerivation, base, doctest, template-haskell }: mkDerivation { pname = "d10"; - version = "0.2.1.2"; - sha256 = "1y1rqx02qycw01921rrgd6daq91hnbzy35cflbl94maylvi3ryjk"; + version = "0.2.1.4"; + sha256 = "0fd2k8jbylipbz5kwn9c4s3vp2ls0fdb4lk4dw0jhfkk70z3hw7y"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base doctest ]; description = "Digits 0-9"; @@ -66063,8 +66577,8 @@ self: { }: mkDerivation { pname = "data-ascii"; - version = "1.0.0.0"; - sha256 = "1dlcfli1fggalxqg4hvdq3g5c1k1f60mwiyz7sha70sa3lp0pw88"; + version = "1.0.0.2"; + sha256 = "03lxcybzamd1d5lrd1i9ygr5s094cr9ch2jdk5fx5hjg4bkigdds"; libraryHaskellDepends = [ base blaze-builder bytestring case-insensitive hashable semigroups text @@ -66238,8 +66752,8 @@ self: { ({ mkDerivation, base, constraints }: mkDerivation { pname = "data-compat"; - version = "0.1.0.1"; - sha256 = "1hbb9rx5x9pw5nzi7x9pxswr0w8vqvw1yf3brmgfxshwlq1ac0rh"; + version = "0.1.0.2"; + sha256 = "15bifxba0yddpq5yz23hq9k2s7vkzcrwjpwvbw0kkjf3wjjay5bp"; libraryHaskellDepends = [ base constraints ]; description = "Define Backwards Compatibility Schemes for Arbitrary Data"; license = stdenv.lib.licenses.mit; @@ -66823,10 +67337,8 @@ self: { ({ mkDerivation, base, doctest }: mkDerivation { pname = "data-forest"; - version = "0.1.0.7"; - sha256 = "1q41cwinvv0ys260f1f7005403pvz1gbwn0d6cnwh8b7rlgp8f4j"; - revision = "2"; - editedCabalFile = "15s9pv56mi2vqns70vcad1q841rp5yav2wh93qd1ialp109j54j4"; + version = "0.1.0.8"; + sha256 = "0b9b7h526580rsyqv8cfcc3109qjz4rv3prb7p98ddygcpbhm6rl"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest ]; description = "A simple multi-way tree data structure"; @@ -67922,8 +68434,8 @@ self: { }: mkDerivation { pname = "dataflower"; - version = "0.1.4.0"; - sha256 = "1ncm6rw8f0zcg7mnqkk027l48zqvg1xi27qjhxq00dhgbsnz42rp"; + version = "0.2.0.0"; + sha256 = "19b265w70dcaw5xw9y0bhvfng0yyywm8my3c0rp0jqdwacp7c126"; libraryHaskellDepends = [ base hashable mtl pretty-show stm time transformers vector ]; @@ -68378,33 +68890,6 @@ self: { }) {}; "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, containers - , criterion, deepseq, directory, exceptions, extra, filepath, lens - , network, parsec, process, QuickCheck, random, resourcet, split - , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text - , th-lift, transformers, unix, vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.2.14"; - sha256 = "0w304j28vc90dmyz6zqsijjdjj2967grdc8f3zf5jiq50rzgmrr8"; - libraryHaskellDepends = [ - base bytestring cereal conduit containers deepseq exceptions - filepath lens network parsec random split template-haskell text - th-lift transformers unix vector xml-conduit xml-types - ]; - testHaskellDepends = [ - base bytestring cereal containers directory extra filepath network - parsec process QuickCheck random resourcet tasty tasty-hunit - tasty-quickcheck text transformers unix vector - ]; - benchmarkHaskellDepends = [ base criterion ]; - doCheck = false; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - - "dbus_1_2_15_1" = callPackage ({ mkDerivation, base, bytestring, cereal, conduit, containers , criterion, deepseq, directory, exceptions, extra, filepath, lens , network, parsec, process, QuickCheck, random, resourcet, split @@ -68429,7 +68914,6 @@ self: { doCheck = false; description = "A client library for the D-Bus IPC system"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-client" = callPackage @@ -69290,6 +69774,27 @@ self: { broken = true; }) {}; + "declarative_0_5_3" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens + , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.5.3"; + sha256 = "021rhdhj2sji316mkm1fw679w7xb9n51x9pslmj21427q127ycw3"; + libraryHaskellDepends = [ + base hasty-hamiltonian kan-extensions lens mcmc-types + mighty-metropolis mwc-probability pipes primitive speedy-slice + transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "decode-utf8" = callPackage ({ mkDerivation, api-opentheory-unicode, base, opentheory-unicode }: @@ -69468,8 +69973,8 @@ self: { ({ mkDerivation, array, base, deepseq, stm }: mkDerivation { pname = "deepseq-instances"; - version = "0.1.0.0"; - sha256 = "16b0j7k8jvbccl1jrsgqcbls5k4j3m847nlq1p78jq1qx7a6qlgn"; + version = "0.1.0.1"; + sha256 = "0shhk3hqy02qkrbbd85sbzhga7pvk6fwjnadnp6dkip55gllm24z"; libraryHaskellDepends = [ array base deepseq stm ]; description = "Candidate NFData Instances for Types in base"; license = stdenv.lib.licenses.mit; @@ -70162,6 +70667,22 @@ self: { broken = true; }) {}; + "depq" = callPackage + ({ mkDerivation, base, containers, deepseq, hspec, psqueues + , QuickCheck + }: + mkDerivation { + pname = "depq"; + version = "0.4.0.0"; + sha256 = "1rajbk2nj3x76ihlr93kzzayydllxgjnipgb616jiqf8igia01xz"; + libraryHaskellDepends = [ + base containers deepseq psqueues QuickCheck + ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; + description = "Double-ended priority queues"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "deptrack-core" = callPackage ({ mkDerivation, base, containers, dlist, mtl, parsec }: mkDerivation { @@ -70447,6 +70968,8 @@ self: { pname = "deriving-aeson"; version = "0.2.5"; sha256 = "1pvrc139af0sh657ygj0lw1wi1rk3nr4y906l7l00iz5sa52j0cc"; + revision = "1"; + editedCabalFile = "0k7wvz2a24afzfcrk2k2k56v15kx2vzxwf87yblam91yxj2g224c"; libraryHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base bytestring ]; description = "Type driven generic aeson instance customisation"; @@ -70747,6 +71270,33 @@ self: { broken = true; }) {}; + "devtools" = callPackage + ({ mkDerivation, base, bytestring, cmdargs, Diff, filepath, hlint + , mprelude, source-constraints, tasty, tasty-mgolden, text + , typed-process + }: + mkDerivation { + pname = "devtools"; + version = "0.0.1"; + sha256 = "0jlzwvh49x1psxnn6gz75g2pipcmzljgg71b2j1807ia82wn01j3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cmdargs Diff filepath hlint mprelude + source-constraints tasty tasty-mgolden text typed-process + ]; + executableHaskellDepends = [ + base bytestring cmdargs Diff filepath hlint mprelude + source-constraints tasty tasty-mgolden text typed-process + ]; + testHaskellDepends = [ + base bytestring cmdargs Diff filepath hlint mprelude + source-constraints tasty tasty-mgolden text typed-process + ]; + description = "Haskell development tool agregate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dewdrop" = callPackage ({ mkDerivation, base, bytestring, containers, elf, hdis86, syb }: mkDerivation { @@ -70768,8 +71318,8 @@ self: { }: mkDerivation { pname = "df1"; - version = "0.3.2"; - sha256 = "1iywyrz2pfdpichfq6n77x8fpmfikj20rhkgnrwcf63ichav6xfp"; + version = "0.4"; + sha256 = "0adsmfjfcxsg55y4pahw408b82bi7phyzq48vrf80p84nyxmmpsi"; libraryHaskellDepends = [ attoparsec base bytestring containers text time ]; @@ -70781,6 +71331,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "df1-html" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, containers, df1 + , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text, time + , xmlbf + }: + mkDerivation { + pname = "df1-html"; + version = "0.1"; + sha256 = "0qjwnh959621jm3y3hi54s2chcchflj9cmlrfysvb80ycyj6fs8x"; + libraryHaskellDepends = [ + attoparsec base bytestring containers df1 text time xmlbf + ]; + testHaskellDepends = [ + base containers df1 QuickCheck tasty tasty-hunit tasty-quickcheck + text time xmlbf + ]; + description = "Render and parse df1 logs as HTML"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dfinity-radix-tree" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, BoundedChan , bytestring, clock, concurrent-extra, conduit, containers @@ -71000,6 +71570,8 @@ self: { pname = "dhall"; version = "1.32.0"; sha256 = "1imj0bh5365pdizvjbw2wqz0g9hakigf1zm4fr6379qdchxpp90p"; + revision = "3"; + editedCabalFile = "0gy7fqkj775f8ig92wd7bacl48pgjb2gkkdic0rqr57wjrn801nr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -71170,8 +71742,8 @@ self: { pname = "dhall-json"; version = "1.6.4"; sha256 = "0vr6a02frfk5bh0qj0m4qlc5pp08m29gxp8ixqihrqakkna6409z"; - revision = "1"; - editedCabalFile = "1cnm3jww2cfw0fsrykcijrsixmci2j309k7f7kbplp7iy08dk5h0"; + revision = "3"; + editedCabalFile = "09yifah6mfy8k1qi5d2fibw62hjnxfcr7fx3wvyf4n16nq1mhshx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -71222,8 +71794,8 @@ self: { pname = "dhall-lsp-server"; version = "1.0.7"; sha256 = "08nyai9y7s8facdjyfxc1z8dp8qd150y5554vxpvfr98xxj5kf41"; - revision = "1"; - editedCabalFile = "12gsy624cg1v98npanwmmmj4i37193lkqngjrrxj3z2ifr6s327i"; + revision = "2"; + editedCabalFile = "19agialwna7mmhljg5w8mmgn9wp59100cpmwa30jy62yfjkpr7x4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -71239,8 +71811,6 @@ self: { ]; description = "Language Server Protocol (LSP) server for Dhall"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "dhall-nix" = callPackage @@ -71355,6 +71925,8 @@ self: { pname = "dhall-yaml"; version = "1.1.0"; sha256 = "06lwzis9jjfis6rv4r9gd0iq1da5ymcd6jl8x3rbcimg87k9r4bj"; + revision = "2"; + editedCabalFile = "1vflfl8j0fjvf5a8mz90d71myii4s2k98186gidxv0dkll8dix9a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -71470,8 +72042,8 @@ self: { }: mkDerivation { pname = "di-df1"; - version = "1.2"; - sha256 = "0bixrinmmb496j55c3vlh914nq6zfsaxq0pp2fcdxhwig1y53fgr"; + version = "1.2.1"; + sha256 = "0mlx74605k33ibkqdbr7iyb32alansb41g9w0wjagyw45fvczda2"; libraryHaskellDepends = [ base df1 di-core di-handle di-monad stm ]; @@ -71515,8 +72087,8 @@ self: { ({ mkDerivation, base, df1, di-core, di-df1, di-handle, polysemy }: mkDerivation { pname = "di-polysemy"; - version = "0.1.3.0"; - sha256 = "0fxm9m6cz687ihdh1nsms5cbxpngb9h6v62wdr82g83srvwgcflf"; + version = "0.1.3.1"; + sha256 = "0gxcpn3x2rwykimzhv473f9sjphja7bzsjxn2r9i9yjl89mjb7y8"; libraryHaskellDepends = [ base df1 di-core di-df1 di-handle polysemy ]; @@ -72117,8 +72689,8 @@ self: { }: mkDerivation { pname = "dialogflow-fulfillment"; - version = "0.1.1.1"; - sha256 = "1fha1raifdzkv3g52wl9cx6xpan3jsv11ysd3cz4sffylygcyg71"; + version = "0.1.1.3"; + sha256 = "10n91mfgvn3pi0rvw92ys8f4bcra4v24j0cjykrax3jdmk1wfmym"; libraryHaskellDepends = [ aeson base bytestring containers text unordered-containers ]; @@ -72795,10 +73367,8 @@ self: { }: mkDerivation { pname = "digraph"; - version = "0.1.0.2"; - sha256 = "1kkvihqg3rhhsqz25yq7np211813kf3xqqi27lpdf1kdmq8vvf80"; - revision = "1"; - editedCabalFile = "0q9q9xr765ym535mwh3ji94y23mr9fxmrcwij439n6rgr4spwqi5"; + version = "0.2"; + sha256 = "0k6kr1vr25i2jvv2q1xby06b7xkpg2dr4sq2ffnv0lmznshjy8y5"; libraryHaskellDepends = [ base containers deepseq hashable massiv mwc-random streaming transformers unordered-containers @@ -73399,8 +73969,8 @@ self: { }: mkDerivation { pname = "discord-haskell"; - version = "1.5.2"; - sha256 = "1xpgbxmf70jlgm2mfnyb3mylvp0xzgp501iybbf3s12b7d0kk17b"; + version = "1.6.0"; + sha256 = "1abjkssssxj4a7zmb9dq7dgpkrmkjblz5smrj4qd3kpjhai6vs7c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -74921,26 +75491,42 @@ self: { "dobutokO2" = callPackage ({ mkDerivation, base, bytestring, directory, mmsyn2, mmsyn3 - , mmsyn6ukr, mmsyn7s, mmsyn7ukr, process, vector + , mmsyn6ukr, mmsyn7l, mmsyn7s, mmsyn7ukr, process, vector }: mkDerivation { pname = "dobutokO2"; - version = "0.39.1.0"; - sha256 = "0nlgw32a5fbfpikdg8cs2ivc5gn4dcdqhmzgjl1qx07lhl0v8cyq"; + version = "0.41.0.0"; + sha256 = "1qnlmyxg5qsh63gh7vnjmvshrflfz8ybxcnwdcjr8qwflyfj5kq9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7s mmsyn7ukr - process vector + base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7l mmsyn7s + mmsyn7ukr process vector ]; executableHaskellDepends = [ - base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7s mmsyn7ukr - process vector + base bytestring directory mmsyn2 mmsyn3 mmsyn6ukr mmsyn7l mmsyn7s + mmsyn7ukr process vector ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = stdenv.lib.licenses.mit; }) {}; + "dobutokO3" = callPackage + ({ mkDerivation, base, bytestring, directory, dobutokO2, mmsyn2 + , mmsyn3, mmsyn6ukr, mmsyn7l, mmsyn7s, mmsyn7ukr, process, vector + }: + mkDerivation { + pname = "dobutokO3"; + version = "0.1.0.0"; + sha256 = "09nd465327fz7li2g9gc50lhsqi2a2sbaznmwxld7jsnzm5i9fbm"; + libraryHaskellDepends = [ + base bytestring directory dobutokO2 mmsyn2 mmsyn3 mmsyn6ukr mmsyn7l + mmsyn7s mmsyn7ukr process vector + ]; + description = "Helps to create more complex experimental music from a file (especially timbre)"; + license = stdenv.lib.licenses.mit; + }) {}; + "doc-review" = callPackage ({ mkDerivation, base, base64-bytestring, binary, bytestring , containers, directory, feed, filepath, haskell98, heist, hexpat @@ -78092,8 +78678,8 @@ self: { pname = "ed25519"; version = "0.0.5.0"; sha256 = "0v8msqvgzimhs7p5ri25hrb1ni2wvisl5rmdxy89fc59py79b9fq"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; + revision = "3"; + editedCabalFile = "1yidh86ymzwmp2b449pwim6vvfcs1qgkkncbixw1zmb7wj6v167v"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck @@ -78698,8 +79284,8 @@ self: { pname = "egison-pattern-src-th-mode"; version = "0.2.1.0"; sha256 = "0libfs39irdnqfvynmpji21p6nyk2s3zsxhlmsz763aya51ymxpy"; - revision = "1"; - editedCabalFile = "13k65z8jai64087ns3b99wznv0ain3z3bailk8fdpnsjf4s2a4qg"; + revision = "2"; + editedCabalFile = "1ad2iii6csindqy9kd47zs1c04qj9fyg93iji5fxrb4wgmc90l2a"; libraryHaskellDepends = [ base egison-pattern-src haskell-src-exts haskell-src-meta mtl pretty template-haskell text @@ -78941,8 +79527,8 @@ self: { pname = "ekg"; version = "0.4.0.15"; sha256 = "1k3d5kiqm034qs04k0pcisf4zbdmx2fcgl9a6c1lzzjw96zf6aj8"; - revision = "7"; - editedCabalFile = "1p6mq14si3bqgw4b1frdfj5cbqpz3p399q8wipk6z95yyg129f6i"; + revision = "8"; + editedCabalFile = "05k50vx956zlh7dvkhi7qvd9f7x48hg5hwgqjqsf5fwzm1cqir6n"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring ekg-core ekg-json filepath network snap-core @@ -79084,8 +79670,8 @@ self: { pname = "ekg-json"; version = "0.1.0.6"; sha256 = "0iyx0ix4dcyhh9xg4ia1lm7x2q0iffswnr33khfg9fr81am80shy"; - revision = "6"; - editedCabalFile = "111495nizf5d9s91nbss78y3rh7vj5p1021m7pz96li37i5ps13m"; + revision = "7"; + editedCabalFile = "1f53dh7h48j07xw4jdxzwipndap8wdg36d857zdkaxmf14dzqvp1"; libraryHaskellDepends = [ aeson base ekg-core text unordered-containers ]; @@ -79177,10 +79763,8 @@ self: { }: mkDerivation { pname = "ekg-statsd"; - version = "0.2.4.0"; - sha256 = "1nvsiblha1fzykvfaq1s0fyvfmhm32wvxdsfkn9pqd6dl5ivyx2y"; - revision = "4"; - editedCabalFile = "0mrar804w2m57zg9bd0qkp4vbkzmgi46478v6z7qcz7qpd8vml9d"; + version = "0.2.4.1"; + sha256 = "1kxrbbxi4ah7ds0pfvbblh4gaij7mn5nn7dylxq7pjsjrgiwl9mj"; libraryHaskellDepends = [ base bytestring ekg-core network text time unordered-containers ]; @@ -79407,14 +79991,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "elm-bridge_0_6_0" = callPackage + "elm-bridge_0_6_1" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: mkDerivation { pname = "elm-bridge"; - version = "0.6.0"; - sha256 = "1sn4fdillziikydn832sknmn1wjb5idxfx8n2avahjwn5sdg7dwp"; + version = "0.6.1"; + sha256 = "0q71zj7vzkwxkn022bn4bqnblwygdrkjypqy65xxadfbqjl9y8gx"; libraryHaskellDepends = [ aeson base template-haskell ]; testHaskellDepends = [ aeson base containers hspec QuickCheck text @@ -81290,6 +81874,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "equational-reasoning_0_6_0_3" = callPackage + ({ mkDerivation, base, containers, template-haskell, th-desugar + , th-extras, void + }: + mkDerivation { + pname = "equational-reasoning"; + version = "0.6.0.3"; + sha256 = "003prif9pjjcj67nv6hxr0y70ik5qg1sddzh82y97a1l7m6kigfq"; + libraryHaskellDepends = [ + base containers template-haskell th-desugar th-extras void + ]; + description = "Proof assistant for Haskell using DataKinds & PolyKinds"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "equational-reasoning-induction" = callPackage ({ mkDerivation, base, singletons, template-haskell, th-extras }: mkDerivation { @@ -82408,19 +83008,14 @@ self: { }) {}; "euler" = callPackage - ({ mkDerivation, base, criterion, directory, happy, hlint, hspec - , process, regex-posix, xml - }: + ({ mkDerivation, base, hspec, hspec-discover }: mkDerivation { pname = "euler"; - version = "0.9.2"; - sha256 = "14ghmy5qblfgacc6b07jja6pssglf393j5hjypz0l0azd9w56kh5"; + version = "0.10.1"; + sha256 = "1kd8lsf5fsqzzj0f8slpxkfdia34gn6rmdscsn3w89v6lp0ccc1a"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base directory hlint hspec process regex-posix xml - ]; - testToolDepends = [ happy ]; - benchmarkHaskellDepends = [ base criterion ]; + testHaskellDepends = [ base hspec ]; + testToolDepends = [ hspec-discover ]; description = "Mathematics utilities for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -83081,18 +83676,19 @@ self: { }) {}; "exact-real" = callPackage - ({ mkDerivation, base, checkers, criterion, directory, doctest - , filepath, groups, integer-gmp, memoize, QuickCheck, random, tasty + ({ mkDerivation, base, Cabal, cabal-doctest, checkers, criterion + , doctest, groups, integer-gmp, memoize, QuickCheck, random, tasty , tasty-hunit, tasty-quickcheck, tasty-th }: mkDerivation { pname = "exact-real"; - version = "0.12.2"; - sha256 = "0rhaad2b6q7xzm8z61k21wjc3g8jgwpmxv8plgdb1r8dwzz23vmr"; + version = "0.12.3"; + sha256 = "1mn5bqx0r1la573bd5g2q0c6cqd68l2rhzyx1ya7fjvp081q1gbh"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base integer-gmp memoize random ]; testHaskellDepends = [ - base checkers directory doctest filepath groups QuickCheck random - tasty tasty-hunit tasty-quickcheck tasty-th + base checkers doctest groups QuickCheck random tasty tasty-hunit + tasty-quickcheck tasty-th ]; benchmarkHaskellDepends = [ base criterion ]; description = "Exact real arithmetic"; @@ -84400,16 +84996,16 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "extra_1_7_1" = callPackage + "extra_1_7_2" = callPackage ({ mkDerivation, base, clock, directory, filepath, process - , QuickCheck, quickcheck-instances, semigroups, time, unix + , QuickCheck, quickcheck-instances, time, unix }: mkDerivation { pname = "extra"; - version = "1.7.1"; - sha256 = "0zshxv9dnd8vksncmb8dj4wvq2wdybzwxyhmy2zp6a81icm4azx4"; + version = "1.7.2"; + sha256 = "0yl4wr8gglxhd2wsg1q77xg2ip05sfp63czvl56bwrgd2m6nf45c"; libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix + base clock directory filepath process time unix ]; testHaskellDepends = [ base directory filepath QuickCheck quickcheck-instances unix @@ -85847,8 +86443,8 @@ self: { }: mkDerivation { pname = "fclabels"; - version = "2.0.4"; - sha256 = "1ks59vcliy2x9i01qxpd4k455m7wpcfhcldgmhkym9wmwfxy0sf2"; + version = "2.0.5"; + sha256 = "0ppvc1s5bvx38y6yd6ib1wxi3y2j438xzl9iqhpr4hc1zwvsi6rx"; libraryHaskellDepends = [ base base-orphans mtl template-haskell transformers ]; @@ -86116,6 +86712,8 @@ self: { pname = "feed"; version = "1.3.0.1"; sha256 = "0fdylvbrjlshgx398xpxx3y7mnrmpi1l2534mcv299afpm91yqcj"; + revision = "1"; + editedCabalFile = "0wlffsawz87ks8zf686q01qvcwzi3352l45f1yww5w063ih6j7ld"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base base-compat bytestring old-locale old-time safe text time @@ -86987,22 +87585,6 @@ self: { }) {}; "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11.2"; - sha256 = "0bgysf6z13cmr5lsrhzrkv33sw9x1lkfnga3la2mcakh1aa3ijm4"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - testHaskellDepends = [ base filepath ]; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "file-embed_0_0_12_0" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , template-haskell }: @@ -87016,7 +87598,6 @@ self: { testHaskellDepends = [ base filepath ]; description = "Use Template Haskell to embed file contents directly"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "file-embed-lzma" = callPackage @@ -88591,20 +89172,25 @@ self: { "flat" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, ghc-prim, mono-traversable, pretty, primitive, QuickCheck - , tasty, tasty-hunit, tasty-quickcheck, text, vector + , dlist, filepath, ghc-prim, hashable, mono-traversable, pretty + , primitive, QuickCheck, quickcheck-instances, quickcheck-text + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text + , unordered-containers, vector }: mkDerivation { pname = "flat"; - version = "0.3.4"; - sha256 = "1v7c5nrvhys4flq5xacws59w25qzbb6mvwhvk4f6jb6impmqnwyw"; + version = "0.4.4"; + sha256 = "02i4nzzkmm11sp312k2d3d3g0gm2gzhh3ibczxxscl986svam7p3"; libraryHaskellDepends = [ - array base bytestring containers deepseq dlist ghc-prim - mono-traversable pretty primitive text vector + array base bytestring containers deepseq dlist ghc-prim hashable + mono-traversable pretty primitive semigroups text + unordered-containers vector ]; testHaskellDepends = [ - array base bytestring containers deepseq ghc-prim QuickCheck tasty - tasty-hunit tasty-quickcheck text + array base bytestring containers deepseq dlist filepath ghc-prim + mono-traversable pretty QuickCheck quickcheck-instances + quickcheck-text tasty tasty-hunit tasty-quickcheck text + unordered-containers vector ]; description = "Principled and efficient bit-oriented binary serialization"; license = stdenv.lib.licenses.bsd3; @@ -88980,8 +89566,8 @@ self: { }: mkDerivation { pname = "floskell"; - version = "0.10.2"; - sha256 = "1id1bwvzl5x4wq6i2ailvmvy2gcdzfgs8q59pg7s2j5cv35gf80h"; + version = "0.10.3"; + sha256 = "07nr7grav7z378k3v14f21kji0hrgch0q1dwc00iw93zamanda2x"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -90253,6 +90839,8 @@ self: { pname = "forma"; version = "1.1.3"; sha256 = "0pd2qzibffbkw2c4mk687yg109pl0nfjq0kpwi2cl0l8d0qlyv0c"; + revision = "1"; + editedCabalFile = "0p8cxv068d2fhpym28p49wxsiz6qdm1gb8mgw86lgs8yykqzwsy8"; libraryHaskellDepends = [ aeson base containers mtl text unordered-containers ]; @@ -90677,6 +91265,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fourmolu" = callPackage + ({ mkDerivation, base, bytestring, containers, dlist, exceptions + , filepath, ghc-lib-parser, gitrev, hspec, hspec-discover, mtl + , optparse-applicative, path, path-io, syb, text + }: + mkDerivation { + pname = "fourmolu"; + version = "0.0.6.0"; + sha256 = "16i5wlwbvk9868nscj1xg5n8j3z56jbv9q4nipcwmzm76i19iqwf"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base bytestring containers dlist exceptions ghc-lib-parser mtl syb + text + ]; + executableHaskellDepends = [ + base ghc-lib-parser gitrev optparse-applicative text + ]; + testHaskellDepends = [ + base containers filepath hspec path path-io text + ]; + testToolDepends = [ hspec-discover ]; + description = "A formatter for Haskell source code"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "fpco-api" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, bytestring, cereal, containers, data-default, deepseq @@ -91487,6 +92102,8 @@ self: { pname = "freer-simple"; version = "1.2.1.1"; sha256 = "0vqbri72xxk6is0kk2yxfpqxixq3h047rn153i16hhpppsp3xk17"; + revision = "1"; + editedCabalFile = "10c7m8v7s8pqmhyym014xnb875z41sh3sq27b7sy7j15ay0vw694"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -93194,31 +93811,31 @@ self: { "futhark" = callPackage ({ mkDerivation, aeson, alex, ansi-terminal, array, base, binary - , blaze-html, bytestring, cmark-gfm, containers - , data-binary-ieee754, directory, directory-tree, dlist, file-embed - , filepath, free, gitrev, happy, haskeline, language-c-quote - , mainland-pretty, megaparsec, mtl, neat-interpolation, parallel - , parser-combinators, pcg-random, process, process-extras - , QuickCheck, regex-tdfa, srcloc, tasty, tasty-hunit - , tasty-quickcheck, template-haskell, temporary, terminal-size - , text, time, transformers, unordered-containers, utf8-string - , vector, vector-binary-instances, versions, zip-archive, zlib + , blaze-html, bytestring, cmark-gfm, containers, directory + , directory-tree, dlist, file-embed, filepath, free, gitrev, happy + , haskeline, language-c-quote, mainland-pretty, megaparsec, mtl + , neat-interpolation, parallel, parser-combinators, pcg-random + , process, process-extras, QuickCheck, regex-tdfa, srcloc, tasty + , tasty-hunit, tasty-quickcheck, template-haskell, temporary + , terminal-size, text, time, transformers, unordered-containers + , utf8-string, vector, vector-binary-instances, versions + , zip-archive, zlib }: mkDerivation { pname = "futhark"; - version = "0.15.6"; - sha256 = "16abw20ziw3ik28dry0nr63glmszzzw92dcz1vzm4q76j9sjl0py"; + version = "0.15.8"; + sha256 = "1pdfdfgimvlz741jxyzscj99xjw888mzbar7rjy1zlfqbmac6r9f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson ansi-terminal array base binary blaze-html bytestring - cmark-gfm containers data-binary-ieee754 directory directory-tree - dlist file-embed filepath free gitrev haskeline language-c-quote - mainland-pretty megaparsec mtl neat-interpolation parallel - pcg-random process process-extras regex-tdfa srcloc - template-haskell temporary terminal-size text time transformers - unordered-containers utf8-string vector vector-binary-instances - versions zip-archive zlib + cmark-gfm containers directory directory-tree dlist file-embed + filepath free gitrev haskeline language-c-quote mainland-pretty + megaparsec mtl neat-interpolation parallel pcg-random process + process-extras regex-tdfa srcloc template-haskell temporary + terminal-size text time transformers unordered-containers + utf8-string vector vector-binary-instances versions zip-archive + zlib ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ base text ]; @@ -94906,8 +95523,8 @@ self: { pname = "generic-monoid"; version = "0.1.0.0"; sha256 = "0jzhmy6vi38p3cnlvi4hw59zga239y67nszzl7zscx263wsk7q0w"; - revision = "1"; - editedCabalFile = "1xsgnb87k80p3gn0jyiv3a1c6g77q8sqml6bmbpppfa24z8paa1p"; + revision = "2"; + editedCabalFile = "1izxgvh4x0vpbq0k41qihz2cj0cbbvzgf57niqa9zylp7baagy2s"; libraryHaskellDepends = [ base ]; description = "Derive monoid instances for product types"; license = stdenv.lib.licenses.bsd3; @@ -94937,6 +95554,8 @@ self: { pname = "generic-optics-lite"; version = "0.1"; sha256 = "0vf5sk1narj69pdhjqxjj0w3w3i5lxjxn8p98xp8dj0jws4mx9xi"; + revision = "1"; + editedCabalFile = "1z6bglkw2lvwlxjs0dlmr9wa4rh73pkzhqlg5dq88q5p9d51cy09"; libraryHaskellDepends = [ base generic-lens-lite optics-core ]; testHaskellDepends = [ base optics-core ]; description = "Monomorphic field opics like with generic-lens"; @@ -95732,6 +96351,33 @@ self: { broken = true; }) {}; + "genvalidity-mergeful_0_2_0_0" = callPackage + ({ mkDerivation, base, containers, criterion, genvalidity + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec + , genvalidity-hspec-aeson, genvalidity-time, genvalidity-uuid + , hspec, mergeful, mtl, pretty-show, QuickCheck, random, time, uuid + }: + mkDerivation { + pname = "genvalidity-mergeful"; + version = "0.2.0.0"; + sha256 = "0mzlsa2rxj5dsrkbvpsilkb895cqw11iswfvjkfnwmimm8wg7c8q"; + libraryHaskellDepends = [ + base containers genvalidity genvalidity-containers genvalidity-time + mergeful QuickCheck + ]; + testHaskellDepends = [ + base containers genvalidity-hspec genvalidity-hspec-aeson + genvalidity-uuid hspec mergeful mtl pretty-show QuickCheck random + time uuid + ]; + benchmarkHaskellDepends = [ + base criterion genvalidity-criterion mergeful + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "genvalidity-mergeless" = callPackage ({ mkDerivation, base, containers, criterion, genvalidity , genvalidity-containers, genvalidity-criterion, genvalidity-hspec @@ -95758,6 +96404,33 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "genvalidity-mergeless_0_2_0_0" = callPackage + ({ mkDerivation, base, containers, criterion, genvalidity + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec + , genvalidity-hspec-aeson, genvalidity-time, genvalidity-uuid + , hspec, mergeless, mtl, pretty-show, QuickCheck, random, time + , uuid + }: + mkDerivation { + pname = "genvalidity-mergeless"; + version = "0.2.0.0"; + sha256 = "02p71gnih7xcrbfkaw76jjppz19xjv41idbgwqr93lrjs2qdyj7h"; + libraryHaskellDepends = [ + base containers genvalidity genvalidity-containers genvalidity-time + mergeless QuickCheck + ]; + testHaskellDepends = [ + base containers genvalidity-hspec genvalidity-hspec-aeson + genvalidity-uuid hspec mergeless mtl pretty-show QuickCheck random + time uuid + ]; + benchmarkHaskellDepends = [ + base criterion genvalidity-criterion mergeless + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "genvalidity-path" = callPackage ({ mkDerivation, base, criterion, genvalidity , genvalidity-criterion, genvalidity-hspec, hspec, path, QuickCheck @@ -96414,15 +97087,16 @@ self: { }) {}; "ghc-check" = callPackage - ({ mkDerivation, base, filepath, ghc, ghc-paths, process - , template-haskell, transformers + ({ mkDerivation, base, containers, directory, filepath, ghc + , ghc-paths, process, template-haskell, transformers }: mkDerivation { pname = "ghc-check"; - version = "0.3.0.1"; - sha256 = "180xqs4g90v9sdjb0b3baqk62gbnw1xkv76wdq5ap49q0730s3vz"; + version = "0.4.0.0"; + sha256 = "06d5z2cqfb55qh3y95hjk4l2kxfwck46aiy2bpxmzs6gnp9kqg94"; libraryHaskellDepends = [ - base filepath ghc ghc-paths process template-haskell transformers + base containers directory filepath ghc ghc-paths process + template-haskell transformers ]; description = "detect mismatches between compile-time and run-time versions of the ghc api"; license = stdenv.lib.licenses.bsd3; @@ -96850,15 +97524,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-lib_8_10_1_20200412" = callPackage + "ghc-lib_8_10_1_20200523" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , deepseq, directory, filepath, ghc-lib-parser, ghc-prim, happy , hpc, pretty, process, time, transformers, unix }: mkDerivation { pname = "ghc-lib"; - version = "8.10.1.20200412"; - sha256 = "0y680izyflncjs9k1d0bjb2cym6vyp9nnahqhrrgfrhl4xlk0qmi"; + version = "8.10.1.20200523"; + sha256 = "0qqcygmndgpmjm7hdr81bj298mc0gmnswm4i14r0fwnyc00zr4yy"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory filepath @@ -96889,15 +97563,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-lib-parser_8_10_1_20200412" = callPackage + "ghc-lib-parser_8_10_1_20200523" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty , process, time, transformers, unix }: mkDerivation { pname = "ghc-lib-parser"; - version = "8.10.1.20200412"; - sha256 = "0cndflf4kfz5vf4q83716ambkkh53kw0j0ak5li2fd0kkwiz1q1z"; + version = "8.10.1.20200523"; + sha256 = "1g2jki7f1in5c2y80zhz3hxrm4c7m063slxpg1lrvqrgrlwag5cb"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory filepath @@ -96928,14 +97602,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-lib-parser-ex_8_10_0_8" = callPackage + "ghc-lib-parser-ex_8_10_0_11" = callPackage ({ mkDerivation, base, bytestring, containers, directory, extra , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate }: mkDerivation { pname = "ghc-lib-parser-ex"; - version = "8.10.0.8"; - sha256 = "0y5yxrgmmb69jq5z7b90hm1ialik1b4x1rmankh7kbynfmhl0h3q"; + version = "8.10.0.11"; + sha256 = "161jjl6p0x2zgkgxkyrf0x16nvxndc4mkymv0yvxdgzhi3zd5gpj"; libraryHaskellDepends = [ base bytestring containers ghc-lib-parser uniplate ]; @@ -97309,6 +97983,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghc-source-gen_0_4_0_0" = callPackage + ({ mkDerivation, base, ghc, ghc-paths, QuickCheck, tasty + , tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "ghc-source-gen"; + version = "0.4.0.0"; + sha256 = "0ch3nahhbm0lvz0x5dlmiv07rd0a6398bf046byx36fwrkqglswh"; + libraryHaskellDepends = [ base ghc ]; + testHaskellDepends = [ + base ghc ghc-paths QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + description = "Constructs Haskell syntax trees for the GHC API"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ghc-srcspan-plugin" = callPackage ({ mkDerivation, array, base, containers, ghc, hpc }: mkDerivation { @@ -97887,6 +98578,7 @@ self: { ]; description = "The core of an IDE"; license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "ghcjs-ajax" = callPackage @@ -99314,8 +100006,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.9.1.0"; - sha256 = "0qlsqbkxwyc4hi8228l0mgiylnc0q9i02i46043m1390mdmp34qz"; + version = "0.10.0.4"; + sha256 = "0d3wzk10cjwjywf055909ajcxccnhzqqkbq57dn63hqs9ij510gg"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -99590,6 +100282,80 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; + "git-annex_8_20200522" = callPackage + ({ mkDerivation, aeson, async, attoparsec, aws, base, blaze-builder + , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive + , clientsession, concurrent-output, conduit, connection, containers + , crypto-api, cryptonite, curl, data-default, DAV, dbus, deepseq + , directory, disk-free-space, dlist, edit-distance, exceptions + , fdo-notify, feed, filepath, filepath-bytestring, free, git, gnupg + , hinotify, hslogger, http-client, http-client-tls, http-conduit + , http-types, IfElse, lsof, magic, memory, microlens, monad-control + , monad-logger, mountpoints, mtl, network, network-bsd + , network-info, network-multicast, network-uri, old-locale, openssh + , optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi + , securemem, shakespeare, socks, split, stm, stm-chans, tagsoup + , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun + , template-haskell, text, time, torrent, transformers, unix + , unix-compat, unliftio-core, unordered-containers, utf8-string + , uuid, vector, wai, wai-extra, warp, warp-tls, wget, which, yesod + , yesod-core, yesod-form, yesod-static + }: + mkDerivation { + pname = "git-annex"; + version = "8.20200522"; + sha256 = "1v71k5k9mcj1nq4pb8apx99rgw2rmckr6yshhvjl1dr6j70d67x8"; + configureFlags = [ + "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" + "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" + "-fwebapp" "-fwebdav" + ]; + isLibrary = false; + isExecutable = true; + setupHaskellDepends = [ + base bytestring Cabal data-default directory exceptions filepath + filepath-bytestring hslogger IfElse process split transformers + unix-compat utf8-string + ]; + executableHaskellDepends = [ + aeson async attoparsec aws base blaze-builder bloomfilter byteable + bytestring case-insensitive clientsession concurrent-output conduit + connection containers crypto-api cryptonite data-default DAV dbus + deepseq directory disk-free-space dlist edit-distance exceptions + fdo-notify feed filepath filepath-bytestring free hinotify hslogger + http-client http-client-tls http-conduit http-types IfElse magic + memory microlens monad-control monad-logger mountpoints mtl network + network-bsd network-info network-multicast network-uri old-locale + optparse-applicative path-pieces persistent persistent-sqlite + persistent-template process QuickCheck random regex-tdfa resourcet + SafeSemaphore sandi securemem shakespeare socks split stm stm-chans + tagsoup tasty tasty-hunit tasty-quickcheck tasty-rerun + template-haskell text time torrent transformers unix unix-compat + unliftio-core unordered-containers utf8-string uuid vector wai + wai-extra warp warp-tls yesod yesod-core yesod-form yesod-static + ]; + executableSystemDepends = [ + bup curl git gnupg lsof openssh perl rsync wget which + ]; + preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; + postBuild = '' + ln -sf dist/build/git-annex/git-annex git-annex + ln -sf git-annex git-annex-shell + ''; + installPhase = "make PREFIX=$out BUILDER=: install install-completions"; + checkPhase = ''PATH+=":$PWD" git-annex test''; + enableSharedExecutables = false; + description = "manage files with git, without checking their contents into git"; + license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; + }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; + inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; + inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; + inherit (pkgs) which;}; + "git-brunch" = callPackage ({ mkDerivation, base, brick, hspec, microlens , optparse-applicative, process, vector, vty @@ -100054,8 +100820,8 @@ self: { }: mkDerivation { pname = "github"; - version = "0.25"; - sha256 = "18avfzs7q16aagaqam0wblmq0wynl723gncwdcman4wbj4fayz3m"; + version = "0.26"; + sha256 = "1vbskrkhmz4d3fccn3w12zgz2dbl40b2gljsm7lyd5k8hz50kds8"; libraryHaskellDepends = [ aeson base base-compat base16-bytestring binary binary-instances bytestring containers cryptohash-sha1 deepseq deepseq-generics @@ -100152,8 +100918,8 @@ self: { }: mkDerivation { pname = "github-release"; - version = "1.3.0"; - sha256 = "08nr6a763zc0zszbw1lci4d86z3rpcyr1444a10q3a0dj64krwab"; + version = "1.3.3"; + sha256 = "15im4vsz04sx0iq83xmvk5ak4p7rj33jawk5lxkmv1ajwvklbpk7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -100177,6 +100943,8 @@ self: { pname = "github-rest"; version = "1.0.2"; sha256 = "0q4dxr0080pkszq9vv3j2wx89yhy15jjbk5m7wd1mwirgwxv214m"; + revision = "2"; + editedCabalFile = "02brididamvd9g938vqirp6d0vmw7cs9w1yk05ic89kxcl55n8mx"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types jwt mtl scientific text time transformers unliftio unliftio-core @@ -100290,8 +101058,8 @@ self: { }: mkDerivation { pname = "github-webhooks"; - version = "0.13.0"; - sha256 = "08yqkxgmd9mqv75wzqi0mxhnb9jv1wawxkikgf6nzqwpdfml967y"; + version = "0.14.0"; + sha256 = "0rjbavfcwhbi817dsvg2q9qmf5ln7mp5kgs1wlq23p0603jgm211"; libraryHaskellDepends = [ aeson base base16-bytestring bytestring cryptonite deepseq deepseq-generics memory text time vector @@ -100764,6 +101532,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "glabrous_2_0_2" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , cereal, cereal-text, directory, either, hspec, text + , unordered-containers + }: + mkDerivation { + pname = "glabrous"; + version = "2.0.2"; + sha256 = "10aaa3aggn48imhqxkwyp0i0mar7fan29rwr6qkwli63v3m7fvgr"; + libraryHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring cereal cereal-text + either text unordered-containers + ]; + testHaskellDepends = [ + base directory either hspec text unordered-containers + ]; + description = "A template DSL library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "glade" = callPackage ({ mkDerivation, base, Cabal, glib, gtk, gtk2hs-buildtools , libglade @@ -104494,20 +105283,21 @@ self: { "google-server-api" = callPackage ({ mkDerivation, aeson, aeson-casing, base, base64-bytestring , bytestring, HsOpenSSL, http-api-data, http-client - , http-client-tls, mime-mail, monad-control, monad-logger, mtl, RSA - , servant, servant-client, text, time, transformers - , transformers-base, unix-time, unordered-containers, wai - , wai-extra, warp + , http-client-tls, http-media, mime-mail, monad-control + , monad-logger, mtl, RSA, servant, servant-client, text, time + , transformers, transformers-base, unix-time, unordered-containers + , wai, wai-extra, warp }: mkDerivation { pname = "google-server-api"; - version = "0.3.1.1"; - sha256 = "0rkjwib59iz07pcjlq7b16i8zivf8wpy4p0l2i6wr13vfhkq75js"; + version = "0.3.2.1"; + sha256 = "1bvj8pihsz4w53lax5k234p58v9r2k1gpkvdgjwl6n0vkqbw1qy8"; libraryHaskellDepends = [ aeson aeson-casing base base64-bytestring bytestring HsOpenSSL - http-api-data http-client http-client-tls mime-mail monad-control - monad-logger mtl RSA servant servant-client text time transformers - transformers-base unix-time unordered-containers wai wai-extra warp + http-api-data http-client http-client-tls http-media mime-mail + monad-control monad-logger mtl RSA servant servant-client text time + transformers transformers-base unix-time unordered-containers wai + wai-extra warp ]; description = "Google APIs for server to server applications"; license = stdenv.lib.licenses.mit; @@ -104888,6 +105678,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "gothic_0_1_5" = callPackage + ({ mkDerivation, aeson, base, binary, bytestring, connection + , exceptions, hashable, http-client, http-client-tls, http-conduit + , http-types, lens, lens-aeson, scientific, text, unix + , unordered-containers, vector + }: + mkDerivation { + pname = "gothic"; + version = "0.1.5"; + sha256 = "1f8n15cxh4c5m3pylssfksiw3qary8jkl7wabq4gl5zqw2r9ki62"; + libraryHaskellDepends = [ + aeson base binary bytestring connection exceptions hashable + http-client http-client-tls http-conduit http-types lens lens-aeson + scientific text unix unordered-containers vector + ]; + description = "A Haskell Vault KVv2 secret engine client"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "gotta-go-fast" = callPackage ({ mkDerivation, base, brick, cmdargs, directory, random, text , time, vty, word-wrap @@ -107611,8 +108421,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A simple wrapper around uuid"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "gulcii" = callPackage @@ -109577,8 +110385,8 @@ self: { }: mkDerivation { pname = "hadoop-streaming"; - version = "0.2.0.2"; - sha256 = "140kb8v9bz293v83w91zlf5qdm98gawsyvswh3yq533g2a5f5qs3"; + version = "0.2.0.3"; + sha256 = "1zlk9spilimpnvgyifpwp4k2n4ki5sv7lsaw912q9fxp8mmwycsy"; libraryHaskellDepends = [ base bytestring conduit extra text ]; testHaskellDepends = [ base bytestring conduit extra hspec ]; testToolDepends = [ hspec-discover ]; @@ -111718,21 +112526,21 @@ self: { , containers, directory, exceptions, extensible-exceptions , filepath, hslogger, html, HUnit, monad-control, mtl, network , network-bsd, network-uri, old-locale, parsec, process, semigroups - , sendfile, syb, system-filepath, template-haskell, text, threads - , time, transformers, transformers-base, transformers-compat, unix - , utf8-string, xhtml, zlib + , sendfile, syb, system-filepath, text, threads, time, transformers + , transformers-base, transformers-compat, unix, utf8-string, xhtml + , zlib }: mkDerivation { pname = "happstack-server"; - version = "7.6.0"; - sha256 = "0dixzrqr6y96ldx7ls2n19ilfph798jkflgcpzbj6gaw3y20w2b7"; + version = "7.6.1"; + sha256 = "0l4vfw7jslsjgm2mszlwxlm2mql6ppim2blhwpwd23r7hw8kx5xx"; libraryHaskellDepends = [ base base64-bytestring blaze-html bytestring containers directory exceptions extensible-exceptions filepath hslogger html monad-control mtl network network-bsd network-uri old-locale parsec - process semigroups sendfile syb system-filepath template-haskell - text threads time transformers transformers-base - transformers-compat unix utf8-string xhtml zlib + process semigroups sendfile syb system-filepath text threads time + transformers transformers-base transformers-compat unix utf8-string + xhtml zlib ]; testHaskellDepends = [ base bytestring containers HUnit parsec zlib @@ -112245,8 +113053,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "harp"; - version = "0.4.3.3"; - sha256 = "16bmv3ymiiyvy65vf4s5h4fhp6q5hrw40xfdba4yarwgpbm0frm2"; + version = "0.4.3.4"; + sha256 = "0n30bvpfijaji8p2lk3vc0dfcgd2sclwakvbi31jma4z1i03k89q"; libraryHaskellDepends = [ base ]; description = "HaRP allows pattern-matching with regular expressions"; license = stdenv.lib.licenses.bsd3; @@ -112348,8 +113156,8 @@ self: { }: mkDerivation { pname = "hasbolt-extras"; - version = "0.0.1.3"; - sha256 = "1zgrw5k056spvqswgji41whjadq1ixayx817ln339mvc45a4nwa7"; + version = "0.0.1.4"; + sha256 = "1zamnp80sncy6fw8j1nsnzcima2f99n1jpcs2vrqyfg1z6n04qhc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113308,20 +114116,22 @@ self: { , bytestring, Cabal, cabal-install-parsers, containers, deepseq , Diff, directory, exceptions, filepath, generic-lens-lite, HsYAML , lattices, mtl, network-uri, optparse-applicative, parsec, pretty - , process, tasty, tasty-golden, temporary, text, transformers - , unordered-containers + , process, ShellCheck, tasty, tasty-golden, temporary, text + , transformers, unordered-containers }: mkDerivation { pname = "haskell-ci"; - version = "0.10"; - sha256 = "09v103azd8rd1ps1h14f6rv8s9nga9ja679ma4j44236yfgswxg5"; + version = "0.10.1"; + sha256 = "12163dy550vzd64ylhibh0s8a19mcyk9rsxv8vjshp4hac4qqiy8"; + revision = "1"; + editedCabalFile = "1wi10wwkkzf81nya8p9pybsnbxpixxafdfqwf1x6wz1260ga62jh"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ aeson base base-compat bytestring Cabal cabal-install-parsers containers deepseq directory exceptions filepath generic-lens-lite HsYAML lattices mtl network-uri optparse-applicative parsec pretty - process temporary text transformers unordered-containers + process ShellCheck temporary text transformers unordered-containers ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ @@ -114100,6 +114910,31 @@ self: { broken = true; }) {}; + "haskell-names_0_9_9" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , data-lens-light, filemanip, filepath, haskell-src-exts, mtl + , pretty-show, tasty, tasty-golden, transformers + , traverse-with-class, uniplate + }: + mkDerivation { + pname = "haskell-names"; + version = "0.9.9"; + sha256 = "0gqh7whzzcg46c262yf610g781ach3p8458kwf3mmf1pyhjrj7hm"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-lens-light filepath + haskell-src-exts mtl transformers traverse-with-class uniplate + ]; + testHaskellDepends = [ + base containers filemanip filepath haskell-src-exts mtl pretty-show + tasty tasty-golden traverse-with-class + ]; + description = "Name resolution library for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "haskell-neo4j-client" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-default, hashable, HTTP, http-client, http-client-tls @@ -115649,12 +116484,16 @@ self: { }) {}; "haskellish" = callPackage - ({ mkDerivation, base, haskell-src-exts, mtl }: + ({ mkDerivation, base, containers, haskell-src-exts, mtl + , template-haskell + }: mkDerivation { pname = "haskellish"; - version = "0.2.0"; - sha256 = "108kjp66pzpynbh8pn2dr5y91bmb362c788ghj0i6fbfyiawdg20"; - libraryHaskellDepends = [ base haskell-src-exts mtl ]; + version = "0.2.3"; + sha256 = "188sfmb9rcp0k75x94ld0jv91kxbyfqkk7hnw5wyw8ln5y0fmr3w"; + libraryHaskellDepends = [ + base containers haskell-src-exts mtl template-haskell + ]; description = "For parsing Haskell-ish languages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -116006,7 +116845,7 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; - "haskoin-core_0_13_4" = callPackage + "haskoin-core_0_13_5" = callPackage ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring , cereal, conduit, containers, cryptonite, deepseq, entropy , hashable, hspec, hspec-discover, HUnit, memory, mtl, murmur3 @@ -116016,8 +116855,8 @@ self: { }: mkDerivation { pname = "haskoin-core"; - version = "0.13.4"; - sha256 = "0bxn1jfb2s308gpdiwwnvar606qc3fqnvf6k0hdz2x43pqkc15lb"; + version = "0.13.5"; + sha256 = "075frrylwiay6a9xnllz1a51i14j98j9psh2a1p55qfn3q0g5qxs"; libraryHaskellDepends = [ aeson array base base16-bytestring bytestring cereal conduit containers cryptonite deepseq entropy hashable memory mtl murmur3 @@ -116182,8 +117021,8 @@ self: { }: mkDerivation { pname = "haskoin-store"; - version = "0.29.3"; - sha256 = "1h28zn5fmps5jc2x2rx32z9yn7mz7j50ai4xs8mqzacsszj3sz95"; + version = "0.30.1"; + sha256 = "0g1zx2wwg42rjyymz4hz0cw663k5fprln705ncyn9mkyhxdr4j56"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -116221,8 +117060,8 @@ self: { }: mkDerivation { pname = "haskoin-store-data"; - version = "0.29.3"; - sha256 = "04ndllkxw3ly67d8irgjq8dhjvqh37qfcliz3978saa1i8bz3nav"; + version = "0.30.1"; + sha256 = "0an2nddirp1rdqagziahcq2zvbazydzyh06yqly3h1g1bbkwn44g"; libraryHaskellDepends = [ aeson base bytestring cereal containers deepseq hashable haskoin-core network scotty string-conversions text @@ -117312,18 +118151,6 @@ self: { }) {}; "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, hspec, resource-pool, time }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5.1"; - sha256 = "0agl5ilp0amsp9pidhmgivdyaq43x3xi7hb80c91n9l92pv6163k"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - testHaskellDepends = [ base-prelude hasql hspec ]; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - - "hasql-pool_0_5_2" = callPackage ({ mkDerivation, base-prelude, hasql, hspec, resource-pool, time }: mkDerivation { pname = "hasql-pool"; @@ -117333,7 +118160,6 @@ self: { testHaskellDepends = [ base-prelude hasql hspec ]; description = "A pool of connections for Hasql"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres" = callPackage @@ -117676,6 +118502,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hasty-hamiltonian_1_3_3" = callPackage + ({ mkDerivation, ad, base, kan-extensions, lens, mcmc-types + , mwc-probability, pipes, primitive, transformers + }: + mkDerivation { + pname = "hasty-hamiltonian"; + version = "1.3.3"; + sha256 = "11x0daijylcxg0zf55bcwac6dy6lmmz9f4zf7a44qp9dsgfv753a"; + libraryHaskellDepends = [ + base kan-extensions lens mcmc-types mwc-probability pipes primitive + transformers + ]; + testHaskellDepends = [ ad base mwc-probability ]; + description = "Speedy traversal through parameter space"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hat" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskeline, haskell-src-exts, old-locale, old-time, polyparse @@ -124416,8 +125260,8 @@ self: { }: mkDerivation { pname = "hlint"; - version = "3.1.1"; - sha256 = "1q3c7xjhzs0m1spd443nzpy7pxx6kjqklxvxkagfnjckxck8cpvv"; + version = "3.1.3"; + sha256 = "0ma59iz08fsssdcjzrkyfh0xjj4ljkajpsaxcscdqigl1np6vhc4"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -124430,6 +125274,7 @@ self: { executableHaskellDepends = [ base ]; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "hlint-test" = callPackage @@ -125298,37 +126143,37 @@ self: { ({ mkDerivation, aeson, array, base, base16-bytestring, binary , bytestring, comonad, containers, contravariant, criterion , cryptohash-md5, cryptohash-sha1, cryptohash-sha256 - , cryptohash-sha512, data-fix, deepseq, dependent-sum - , deriving-compat, Diff, directory, exceptions, filepath, free - , generic-random, Glob, hashable, hashing, haskeline, hedgehog - , hnix-store-core, http-client, http-client-tls, http-types - , interpolate, lens-family, lens-family-core, lens-family-th - , logict, megaparsec, monad-control, monadlist, mtl - , optparse-applicative, parser-combinators, pretty-show - , prettyprinter, process, ref-tf, regex-tdfa, repline, scientific - , semialign, semialign-indexed, semigroups, serialise, split, syb - , tasty, tasty-hedgehog, tasty-hunit, tasty-quickcheck, tasty-th - , template-haskell, text, these, time, transformers - , transformers-base, unix, unordered-containers, vector, xml + , cryptohash-sha512, data-fix, deepseq, deriving-compat, Diff + , directory, exceptions, filepath, free, generic-random, Glob + , hashable, hashing, haskeline, hedgehog, hnix-store-core + , http-client, http-client-tls, http-types, interpolate + , lens-family, lens-family-core, lens-family-th, logict, megaparsec + , monad-control, monadlist, mtl, optparse-applicative + , parser-combinators, pretty-show, prettyprinter, process, ref-tf + , regex-tdfa, repline, scientific, semialign, semialign-indexed + , semigroups, serialise, some, split, syb, tasty, tasty-hedgehog + , tasty-hunit, tasty-quickcheck, tasty-th, template-haskell, text + , these, time, transformers, transformers-base, unix + , unordered-containers, vector, xml }: mkDerivation { pname = "hnix"; - version = "0.7.1"; - sha256 = "02isypknx732c25iqjym6941mfb5x6s6xrb6mijxy46rwzh3xd9l"; + version = "0.8.0"; + sha256 = "14ihkzf6garpv9yg34y9mvshwwah9isdq7gy788ffszv306vivhm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson array base base16-bytestring binary bytestring comonad containers contravariant cryptohash-md5 cryptohash-sha1 - cryptohash-sha256 cryptohash-sha512 data-fix deepseq dependent-sum + cryptohash-sha256 cryptohash-sha512 data-fix deepseq deriving-compat directory exceptions filepath free hashable hashing haskeline hnix-store-core http-client http-client-tls http-types interpolate lens-family lens-family-core lens-family-th logict megaparsec monad-control monadlist mtl optparse-applicative parser-combinators pretty-show prettyprinter process ref-tf regex-tdfa scientific semialign semialign-indexed semigroups - serialise split syb template-haskell text these time transformers - transformers-base unix unordered-containers vector xml + serialise some split syb template-haskell text these time + transformers transformers-base unix unordered-containers vector xml ]; executableHaskellDepends = [ aeson base base16-bytestring bytestring comonad containers @@ -125341,10 +126186,10 @@ self: { testHaskellDepends = [ base base16-bytestring bytestring containers cryptohash-md5 cryptohash-sha1 cryptohash-sha256 cryptohash-sha512 data-fix - deepseq dependent-sum Diff directory exceptions filepath - generic-random Glob hashing hedgehog interpolate megaparsec mtl - optparse-applicative pretty-show prettyprinter process serialise - split tasty tasty-hedgehog tasty-hunit tasty-quickcheck tasty-th + deepseq Diff directory exceptions filepath generic-random Glob + hashing hedgehog interpolate megaparsec mtl optparse-applicative + pretty-show prettyprinter process serialise split tasty + tasty-hedgehog tasty-hunit tasty-quickcheck tasty-th template-haskell text time transformers unix unordered-containers ]; benchmarkHaskellDepends = [ @@ -125556,15 +126401,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hoauth2_1_12_0" = callPackage + "hoauth2_1_14_0" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, exceptions , http-conduit, http-types, microlens, text, unordered-containers , uri-bytestring, uri-bytestring-aeson }: mkDerivation { pname = "hoauth2"; - version = "1.12.0"; - sha256 = "0v3brbwq07qa7fszdlxaf1q2nfxvr273qq7zg0x5nqvaa63ghdlc"; + version = "1.14.0"; + sha256 = "0szcg4bvzs8djmq5k47czyk7hv9nassahd0ngd127hcab5afmbxk"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -126082,10 +126927,8 @@ self: { ({ mkDerivation, base, OneTuple, Only, single-tuple }: mkDerivation { pname = "homotuple"; - version = "0.1.0.0"; - sha256 = "0m72srmxqp8834ir08b5n9jk20yimmn5vwqyhpdxiyq4akbmb1w1"; - revision = "2"; - editedCabalFile = "0kn941gr9j6li1lnynx3fd652kvcbm1j4y8jd9qd6ynrcqd2hpia"; + version = "0.1.1.0"; + sha256 = "02ihvyl6hdc879j3mx5ybbkd0iycqxjjmwd3z7dzshf9d5jmw67v"; libraryHaskellDepends = [ base OneTuple Only single-tuple ]; description = "Homotuple, all whose elements are the same type"; license = stdenv.lib.licenses.asl20; @@ -127268,8 +128111,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.33.0"; - sha256 = "1w49rjcviy4vyj1b45ifpva4bgwc0xd305si148rkxa65378ranj"; + version = "0.33.1"; + sha256 = "1asbiw1vajhfjjadrlpcqdl43gqfqa9r44l9d1c2lgiys4fqpdmk"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127698,6 +128541,8 @@ self: { pname = "hpc-lcov"; version = "1.0.0"; sha256 = "0j2v2dpqj8xrs7z8mn1f71pin1m2arynp8nmai9cd1bqxyrv56a6"; + revision = "1"; + editedCabalFile = "1h73lhmad57xllygx16kqr7q647y0d1m72gxl9d3n0w5hgdrq5sh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers hpc ]; @@ -130818,6 +131663,36 @@ self: { license = stdenv.lib.licenses.gpl3Plus; }) {}; + "hsinspect-lsp" = callPackage + ({ mkDerivation, aeson, base, bytestring, cache, data-default + , directory, extra, filepath, ghc, ghc-paths, haskell-lsp, hslogger + , hspec, hspec-discover, mtl, process, stm, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "hsinspect-lsp"; + version = "0.0.2"; + sha256 = "1wh2vryd68rs2isfz1qm5m15rybr9h4fj7dccsz0fggr322avr61"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring cache directory extra filepath ghc ghc-paths + hslogger process text transformers + ]; + executableHaskellDepends = [ + aeson base bytestring cache data-default directory extra filepath + ghc ghc-paths haskell-lsp hslogger mtl process stm text + transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring cache directory extra filepath ghc ghc-paths + hslogger hspec process text transformers + ]; + testToolDepends = [ hspec-discover ]; + description = "LSP interface over the hsinspect binary"; + license = stdenv.lib.licenses.gpl3Plus; + }) {}; + "hsinstall" = callPackage ({ mkDerivation, ansi-wl-pprint, base, Cabal, directory, filepath , heredoc, optparse-applicative, process, safe-exceptions @@ -131061,6 +131936,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hslua-aeson_1_0_2" = callPackage + ({ mkDerivation, aeson, base, bytestring, hashable, hslua, hspec + , HUnit, ieee754, QuickCheck, quickcheck-instances, scientific + , text, unordered-containers, vector + }: + mkDerivation { + pname = "hslua-aeson"; + version = "1.0.2"; + sha256 = "1v5saxppbnq62ds00a7diadvqg8dnsx0sjlcanjj15h13j3yw964"; + libraryHaskellDepends = [ + aeson base hashable hslua scientific text unordered-containers + vector + ]; + testHaskellDepends = [ + aeson base bytestring hashable hslua hspec HUnit ieee754 QuickCheck + quickcheck-instances scientific text unordered-containers vector + ]; + description = "Allow aeson data types to be used with lua"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hslua-module-doclayout" = callPackage ({ mkDerivation, base, doclayout, hslua, tasty, tasty-hunit , tasty-lua, text @@ -131608,6 +132505,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hspec-expectations-json" = callPackage + ({ mkDerivation, aeson, aeson-pretty, aeson-qq, base, Diff, hspec + , HUnit, scientific, text, unordered-containers, vector + }: + mkDerivation { + pname = "hspec-expectations-json"; + version = "1.0.0.0"; + sha256 = "1i6w3qsy25y0aymkcnkycpgrx0dkbsv5a60004hx3fpl5rkbq1aj"; + libraryHaskellDepends = [ + aeson aeson-pretty base Diff HUnit scientific text + unordered-containers vector + ]; + testHaskellDepends = [ aeson-qq base hspec ]; + description = "Hspec expectations for JSON Values"; + license = stdenv.lib.licenses.mit; + }) {}; + "hspec-expectations-lens" = callPackage ({ mkDerivation, base, hspec, hspec-expectations, HUnit, lens , silently @@ -132078,6 +132992,8 @@ self: { pname = "hspec-tables"; version = "0.0.1"; sha256 = "07z85920dr85kc763hfqd6rrzl81cc39cjgc0ymy95ycgpdz2w1q"; + revision = "1"; + editedCabalFile = "1li02kvz1mpq0x9j7q7cjwn8b35m2aqgfbrgab4vsngqq61a4f0z"; libraryHaskellDepends = [ base hspec-core ]; testHaskellDepends = [ base hspec hspec-core ]; description = "Table-driven (by-example) HSpec tests"; @@ -133041,14 +133957,18 @@ self: { }: mkDerivation { pname = "hsx2hs"; - version = "0.14.1.6"; - sha256 = "09qynnmy5pq7yl8zic91wysrvjb1a1ibcjc9ry458wgbz236br4n"; + version = "0.14.1.8"; + sha256 = "1yx2bnwjqwghp2jg3kpk42wbbqswnxph46xjrmyaharlw1s8y0f2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; + executableHaskellDepends = [ + base bytestring haskell-src-exts haskell-src-meta mtl + template-haskell utf8-string + ]; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -133466,6 +134386,8 @@ self: { pname = "html-parse"; version = "0.2.0.2"; sha256 = "0dm771lrrqc87ygbr3dzyl1vsyi30jgr7l0isvsbqyah7s4zyg38"; + revision = "1"; + editedCabalFile = "1hr9bskwwx3svxqaxcyaz8v0brli1bb03xcvg7zpgbisf8x6r316"; libraryHaskellDepends = [ attoparsec base containers deepseq text ]; @@ -133853,6 +134775,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "http-client_0_7_0" = callPackage + ({ mkDerivation, array, async, base, blaze-builder, bytestring + , case-insensitive, containers, cookie, deepseq, directory + , exceptions, filepath, ghc-prim, hspec, http-types, memory + , mime-types, monad-control, network, network-uri, random, stm + , streaming-commons, text, time, transformers, zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.7.0"; + sha256 = "1lghzrq3ls8gg64vsz4pc9rppggp4n3s3zcalzz63yvqrjfb767i"; + libraryHaskellDepends = [ + array base blaze-builder bytestring case-insensitive containers + cookie deepseq exceptions filepath ghc-prim http-types memory + mime-types network network-uri random stm streaming-commons text + time transformers + ]; + testHaskellDepends = [ + async base blaze-builder bytestring case-insensitive containers + cookie deepseq directory hspec http-types monad-control network + network-uri streaming-commons text time transformers zlib + ]; + doCheck = false; + description = "An HTTP client engine"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-client-auth" = callPackage ({ mkDerivation, base, base64-string, blaze-builder, bytestring , case-insensitive, conduit, crypto-conduit, http-client @@ -133934,27 +134884,6 @@ self: { }) {}; "http-client-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, hspec, http-client - , http-types, network - }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.3.0.0"; - sha256 = "0y7d1bp045mj1lnbd74a1v4viv5g5awivdhbycq75hnvqf2n50vl"; - revision = "2"; - editedCabalFile = "0p8vgakciq8ar9pfahh1bmriann3h0xn4z3xb328lgbcxxxpwqfd"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL http-client network - ]; - testHaskellDepends = [ - base HsOpenSSL hspec http-client http-types - ]; - doCheck = false; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - - "http-client-openssl_0_3_1_0" = callPackage ({ mkDerivation, base, bytestring, HsOpenSSL, hspec, http-client , http-types, network }: @@ -133971,7 +134900,6 @@ self: { doCheck = false; description = "http-client backend using the OpenSSL library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-overrides" = callPackage @@ -134152,6 +135080,8 @@ self: { pname = "http-conduit"; version = "2.3.7.3"; sha256 = "00rshi1y0h8y4rvsnnad0bppxgpvp40sk7lw1kxmdwy8pi8xrvbs"; + revision = "1"; + editedCabalFile = "0d9mkg8wm943avghjwvq986m667fx63pvvgn2y8gvr6nla8740an"; libraryHaskellDepends = [ aeson attoparsec base bytestring conduit conduit-extra http-client http-client-tls http-types mtl resourcet transformers unliftio-core @@ -134379,23 +135309,24 @@ self: { }) {}; "http-io-streams" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , brotli-streams, bytestring, case-insensitive, containers - , directory, HsOpenSSL, io-streams, mtl, network, network-uri - , openssl-streams, text, transformers + ({ mkDerivation, attoparsec, base, base64-bytestring, binary + , blaze-builder, brotli-streams, bytestring, case-insensitive + , containers, cryptohash-sha1, directory, HsOpenSSL, io-streams + , mtl, network, network-uri, openssl-streams, text, transformers + , xor }: mkDerivation { pname = "http-io-streams"; - version = "0.1.3.0"; - sha256 = "1m8nj92v21mgrb2mxlvc6smkpvd01664ng4kwikadb4j8bfpb15r"; + version = "0.1.4.0"; + sha256 = "004qqxc101qa9kcsn72wlgmfn14js3x6fx18kqvzhhxjh6fx0g1h"; libraryHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder brotli-streams - bytestring case-insensitive containers directory HsOpenSSL - io-streams mtl network network-uri openssl-streams text - transformers + attoparsec base base64-bytestring binary blaze-builder + brotli-streams bytestring case-insensitive containers + cryptohash-sha1 directory HsOpenSSL io-streams mtl network + network-uri openssl-streams text transformers xor ]; - description = "HTTP client based on io-streams"; - license = stdenv.lib.licenses.bsd3; + description = "HTTP and WebSocket client based on io-streams"; + license = "BSD-3-Clause AND GPL-2.0-or-later"; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -135389,17 +136320,6 @@ self: { }) {}; "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit }: - mkDerivation { - pname = "hunit-dejafu"; - version = "2.0.0.2"; - sha256 = "07bsf9wv1i1mzhbj216n0k22k9mwpkcvnh4gin8z4zldpj0vyqm4"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - - "hunit-dejafu_2_0_0_3" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit }: mkDerivation { pname = "hunit-dejafu"; @@ -135408,7 +136328,6 @@ self: { libraryHaskellDepends = [ base dejafu exceptions HUnit ]; description = "Deja Fu support for the HUnit test framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-gui" = callPackage @@ -135629,8 +136548,8 @@ self: { }: mkDerivation { pname = "hurl"; - version = "1.4.1.0"; - sha256 = "1n7688m5n5f62h59jjh2w5aa4ir87ni3x9wqnkc902crsqrgj2js"; + version = "1.4.1.1"; + sha256 = "0h4fzkdpsjsph6685sg78kwvajf7615y8dbcn9n88jwdq6j8j522"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -135808,20 +136727,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hvega_0_8_0_0" = callPackage + "hvega_0_9_0_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers , filepath, tasty, tasty-golden, text, unordered-containers }: mkDerivation { pname = "hvega"; - version = "0.8.0.0"; - sha256 = "1pz4wha9xg58zgxbfahgjz01s0frdk9mlns0m3bwcdgn26n5np68"; + version = "0.9.0.0"; + sha256 = "1wrgxbdd4db1f2bidg5k7xalakc84spyc22kmhsr9rwjzf467ans"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base text unordered-containers ]; testHaskellDepends = [ aeson aeson-pretty base bytestring containers filepath tasty - tasty-golden text + tasty-golden text unordered-containers ]; description = "Create Vega-Lite visualizations (version 4) in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -135958,8 +136877,8 @@ self: { }: mkDerivation { pname = "hw-bits"; - version = "0.7.2.0"; - sha256 = "1i985qgcvwphawh91qh2r1wvh8y4kfa7s7wwwr92pgw4qsrvfkzi"; + version = "0.7.2.1"; + sha256 = "18l9r0yhddkzgbc2vvk0qr9brb5ih25zjfga3bddb5j8gpaaq65q"; libraryHaskellDepends = [ base bitvec bytestring deepseq hw-int hw-prim hw-string-parse vector @@ -136526,8 +137445,8 @@ self: { }: mkDerivation { pname = "hw-kafka-client"; - version = "3.1.0"; - sha256 = "0dnqswvkxqwvhcxkr2vh5qskbj4dmqm52n17y57n4nk5wkr30knz"; + version = "3.1.1"; + sha256 = "109ld374fzrnin94s12ig5hhimjbnh643nbbgp7zdxjpr1qmjcz6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -138134,8 +139053,8 @@ self: { pname = "hyraxAbif"; version = "0.2.3.21"; sha256 = "0ghhfv8gzs9sg13nj3mhqd24zbrkjj1dgsjz3sql6276kpa1p2kc"; - revision = "2"; - editedCabalFile = "05fnq87n1rprz3mlw89g74b1arzhldn8yqj3la04g3r3m39fh2v1"; + revision = "3"; + editedCabalFile = "12ka2k7z7yg3jbx6ya409flyqpl6i29hcf445dicbp1jpra2d70f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -138879,8 +139798,8 @@ self: { }: mkDerivation { pname = "idris"; - version = "1.3.2"; - sha256 = "0wychzkg0yghd2pp8fqz78vp1ayzks191knfpl7mhh8igsmb6bc7"; + version = "1.3.3"; + sha256 = "1pachwc6msw3n1mz2z1r1w6h518w9gbhdvbaa5vi1qp3cn3wm6q4"; configureFlags = [ "-fcurses" "-fexeconly" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -139332,8 +140251,8 @@ self: { ({ mkDerivation, aeson, base, hvega, ihaskell, text }: mkDerivation { pname = "ihaskell-hvega"; - version = "0.2.4.0"; - sha256 = "0yk8wxr1kh3xibb1l5jgjryq7h4id9cz59yjkjjzq41r6p1zr6yj"; + version = "0.3.0.0"; + sha256 = "1sa65ambh6494lhfgyawn883zfnlvqrd969xzx83w1dk904425gi"; libraryHaskellDepends = [ aeson base hvega ihaskell text ]; description = "IHaskell display instance for hvega types"; license = stdenv.lib.licenses.bsd3; @@ -140005,6 +140924,32 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; + "implicit-hie" = callPackage + ({ mkDerivation, attoparsec, base, directory, filepath, filepattern + , hspec, hspec-attoparsec, text, transformers, yaml + }: + mkDerivation { + pname = "implicit-hie"; + version = "0.1.0.0"; + sha256 = "1mdavvr4pmkq82yb5qnp77szjraa06ybw7v3fkys83b045plzdr6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base directory filepath filepattern text transformers + yaml + ]; + executableHaskellDepends = [ + attoparsec base directory filepath filepattern text transformers + yaml + ]; + testHaskellDepends = [ + attoparsec base directory filepath filepattern hspec + hspec-attoparsec text transformers yaml + ]; + description = "Auto generate hie-bios cradles & hie.yaml"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "implicit-logging" = callPackage ({ mkDerivation, base, mtl, time, transformers }: mkDerivation { @@ -140318,28 +141263,6 @@ self: { }) {}; "incremental-parser" = callPackage - ({ mkDerivation, base, bytestring, checkers, criterion, deepseq - , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty - , tasty-quickcheck, text, transformers - }: - mkDerivation { - pname = "incremental-parser"; - version = "0.4.0.1"; - sha256 = "1cghkzdsh8vjv1ggk5qjr5ny88wna5kbifbfsy1ld5n5k66536lf"; - libraryHaskellDepends = [ - base monoid-subclasses parsers rank2classes transformers - ]; - testHaskellDepends = [ - base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base bytestring criterion deepseq monoid-subclasses text - ]; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - - "incremental-parser_0_4_0_2" = callPackage ({ mkDerivation, base, bytestring, checkers, criterion, deepseq , monoid-subclasses, parsers, QuickCheck, rank2classes, tasty , tasty-quickcheck, text, transformers @@ -140359,7 +141282,6 @@ self: { ]; description = "Generic parser library capable of providing partial results from partial input"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-sat-solver" = callPackage @@ -140884,6 +141806,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "influxdb_1_7_1_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal + , cabal-doctest, clock, containers, doctest, foldl, http-client + , http-types, lens, network, optional-args, raw-strings-qq + , scientific, tagged, tasty, tasty-hunit, template-haskell, text + , time, unordered-containers, vector + }: + mkDerivation { + pname = "influxdb"; + version = "1.7.1.5"; + sha256 = "1i3qwh8l938f453nf7mbhlhg6xyaxsh8vys13zlz7p26q7knf65g"; + isLibrary = true; + isExecutable = true; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clock containers foldl http-client + http-types lens network optional-args scientific tagged text time + unordered-containers vector + ]; + testHaskellDepends = [ + base containers doctest raw-strings-qq tasty tasty-hunit + template-haskell time + ]; + description = "Haskell client library for InfluxDB"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "informative" = callPackage ({ mkDerivation, base, containers, csv, highlighting-kate , http-conduit, monad-logger, pandoc, persistent @@ -141261,6 +142211,8 @@ self: { pname = "insert-ordered-containers"; version = "0.2.3.1"; sha256 = "020a56280mxjk9k97q2m1424m73m1sf1ccl0wm0ci9msyw2g51za"; + revision = "1"; + editedCabalFile = "1s90flzj3039s50r6hx7mqihf8lvarcqb6zps7m12x543gahfcq0"; libraryHaskellDepends = [ aeson base base-compat hashable lens optics-core optics-extra semigroupoids semigroups text transformers unordered-containers @@ -142393,8 +143345,8 @@ self: { pname = "invertible-grammar"; version = "0.1.2"; sha256 = "1nf7dchcxs8wwd2hgfpf04qd63ws22pafjwb5911lq7da8k1y57j"; - revision = "3"; - editedCabalFile = "023nln2rhsijx4z7cm914283fm7fv2azk0w65nlbgky7cbmn021w"; + revision = "4"; + editedCabalFile = "1574py7cbgig031kh2v52m0w2af0sr0lyaj20makwrm9g8g6k9k8"; libraryHaskellDepends = [ base bifunctors containers mtl prettyprinter profunctors semigroups tagged template-haskell text transformers @@ -142597,8 +143549,8 @@ self: { pname = "io-streams-haproxy"; version = "1.0.1.0"; sha256 = "1dcn5hd4fiwyq7m01r6fi93vfvygca5s6mz87c78m0zyj29clkmp"; - revision = "2"; - editedCabalFile = "1pvw39f0vrzb5hdx6nqpdg4ccsxa59vwjspfjkh6vvw1zwmidgja"; + revision = "3"; + editedCabalFile = "02k9halblgnynlm781ahc81yxla8z7cck1gikm8555v78rf5hv7x"; libraryHaskellDepends = [ attoparsec base bytestring io-streams network transformers ]; @@ -143476,6 +144428,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "isbn" = callPackage + ({ mkDerivation, base, hspec, text }: + mkDerivation { + pname = "isbn"; + version = "1.0.0.0"; + sha256 = "0cxffahx54mf0baib9w2g2gbmcpmnzvpga71zggjaqkl0l7a7hf5"; + libraryHaskellDepends = [ base text ]; + testHaskellDepends = [ base hspec text ]; + description = "ISBN Validation and Manipulation"; + license = stdenv.lib.licenses.asl20; + }) {}; + "isdicom" = callPackage ({ mkDerivation, base, directory, doctest, filepath, QuickCheck , template-haskell @@ -143744,8 +144708,8 @@ self: { ({ mkDerivation, base, generic-lens, QuickCheck }: mkDerivation { pname = "it-has"; - version = "0.1.0.0"; - sha256 = "11vfh01hwxg2jg2qwignvnjlms2issm94sqqvqy4mnm1vgphdbyx"; + version = "0.2.0.0"; + sha256 = "0cpv2g95gvb4cb3jin2k12yz7nvksqkc9fn9mgy9smbx1m7xc06g"; libraryHaskellDepends = [ base generic-lens ]; testHaskellDepends = [ base generic-lens QuickCheck ]; description = "Automatically derivable Has instances"; @@ -145436,36 +146400,6 @@ self: { }) {}; "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, hspec, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, tasty, tasty-hspec, tasty-quickcheck - , template-haskell, text, time, unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.8.2.1"; - sha256 = "1mfnxfzgcxlsjfwzg4syih6wasi7mq25j3dawar9aihvdkpwqlfh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - testHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite hspec lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups tasty tasty-hspec - tasty-quickcheck template-haskell text time unordered-containers - vector x509 - ]; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - - "jose_0_8_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, concise, containers, cryptonite, hspec, lens, memory , monad-time, mtl, network-uri, pem, QuickCheck @@ -145494,7 +146428,6 @@ self: { ]; description = "Javascript Object Signing and Encryption and JSON Web Token library"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose-jwt" = callPackage @@ -146130,6 +147063,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-feed_1_0_10" = callPackage + ({ mkDerivation, aeson, base, bytestring, filepath, hspec + , mime-types, network-uri, tagsoup, text, time + }: + mkDerivation { + pname = "json-feed"; + version = "1.0.10"; + sha256 = "09hgpy0xc431ifs59y91glwf9c57yjc8jwwin94w4z3xk8v2qg2v"; + libraryHaskellDepends = [ + aeson base bytestring mime-types network-uri tagsoup text time + ]; + testHaskellDepends = [ base bytestring filepath hspec ]; + description = "JSON Feed"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "json-fu" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , hashable, hspec, mtl, syb, text, time, unordered-containers @@ -147003,8 +147953,8 @@ self: { }: mkDerivation { pname = "juicy-gcode"; - version = "0.1.0.7"; - sha256 = "000qbmbm4gm9wv0q1vgn6y17g6ah0cx5jhcv311mwdfiq70k6ga4"; + version = "0.1.0.9"; + sha256 = "02i1d3jfisxiyq63z9z7jlyscywbskmsxkx2xxv7v742xi4w5wrb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -147065,19 +148015,6 @@ self: { }) {}; "junit-xml" = callPackage - ({ mkDerivation, base, tasty, tasty-golden, text, xml-conduit }: - mkDerivation { - pname = "junit-xml"; - version = "0.1.0.0"; - sha256 = "006w30x66pqzjxarhavp0lyy8cb16gmvyyirbx9scfnbki8ybchs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base text xml-conduit ]; - testHaskellDepends = [ base tasty tasty-golden ]; - description = "Producing JUnit-style XML test reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "junit-xml_0_1_0_1" = callPackage ({ mkDerivation, base, tasty, tasty-golden, text, xml-conduit }: mkDerivation { pname = "junit-xml"; @@ -147088,7 +148025,6 @@ self: { testHaskellDepends = [ base tasty tasty-golden ]; description = "Producing JUnit-style XML test reports"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jupyter" = callPackage @@ -147588,8 +148524,8 @@ self: { pname = "kansas-comet"; version = "0.4"; sha256 = "1q9rffh6589a5am8mvfzxzwws34vg08rdjxggfabhmg9y9jla6hz"; - revision = "19"; - editedCabalFile = "0pnfhv3dlg9cs98nyz5kqdi5mq340909id8rb4lcdj9748w8gz4w"; + revision = "21"; + editedCabalFile = "1sgyn14j68n1gykgklnfvxqw9bw3k7p72bs22rl5fdbyhr5lf5lk"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base containers data-default-class scotty stm text time @@ -148156,6 +149092,24 @@ self: { broken = true; }) {}; + "kdesrc-build-profiles" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, cmdargs + , directory, MissingH, parsec, process + }: + mkDerivation { + pname = "kdesrc-build-profiles"; + version = "0.2.0"; + sha256 = "0svv6dhbxk3wdjcvily6vzxvdjx4ky1bjbvc9xkrknsh58kibc7p"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-terminal base bytestring cmdargs directory MissingH parsec + process + ]; + description = "Build profiles for kdesrc-build"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "kdt" = callPackage ({ mkDerivation, base, criterion, deepseq, deepseq-generics, heap , mersenne-random-pure64, MonadRandom, QuickCheck @@ -148246,8 +149200,8 @@ self: { }: mkDerivation { pname = "keera-hails-i18n"; - version = "0.5.0"; - sha256 = "1kjm9gf857f29a8zd18l4f1zvvdgz4k21rhlh7j14nwffx4i2wf7"; + version = "0.6.0"; + sha256 = "0xal6xq60yljn53qrxcgsm4jc630za8jfcqxxvlrr9g53kganmpc"; libraryHaskellDepends = [ base directory filepath glib hgettext MissingK setlocale utf8-string @@ -148262,8 +149216,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "keera-hails-mvc-controller"; - version = "0.0.3.3"; - sha256 = "00qr5czm0hq3jxwp42fc50v6r458rm9qq9fpri4rhnc41il79nzb"; + version = "0.6.0"; + sha256 = "0k1i443mmw2lrpsrh8dzfzcydfzs305b4np45bfc0hlb6czkc4p6"; libraryHaskellDepends = [ base ]; description = "Haskell on Gtk rails - Gtk-based controller for MVC applications"; license = stdenv.lib.licenses.bsd3; @@ -148275,8 +149229,8 @@ self: { }: mkDerivation { pname = "keera-hails-mvc-environment-gtk"; - version = "0.5.0"; - sha256 = "0011q0pphzrsrp14nh6nw5szvmvm2gqq7m8vi9w0yi39s10azn97"; + version = "0.6.0"; + sha256 = "0acrafqcjq01qbd68c8ch510ggz3x581jrfx411xh8y0ngk3ydjv"; libraryHaskellDepends = [ base keera-hails-mvc-model-protectedmodel keera-hails-mvc-view keera-hails-mvc-view-gtk @@ -148293,8 +149247,8 @@ self: { }: mkDerivation { pname = "keera-hails-mvc-model-lightmodel"; - version = "0.0.3.4"; - sha256 = "085qppi68qf8jbkp674ldikhr5z4nrffzqa9kgdm1dngrgsib190"; + version = "0.6.0"; + sha256 = "0m2v5dsvjrx42m5psb2yw9jgwzn14yw4l3yswpm469wfdyli88n4"; libraryHaskellDepends = [ base containers keera-hails-reactivevalues MissingK stm template-haskell @@ -148311,8 +149265,8 @@ self: { }: mkDerivation { pname = "keera-hails-mvc-model-protectedmodel"; - version = "0.5.0"; - sha256 = "0snlswhdxgliaf8pn3h4x99b8zvbvwlrhd896f89cp0am7084ily"; + version = "0.6.0"; + sha256 = "19lb7yxfgrv074z0qcdqa7fdpjx1mgl1djcl6vaz8ydf69qqdyfn"; libraryHaskellDepends = [ base containers keera-hails-reactivevalues MissingK stm template-haskell @@ -148381,6 +149335,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "keera-hails-reactive-cbmvar" = callPackage + ({ mkDerivation, base, directory, filepath, hlint, keera-callbacks + , keera-hails-reactivevalues, lens, process, regex-posix + }: + mkDerivation { + pname = "keera-hails-reactive-cbmvar"; + version = "0.6.0"; + sha256 = "0g9fb8h1japh0hp6bn02lcsm5cls1lk4hhyk7rbxfkrfiln1khqi"; + libraryHaskellDepends = [ + base keera-callbacks keera-hails-reactivevalues lens + ]; + testHaskellDepends = [ + base directory filepath hlint process regex-posix + ]; + description = "Reactive Haskell on Rails - CBMVars as reactive values"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "keera-hails-reactive-fs" = callPackage ({ mkDerivation, base, directory, fsnotify , keera-hails-reactivevalues, system-filepath @@ -148404,8 +149378,8 @@ self: { }: mkDerivation { pname = "keera-hails-reactive-gtk"; - version = "0.5"; - sha256 = "014d9hr2321gs6ska8ykrgh59k92c6kxf0a3gqvrfj3rck28izb9"; + version = "0.6.0"; + sha256 = "1vr0dy8a44fdh4ilwgzm8g5vjdcq9ll145v47ghpn7z7dhlmbgki"; libraryHaskellDepends = [ base bytestring cairo glib gtk gtk-helpers keera-hails-reactivevalues mtl transformers @@ -148416,14 +149390,33 @@ self: { broken = true; }) {}; + "keera-hails-reactive-htmldom" = callPackage + ({ mkDerivation, base, ghcjs-dom, keera-callbacks + , keera-hails-reactive-cbmvar, keera-hails-reactivevalues, mtl + , transformers + }: + mkDerivation { + pname = "keera-hails-reactive-htmldom"; + version = "0.6.0"; + sha256 = "1hpkmxdhvvwjly860n4kk4ghw47a0yc92dn1ajkz0fc849zp2mpa"; + libraryHaskellDepends = [ + base ghcjs-dom keera-callbacks keera-hails-reactive-cbmvar + keera-hails-reactivevalues mtl transformers + ]; + description = "Keera Hails Reactive bindings for HTML DOM via GHCJS"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "keera-hails-reactive-network" = callPackage ({ mkDerivation, base, bytestring, keera-hails-reactivevalues , network, network-bsd }: mkDerivation { pname = "keera-hails-reactive-network"; - version = "0.5.0"; - sha256 = "0s6zmqqidvd2ibs0hy6hrlflhsg7nlp8yjradpc7xzsr2g9gs8an"; + version = "0.6.0"; + sha256 = "0k0qfh10wv4rabvi2zgwsv97mz7nbvg3rvxfddh6i2hsa48cjvcf"; libraryHaskellDepends = [ base bytestring keera-hails-reactivevalues network network-bsd ]; @@ -148453,8 +149446,8 @@ self: { ({ mkDerivation, base, keera-hails-reactivevalues, wx, wxcore }: mkDerivation { pname = "keera-hails-reactive-wx"; - version = "0.5.0"; - sha256 = "110363gzkawik4hhcbpd0ljqzzqvlzylp3n52j1sbnxj5p01ym7k"; + version = "0.6.0"; + sha256 = "1yspys7vqg3xm86j4k0wcih5f9iqi0n7f6vnc83gjl84c8w8zac1"; libraryHaskellDepends = [ base keera-hails-reactivevalues wx wxcore ]; @@ -148470,8 +149463,8 @@ self: { }: mkDerivation { pname = "keera-hails-reactive-yampa"; - version = "0.0.3.3"; - sha256 = "1n1xyr9pc1sw9gypwhh1rfdjshg7x1kvwr6v3hp0837zvdcz8gw1"; + version = "0.6.0"; + sha256 = "19zxpl9wypy31nwn2ghjcbkvn5xwqfpp9rprkx5ilax3rjagcqcc"; libraryHaskellDepends = [ base keera-callbacks keera-hails-reactivevalues time Yampa ]; @@ -148501,8 +149494,8 @@ self: { }: mkDerivation { pname = "keera-hails-reactivevalues"; - version = "0.5.0"; - sha256 = "163jm6iz6j67qmz4r9rsb24xqb2s9b97assl3la3is3bkvj397z9"; + version = "0.6.0"; + sha256 = "1fji0axzj0558dczvzgkwpxnkszfdk3zgky933pdkpcq1cnjz0d3"; libraryHaskellDepends = [ base contravariant ]; testHaskellDepends = [ base directory filepath hlint HUnit mtl process QuickCheck @@ -149623,6 +150616,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "kubernetes-webhook-haskell_0_2_0_2" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring + , text, unordered-containers + }: + mkDerivation { + pname = "kubernetes-webhook-haskell"; + version = "0.2.0.2"; + sha256 = "1zhknc4bpdm3xcynn1jm7yii615sj7xcq3mv31xlx4kc4bh566al"; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring text + unordered-containers + ]; + description = "Create Kubernetes Admission Webhooks in Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "kuifje" = callPackage ({ mkDerivation, base, boxes, containers, lens }: mkDerivation { @@ -150176,8 +151186,8 @@ self: { }: mkDerivation { pname = "lambdabot"; - version = "5.2"; - sha256 = "1ay873mnp4jzjsawxm6k17h6ciyw022a3fviqm83d0l6d1yjnyzm"; + version = "5.3"; + sha256 = "0sw1ghxrgs0zr71icalcs2w03km5bgsrhcwckyil77sjgy0sqx5w"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -150203,10 +151213,8 @@ self: { }: mkDerivation { pname = "lambdabot-core"; - version = "5.2"; - sha256 = "1wh87wwb8hk3hn2lmdqi1hv77qbdmwqcwjslichygmvac8fjhjss"; - revision = "3"; - editedCabalFile = "182bhiwvbpadwwf3h9fpfsjwcsb0fkfzr57fvpl0k6w7msqn32rp"; + version = "5.3"; + sha256 = "1rbqqrpf6pdvn9mwwh6j0mn6p9w4lf54ax4gkrqsczxqv8gf557s"; libraryHaskellDepends = [ base binary bytestring containers dependent-map dependent-sum dependent-sum-template directory edit-distance filepath haskeline @@ -150232,8 +151240,8 @@ self: { }: mkDerivation { pname = "lambdabot-haskell-plugins"; - version = "5.2"; - sha256 = "0slq4bfkjpb13k9r9dzfhzsaz39f4ji81f8zfqs37b3r6vfvabbb"; + version = "5.3"; + sha256 = "1vlyjkz0dammzf5v8i9sfyswbnpfv0vpwpxybc1dhzm1qv04vbwh"; libraryHaskellDepends = [ array arrows base bytestring containers data-memocombinators directory filepath haskell-src-exts-simple hoogle HTTP IOSpec @@ -150255,8 +151263,8 @@ self: { }: mkDerivation { pname = "lambdabot-irc-plugins"; - version = "5.2"; - sha256 = "0m0dmggmri8imzm15qf5xhzha5ww0qxzg9r3w826z57fwpsql5kh"; + version = "5.3"; + sha256 = "0dm5bsr8hly43hzfja8h6i3n3jai38ln9629p4dlsr8s1himcjbm"; libraryHaskellDepends = [ base bytestring containers directory filepath lambdabot-core lifted-base mtl network SafeSemaphore split time @@ -150276,8 +151284,8 @@ self: { }: mkDerivation { pname = "lambdabot-misc-plugins"; - version = "5.2"; - sha256 = "1bl33np4ajiasafchqp2cf0jgb4r8s5phh2nifd82wqg4g4ajw6a"; + version = "5.3"; + sha256 = "03cj8bzmg7q6b66mblmxv39aw5jd586w1w90zyl632rff4j5f0bh"; libraryHaskellDepends = [ base bytestring containers filepath lambdabot-core lifted-base mtl network network-uri parsec process random random-fu random-source @@ -150297,8 +151305,8 @@ self: { }: mkDerivation { pname = "lambdabot-novelty-plugins"; - version = "5.2"; - sha256 = "171zx2sicl2c5i0mq2aj82dy146i474l18958qw6nwnx9qxc023a"; + version = "5.3"; + sha256 = "0f7frjj41wpkhzvzi2xz7hsv8cr0fg653iqf8gqxlprk4k1sag5n"; libraryHaskellDepends = [ base binary brainfuck bytestring containers dice directory lambdabot-core misfortune process random-fu regex-tdfa unlambda @@ -150316,8 +151324,8 @@ self: { }: mkDerivation { pname = "lambdabot-reference-plugins"; - version = "5.2"; - sha256 = "0z4hx2knj7y5cslrx3rbd2gzm1qyan4gi1v45c91nlg2g54z5cf3"; + version = "5.3"; + sha256 = "0xg8cpd25d01a35y2qmrhp402iphhdjb8sld5lnwc8rzyn6nd7gb"; libraryHaskellDepends = [ base bytestring containers HTTP lambdabot-core mtl network network-uri oeis process regex-tdfa split tagsoup utf8-string @@ -150334,8 +151342,8 @@ self: { }: mkDerivation { pname = "lambdabot-social-plugins"; - version = "5.2"; - sha256 = "04gg7cnzahqfy69sp0wr0h1kgy6l0m0dkjbynrx2rmi5w6v4zgkl"; + version = "5.3"; + sha256 = "0gncll1z2x26v4g874vbwpg8yh9kang6wcvb4ywmfmlrs7kqw9fn"; libraryHaskellDepends = [ base binary bytestring containers lambdabot-core mtl split time ]; @@ -150349,8 +151357,8 @@ self: { ({ mkDerivation, base, oeis, QuickCheck, QuickCheck-safe }: mkDerivation { pname = "lambdabot-trusted"; - version = "5.2"; - sha256 = "0cc1x3yxmpnhgl47y8zvbhqiryp3db30b0i89h0zb112kf8mvw5k"; + version = "5.3"; + sha256 = "0847bxdnwh15szrhjb42y9nrb6qbaq6qyylwbmk1hkavp1baw77b"; libraryHaskellDepends = [ base oeis QuickCheck QuickCheck-safe ]; description = "Lambdabot trusted code"; license = "GPL"; @@ -150857,6 +151865,8 @@ self: { pname = "language-ats"; version = "1.7.10.1"; sha256 = "19m9qalh9xiaw6n60zbhs8yqhd0acq08bkx42i44vfmm0917jys3"; + revision = "1"; + editedCabalFile = "1g1dqii5hrr016g1n8sjz7qyzrnmy46zsfd9cp7hmkxqgjk35p8k"; enableSeparateDataOutput = true; libraryHaskellDepends = [ ansi-wl-pprint array base composition-prelude containers deepseq @@ -151144,20 +152154,21 @@ self: { "language-docker" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , free, Glob, hspec, HUnit, megaparsec, mtl, prettyprinter, process - , QuickCheck, split, template-haskell, text, th-lift, time + , QuickCheck, split, template-haskell, text, th-lift + , th-lift-instances, time }: mkDerivation { pname = "language-docker"; - version = "8.1.0"; - sha256 = "0ifvn8xz8qbwy13kmmadi5xdzvxxbq8nmilrnlls8plb8cwsd5ff"; + version = "8.1.1"; + sha256 = "0sa5ikmhnk3dgai37lpldc9yf5j9rbmgq9rlqigpcvxa6wz7dshn"; libraryHaskellDepends = [ base bytestring containers free megaparsec mtl prettyprinter split - template-haskell text th-lift time + template-haskell text th-lift th-lift-instances time ]; testHaskellDepends = [ base bytestring containers directory filepath free Glob hspec HUnit megaparsec mtl prettyprinter process QuickCheck split - template-haskell text th-lift time + template-haskell text th-lift th-lift-instances time ]; description = "Dockerfile parser, pretty-printer and embedded DSL"; license = stdenv.lib.licenses.gpl3; @@ -153667,6 +154678,8 @@ self: { pname = "lens-aeson"; version = "1.1"; sha256 = "03n9dkdyqkkf15h8k4c4bjwgjcbbs2an2cf6z8x54nvkjmprrg7p"; + revision = "1"; + editedCabalFile = "1118iimvhl2viydgi9l9i7xkfpb0b72f9im0257lr7dy8bcdgdc3"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ aeson attoparsec base bytestring lens scientific text @@ -153751,22 +154764,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "lens-family_1_2_3" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.3"; - sha256 = "0a8fvvc3fsi5fzk5bnqvbgdz22xvvw55nyfac6411q0pm6vy4nc0"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "lens-family" = callPackage ({ mkDerivation, base, containers, lens-family-core, mtl , transformers @@ -153798,18 +154795,6 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lens-family-core_1_2_3" = callPackage - ({ mkDerivation, base, containers, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.3"; - sha256 = "009rf10pj1cb50v44cc1pq7qvfrmkkk9dikahs9qmvbvgl3mykwi"; - libraryHaskellDepends = [ base containers transformers ]; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "lens-family-core" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -153847,6 +154832,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lens-family-th_0_5_1_0" = callPackage + ({ mkDerivation, base, hspec, template-haskell, transformers }: + mkDerivation { + pname = "lens-family-th"; + version = "0.5.1.0"; + sha256 = "1gpjfig8a2dh4v4660rg659hpvrf2vv85v7cwn64xg3043i954qi"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base hspec template-haskell transformers ]; + description = "Generate lens-family style lenses"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lens-filesystem" = callPackage ({ mkDerivation, base, directory, filepath, hspec, lens , lens-action @@ -154592,6 +155590,8 @@ self: { pname = "libarchive"; version = "2.2.5.0"; sha256 = "0vsrjkg4ijk63rgsl7cqdi1inpnv7ballrg5c5pgrrapwxfb5v4x"; + revision = "1"; + editedCabalFile = "1yc1rjcrxsq2f5hadma9fzrxcmxi1wdb03ynskhza2ynz111hjk3"; setupHaskellDepends = [ base Cabal chs-cabal ]; libraryHaskellDepends = [ base bytestring composition-prelude deepseq dlist filepath mtl @@ -155250,8 +156250,8 @@ self: { }: mkDerivation { pname = "libsodium"; - version = "1.0.18.0"; - sha256 = "1qp3ca673d71fiz48pgnc0ywgchar9j62wzayqgdvjkpbwq731am"; + version = "1.0.18.1"; + sha256 = "0injknfijncmfq10szdl1ay75wwpi8rgm3qfdl654aprd95kvpf1"; libraryHaskellDepends = [ base ]; libraryPkgconfigDepends = [ libsodium ]; testHaskellDepends = [ @@ -155571,24 +156571,24 @@ self: { "life-sync" = callPackage ({ mkDerivation, base, bytestring, colourista, containers , exceptions, filepath, hedgehog, hspec, hspec-hedgehog - , optparse-applicative, path, path-io, process, relude, shellmet - , text, tomland, validation-selective + , optparse-applicative, path, path-io, relude, shellmet, text + , tomland, validation-selective }: mkDerivation { pname = "life-sync"; - version = "1.1.0.0"; - sha256 = "0l56n4dhg6p4lw7i7jjq747qv7r6fr0k2gdabwkbbb2qhsviw162"; + version = "1.1.1.0"; + sha256 = "051r1m2rrhgg4r34z9n5picnr5k9bdk08chibazndzhmqcxkh8fq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring colourista containers exceptions - optparse-applicative path path-io process relude shellmet text - tomland validation-selective + optparse-applicative path path-io relude shellmet text tomland + validation-selective ]; executableHaskellDepends = [ base relude ]; testHaskellDepends = [ base containers filepath hedgehog hspec hspec-hedgehog path relude - text + text tomland ]; description = "Synchronize personal configs across multiple machines"; license = stdenv.lib.licenses.mpl20; @@ -155828,23 +156828,23 @@ self: { "lightstep-haskell" = callPackage ({ mkDerivation, async, base, bytestring, chronos, containers - , deepseq, hashable, http-types, http2-client, http2-client-grpc - , http2-grpc-proto-lens, lens, mtl, proto-lens - , proto-lens-protobuf-types, proto-lens-runtime, random - , safe-exceptions, stm, tasty, tasty-discover, tasty-hunit - , tasty-quickcheck, text, transformers, unordered-containers, wai + , deepseq, exceptions, hashable, http-types, http2-client + , http2-client-grpc, http2-grpc-proto-lens, lens, mtl, proto-lens + , proto-lens-protobuf-types, proto-lens-runtime, random, stm, tasty + , tasty-discover, tasty-hunit, tasty-quickcheck, text, text-show + , transformers, unordered-containers, wai }: mkDerivation { pname = "lightstep-haskell"; - version = "0.6.1"; - sha256 = "0c3z44wnx67k7n7gw8zs35g79al76fbjk6z20fpvjhmk49gsaspk"; + version = "0.10.0"; + sha256 = "1axvqljzr5wpqpk9qryvdc15qcnnd3gjxwliyd1m8pndvnryds5q"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base bytestring chronos containers hashable http-types - http2-client http2-client-grpc http2-grpc-proto-lens lens mtl - proto-lens proto-lens-protobuf-types proto-lens-runtime random - safe-exceptions stm text transformers unordered-containers wai + async base bytestring chronos containers exceptions hashable + http-types http2-client http2-client-grpc http2-grpc-proto-lens + lens mtl proto-lens proto-lens-protobuf-types proto-lens-runtime + random stm text text-show transformers unordered-containers wai ]; executableHaskellDepends = [ async base text ]; testHaskellDepends = [ @@ -157436,20 +158436,20 @@ self: { }) {}; "list-tuple" = callPackage - ({ mkDerivation, base, Cabal, deepseq, directory, hspec, OneTuple - , Only, should-not-typecheck, single-tuple, text + ({ mkDerivation, base, Cabal, deepseq, directory, hspec + , hspec-discover, OneTuple, Only, should-not-typecheck + , single-tuple, text }: mkDerivation { pname = "list-tuple"; - version = "0.1.1.0"; - sha256 = "11mmadb62rarsywn8nd642pxx91yavj7mv739wdwvr723p57i6i3"; - revision = "1"; - editedCabalFile = "1909sk4mzlagskjvccj8rlw5vnxrxcx211406bngyp9lmpnmhdyy"; + version = "0.1.2.0"; + sha256 = "1v9nsnsgwg17zwzr5kd44wbjqzp1cl6qwz2xwnwrpx8qampckcpw"; setupHaskellDepends = [ base Cabal directory ]; libraryHaskellDepends = [ base OneTuple Only single-tuple ]; testHaskellDepends = [ base deepseq hspec Only should-not-typecheck single-tuple text ]; + testToolDepends = [ hspec-discover ]; description = "List-like operations for tuples"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -158411,8 +159411,8 @@ self: { ({ mkDerivation, base, containers, doctest, hedgehog }: mkDerivation { pname = "loc"; - version = "0.1.3.6"; - sha256 = "0bspclskqk0kzvic8y4bxagjrfzxpq53xgr0jfp6rcqacql6qvdr"; + version = "0.1.3.8"; + sha256 = "11xlpi1g4m0wcjahf1brs77g52pn45g7rglkqz8c6y81y8vllppd"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers doctest hedgehog ]; description = "Types representing line and column positions and ranges in text files"; @@ -158423,8 +159423,8 @@ self: { ({ mkDerivation, base, containers, hedgehog, loc }: mkDerivation { pname = "loc-test"; - version = "0.1.3.6"; - sha256 = "0kzr7adk85y9fcibi8rw7ix3vp2z17ig211lw820nirhwb8xj697"; + version = "0.1.3.8"; + sha256 = "0jg6p0lfd5xgrwbmlskj5f1x8l5b0b3dqh460ds2nii8isccgvcq"; libraryHaskellDepends = [ base containers hedgehog loc ]; description = "Test-related utilities related to the /loc/ package"; license = stdenv.lib.licenses.asl20; @@ -159742,8 +160742,8 @@ self: { }: mkDerivation { pname = "lorentz"; - version = "0.2.0"; - sha256 = "1az5phibdmxvr2g0lb1808rvlywd5d2cc647gzkybz5bwi837328"; + version = "0.3.0"; + sha256 = "1kjaif19rbmni4nsa8xczbp7q0lbfspbv9w0nhc24l7jjfmhrcd2"; libraryHaskellDepends = [ aeson-pretty base-noprelude bimap bytestring constraints containers data-default first-class-families fmt formatting ghc-prim HUnit @@ -159760,7 +160760,7 @@ self: { ]; testToolDepends = [ tasty-discover ]; description = "EDSL for the Michelson Language"; - license = stdenv.lib.licenses.agpl3Plus; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {tezos-bake-monitor-lib = null;}; @@ -160447,8 +161447,8 @@ self: { }: mkDerivation { pname = "lumberjack"; - version = "0.1.0.1"; - sha256 = "1fgdhzkykyvi8dfy8yrv2rnr801677831k12k22i59afdw076xqg"; + version = "0.1.0.2"; + sha256 = "1qixhfalj22zgfmg3q0jk7ci4nafdwbhrbpgiwzjmah11219jib1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -160456,7 +161456,7 @@ self: { prettyprinter-ansi-terminal text time ]; executableHaskellDepends = [ - base exceptions mtl prettyprinter text + base contravariant exceptions mtl prettyprinter text ]; description = "Trek through your code forest and make logs"; license = stdenv.lib.licenses.isc; @@ -160886,8 +161886,8 @@ self: { }: mkDerivation { pname = "lzo"; - version = "0.1.1.2"; - sha256 = "0dypzlxkkby937l2m9g4bz50sgchazqsbagbhkic70ak6iyasamf"; + version = "0.1.1.3"; + sha256 = "13l9fzvwyq1z3pv2p33w8ylb8wriwf5q2lif68f8n16fzh07ki7p"; libraryHaskellDepends = [ base binary bytestring digest ]; testHaskellDepends = [ base bytestring tasty tasty-hunit ]; benchmarkHaskellDepends = [ base bytestring criterion ]; @@ -161008,6 +162008,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "machination" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "machination"; + version = "1.0.0"; + sha256 = "1vamvcnllcrz515ixidf07s751ah2nfwkwj045cpzgyygb7igvnc"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + description = "Plot charts as unicode strings"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "machinecell" = callPackage ({ mkDerivation, base, doctest, free, hspec, mtl, profunctors , QuickCheck, semigroups, transformers @@ -163306,6 +164318,29 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "math-functions_0_3_4_0" = callPackage + ({ mkDerivation, base, data-default-class, deepseq, erf, primitive + , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, vector + , vector-th-unbox + }: + mkDerivation { + pname = "math-functions"; + version = "0.3.4.0"; + sha256 = "1r77ifqjxr8waf9ljgggyhl2a7gpqhhsi7m7cnc9v5kxqzgdbn4a"; + revision = "1"; + editedCabalFile = "1gyrzczs1df98l2d21xrpqqsxs9yw27pfwl27fx8lshd9n25x5h5"; + libraryHaskellDepends = [ + base data-default-class deepseq primitive vector + ]; + testHaskellDepends = [ + base data-default-class deepseq erf primitive QuickCheck tasty + tasty-hunit tasty-quickcheck vector vector-th-unbox + ]; + description = "Collection of tools for numeric computations"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "math-grads" = callPackage ({ mkDerivation, aeson, array, base, bimap, containers, hspec , ilist, lens, linear, matrix, mtl, random, vector @@ -164322,6 +165357,33 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "medea" = callPackage + ({ mkDerivation, aeson, algebraic-graphs, base, bytestring + , containers, deepseq, directory, filepath, free, hashable, hspec + , hspec-core, megaparsec, microlens-ghc, mtl, nonempty-containers + , parser-combinators, QuickCheck, quickcheck-instances, scientific + , text, unordered-containers, vector, vector-instances + }: + mkDerivation { + pname = "medea"; + version = "1.1.2"; + sha256 = "0s5ra1a9p8yj2ddwlz58i1ajd7dmxz9rxrdckfmajpzgq9vyskpl"; + revision = "1"; + editedCabalFile = "1ick6yjqdk7wg75fzd496r1nyzhphzpz21lcalpicd34bkbzk6dd"; + libraryHaskellDepends = [ + aeson algebraic-graphs base bytestring containers deepseq free + hashable megaparsec microlens-ghc mtl nonempty-containers + parser-combinators scientific text unordered-containers vector + vector-instances + ]; + testHaskellDepends = [ + aeson base directory filepath hspec hspec-core mtl QuickCheck + quickcheck-instances text unordered-containers vector + ]; + description = "A schema language for JSON"; + license = stdenv.lib.licenses.mit; + }) {}; + "mediabus" = callPackage ({ mkDerivation, array, async, base, binary, bytestring, cereal , conduit, conduit-combinators, conduit-extra, containers @@ -164737,20 +165799,6 @@ self: { }) {}; "membrain" = callPackage - ({ mkDerivation, base, doctest, Glob, hedgehog, hspec, type-spec }: - mkDerivation { - pname = "membrain"; - version = "0.0.0.1"; - sha256 = "1rrvny4avcpib47r26vf3x05yxl3vxz9gb9vsdcj3ck18vfgynsm"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base doctest Glob hedgehog hspec type-spec - ]; - description = "Type-safe memory units"; - license = stdenv.lib.licenses.mpl20; - }) {}; - - "membrain_0_0_0_2" = callPackage ({ mkDerivation, base, doctest, Glob, hedgehog, hspec, type-spec }: mkDerivation { pname = "membrain"; @@ -164762,7 +165810,6 @@ self: { ]; description = "Type-safe memory units"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memcache" = callPackage @@ -165176,6 +166223,48 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mergeful_0_2_0_0" = callPackage + ({ mkDerivation, aeson, base, containers, deepseq, mtl, text, time + , validity, validity-containers, validity-time + }: + mkDerivation { + pname = "mergeful"; + version = "0.2.0.0"; + sha256 = "0cvx0qs4j7jbamz5dz23dii7car8dq5wz0qvkbckb3ymbrf16ywa"; + libraryHaskellDepends = [ + aeson base containers deepseq mtl text time validity + validity-containers validity-time + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mergeful-persistent" = callPackage + ({ mkDerivation, base, containers, genvalidity, genvalidity-hspec + , genvalidity-mergeful, genvalidity-persistent, hspec, mergeful + , microlens, monad-logger, mtl, path, path-io, persistent + , persistent-sqlite, persistent-template, QuickCheck, text + , validity, validity-persistent + }: + mkDerivation { + pname = "mergeful-persistent"; + version = "0.0.0.0"; + sha256 = "13lw0gb57as7mplaqwg0i6cpdp1gyw0qghbq4l19y7ib8c6jqnxi"; + libraryHaskellDepends = [ + base containers mergeful microlens mtl persistent + ]; + testHaskellDepends = [ + base containers genvalidity genvalidity-hspec genvalidity-mergeful + genvalidity-persistent hspec mergeful monad-logger mtl path path-io + persistent persistent-sqlite persistent-template QuickCheck text + validity validity-persistent + ]; + description = "Support for using mergeful from persistent-based databases"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {genvalidity-persistent = null; validity-persistent = null;}; + "mergeless" = callPackage ({ mkDerivation, aeson, base, containers, deepseq, mtl, validity , validity-containers @@ -165190,6 +166279,47 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mergeless_0_3_0_0" = callPackage + ({ mkDerivation, aeson, base, containers, deepseq, mtl, validity + , validity-containers + }: + mkDerivation { + pname = "mergeless"; + version = "0.3.0.0"; + sha256 = "14kgfh672fywvrjzb9kzhrnw10lxq44216rwniavn68abkg6yx94"; + libraryHaskellDepends = [ + aeson base containers deepseq mtl validity validity-containers + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mergeless-persistent" = callPackage + ({ mkDerivation, base, containers, genvalidity, genvalidity-hspec + , genvalidity-mergeless, genvalidity-persistent, hspec, mergeless + , microlens, monad-logger, mtl, path, path-io, persistent + , persistent-sqlite, persistent-template, QuickCheck, text + , validity + }: + mkDerivation { + pname = "mergeless-persistent"; + version = "0.0.0.0"; + sha256 = "0b75qs3f1vp4cab28j9znr83apzrsfx7i0p42nk42m5kn5vg2rzs"; + libraryHaskellDepends = [ + base containers mergeless microlens persistent + ]; + testHaskellDepends = [ + base containers genvalidity genvalidity-hspec genvalidity-mergeless + genvalidity-persistent hspec mergeless monad-logger mtl path + path-io persistent persistent-sqlite persistent-template QuickCheck + text validity + ]; + description = "Support for using mergeless from persistent-based databases"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {genvalidity-persistent = null;}; + "merkle-log" = callPackage ({ mkDerivation, base, bytestring, cereal, criterion, cryptonite , deepseq, exceptions, hash-tree, memory, merkle-tree, mwc-random @@ -166012,8 +167142,8 @@ self: { pname = "microstache"; version = "1.0.1.1"; sha256 = "0851sqr1ppdj6m822635pa3j6qzdf25gyrhkjs25zdry6518bsax"; - revision = "6"; - editedCabalFile = "054ny1rsqz682k4x36dqj6wqbj6arwxp75xpsss8lc7j145d0qn3"; + revision = "7"; + editedCabalFile = "05ia18kywpmk01sqnywflfq0ck3yivh8rc178f575py1zrdpn3l7"; libraryHaskellDepends = [ aeson base bytestring containers deepseq directory filepath parsec text transformers unordered-containers vector @@ -166303,6 +167433,28 @@ self: { broken = true; }) {}; + "mighty-metropolis_2_0_0" = callPackage + ({ mkDerivation, base, containers, foldl, hspec, kan-extensions + , mcmc-types, mwc-probability, mwc-random, pipes, primitive + , transformers + }: + mkDerivation { + pname = "mighty-metropolis"; + version = "2.0.0"; + sha256 = "0r1viswlggm6y7k3x5cvfmbly8jmk1ivhfp8vpgvkamxagzhkrk4"; + libraryHaskellDepends = [ + base kan-extensions mcmc-types mwc-probability pipes primitive + transformers + ]; + testHaskellDepends = [ + base containers foldl hspec mcmc-types mwc-probability mwc-random + ]; + description = "The Metropolis algorithm"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "mikmod" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -166698,8 +167850,8 @@ self: { }: mkDerivation { pname = "minilight-lua"; - version = "0.2.0.0"; - sha256 = "0q3w90rk7rlsy3p0iz91f3p7fsrbdsvirxq7xsb87hdbqxdwsavh"; + version = "0.2.1.0"; + sha256 = "0sxaj947qwbrlgph7byf8nxln0cmcg9sjyyp9pfn2lh7nkh8p75n"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -167188,15 +168340,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "miso_1_5_1_0" = callPackage + "miso_1_5_2_0" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, http-api-data , http-types, lucid, network-uri, servant, servant-lucid, text , transformers, vector }: mkDerivation { pname = "miso"; - version = "1.5.1.0"; - sha256 = "1vnpfqnkg89ax5znkppqnnp2dgmps2hwdyc05rph2xqvyg5wq9qd"; + version = "1.5.2.0"; + sha256 = "0lj0phl6zw7rqr60z06n0dmi6svsxky7krd4i88mfz0ypcvq582v"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -167225,8 +168377,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "miso-examples"; - version = "1.5.1.0"; - sha256 = "14zbzrh3rvqhpn0gd02wd1jdd40inlpy8v4a1qv1aq1c39ip2csb"; + version = "1.5.2.0"; + sha256 = "0qjppkz1fh5ygjdbjh4mymplxwy3rz01w047hyvx6ysyr4l0vnvg"; isLibrary = false; isExecutable = true; description = "A tasty Haskell front-end framework"; @@ -167241,8 +168393,8 @@ self: { }: mkDerivation { pname = "miso-from-html"; - version = "0.1.0.0"; - sha256 = "1bsa0xy1s9xnjam3arq2ngi6am5a4fzrrp8vlyh0ijniwm174x5k"; + version = "0.2.0.0"; + sha256 = "191qszlmgakpjdzg6k54kxg7c8v05jib66sk3w1aqc98j74f4yix"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -167554,6 +168706,8 @@ self: { pname = "mmark"; version = "0.0.7.2"; sha256 = "1wwszzba6fvg0r4q5z2dzashim0nkaxzx4rmjl216kdi08jkp7mm"; + revision = "1"; + editedCabalFile = "15mjdasllgy543ipfwapaf3r8lz6i9sxh9ry7xbs0j1gg81px6h6"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base case-insensitive containers deepseq dlist email-validate @@ -167580,8 +168734,8 @@ self: { pname = "mmark-cli"; version = "0.0.5.0"; sha256 = "15qrp2q1flx9csqvj8zx9w1jqg8pwfi0v7wpia7n7vg09jgydhby"; - revision = "2"; - editedCabalFile = "1kpxrf3gwcl0l8jqq3dic49705p338rcvach95vp1g1jjpwd8kbj"; + revision = "3"; + editedCabalFile = "03n7i551lagr4b6587c34ic6c4d9sn9kmnzkff2x1klqaxgb88ld"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -167655,8 +168809,8 @@ self: { }: mkDerivation { pname = "mmsyn4"; - version = "0.2.0.0"; - sha256 = "0915a1kh0sl9maq0i5hp6d87n19wihncx6sgm7wznfmzlvgs36qw"; + version = "0.4.0.0"; + sha256 = "0qfr2dlzigggbwgznh1sxxkp7qwvcba2rlhwdqs4rzaz53sx2xzj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -167724,16 +168878,20 @@ self: { }) {}; "mmsyn7l" = callPackage - ({ mkDerivation, base, directory, mmsyn2, mmsyn7ukr, vector }: + ({ mkDerivation, base, directory, mmsyn2, mmsyn3, mmsyn7ukr + , process, vector + }: mkDerivation { pname = "mmsyn7l"; - version = "0.4.3.0"; - sha256 = "0kr5aig2zgps846bx9psrci7hm35zdnaxbd5pm3ir1c7pxqf4csx"; + version = "0.5.0.0"; + sha256 = "0kf8ih56klg1c1r2dc6vspdaks1jlzssvzwxz1n8k6zcbyzz8qvc"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base directory mmsyn2 mmsyn7ukr vector ]; + libraryHaskellDepends = [ + base directory mmsyn2 mmsyn3 mmsyn7ukr process vector + ]; executableHaskellDepends = [ - base directory mmsyn2 mmsyn7ukr vector + base directory mmsyn2 mmsyn3 mmsyn7ukr process vector ]; description = "Modifies the amplitudes of the Ukrainian sounds representations created by mmsyn7ukr package"; license = stdenv.lib.licenses.mit; @@ -167759,8 +168917,8 @@ self: { }: mkDerivation { pname = "mmsyn7ukr"; - version = "0.15.4.0"; - sha256 = "0qiv2bc5aizpizmrjcsr2j6pi427xbk9pbgjyv4fr8mf7q3vcdjv"; + version = "0.15.5.0"; + sha256 = "1bpg1c8mvy51ycg1cx1haskidg3zzpdf29dpm8p2fk4bjc70v0w2"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -168436,10 +169594,8 @@ self: { }: mkDerivation { pname = "monad-chronicle"; - version = "1"; - sha256 = "03x19683pm99zcw7gkipmdkrqwaspcyvy7yv68nlh6g4swl31a0l"; - revision = "2"; - editedCabalFile = "0ajjcv8h6104k2xlzlqkhvy7hmv6p4ldca3jdsa9ns38sxy8j6ld"; + version = "1.0.0.1"; + sha256 = "1p9w9f5sw4adxxrgfba0vxs5kdhl82ibnwfqal7nrrhp3v86imbg"; libraryHaskellDepends = [ base data-default-class mtl semigroupoids these transformers transformers-compat @@ -169622,8 +170778,8 @@ self: { }: mkDerivation { pname = "monadic-recursion-schemes"; - version = "0.1.7.0"; - sha256 = "16smzgbachi31xr9pmps7habwfb5577i3s0c9x2a81zl5wg23p30"; + version = "0.1.11.0"; + sha256 = "0gi9g4vwd2wyff2gjjbjyd1hmx8hv55qmj6kl3c0f3mafxg5vfyj"; libraryHaskellDepends = [ base comonad containers free mtl recursion-schemes transformers ]; @@ -170347,8 +171503,8 @@ self: { pname = "months"; version = "0.1"; sha256 = "000fqmd5j3pxmfa5bpyk5fd0hbn9iq3g5v1slk4hrjdjm8k19wa0"; - revision = "2"; - editedCabalFile = "030d693d4acc3zlha2rjzalrqn8i5pyqkw0zdp3i1hjr0694hwaf"; + revision = "4"; + editedCabalFile = "0rww4x5c4a9n1yrs6ll1irwn1c1fm8s9k1zri3n2n1d6x75brny5"; libraryHaskellDepends = [ aeson attoparsec base base-compat cassava deepseq hashable http-api-data intervals lens lucid QuickCheck swagger2 text @@ -170521,8 +171677,8 @@ self: { }: mkDerivation { pname = "morley"; - version = "1.2.0"; - sha256 = "1id9sqh105p9b35g7rnk6x43h3h2d4v71bg13mz4gk5ny186d512"; + version = "1.3.0"; + sha256 = "1h0p9g2radwnpmq7ay5q2gd0xqaw1f1c51mzdv9xqpnbg2zp2w5b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170554,7 +171710,7 @@ self: { base-noprelude containers gauge megaparsec morley-prelude ]; description = "Developer tools for the Michelson Language"; - license = stdenv.lib.licenses.agpl3Plus; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {tezos-bake-monitor-lib = null;}; @@ -170614,25 +171770,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "morpheus-graphql_0_11_0" = callPackage + "morpheus-graphql_0_12_0" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, megaparsec - , mtl, scientific, tasty, tasty-hunit, template-haskell, text - , th-lift-instances, transformers, unliftio-core + , morpheus-graphql-core, mtl, scientific, tasty, tasty-hunit + , template-haskell, text, transformers, unliftio-core , unordered-containers, uuid, vector, websockets }: mkDerivation { pname = "morpheus-graphql"; - version = "0.11.0"; - sha256 = "1cwq1wa43df8d681x409ra9cnv9qfxb2wpbf6mm3fcbnkkaza351"; + version = "0.12.0"; + sha256 = "11f0niq2rv6kyrscl0dgi75vcxrz4vhy4yka2jxhrmx6klzi908p"; enableSeparateDataOutput = true; libraryHaskellDepends = [ - aeson base bytestring containers megaparsec mtl scientific - template-haskell text th-lift-instances transformers unliftio-core + aeson base bytestring containers megaparsec morpheus-graphql-core + mtl scientific template-haskell text transformers unliftio-core unordered-containers uuid vector websockets ]; testHaskellDepends = [ - aeson base bytestring containers megaparsec mtl scientific tasty - tasty-hunit template-haskell text th-lift-instances transformers + aeson base bytestring containers megaparsec morpheus-graphql-core + mtl scientific tasty tasty-hunit template-haskell text transformers unliftio-core unordered-containers uuid vector websockets ]; description = "Morpheus GraphQL"; @@ -170662,6 +171818,46 @@ self: { broken = true; }) {}; + "morpheus-graphql-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, morpheus-graphql-core + , mtl, template-haskell, text, transformers, unordered-containers + }: + mkDerivation { + pname = "morpheus-graphql-client"; + version = "0.12.0"; + sha256 = "15sqs0b86m55asj3rzpw52wcrnmlj6x99icx3b171q19i8wi8wh0"; + libraryHaskellDepends = [ + aeson base bytestring morpheus-graphql-core mtl template-haskell + text transformers unordered-containers + ]; + description = "Morpheus GraphQL Client"; + license = stdenv.lib.licenses.mit; + }) {}; + + "morpheus-graphql-core" = callPackage + ({ mkDerivation, aeson, base, bytestring, hashable, megaparsec + , scientific, tasty, tasty-hunit, template-haskell, text + , th-lift-instances, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "morpheus-graphql-core"; + version = "0.12.0"; + sha256 = "1ay37r73sqs5c8ixaz9mr9x1ps58jg4sgrlw5dmq7hkzy9993ccv"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base bytestring hashable megaparsec scientific + template-haskell text th-lift-instances transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring hashable megaparsec scientific tasty + tasty-hunit template-haskell text th-lift-instances transformers + unordered-containers vector + ]; + description = "Morpheus GraphQL Core"; + license = stdenv.lib.licenses.mit; + }) {}; + "morphisms" = callPackage ({ mkDerivation }: mkDerivation { @@ -171144,6 +172340,24 @@ self: { broken = true; }) {}; + "mprelude" = callPackage + ({ mkDerivation, base, devtools, source-constraints, text + , text-conversions + }: + mkDerivation { + pname = "mprelude"; + version = "0.1.0"; + sha256 = "0p7zx0b49dp2vd3mx3knfl9gqbh6sj2znc372bmh6ja57g1kv8ds"; + libraryHaskellDepends = [ + base source-constraints text text-conversions + ]; + testHaskellDepends = [ + base devtools source-constraints text text-conversions + ]; + description = "A minimalish prelude"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "mpretty" = callPackage ({ mkDerivation, ansi-terminal, base, containers, data-lens-fd , data-lens-template, mtl, orders, text, transformers @@ -173269,8 +174483,8 @@ self: { }: mkDerivation { pname = "musicScroll"; - version = "0.2.3.2"; - sha256 = "0xfjjmmf0w72x15dliaad00yi9x67xn4jfkijzdr310ppwr7j5bd"; + version = "0.2.3.3"; + sha256 = "029k470w8mkqjjan615pbdgzln0fbrcqnpwqhzcc3r79kz4yafzj"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -173281,7 +174495,7 @@ self: { ]; executableHaskellDepends = [ base ]; executablePkgconfigDepends = [ gtk3 ]; - description = "Supply your tunes info without leaving your music player."; + description = "Supply your tunes info without leaving your music player"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -173512,17 +174726,17 @@ self: { }) {}; "mutable-lens" = callPackage - ({ mkDerivation, base, checkers, doctest, lens, primitive, stm - , tasty, tasty-hunit, tasty-quickcheck + ({ mkDerivation, base, containers, doctest, lens, primitive, stm + , tasty, tasty-hunit, transformers }: mkDerivation { pname = "mutable-lens"; - version = "0.1.0.0"; - sha256 = "12biaarl37n953bzq7rndfy49s70jmxhvraf4pm1zxgyz2skwgdc"; + version = "0.4.0.0"; + sha256 = "14mywx7lh3yw8gfqy8h2hml2vr3vjfnxnvfvcg37kfskkfyaf6lm"; libraryHaskellDepends = [ base lens primitive stm ]; testHaskellDepends = [ - base checkers doctest lens primitive stm tasty tasty-hunit - tasty-quickcheck + base containers doctest lens primitive stm tasty tasty-hunit + transformers ]; description = "Interoperate mutable references with regular lens"; license = stdenv.lib.licenses.asl20; @@ -175604,8 +176818,8 @@ self: { }: mkDerivation { pname = "net-mqtt"; - version = "0.6.2.3"; - sha256 = "1z7lwlp8wjmy384ranzl2n8gv80ckgsg9h50qmr45l9zshcbdr8j"; + version = "0.7.0.1"; + sha256 = "0gfym6fv92afbv1b126bnviw3qh4m9dim9q046kbh4h5sxah61ab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -175628,14 +176842,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "net-mqtt-lens" = callPackage + ({ mkDerivation, base, HUnit, lens, net-mqtt, tasty, tasty-hunit + , tasty-quickcheck + }: + mkDerivation { + pname = "net-mqtt-lens"; + version = "0.1.0.0"; + sha256 = "1g0vvay4fdvr2n0hxi4w4av39wd70jgi3yixfx98xxydilw1v110"; + libraryHaskellDepends = [ base lens net-mqtt ]; + testHaskellDepends = [ + base HUnit lens net-mqtt tasty tasty-hunit tasty-quickcheck + ]; + description = "Optics for net-mqtt"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "net-mqtt-rpc" = callPackage ({ mkDerivation, base, bytestring, exceptions, net-mqtt , network-uri, optparse-applicative, random, stm, text, uuid }: mkDerivation { pname = "net-mqtt-rpc"; - version = "0.1.2.0"; - sha256 = "035ry63b432gy487bx9fsb7b9ql75a70ss74lrd7aby5iw8nhibl"; + version = "0.1.2.1"; + sha256 = "01qkix666jh7yvm0gl195brjbi8yw06nnp86iksahvch2bnsz9ax"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176454,18 +177684,6 @@ self: { }) {}; "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, doctest }: - mkDerivation { - pname = "network-byte-order"; - version = "0.1.4.0"; - sha256 = "1wm59kdvxcjhsl1y1ajmj8w8nq6qdvin6933n374za39lhkb13f9"; - libraryHaskellDepends = [ base bytestring ]; - testHaskellDepends = [ base bytestring doctest ]; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "network-byte-order_0_1_5" = callPackage ({ mkDerivation, base, bytestring, doctest }: mkDerivation { pname = "network-byte-order"; @@ -176475,7 +177693,6 @@ self: { testHaskellDepends = [ base bytestring doctest ]; description = "Network byte order utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-bytestring" = callPackage @@ -177514,6 +178731,7 @@ self: { ]; description = "Haskell meets Zettelkasten, for your plain-text delight"; license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "newhope" = callPackage @@ -178189,8 +179407,8 @@ self: { }: mkDerivation { pname = "nix-derivation"; - version = "1.1.0"; - sha256 = "09r1818j838a6mzgsqsvf7a98l3h0v7vqrnmimvycaaxri3rxmhz"; + version = "1.1.1"; + sha256 = "1jcgq7c0x6q33ddq3ns4w69z23r31cvb2qxj04v2pyd5v8rwls9d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -179965,6 +181183,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "numhask_0_5_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "numhask"; + version = "0.5.0"; + sha256 = "0lqwpa3kmgphimy48asi6dxa1mhkjkjvn2bsy1sl5mkf2y93gwrb"; + libraryHaskellDepends = [ base ]; + description = "numeric classes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "numhask-array" = callPackage ({ mkDerivation, adjunctions, base, deepseq, distributive, doctest , hedgehog, hmatrix, numhask, numhask-hedgehog, numhask-prelude @@ -179972,8 +181202,8 @@ self: { }: mkDerivation { pname = "numhask-array"; - version = "0.5.1"; - sha256 = "1nrk6j4kw0l09b8f7k3sx47ri6i1vy5qygl9zbhhdz8z75s0fzn8"; + version = "0.6.0"; + sha256 = "1pi9rp6j27pbh4ijbzhazznmyz2079b4h1p3sbnsn09bj35zh7z3"; libraryHaskellDepends = [ adjunctions base deepseq distributive hmatrix numhask numhask-prelude protolude vector @@ -179993,8 +181223,8 @@ self: { }: mkDerivation { pname = "numhask-hedgehog"; - version = "0.3.2"; - sha256 = "1cfvkq5v88d8zhkj8bgn18hmlg52nsprvrmyan9ndxppyzljphan"; + version = "0.4.0"; + sha256 = "1h09mnabmvknlj568hhsnwdlqg7rwvwsc1vnmw2y500266x6gvg3"; libraryHaskellDepends = [ base hedgehog numhask numhask-prelude numhask-space ]; @@ -180027,8 +181257,8 @@ self: { ({ mkDerivation, base, doctest, numhask, protolude }: mkDerivation { pname = "numhask-prelude"; - version = "0.3.3"; - sha256 = "0r9qf3yrm0lf1jhiyhvgsfc8zyfsllc8xmjwdqx2vsn9vy15p7aw"; + version = "0.5.0"; + sha256 = "19g4jlnif6pz8giyygin8p1s5i0qzwjlr43qy6y8dv4j5dp5qri2"; libraryHaskellDepends = [ base numhask protolude ]; testHaskellDepends = [ doctest ]; description = "A numeric prelude"; @@ -180061,14 +181291,15 @@ self: { "numhask-space" = callPackage ({ mkDerivation, adjunctions, base, containers, distributive - , doctest, foldl, lattices, semigroupoids, tdigest, text, time + , doctest, foldl, lattices, protolude, semigroupoids, tdigest, text + , time }: mkDerivation { pname = "numhask-space"; - version = "0.3.1"; - sha256 = "0phvn46cnf2ffia703k3lsxv32n8mzcjx1szm9qic1nd6k8wrnv7"; + version = "0.4.0"; + sha256 = "0p7pr314wm9mqmsn2jwxpr4z7dplb9nq7rih7c3qxc01lla3i59j"; libraryHaskellDepends = [ - adjunctions base containers distributive foldl lattices + adjunctions base containers distributive foldl lattices protolude semigroupoids tdigest text time ]; testHaskellDepends = [ base doctest ]; @@ -180872,45 +182103,48 @@ self: { "odd-jobs" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , direct-daemonize, directory, either, fast-logger, filepath - , foreign-store, friendly-time, hedgehog, hostname, lifted-async - , lifted-base, lucid, mmorph, monad-control, monad-logger, mtl - , optparse-applicative, postgresql-simple, random, resource-pool - , safe, servant, servant-lucid, servant-server, string-conv, tasty + , foreign-store, friendly-time, generic-deriving, hedgehog + , hostname, lifted-async, lifted-base, lucid, mmorph, monad-control + , monad-logger, mtl, optparse-applicative, postgresql-simple + , random, resource-pool, safe, servant, servant-lucid + , servant-server, servant-static-th, string-conv, tasty , tasty-discover, tasty-hedgehog, tasty-hunit, text , text-conversions, time, timing-convenience, unix, unliftio - , unliftio-core, unordered-containers, warp + , unliftio-core, unordered-containers, wai, warp }: mkDerivation { pname = "odd-jobs"; - version = "0.1.0"; - sha256 = "0l1b63j76a8rbhligj7s282bzrw2dgb7jv8cki1a7ss0v58k3c4s"; + version = "0.2.1"; + sha256 = "0s0sjy91pq7lqhc75cf6z478b956af7af2959g9qaa879vw9bx2k"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base bytestring direct-daemonize directory either fast-logger - filepath friendly-time hostname lucid monad-control monad-logger - mtl optparse-applicative postgresql-simple resource-pool safe - servant servant-lucid servant-server string-conv text - text-conversions time timing-convenience unix unliftio - unliftio-core unordered-containers warp + filepath friendly-time generic-deriving hostname lucid + monad-control monad-logger mtl optparse-applicative + postgresql-simple resource-pool safe servant servant-lucid + servant-server servant-static-th string-conv text text-conversions + time timing-convenience unix unliftio unliftio-core + unordered-containers wai warp ]; executableHaskellDepends = [ aeson base bytestring direct-daemonize directory either fast-logger - filepath foreign-store friendly-time hostname lucid monad-control - monad-logger mtl optparse-applicative postgresql-simple - resource-pool safe servant servant-lucid servant-server string-conv - text text-conversions time timing-convenience unix unliftio - unliftio-core unordered-containers warp + filepath foreign-store friendly-time generic-deriving hostname + lucid monad-control monad-logger mtl optparse-applicative + postgresql-simple resource-pool safe servant servant-lucid + servant-server servant-static-th string-conv text text-conversions + time timing-convenience unix unliftio unliftio-core + unordered-containers wai warp ]; testHaskellDepends = [ aeson base bytestring containers direct-daemonize directory either - fast-logger filepath friendly-time hedgehog hostname lifted-async - lifted-base lucid mmorph monad-control monad-logger mtl - optparse-applicative postgresql-simple random resource-pool safe - servant servant-lucid servant-server string-conv tasty - tasty-discover tasty-hedgehog tasty-hunit text text-conversions - time timing-convenience unix unliftio unliftio-core - unordered-containers warp + fast-logger filepath friendly-time generic-deriving hedgehog + hostname lifted-async lifted-base lucid mmorph monad-control + monad-logger mtl optparse-applicative postgresql-simple random + resource-pool safe servant servant-lucid servant-server + servant-static-th string-conv tasty tasty-discover tasty-hedgehog + tasty-hunit text text-conversions time timing-convenience unix + unliftio unliftio-core unordered-containers wai warp ]; testToolDepends = [ tasty-discover ]; description = "A full-featured PostgreSQL-backed job queue (with an admin UI)"; @@ -181504,15 +182738,15 @@ self: { }) {}; "online" = callPackage - ({ mkDerivation, base, doctest, foldl, tasty, tdigest, vector - , vector-algorithms + ({ mkDerivation, backprop, base, doctest, foldl, tasty, tdigest + , vector, vector-algorithms }: mkDerivation { pname = "online"; - version = "0.4.0.0"; - sha256 = "1vb9x90qzmqjydxjcn06gz5lfikwrx73jkkhmqdd5vxmzzj36spz"; + version = "0.5.0"; + sha256 = "1z7b2aq0zmd65qdi3s6hq17svkw2v62bap586za6kvnbq8fz5cys"; libraryHaskellDepends = [ - base foldl tdigest vector vector-algorithms + backprop base foldl tdigest vector vector-algorithms ]; testHaskellDepends = [ base doctest tasty ]; description = "online statistics"; @@ -181615,6 +182849,8 @@ self: { pname = "opaleye"; version = "0.6.7004.2"; sha256 = "0lmfpbrfy6l7nlkjn26smmv3n992b54xnplwm67jjpryaz7psdz1"; + revision = "1"; + editedCabalFile = "1gnig6gdpcz6zkzp9x97m9blhgha2z4ksd9pyqpvm6qrdsjpqsfp"; libraryHaskellDepends = [ aeson base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -181911,6 +183147,42 @@ self: { broken = true; }) {}; + "openapi3-code-generator" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, genvalidity, genvalidity-hspec, genvalidity-text + , hashmap, hspec, http-client, http-conduit, http-types, mtl + , options, QuickCheck, scientific, split, template-haskell, text + , time, transformers, unordered-containers, validity, validity-text + , vector, yaml + }: + mkDerivation { + pname = "openapi3-code-generator"; + version = "0.1.0.4"; + sha256 = "1bfqw6fpvprwg7132ccxy2hksjbh5s9zcv18blc4q855hc4zzbp5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers hashmap http-client http-conduit + http-types mtl options scientific split template-haskell text time + transformers unordered-containers vector yaml + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory filepath hashmap + http-client http-conduit http-types mtl options scientific split + template-haskell text time transformers unordered-containers vector + yaml + ]; + testHaskellDepends = [ + aeson base bytestring containers genvalidity genvalidity-hspec + genvalidity-text hashmap hspec http-client http-conduit http-types + mtl options QuickCheck scientific split template-haskell text time + transformers unordered-containers validity validity-text vector + yaml + ]; + description = "OpenAPI3 Haskell Client Code Generator"; + license = stdenv.lib.licenses.mit; + }) {}; + "opench-meteo" = callPackage ({ mkDerivation, aeson, base, data-default, text, time }: mkDerivation { @@ -182395,12 +183667,12 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; - "opentelemetry_0_4_0" = callPackage + "opentelemetry_0_4_2" = callPackage ({ mkDerivation, base, bytestring, exceptions }: mkDerivation { pname = "opentelemetry"; - version = "0.4.0"; - sha256 = "1wp6r6625qangiw3lk2nj64khbb0jnp7rxb8s78q37icpdax9ck8"; + version = "0.4.2"; + sha256 = "12myg932dpf6zz38ahf9dmx449dkp9kf9pi79j8bdlz4v2fl3jzj"; libraryHaskellDepends = [ base bytestring exceptions ]; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -182410,14 +183682,15 @@ self: { ({ mkDerivation, aeson, async, base, bytestring, clock, containers , directory, exceptions, filepath, ghc-events, hashable , http-client, http-client-tls, http-types, opentelemetry - , QuickCheck, random, scientific, splitmix, stm, tasty - , tasty-discover, tasty-hunit, tasty-quickcheck, text, text-show - , typed-process, unordered-containers + , optparse-applicative, process, QuickCheck, random, scientific + , splitmix, stm, tasty, tasty-discover, tasty-hunit + , tasty-quickcheck, text, text-show, typed-process + , unordered-containers }: mkDerivation { pname = "opentelemetry-extra"; - version = "0.4.0"; - sha256 = "07bzs9nz6hmy2cqa84wi3vbhfz0l6da5w5ihzmajxi7b2w940h0r"; + version = "0.4.2"; + sha256 = "1qr2pz08n7kqx5jcyxhfwrsqlw7lbkkjbrm0fdj5mxykwznqidb8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182428,7 +183701,7 @@ self: { ]; executableHaskellDepends = [ async base clock exceptions filepath http-client http-client-tls - opentelemetry text typed-process + opentelemetry optparse-applicative process text typed-process ]; testHaskellDepends = [ base bytestring ghc-events hashable opentelemetry QuickCheck tasty @@ -182465,8 +183738,8 @@ self: { }: mkDerivation { pname = "opentelemetry-lightstep"; - version = "0.4.0"; - sha256 = "13glzxw93nx7gxqyisn7ikg2g9gl19mapl75p13binhip5ygcvpd"; + version = "0.4.2"; + sha256 = "1srzm9d4sc9rgfgq2yyfn5avs9n8bjx9mhz124dhkn3j361sr5g2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182490,8 +183763,8 @@ self: { }: mkDerivation { pname = "opentelemetry-wai"; - version = "0.4.0"; - sha256 = "00nvclimx6jh8sa3hfdrfag8sa29yqqknfqh3sg37sh0fbcqghjg"; + version = "0.4.2"; + sha256 = "01jim0634pzf49l18s7512y7a3dkjpif492k6a5j81jg1nylkm1a"; libraryHaskellDepends = [ base bytestring http-types opentelemetry text wai ]; @@ -182861,25 +184134,25 @@ self: { "opml-conduit" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, conduit - , conduit-combinators, containers, data-default, lens-simple - , monoid-subclasses, mtl, parsers, QuickCheck, quickcheck-instances - , refined, resourcet, safe-exceptions, semigroups, tasty - , tasty-hunit, tasty-quickcheck, text, time, timerep - , uri-bytestring, xml-conduit, xml-types + , conduit-combinators, containers, data-default, microlens + , microlens-th, monoid-subclasses, mtl, parsers, QuickCheck + , quickcheck-instances, refined, resourcet, safe-exceptions + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text, time + , timerep, uri-bytestring, xml-conduit, xml-types }: mkDerivation { pname = "opml-conduit"; - version = "0.7.0.0"; - sha256 = "126w0fcvx59812001dypfhfzd0mglj0dccdi2k25mzf27vdwfwpf"; + version = "0.8.0.0"; + sha256 = "08j6hm605km4j3w9n8mbwlzhz8avy3m941wgr9rp5dfkasi3s9p3"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base case-insensitive conduit conduit-combinators containers - lens-simple monoid-subclasses refined safe-exceptions semigroups - text time timerep uri-bytestring xml-conduit xml-types + microlens microlens-th monoid-subclasses refined safe-exceptions + semigroups text time timerep uri-bytestring xml-conduit xml-types ]; testHaskellDepends = [ base bytestring conduit conduit-combinators containers data-default - lens-simple mtl parsers QuickCheck quickcheck-instances refined + microlens mtl parsers QuickCheck quickcheck-instances refined resourcet semigroups tasty tasty-hunit tasty-quickcheck text time uri-bytestring xml-conduit ]; @@ -183401,6 +184674,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "orbits" = callPackage + ({ mkDerivation, ad, base, Cabal, cabal-doctest, checkers, doctest + , exact-real, QuickCheck, random, tagged, tasty, tasty-quickcheck + , tasty-th, units, units-defs + }: + mkDerivation { + pname = "orbits"; + version = "0.3"; + sha256 = "1hidsx5is68mi13l3yhvfidk9l1a4mcyj52im1bzqdp916ik05k1"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ ad base exact-real units units-defs ]; + testHaskellDepends = [ + ad base checkers doctest exact-real QuickCheck random tagged tasty + tasty-quickcheck tasty-th units units-defs + ]; + description = "Types and functions for Kepler orbits"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "orc" = callPackage ({ mkDerivation, base, deepseq, monadIO, mtl, process, random, stm }: @@ -183858,15 +185152,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ormolu_0_0_5_0" = callPackage + "ormolu_0_1_0_0" = callPackage ({ mkDerivation, base, bytestring, containers, dlist, exceptions , filepath, ghc-lib-parser, gitrev, hspec, hspec-discover, mtl , optparse-applicative, path, path-io, syb, text }: mkDerivation { pname = "ormolu"; - version = "0.0.5.0"; - sha256 = "1sf22silpj89sldd7wanlr34nsv77bq0cf4i0q1x2r20pz7s4w4m"; + version = "0.1.0.0"; + sha256 = "1wpdj04hpnkk60swhx9d9cyazkgkjn2kkzmix7q1mil7hq23ynnp"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -185026,8 +186320,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.3.6.2"; - sha256 = "055dfbirs3n99crzg9bfnxs96bsfzz6hqjj743dkrvjqmq1qlqc5"; + version = "0.3.6.3"; + sha256 = "1528cn5phcsc2x3h69p64sm7jap34ca3dsdh5qw2jx1vmgn42mi5"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -185320,26 +186614,27 @@ self: { broken = true; }) {}; - "pandoc-plot_0_3_0_0" = callPackage - ({ mkDerivation, base, containers, data-default-class, deepseq - , directory, filepath, hashable, hspec, hspec-expectations, mtl - , open-browser, optparse-applicative, pandoc, pandoc-types - , parallel-io, shakespeare, tasty, tasty-hspec, tasty-hunit - , template-haskell, temporary, text, turtle, typed-process, yaml + "pandoc-plot_0_5_0_0" = callPackage + ({ mkDerivation, async, base, bytestring, containers, criterion + , data-default-class, deepseq, directory, filepath, githash + , hashable, hspec, hspec-expectations, mtl, open-browser + , optparse-applicative, pandoc, pandoc-types, shakespeare, tasty + , tasty-hspec, tasty-hunit, template-haskell, temporary, text + , turtle, typed-process, yaml }: mkDerivation { pname = "pandoc-plot"; - version = "0.3.0.0"; - sha256 = "143kr0s4p155apnspjjkv3xc7ffm6vl4bvifyr8rl72yk0lx81ac"; + version = "0.5.0.0"; + sha256 = "1wgk3q46am59if4b5s6pkabllsyy4xv47zs5h1lywdij3g4r4898"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers data-default-class directory filepath hashable mtl - pandoc pandoc-types parallel-io shakespeare temporary text turtle - typed-process yaml + async base bytestring containers data-default-class directory + filepath hashable mtl pandoc pandoc-types shakespeare temporary + text turtle typed-process yaml ]; executableHaskellDepends = [ - base data-default-class deepseq directory filepath open-browser + base deepseq directory filepath githash open-browser optparse-applicative pandoc pandoc-types template-haskell temporary text ]; @@ -185347,6 +186642,9 @@ self: { base data-default-class directory filepath hspec hspec-expectations mtl pandoc-types tasty tasty-hspec tasty-hunit temporary text ]; + benchmarkHaskellDepends = [ + base criterion pandoc-types template-haskell text + ]; description = "A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -185456,6 +186754,23 @@ self: { broken = true; }) {}; + "pandoc-utils" = callPackage + ({ mkDerivation, base, containers, data-default, pandoc + , pandoc-types, tasty, tasty-hspec, text, transformers + }: + mkDerivation { + pname = "pandoc-utils"; + version = "0.7.1"; + sha256 = "1951zgn6bgkg4xpnz76g93y3hxxx0v1jav5gr0m84gb6nadjg17m"; + libraryHaskellDepends = [ base pandoc-types text ]; + testHaskellDepends = [ + base containers data-default pandoc pandoc-types tasty tasty-hspec + text transformers + ]; + description = "Utility functions to work with Pandoc in Haskell applications"; + license = stdenv.lib.licenses.mit; + }) {}; + "pandoc-vimhl" = callPackage ({ mkDerivation, base, cond, directory, filepath, pandoc-types , process, regex-compat, temporary, text @@ -185478,8 +186793,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "pandora"; - version = "0.2.7"; - sha256 = "1fagym17jg4df445d8jr2lc52rx9irmnz7kv4g236py311z7bmbq"; + version = "0.2.8"; + sha256 = "0p556y2a54zmmdr6gnlkjb8xjcyibcr8vvlk3krwqc4zkr6rwv0s"; description = "A box of patterns and paradigms"; license = stdenv.lib.licenses.mit; }) {}; @@ -186435,8 +187750,8 @@ self: { }: mkDerivation { pname = "parameterized-utils"; - version = "2.0.2"; - sha256 = "0xmml1jzxv7921dc5n3ppw8yf5vn58c19c95kcy8zaqn86vmj1iz"; + version = "2.1.0"; + sha256 = "0jfl75a1282lb50v1jw3ghmnwp1fp0fmwgj46lw87rm6vc2qlzhb"; libraryHaskellDepends = [ base base-orphans constraints containers deepseq ghc-prim hashable hashtables lens mtl template-haskell text th-abstraction vector @@ -187256,8 +188571,8 @@ self: { ({ mkDerivation, base, doctest, hedgehog }: mkDerivation { pname = "partial-semigroup"; - version = "0.5.1.4"; - sha256 = "1szzggr0j52cn6n7j288kh5rma6g8vpjr4dwfmwrhz2jsn4ag9hh"; + version = "0.5.1.6"; + sha256 = "11y3ygfwk8761xkpgj5bqga48h18szh9vv7qrgll7wkq51an415h"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest hedgehog ]; description = "A partial binary associative operator"; @@ -187270,8 +188585,8 @@ self: { ({ mkDerivation, base, hedgehog, partial-semigroup }: mkDerivation { pname = "partial-semigroup-hedgehog"; - version = "0.6.0.4"; - sha256 = "0ijmaj8zkcqikm2jr749n8pqcbf2g05bqpdmvljd1q18vydwxx6q"; + version = "0.6.0.6"; + sha256 = "0n0j8xlrz66mzkvrsa083b9057n3rgbir7pwqxqycwzgj18g68s6"; libraryHaskellDepends = [ base hedgehog partial-semigroup ]; description = "Property testing for partial semigroups using Hedgehog"; license = stdenv.lib.licenses.asl20; @@ -187440,7 +188755,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "password_2_0_1_0" = callPackage + "password_2_0_1_1" = callPackage ({ mkDerivation, base, base-compat, base64, bytestring, Cabal , cabal-doctest, cryptonite, doctest, memory, QuickCheck , quickcheck-instances, scrypt, tasty, tasty-quickcheck @@ -187448,8 +188763,8 @@ self: { }: mkDerivation { pname = "password"; - version = "2.0.1.0"; - sha256 = "1f4bzjhpvxp3ms0nnh04g91wd77l09hvp1m7l6clc51frflh3j04"; + version = "2.0.1.1"; + sha256 = "1fi39w79p7jaw85i5r8f4flw7s1n2ljxj5ci9gda6a556015w1p8"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base base64 bytestring cryptonite memory text @@ -187699,6 +189014,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "path_0_8_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions + , filepath, genvalidity, genvalidity-hspec, genvalidity-property + , hashable, hspec, mtl, QuickCheck, template-haskell, text + , validity + }: + mkDerivation { + pname = "path"; + version = "0.8.0"; + sha256 = "0vzsa41q5sxs1ni72yv1vfpnc6r5mjdwnmdb6jrs6cszb2xlkjr4"; + libraryHaskellDepends = [ + aeson base deepseq exceptions filepath hashable template-haskell + text + ]; + testHaskellDepends = [ + aeson base bytestring filepath genvalidity genvalidity-hspec + genvalidity-property hspec mtl QuickCheck template-haskell validity + ]; + description = "Support for well-typed paths"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "path-extra" = callPackage ({ mkDerivation, attoparsec, base, path, QuickCheck , quickcheck-instances, tasty, tasty-quickcheck, text @@ -187757,8 +189095,8 @@ self: { ({ mkDerivation, base, bytestring, path, safe-exceptions, text }: mkDerivation { pname = "path-text-utf8"; - version = "0.0.1.4"; - sha256 = "1nc9favrfr5xxk45rq77zf574m79p5qv3lrngl8yfxdzhbi4q8ld"; + version = "0.0.1.6"; + sha256 = "0zlmmfjzjgnhscy8852gi67hq8xl9j05c53faf599cqa6c71ry11"; libraryHaskellDepends = [ base bytestring path safe-exceptions text ]; @@ -187929,10 +189267,8 @@ self: { }: mkDerivation { pname = "pattern-trie"; - version = "0.1.0"; - sha256 = "1ldy1b81sryngf4rlfsw3f2qw0cirjnbvddvw98wrl2m50wzdmlg"; - revision = "1"; - editedCabalFile = "1v9f28gpns5v646hdzn7xfimq2v0sx3rws56r7lfh1qgcfdavy9f"; + version = "0.1.1"; + sha256 = "1iyy500rdmfvw0n2k7v27w21i6hqk4hrmnxf7kq52s7g2mwl72di"; libraryHaskellDepends = [ base bytestring containers deepseq hashable text unordered-containers @@ -188558,6 +189894,22 @@ self: { broken = true; }) {}; + "pdftotext" = callPackage + ({ mkDerivation, base, bytestring, hspec, hspec-discover + , poppler-cpp, text + }: + mkDerivation { + pname = "pdftotext"; + version = "0.0.1.0"; + sha256 = "1agxbrcpsw8s0qsv6i0vxvzvskzn5abd42l7ab2na75v9fs8p4l8"; + libraryHaskellDepends = [ base bytestring text ]; + libraryPkgconfigDepends = [ poppler-cpp ]; + testHaskellDepends = [ base hspec text ]; + testToolDepends = [ hspec-discover ]; + description = "Extracts text from PDF using poppler"; + license = stdenv.lib.licenses.bsd3; + }) {poppler-cpp = null;}; + "pdynload" = callPackage ({ mkDerivation, base, directory, filepath, ghc, ghc-paths , old-time, process @@ -189050,8 +190402,8 @@ self: { }: mkDerivation { pname = "perf"; - version = "0.5.0.0"; - sha256 = "1qbsk523xq27fww7bzd6zcj117630sji9szw3g3d75pbw4x5i5nl"; + version = "0.6.0"; + sha256 = "1cn2f3hisw5r99m459zalcgfgdr54f8wsp1wlg48jjvgvsx5dj0k"; libraryHaskellDepends = [ base containers deepseq foldl rdtsc text time transformers ]; @@ -189063,22 +190415,22 @@ self: { }) {}; "perf-analysis" = callPackage - ({ mkDerivation, base, containers, deepseq, formatting - , optparse-generic, perf, protolude, readme-lhs, scientific - , tdigest, text, vector + ({ mkDerivation, base, containers, deepseq, optparse-generic, perf + , protolude, readme-lhs, scientific, tdigest, text, text-format + , vector }: mkDerivation { pname = "perf-analysis"; - version = "0.2.0.0"; - sha256 = "1dnanink5j2dhqh91dmvrw42n7b1cfrbwglp7yikabwg9888nmax"; + version = "0.3.0"; + sha256 = "1c591c5i732ld3giip56b9rccgrfjlrnnx6zrxfmg33anhyjwsi6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base formatting perf protolude readme-lhs scientific tdigest text + base perf protolude readme-lhs scientific tdigest text text-format ]; executableHaskellDepends = [ - base containers deepseq formatting optparse-generic perf protolude - readme-lhs text vector + base containers deepseq optparse-generic perf protolude readme-lhs + text vector ]; description = "analysis example using perf"; license = stdenv.lib.licenses.bsd3; @@ -189296,23 +190648,6 @@ self: { }) {}; "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, QuickCheck - , test-framework, test-framework-quickcheck2, text - }: - mkDerivation { - pname = "persist"; - version = "0.1.1.4"; - sha256 = "0g15l5fqzw30hsrc58hmgz5vbw8bfbgin7gi2dwahc98k8i0gxd4"; - libraryHaskellDepends = [ base bytestring containers text ]; - testHaskellDepends = [ - base bytestring QuickCheck test-framework - test-framework-quickcheck2 text - ]; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "persist_0_1_1_5" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , test-framework, test-framework-quickcheck2, text }: @@ -189327,7 +190662,6 @@ self: { ]; description = "Minimal serialization library with focus on performance"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persist2er" = callPackage @@ -191284,6 +192618,8 @@ self: { pname = "pinch"; version = "0.3.5.0"; sha256 = "0bw7pfywa9qr6mrs340znqgzhg9yy8brh6v833wvk87sxjs8psdv"; + revision = "1"; + editedCabalFile = "1pl6cymb93lpjqsll87y7avwrw2w5k237gyyhqr05yfcsrjky8rp"; libraryHaskellDepends = [ array base bytestring containers deepseq ghc-prim hashable semigroups text unordered-containers vector @@ -192080,6 +193416,8 @@ self: { pname = "pipes-http"; version = "1.0.6"; sha256 = "00579dpb7mh8nli5gfr100w0mrn6nvqhbj50qzxc2m5cvw4gncd2"; + revision = "1"; + editedCabalFile = "1xaqygyzm0i7fg24mipngg4j258yqsrnp0wjgkl16syqsn387h8c"; libraryHaskellDepends = [ base bytestring http-client http-client-tls pipes ]; @@ -192110,6 +193448,8 @@ self: { pname = "pipes-interleave"; version = "1.1.3"; sha256 = "05g8kl88f55pxb3926fa81qd0a2lc1xdzv36jmm67sc68prr71za"; + revision = "1"; + editedCabalFile = "06vg9vlczmmlpvqnnwn12kyb9c741y50hl8ky0vvdlkwlb90zncq"; libraryHaskellDepends = [ base containers heaps pipes ]; description = "Interleave and merge streams of elements"; license = stdenv.lib.licenses.bsd3; @@ -192192,18 +193532,16 @@ self: { }) {}; "pipes-lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, pipes, pipes-bytestring - , QuickCheck + ({ mkDerivation, base, bytestring, exceptions, lzma, pipes + , pipes-bytestring, QuickCheck }: mkDerivation { pname = "pipes-lzma"; - version = "0.1.1.2"; - sha256 = "0wx23wf1vr8d2nyapxgmpn1jk53hjbla1xss714vkmar7am37vrc"; - revision = "1"; - editedCabalFile = "13nyh3qqv3baifya0vwnnqh1yvr3k2yjrhjq7apigq0s584iyrka"; + version = "0.2.0.0"; + sha256 = "1b1xnjq1bvp14rl0lvzfxkckvwsihmq0j61wbmx1k0vqjy2b350m"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base bytestring lzma pipes ]; + libraryHaskellDepends = [ base bytestring exceptions lzma pipes ]; executableHaskellDepends = [ base pipes pipes-bytestring ]; testHaskellDepends = [ base bytestring pipes pipes-bytestring QuickCheck @@ -193470,6 +194808,8 @@ self: { pname = "plots"; version = "0.1.1.2"; sha256 = "01w56qhyw8w6g8xffrvkp7d6k8l4w9as8v900v29jaq7gz680fhs"; + revision = "1"; + editedCabalFile = "1qipj4sf4rfpzbqyiwqsq822n27r7ksqyg8qw9zc4l6zcgq5bsa1"; libraryHaskellDepends = [ adjunctions base base-orphans colour containers data-default diagrams-core diagrams-lib directory distributive filepath @@ -193628,8 +194968,8 @@ self: { }: mkDerivation { pname = "plzwrk"; - version = "0.0.0.9"; - sha256 = "0wszr36ypaig8bijhn7v0d487vas423whrkxsv5q5l2xganr05cp"; + version = "0.0.0.10"; + sha256 = "1735dxhqyq0jf2vyh5zb7xwxiqqhx3jgys8fqj97j9m97g0ybdg3"; libraryHaskellDepends = [ aeson base bytestring containers hashable haskell-src-meta mtl parsec split template-haskell text transformers @@ -194663,8 +196003,8 @@ self: { }: mkDerivation { pname = "pontarius-xmpp"; - version = "0.5.6"; - sha256 = "0r4q8vsl4a51dgfqzgi3ljndiw9k9yr4561prck1nzxbcl2d7c70"; + version = "0.5.6.2"; + sha256 = "0r3wcvwfxrf7h8wz5n397vamf3nyvwp1i4mxbimrw0jga3vizxx2"; setupHaskellDepends = [ base Cabal filepath ]; libraryHaskellDepends = [ attoparsec base base64-bytestring binary bytestring conduit @@ -194818,17 +196158,17 @@ self: { "popkey" = callPackage ({ mkDerivation, base, bitvec, bytestring, containers, hspec , hspec-discover, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, profunctors, QuickCheck, store, text, vector + , hw-rankselect-base, QuickCheck, store, text, vector }: mkDerivation { pname = "popkey"; - version = "0.0.0.1"; - sha256 = "1gplzbbj6whmxchxr78zv32ixlf79sjgdz950jixl7z9p5pdrki7"; + version = "0.1.0.0"; + sha256 = "1fx7qsc5kl3iq013kgdjhz0crzh7kiffqq1aj14fxlhjyp8k8v6m"; libraryHaskellDepends = [ base bitvec bytestring containers hw-bits hw-prim hw-rankselect - hw-rankselect-base profunctors store text vector + hw-rankselect-base store text vector ]; - testHaskellDepends = [ base containers hspec QuickCheck ]; + testHaskellDepends = [ base containers hspec QuickCheck store ]; testToolDepends = [ hspec-discover ]; description = "Static key-value storage backed by poppy"; license = stdenv.lib.licenses.mit; @@ -195458,8 +196798,8 @@ self: { }: mkDerivation { pname = "postgres-websockets"; - version = "0.6.0.0"; - sha256 = "0m9fypc216qcsx596sizgxjv30w08fpfpjglmcias88ri4n3ggy5"; + version = "0.6.1.1"; + sha256 = "18lsn8c4nd4rw3df9g5w684f7ggrxq9a3calj1ipqz1nf50mwbqx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -195470,7 +196810,8 @@ self: { ]; executableHaskellDepends = [ base base64-bytestring bytestring envparse hasql hasql-pool - protolude text time transformers wai wai-app-static wai-extra warp + http-types protolude text time transformers wai wai-app-static + wai-extra warp ]; testHaskellDepends = [ aeson base containers hasql hasql-notifications hasql-pool hspec @@ -195803,8 +197144,8 @@ self: { pname = "postgresql-simple"; version = "0.6.2"; sha256 = "15pkflx48mgv4fjmnagyfh06q065k8m8c98bysc3gm6m4srz5ypv"; - revision = "3"; - editedCabalFile = "0wngpd4187sfz2jhpnnrycfvpd1irz2m798p515mn1ryg1ywmhbr"; + revision = "4"; + editedCabalFile = "03s0cbwqgkvzr1wkan7icfjb9qlz95pbs3pqv2mkpf117m3y1yb0"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable Only postgresql-libpq @@ -196106,8 +197447,8 @@ self: { }: mkDerivation { pname = "postgrest"; - version = "7.0.0"; - sha256 = "03iya4w39qp25ms8m58mw6pvlriw80h6rdg1cb7az7353m2ndzys"; + version = "7.0.1"; + sha256 = "1cn69dinfv3y8ymsa364b9b0ly3dg80and902gamymb9v89jpsgf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -199065,8 +200406,8 @@ self: { }: mkDerivation { pname = "project-m36"; - version = "0.7"; - sha256 = "1ahvnyrg28r16rw982bpawrmiikc121z7358y3gxzqxnv2cc9y65"; + version = "0.8"; + sha256 = "0rc5vixyaakh9avsn4xwf1phqm1298z8d81xwxllas0wq5cbyvl3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -199307,6 +200648,33 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "prometheus-client_1_0_0_1" = callPackage + ({ mkDerivation, atomic-primops, base, bytestring, clock + , containers, criterion, deepseq, doctest, exceptions, hspec, mtl + , QuickCheck, random, random-shuffle, stm, text, transformers + , transformers-compat, utf8-string + }: + mkDerivation { + pname = "prometheus-client"; + version = "1.0.0.1"; + sha256 = "0jmxmq4f3p8jlg7h5wlq0kk6z749fr4gmac5x9gim0mjjga6q0r7"; + libraryHaskellDepends = [ + atomic-primops base bytestring clock containers deepseq exceptions + mtl stm text transformers transformers-compat utf8-string + ]; + testHaskellDepends = [ + atomic-primops base bytestring clock containers deepseq doctest + exceptions hspec mtl QuickCheck random-shuffle stm text + transformers transformers-compat utf8-string + ]; + benchmarkHaskellDepends = [ + base bytestring criterion random text utf8-string + ]; + description = "Haskell client library for http://prometheus.io."; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "prometheus-effect" = callPackage ({ mkDerivation, base, bytestring, clock, criterion, hashable , http-types, mtl, random, retry, safe-exceptions, streaming @@ -199696,30 +201064,6 @@ self: { broken = true; }) {}; - "proto-lens_0_5_1_0" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , lens-family, parsec, pretty, primitive, profunctors, QuickCheck - , tagged, test-framework, test-framework-quickcheck2, text - , transformers, vector, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.5.1.0"; - sha256 = "1jv88j9spv3q679syq0fbpbq8xjggaww5644as31gmvihjfaxby1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim lens-family parsec - pretty primitive profunctors tagged text transformers vector void - ]; - testHaskellDepends = [ - base bytestring QuickCheck test-framework - test-framework-quickcheck2 vector - ]; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "proto-lens" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim , lens-family, parsec, pretty, primitive, profunctors, QuickCheck @@ -199826,24 +201170,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "proto-lens-protobuf-types_0_5_0_0" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-runtime, proto-lens-setup, protobuf, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.5.0.0"; - sha256 = "1j37g1w6b7hph61x7hrvvs7sp5kzl24slmbnlyn8a7z04kbhgr90"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-runtime text - ]; - libraryToolDepends = [ protobuf ]; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) protobuf;}; - "proto-lens-protobuf-types" = callPackage ({ mkDerivation, base, Cabal, lens-family, proto-lens , proto-lens-protoc, proto-lens-runtime, proto-lens-setup, protobuf @@ -199862,29 +201188,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) protobuf;}; - "proto-lens-protoc_0_5_0_0" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath - , haskell-src-exts, lens-family, pretty, proto-lens, protobuf, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.5.0.0"; - sha256 = "0r6il4gvvcggxxbz2hq1kkw1qwk1rspqcb2j04ngd06pmvicw78n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers filepath haskell-src-exts lens-family pretty - proto-lens text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers lens-family proto-lens text - ]; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) protobuf;}; - "proto-lens-protoc" = callPackage ({ mkDerivation, base, bytestring, containers, filepath, ghc , ghc-paths, ghc-source-gen, lens-family, pretty, proto-lens @@ -199906,23 +201209,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) protobuf;}; - "proto-lens-runtime_0_5_0_0" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, filepath - , lens-family, proto-lens, text, vector - }: - mkDerivation { - pname = "proto-lens-runtime"; - version = "0.5.0.0"; - sha256 = "0hd1hcrirnj92nkd15l1m081wvxas62az3zijg1cr4lf93rg9hgc"; - libraryHaskellDepends = [ - base bytestring containers deepseq filepath lens-family proto-lens - text vector - ]; - doHaddock = false; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "proto-lens-runtime" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, filepath , lens-family, proto-lens, text, vector @@ -199939,23 +201225,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "proto-lens-setup_0_4_0_2" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, deepseq - , directory, filepath, process, proto-lens-protoc, temporary, text - }: - mkDerivation { - pname = "proto-lens-setup"; - version = "0.4.0.2"; - sha256 = "1zqlkkzdg9myfy2myv0y19zmsjsvcd5rcimf6f48gnijl3001i8v"; - libraryHaskellDepends = [ - base bytestring Cabal containers deepseq directory filepath process - proto-lens-protoc temporary text - ]; - description = "Cabal support for codegen with proto-lens"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "proto-lens-setup" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, deepseq , directory, filepath, process, proto-lens-protoc, temporary, text @@ -200596,6 +201865,8 @@ self: { pname = "publicsuffix"; version = "0.20191003"; sha256 = "1birj2k23v93w89mcrn522mqyfipv3smrdhag6k6pgsi628gihx7"; + revision = "1"; + editedCabalFile = "1diqb9knkhlryyygzs959zwd5d60wdkbmlza76cmsizkqq4vzhds"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; benchmarkHaskellDepends = [ base criterion random ]; @@ -200603,6 +201874,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "publicsuffix_0_20200526" = callPackage + ({ mkDerivation, base, criterion, filepath, hspec, random + , template-haskell + }: + mkDerivation { + pname = "publicsuffix"; + version = "0.20200526"; + sha256 = "0sipkr4mzhha5w4236jj6j8assy565yf085aqa3awwqi28674mbb"; + libraryHaskellDepends = [ base filepath template-haskell ]; + testHaskellDepends = [ base hspec ]; + benchmarkHaskellDepends = [ base criterion random ]; + description = "The publicsuffix list exposed as proper Haskell types"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "publicsuffixlist" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, data-default , HUnit, idna, text, utf8-string @@ -201129,64 +202416,66 @@ self: { "purescript" = callPackage ({ mkDerivation, aeson, aeson-better-errors, aeson-pretty , ansi-terminal, ansi-wl-pprint, array, base, base-compat - , blaze-html, bower-json, boxes, bytestring, Cabal, cheapskate - , clock, containers, cryptonite, data-ordlist, deepseq, directory - , dlist, edit-distance, file-embed, filepath, fsnotify, gitrev - , Glob, happy, haskeline, hspec, hspec-discover, http-types, HUnit - , language-javascript, lifted-async, lifted-base, memory + , blaze-html, bower-json, boxes, bytestring, Cabal, cborg + , cheapskate, clock, containers, cryptonite, data-ordlist, deepseq + , directory, dlist, edit-distance, file-embed, filepath, fsnotify + , gitrev, Glob, happy, haskeline, hspec, hspec-discover, http-types + , HUnit, language-javascript, lifted-async, lifted-base, memory , microlens-platform, monad-control, monad-logger, mtl, network , optparse-applicative, parallel, parsec, pattern-arrows, process , protolude, regex-tdfa, safe, scientific, semialign, semigroups - , sourcemap, split, stm, stringsearch, syb, tasty, tasty-golden - , tasty-hspec, tasty-quickcheck, text, these, time, transformers - , transformers-base, transformers-compat, unordered-containers - , utf8-string, vector, wai, wai-websockets, warp, websockets + , serialise, sourcemap, split, stm, stringsearch, syb, tasty + , tasty-golden, tasty-hspec, tasty-quickcheck, text, these, time + , transformers, transformers-base, transformers-compat + , unordered-containers, utf8-string, vector, wai, wai-websockets + , warp, websockets }: mkDerivation { pname = "purescript"; - version = "0.13.6"; - sha256 = "1xss3wpv6wb38gsh9r635s09cxzmiz81hhssdxzdba2pw6ifzx8j"; + version = "0.13.8"; + sha256 = "0sh9z3ir3jiwmi5h95v9p7j746xxidg1hrxha89c0zl6vr4sq7vh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson aeson-better-errors aeson-pretty ansi-terminal array base - base-compat blaze-html bower-json boxes bytestring Cabal cheapskate - clock containers cryptonite data-ordlist deepseq directory dlist - edit-distance file-embed filepath fsnotify Glob haskeline - language-javascript lifted-async lifted-base memory + base-compat blaze-html bower-json boxes bytestring Cabal cborg + cheapskate clock containers cryptonite data-ordlist deepseq + directory dlist edit-distance file-embed filepath fsnotify Glob + haskeline language-javascript lifted-async lifted-base memory microlens-platform monad-control monad-logger mtl parallel parsec pattern-arrows process protolude regex-tdfa safe scientific - semialign semigroups sourcemap split stm stringsearch syb text - these time transformers transformers-base transformers-compat + semialign semigroups serialise sourcemap split stm stringsearch syb + text these time transformers transformers-base transformers-compat unordered-containers utf8-string vector ]; libraryToolDepends = [ happy ]; executableHaskellDepends = [ aeson aeson-better-errors aeson-pretty ansi-terminal ansi-wl-pprint array base base-compat blaze-html bower-json boxes bytestring Cabal - cheapskate clock containers cryptonite data-ordlist deepseq + cborg cheapskate clock containers cryptonite data-ordlist deepseq directory dlist edit-distance file-embed filepath fsnotify gitrev Glob haskeline http-types language-javascript lifted-async lifted-base memory microlens-platform monad-control monad-logger mtl network optparse-applicative parallel parsec pattern-arrows process protolude regex-tdfa safe scientific semialign semigroups - sourcemap split stm stringsearch syb text these time transformers - transformers-base transformers-compat unordered-containers - utf8-string vector wai wai-websockets warp websockets + serialise sourcemap split stm stringsearch syb text these time + transformers transformers-base transformers-compat + unordered-containers utf8-string vector wai wai-websockets warp + websockets ]; executableToolDepends = [ happy ]; testHaskellDepends = [ aeson aeson-better-errors aeson-pretty ansi-terminal array base - base-compat blaze-html bower-json boxes bytestring Cabal cheapskate - clock containers cryptonite data-ordlist deepseq directory dlist - edit-distance file-embed filepath fsnotify Glob haskeline hspec - hspec-discover HUnit language-javascript lifted-async lifted-base - memory microlens-platform monad-control monad-logger mtl parallel - parsec pattern-arrows process protolude regex-tdfa safe scientific - semialign semigroups sourcemap split stm stringsearch syb tasty - tasty-golden tasty-hspec tasty-quickcheck text these time - transformers transformers-base transformers-compat - unordered-containers utf8-string vector + base-compat blaze-html bower-json boxes bytestring Cabal cborg + cheapskate clock containers cryptonite data-ordlist deepseq + directory dlist edit-distance file-embed filepath fsnotify Glob + haskeline hspec hspec-discover HUnit language-javascript + lifted-async lifted-base memory microlens-platform monad-control + monad-logger mtl parallel parsec pattern-arrows process protolude + regex-tdfa safe scientific semialign semigroups serialise sourcemap + split stm stringsearch syb tasty tasty-golden tasty-hspec + tasty-quickcheck text these time transformers transformers-base + transformers-compat unordered-containers utf8-string vector ]; testToolDepends = [ happy hspec-discover ]; doCheck = false; @@ -201513,6 +202802,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "pusher-http-haskell_1_5_1_13" = callPackage + ({ mkDerivation, aeson, base, base16-bytestring, bytestring + , cryptonite, hashable, hspec, http-client, http-types, memory + , QuickCheck, scientific, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "pusher-http-haskell"; + version = "1.5.1.13"; + sha256 = "0hdipa1i5l4d60i70c1li585jc4biq0af6l826rzfhlpwjgzlh7z"; + libraryHaskellDepends = [ + aeson base base16-bytestring bytestring cryptonite hashable + http-client http-types memory text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring cryptonite hspec + http-client http-types QuickCheck scientific text time transformers + unordered-containers vector + ]; + description = "Haskell client library for the Pusher HTTP API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pusher-ws" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq , hashable, http-conduit, lens, lens-aeson, network, scientific @@ -202826,6 +204140,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "quickcheck-instances_0_3_23" = callPackage + ({ mkDerivation, array, base, base-compat, bytestring + , case-insensitive, containers, hashable, old-time, QuickCheck + , scientific, splitmix, tagged, text, these, time, time-compat + , transformers, transformers-compat, unordered-containers + , uuid-types, vector + }: + mkDerivation { + pname = "quickcheck-instances"; + version = "0.3.23"; + sha256 = "1gig5dwgsahpgdz0cm06wf9lbjnh0qmr5qrlk9bc3v72pa8knc0i"; + revision = "1"; + editedCabalFile = "1lir5ryv2b1hn5n5fbgs9syram71zv4p4chb9xzkxvbszl5inw8k"; + libraryHaskellDepends = [ + array base base-compat bytestring case-insensitive containers + hashable old-time QuickCheck scientific splitmix tagged text these + time time-compat transformers transformers-compat + unordered-containers uuid-types vector + ]; + testHaskellDepends = [ + base containers QuickCheck tagged uuid-types + ]; + benchmarkHaskellDepends = [ base bytestring QuickCheck ]; + description = "Common quickcheck instances"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "quickcheck-io" = callPackage ({ mkDerivation, base, HUnit, QuickCheck }: mkDerivation { @@ -204844,15 +206186,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "rank2classes_1_4" = callPackage + "rank2classes_1_4_0_1" = callPackage ({ mkDerivation, base, Cabal, cabal-doctest, distributive, doctest , markdown-unlit, tasty, tasty-hunit, template-haskell , transformers }: mkDerivation { pname = "rank2classes"; - version = "1.4"; - sha256 = "0h8ysf32nw28aqhnnq2cckagwfrri4k44p3pzhhlp6lvhckvqnq1"; + version = "1.4.0.1"; + sha256 = "1r72z98jvnih16x074izb0wp9gwbsjs2ihvj8a72xxyakdad71r9"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base distributive template-haskell transformers @@ -205198,6 +206540,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ratel_1_0_12" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, filepath, hspec, http-client, http-client-tls + , http-types, text, uuid + }: + mkDerivation { + pname = "ratel"; + version = "1.0.12"; + sha256 = "00xhs04jrrbi1n2sx86v4pd3sggyk2682s3zxfmhb16zysh3hdx2"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers http-client + http-client-tls http-types text uuid + ]; + testHaskellDepends = [ base filepath hspec ]; + description = "Notify Honeybadger about exceptions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ratel-wai" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-client, ratel, wai @@ -205213,6 +206574,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ratel-wai_1_1_3" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , http-client, ratel, wai + }: + mkDerivation { + pname = "ratel-wai"; + version = "1.1.3"; + sha256 = "154zxrv9w904bgrgwb623zkqxzp200ivhwfpcwlb8r2903jmw7vq"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers http-client ratel wai + ]; + description = "Notify Honeybadger about exceptions via a WAI middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "rating-chgk-info" = callPackage ({ mkDerivation, aeson, base-noprelude, bytestring, cassava , containers, directory, gauge, http-client, http-client-tls, iconv @@ -205290,8 +206667,8 @@ self: { pname = "rattle"; version = "0.1"; sha256 = "10ra58lqhi9pn92rgyv6lkz7036kbq9gr6ly5w1lqdayla10fqhr"; - revision = "1"; - editedCabalFile = "1ppli9l28b4pg6h57kx7vvy0wqacn4vx86bvrgjcwwlvlir49scw"; + revision = "2"; + editedCabalFile = "0h37mx0iv53jdmsqla40fsnnmkzld6a2r0468ylbhgi2arrda0w9"; libraryHaskellDepends = [ base bytestring cryptohash-sha256 deepseq directory extra filepath hashable shake time transformers unordered-containers @@ -205303,6 +206680,41 @@ self: { broken = true; }) {}; + "rattle_0_2" = callPackage + ({ mkDerivation, async, base, bytestring, Cabal, cmdargs + , cryptohash-sha256, deepseq, directory, extra, filepath + , filepattern, hashable, heaps, js-dgtable, js-flot, js-jquery + , process, shake, template-haskell, terminal-size, time + , transformers, unix, unordered-containers, utf8-string + }: + mkDerivation { + pname = "rattle"; + version = "0.2"; + sha256 = "1nd3knid238fa85rm2d0kavhyry6d6lilpk2p4ki9njgq2003bbk"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + async base bytestring cryptohash-sha256 deepseq directory extra + filepath filepattern hashable heaps js-dgtable js-flot js-jquery + shake template-haskell terminal-size time transformers unix + unordered-containers utf8-string + ]; + executableHaskellDepends = [ + base bytestring cmdargs directory extra filepath process shake + ]; + testHaskellDepends = [ + async base bytestring Cabal cryptohash-sha256 deepseq directory + extra filepath filepattern hashable heaps js-dgtable js-flot + js-jquery shake template-haskell terminal-size time transformers + unix unordered-containers utf8-string + ]; + description = "Forward build system, with caching and speculation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "rattletrap" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits , bytestring, containers, filepath, http-client, http-client-tls @@ -205311,8 +206723,8 @@ self: { }: mkDerivation { pname = "rattletrap"; - version = "9.1.1"; - sha256 = "11q115yfjjafq2dyn88xc6xnynqw2i6yn7g9n8yy9qaa8jpgibzz"; + version = "9.1.3"; + sha256 = "01schszjdy1dvmbr3ml1fxncm7a3bvjvfnvhwc6r8lwfmz4vm3hc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -206318,8 +207730,8 @@ self: { }: mkDerivation { pname = "readme-lhs"; - version = "0.5.0"; - sha256 = "01h1zaa14v1hfj7gzm7y1x1rf8mh2w10h1x8k3z3y05kgsfhaspa"; + version = "0.6.0"; + sha256 = "0q47r8dbmvmpk8fa6s4lwv5i9g4fhbyhd6c350h9ic55nqg04svv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -206398,25 +207810,27 @@ self: { }) {}; "reanimate" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base64-bytestring, bytestring, cassava, chiphunk, colour - , containers, cubicbezier, directory, filepath, fsnotify, geojson - , hashable, here, JuicyPixels, lens, linear, matrix, mtl - , open-browser, optparse-applicative, parallel, process - , random-shuffle, reanimate-svg, temporary, text, time, vector - , websockets, xml + ({ mkDerivation, aeson, ansi-wl-pprint, array, attoparsec, base + , base64-bytestring, bytestring, cassava, cereal, chiphunk, colour + , containers, cubicbezier, directory, filepath, fingertree + , fsnotify, geojson, hashable, here, hmatrix, JuicyPixels, lens + , linear, matrix, mtl, open-browser, optparse-applicative, parallel + , process, random, random-shuffle, reanimate-svg, split, temporary + , text, time, vector, vector-space, websockets, xml }: mkDerivation { pname = "reanimate"; - version = "0.3.1.0"; - sha256 = "02fvr4smzmgksi8cvxz8yms0qzyxxzypcl3fzl0lsfsm9sdwmcaz"; + version = "0.3.3.0"; + sha256 = "0yyhspd13wws99kpb61cw3bc6yrvkxrq86y0p9w4sl66jdl1zbli"; enableSeparateDataOutput = true; libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base64-bytestring bytestring - cassava chiphunk colour containers cubicbezier directory filepath - fsnotify geojson hashable here JuicyPixels lens linear matrix mtl - open-browser optparse-applicative parallel process random-shuffle - reanimate-svg temporary text time vector websockets xml + aeson ansi-wl-pprint array attoparsec base base64-bytestring + bytestring cassava cereal chiphunk colour containers cubicbezier + directory filepath fingertree fsnotify geojson hashable here + hmatrix JuicyPixels lens linear matrix mtl open-browser + optparse-applicative parallel process random random-shuffle + reanimate-svg split temporary text time vector vector-space + websockets xml ]; description = "Animation library based on SVGs"; license = stdenv.lib.licenses.publicDomain; @@ -207388,6 +208802,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflection_2_1_6" = callPackage + ({ mkDerivation, base, containers, hspec, hspec-discover + , QuickCheck, template-haskell + }: + mkDerivation { + pname = "reflection"; + version = "2.1.6"; + sha256 = "1kd6dgnp99dzbkxdnj01g81j03v7zq5cwg0sf19rlcmvgs8i8gmz"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; + testToolDepends = [ hspec-discover ]; + description = "Reifies arbitrary terms into types that can be reflected back into terms"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "reflection-extras" = callPackage ({ mkDerivation, aeson, base, constraints, lens, reflection, tagged }: @@ -207676,16 +209106,15 @@ self: { }) {}; "reflex-dom-retractable" = callPackage - ({ mkDerivation, base, containers, jsaddle, mtl, reflex, reflex-dom + ({ mkDerivation, base, containers, jsaddle, mtl, ref-tf, reflex + , reflex-dom }: mkDerivation { pname = "reflex-dom-retractable"; - version = "0.1.0.0"; - sha256 = "0qdr3xrpg5dhfsbz6b2883jkhvc7nckmn05gyc844xn0fjlrlbda"; - revision = "2"; - editedCabalFile = "19l4apgi05q2hi145wfyp3f6nkmdj9njpqmjk5g6hjma3pgncpsc"; + version = "0.1.3.0"; + sha256 = "0l2nz78cjx0p03h0h9pflhfd59p2j4drsglsm9yxys0zglbxnqwl"; libraryHaskellDepends = [ - base containers jsaddle mtl reflex reflex-dom + base containers jsaddle mtl ref-tf reflex reflex-dom ]; description = "Routing and retractable back button for reflex-dom"; license = stdenv.lib.licenses.mit; @@ -207929,8 +209358,8 @@ self: { }: mkDerivation { pname = "reflex-test-host"; - version = "0.1.0.0"; - sha256 = "0yg1lg68xr5rs8l68i0znj5zp0z6rq7b515sfz3qvnmyv7qah946"; + version = "0.1.1.0"; + sha256 = "162s6skk6nxmgyccyx2cs82ky3gz0p0417q9vdykaawsraqi7kj0"; libraryHaskellDepends = [ base dependent-sum ref-tf reflex these ]; testHaskellDepends = [ base dependent-sum hspec hspec-contrib HUnit ref-tf reflex these @@ -209424,6 +210853,7 @@ self: { executableHaskellDepends = [ base ]; description = "Automation of Haskell package release process"; license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "relevant-time" = callPackage @@ -210433,6 +211863,8 @@ self: { pname = "req"; version = "3.1.0"; sha256 = "0j53bbhyhjy2q91lnvpwldjsck57p72y5l815c9mi0gzihchyksb"; + revision = "2"; + editedCabalFile = "008s2zd1hxfxw9vpvk0ax6fg4q0rshn13f9kgngfvg6diicgsn5h"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson authenticate-oauth base blaze-builder bytestring @@ -210459,8 +211891,8 @@ self: { pname = "req-conduit"; version = "1.0.0"; sha256 = "193bv4jp7rrbpb1i9as9s2l978wz5kbz5kvr7ppllif5ppj699qx"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; + revision = "7"; + editedCabalFile = "08ynq0760hd2v1pmbfmc2n71vjr33qmv1cgnklbqn2ibzbg3mmx2"; libraryHaskellDepends = [ base bytestring conduit http-client req resourcet transformers ]; @@ -211852,8 +213284,6 @@ self: { ]; description = "Functional Reactive Programming with type-level clocks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "rhine-gloss" = callPackage @@ -211868,8 +213298,6 @@ self: { executableHaskellDepends = [ base ]; description = "Gloss backend for Rhine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "rhythm-game-tutorial" = callPackage @@ -213463,8 +214891,8 @@ self: { }: mkDerivation { pname = "rounded"; - version = "1.0"; - sha256 = "1vwy8sc457bxq3x8wzfsr5v01lp38ynwg8hp97likkckd13vkh7v"; + version = "1.1"; + sha256 = "0hja4ak3qd80zg996jwyi1kndj2vfsp10vwr4wyrcvppzl4gj4a0"; libraryHaskellDepends = [ base ghc-prim hgmp long-double reflection ]; @@ -213621,8 +215049,8 @@ self: { }: mkDerivation { pname = "row-types"; - version = "0.3.1.0"; - sha256 = "0nwhv2hdl7176bysyqw0zvfqlck0k638cvnwm49lld4zyaxrkq5h"; + version = "0.4.0.0"; + sha256 = "146wcmy65wls6s8z333z9xqdb0m89dwjbfd9vshldkd1g9kgbck7"; libraryHaskellDepends = [ base constraints deepseq generic-lens hashable profunctors text unordered-containers @@ -213879,27 +215307,29 @@ self: { ({ mkDerivation, atom-conduit, base, base-compat-batteries , blaze-builder, bytestring, conduit, conduit-combinators , containers, data-default, dublincore-xml-conduit, filepath - , lens-simple, mono-traversable, QuickCheck, quickcheck-instances - , resourcet, safe, safe-exceptions, tasty, tasty-golden - , tasty-hunit, tasty-quickcheck, text, time, timerep - , uri-bytestring, xml-conduit, xml-types + , microlens, microlens-th, mono-traversable, QuickCheck + , quickcheck-instances, resourcet, safe, safe-exceptions, tasty + , tasty-golden, tasty-hunit, tasty-quickcheck, template-haskell + , text, time, timerep, uri-bytestring, xml-conduit, xml-types }: mkDerivation { pname = "rss-conduit"; - version = "0.5.1.0"; - sha256 = "199l9ky1nb9ispl1gdn5wvn7c7sd89xa8qpk110w2k5nzi8hmsz5"; + version = "0.6.0.0"; + sha256 = "0crp7z6s5xch5jggyyg1a2jcijgl5cg17wiiqkcfmwjdkraz7ax9"; + revision = "1"; + editedCabalFile = "1xgqfn7dlzz79j4krmqg4d2xlybm6x4b0s8gklphn3lccwpicfy8"; libraryHaskellDepends = [ atom-conduit base base-compat-batteries conduit conduit-combinators - containers dublincore-xml-conduit lens-simple safe safe-exceptions - text time timerep uri-bytestring xml-conduit xml-types + containers dublincore-xml-conduit microlens microlens-th safe + safe-exceptions template-haskell text time timerep uri-bytestring + xml-conduit xml-types ]; testHaskellDepends = [ atom-conduit base base-compat-batteries blaze-builder bytestring conduit conduit-combinators data-default dublincore-xml-conduit - filepath lens-simple mono-traversable QuickCheck - quickcheck-instances resourcet safe-exceptions tasty tasty-golden - tasty-hunit tasty-quickcheck text time uri-bytestring xml-conduit - xml-types + filepath microlens mono-traversable QuickCheck quickcheck-instances + resourcet safe-exceptions tasty tasty-golden tasty-hunit + tasty-quickcheck text time uri-bytestring xml-conduit xml-types ]; description = "Streaming parser/renderer for the RSS standard"; license = stdenv.lib.licenses.cc0; @@ -214103,18 +215533,18 @@ self: { }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, hspec, mtl - , string-conv, vector + ({ mkDerivation, base, bytestring, cereal, containers, fail, hspec + , mtl, string-conv, vector }: mkDerivation { pname = "ruby-marshal"; - version = "0.1.3"; - sha256 = "0syjd9fmp55cfkq1kb78pvx0vg9dk43s5w4q2a8ndd1fkg194jwx"; + version = "0.2.0"; + sha256 = "0cdw1m26hlpicd2wmk34zav4p4lxhnrj79s5vwqmqy9wkdj9ypdx"; libraryHaskellDepends = [ - base bytestring cereal containers mtl string-conv vector + base bytestring cereal containers fail mtl string-conv vector ]; testHaskellDepends = [ - base bytestring cereal containers hspec mtl string-conv vector + base bytestring cereal containers fail hspec mtl string-conv vector ]; description = "Parse a subset of Ruby objects serialised with Marshal.dump."; license = stdenv.lib.licenses.mit; @@ -214451,6 +215881,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "safe_0_3_19" = callPackage + ({ mkDerivation, base, deepseq, QuickCheck }: + mkDerivation { + pname = "safe"; + version = "0.3.19"; + sha256 = "18pp6cn9np9jgs01x9mac6wk41k34g86fx5ibfarbapqr1138115"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base deepseq QuickCheck ]; + description = "Library of safe (exception free) functions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "safe-access" = callPackage ({ mkDerivation, base, mtl, transformers }: mkDerivation { @@ -214618,8 +216061,8 @@ self: { pname = "safe-json"; version = "1.1.0"; sha256 = "18zsf2dccgf755a8g4ar3zc7ilmampsrvqa6f9p27zrayl7j87hw"; - revision = "1"; - editedCabalFile = "04bwgnv53acmiw50wj3k5lb791b4702mdzhsphshlwk2bc34ybqg"; + revision = "2"; + editedCabalFile = "0qaqvczy8v4ghx6d0hjc2hk29z02l8ya5y3ii3rr7bp47b1z8z0i"; libraryHaskellDepends = [ aeson base bytestring containers dlist hashable scientific tasty tasty-hunit tasty-quickcheck text time unordered-containers @@ -215359,25 +216802,6 @@ self: { }) {}; "sampling" = callPackage - ({ mkDerivation, base, containers, criterion, foldl, mwc-random - , primitive, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "038fl0mdim3r25jsj8bgvnmkd7iy00hpwbc0yqwijsqyss9xrgn8"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ base criterion ]; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - - "sampling_0_3_4" = callPackage ({ mkDerivation, base, containers, criterion, foldl, mwc-random , primitive, vector }: @@ -215392,7 +216816,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Sample values from collections"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "samtools" = callPackage @@ -216872,6 +218295,40 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "scotty_0_12" = callPackage + ({ mkDerivation, aeson, async, base, base-compat-batteries + , blaze-builder, bytestring, case-insensitive, data-default-class + , directory, exceptions, fail, hspec, hspec-discover, hspec-wai + , http-types, lifted-base, lucid, monad-control, mtl, nats, network + , regex-compat, text, transformers, transformers-base + , transformers-compat, wai, wai-extra, warp, weigh + }: + mkDerivation { + pname = "scotty"; + version = "0.12"; + sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1"; + revision = "1"; + editedCabalFile = "1g1j4v3hvvbi48pn32d671x3vg41x2pjbpj9vgagiqlqmz9pkrn5"; + libraryHaskellDepends = [ + aeson base base-compat-batteries blaze-builder bytestring + case-insensitive data-default-class exceptions fail http-types + monad-control mtl nats network regex-compat text transformers + transformers-base transformers-compat wai wai-extra warp + ]; + testHaskellDepends = [ + async base bytestring data-default-class directory hspec hspec-wai + http-types lifted-base network text wai + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ + base bytestring data-default-class lucid mtl text transformers + weigh + ]; + description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "scotty-binding-play" = callPackage ({ mkDerivation, base, bytestring, hspec, http-client, HUnit, mtl , scotty, template-haskell, text, transformers @@ -218409,8 +219866,8 @@ self: { pname = "semialign"; version = "1.1"; sha256 = "1n47w9c6i6azb4w65rzhci00v6p9c0s1w1givd2q3smkgyziiqpk"; - revision = "1"; - editedCabalFile = "0rfnjzbzzclzh2a1m5wpzzsqf8hrkrqnc90pflshb40i7rwkm6xf"; + revision = "2"; + editedCabalFile = "1s0gja9kig4j550kjgrknf6kyw8qns9fksrdm0rvv7bmf30dwh8n"; libraryHaskellDepends = [ base base-compat containers hashable semigroupoids tagged these transformers unordered-containers vector @@ -218445,8 +219902,8 @@ self: { pname = "semialign-indexed"; version = "1.1"; sha256 = "1b6amfhwk968ah56w8vala3hbpzf9mfza2ajhdnvzcdiyqyxvwb0"; - revision = "1"; - editedCabalFile = "1g7b15xki938vljmkcwnz1hvqfp77ja39cxnfnwd5j507a0qp800"; + revision = "2"; + editedCabalFile = "0vmvmnmb79cc11rbl136z74yyb16klswpx38ayxal8m52lyggqpv"; libraryHaskellDepends = [ base containers hashable lens semialign these unordered-containers vector @@ -218463,8 +219920,8 @@ self: { pname = "semialign-optics"; version = "1.1"; sha256 = "1ffibnk1hsdnny5jm85j07f05k81pzzai4jljlj12nn687rbb59y"; - revision = "1"; - editedCabalFile = "0l7wkq1s51k04dy815mqvwcf94r1l4a40ngzz958gi3vc07xyppx"; + revision = "2"; + editedCabalFile = "011kjr5ya0s7l1dic7gvzvgvps02rn033125v8c9r9dp2mlgyjam"; libraryHaskellDepends = [ base containers hashable optics-extra semialign these unordered-containers vector @@ -219240,6 +220697,8 @@ self: { pname = "serialise"; version = "0.2.3.0"; sha256 = "0vp4wyxpximpx10pssfgdsir1pc23zb62fg3kj3iblpzqfrryy69"; + revision = "1"; + editedCabalFile = "1pg6hkim1qcrnkj2rqw8xz5mxkrh0jadlsgwm2v1xgkpgfi1dk1r"; libraryHaskellDepends = [ array base bytestring cborg containers ghc-prim half hashable primitive text time unordered-containers vector @@ -220347,19 +221806,23 @@ self: { }) {}; "servant-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-api-data, http-media - , http-types, markdown-unlit, scientific, servant, servant-server - , string-conversions, text, unordered-containers, wai, warp + ({ mkDerivation, aeson, base, base-compat, bytestring + , http-api-data, http-media, http-types, markdown-unlit, scientific + , servant, servant-server, string-conversions, text + , unordered-containers, wai, warp }: mkDerivation { pname = "servant-errors"; - version = "0.1.4.0"; - sha256 = "1qg8p69yhkkdqa51n4pp59y254a5q6rl255fh380z4kzh4vsdjcn"; + version = "0.1.6.0"; + sha256 = "0qap8wbchpl48aigwqgxrgb6v3d6h80fpxq319c399pwrrkzyh9v"; libraryHaskellDepends = [ - aeson base bytestring http-api-data http-media http-types - scientific servant string-conversions text unordered-containers wai + aeson base base-compat bytestring http-api-data http-media + http-types scientific servant string-conversions text + unordered-containers wai + ]; + testHaskellDepends = [ + aeson base base-compat servant-server text wai warp ]; - testHaskellDepends = [ aeson base servant-server text wai warp ]; testToolDepends = [ markdown-unlit ]; description = "Servant Errors wai-middlware"; license = stdenv.lib.licenses.mit; @@ -220739,11 +222202,11 @@ self: { ({ mkDerivation, aeson, base, servant }: mkDerivation { pname = "servant-jsonrpc"; - version = "1.0.0"; - sha256 = "0kqs2bnkkhakg5401ylv3ys00p3s5w5r11spylkxgzi77l1q2vli"; + version = "1.0.1"; + sha256 = "0hizazwng0pcxd8p0n04xlgrx3vbr7nwc2k9s143q6yc6hp0dlj4"; libraryHaskellDepends = [ aeson base servant ]; description = "JSON-RPC messages and endpoints"; - license = stdenv.lib.licenses.isc; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -220754,30 +222217,30 @@ self: { }: mkDerivation { pname = "servant-jsonrpc-client"; - version = "1.0.0"; - sha256 = "0ir7lljaiczlfakzl95vpmzvx3z5n40agd0gwrscklqpdpc9n8lm"; + version = "1.0.1"; + sha256 = "0s9ii02mfgyissyq4dbs9cqm3shrgiysjkhwgs6c0s30qqakjald"; libraryHaskellDepends = [ aeson base servant servant-client-core servant-jsonrpc ]; description = "Generate JSON-RPC servant clients"; - license = stdenv.lib.licenses.isc; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; "servant-jsonrpc-server" = callPackage - ({ mkDerivation, aeson, base, mtl, servant, servant-jsonrpc - , servant-server + ({ mkDerivation, aeson, base, containers, mtl, servant + , servant-jsonrpc, servant-server }: mkDerivation { pname = "servant-jsonrpc-server"; - version = "1.0.0"; - sha256 = "13ryxq8y7mcmq70jnwd2gv3anq7k3p9vpi2vnp0kn4552332wpa4"; + version = "2.0.0"; + sha256 = "0svnbsxzwfxdbyjhgq1hxxpjv96dzqkwg44bnq24lc5jk7j244sk"; libraryHaskellDepends = [ - aeson base mtl servant servant-jsonrpc servant-server + aeson base containers mtl servant servant-jsonrpc servant-server ]; description = "JSON-RPC servant servers"; - license = stdenv.lib.licenses.isc; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -222008,6 +223471,24 @@ self: { broken = true; }) {}; + "servant-wasm" = callPackage + ({ mkDerivation, base, bytestring, servant, servant-server + , transformers, warp + }: + mkDerivation { + pname = "servant-wasm"; + version = "0.1.1.0"; + sha256 = "0nd98s0h9f5z1nhsmcyij7h1ppgw0s9cn8yj53v9a67yaniqvcqj"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring servant ]; + executableHaskellDepends = [ + base bytestring servant servant-server transformers warp + ]; + description = "Servant support for delivering WebAssembly"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-websockets" = callPackage ({ mkDerivation, aeson, async, base, bytestring, conduit , exceptions, monad-control, resourcet, servant-server, text, wai @@ -223203,8 +224684,10 @@ self: { }: mkDerivation { pname = "shake"; - version = "0.18.5"; - sha256 = "03r4rapkcyy04wf7ljikjbsjc29fpydbv5zbrrkiy1dqadzvasjp"; + version = "0.19"; + sha256 = "1579as1ni0n5zjnrqbp3s8gss34pl690g7jnq5i3kb3d118awk3b"; + revision = "1"; + editedCabalFile = "1w6yvk30nj6mcl0w5lj9j6q4vqjllp4r8wady3hbly8jpxjdq7dc"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -223318,6 +224801,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "shake-dhall" = callPackage + ({ mkDerivation, base, containers, dhall, filepath, shake, text }: + mkDerivation { + pname = "shake-dhall"; + version = "0.1.0.0"; + sha256 = "1nhc6sfzsr7adv6xh8r2fyp64gzkiv563xqwmvhmk3pi3zxnlcll"; + libraryHaskellDepends = [ + base containers dhall filepath shake text + ]; + description = "Dhall dependencies"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "shake-elm" = callPackage ({ mkDerivation, base, shake }: mkDerivation { @@ -223357,6 +224853,20 @@ self: { broken = true; }) {}; + "shake-futhark" = callPackage + ({ mkDerivation, base, containers, filepath, futhark, shake, text + }: + mkDerivation { + pname = "shake-futhark"; + version = "0.1.0.0"; + sha256 = "1wxp025dmlal1nm7f7s16pzgx42sawfcnz3lv6krilhr7ynb92ss"; + libraryHaskellDepends = [ + base containers filepath futhark shake text + ]; + description = "Dependency tracking for Futhark"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "shake-google-closure-compiler" = callPackage ({ mkDerivation, base, directory, shake }: mkDerivation { @@ -223486,31 +224996,34 @@ self: { }) {}; "shakebook" = callPackage - ({ mkDerivation, aeson, base, comonad, doctemplates, extra, feed - , free, lens, lens-aeson, mustache, optparse-applicative, pandoc - , pandoc-types, path, relude, rio, shake, shake-plus, slick, split - , tasty, tasty-golden, text-time, within, zipper-extra + ({ mkDerivation, aeson, aeson-with, base, comonad, comonad-extras + , doctemplates, extra, feed, free, lens, lens-aeson, mustache + , optparse-applicative, pandoc, pandoc-types, path, relude, rio + , shake, shake-plus, slick, split, tasty, tasty-golden, text-time + , within, zipper-extra }: mkDerivation { pname = "shakebook"; - version = "0.2.2.0"; - sha256 = "19aa021sl9k2q5im3nfh73rhydald8f7f3z7c1ncnqszbfkhf8xh"; + version = "0.4.0.0"; + sha256 = "1qj1zybxizxg9bbvpdq5ac6dar2dh8i60zlhy6dxf4jjpimii7h7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base comonad doctemplates extra feed free lens lens-aeson - mustache pandoc pandoc-types path relude rio shake shake-plus slick - split text-time within zipper-extra + aeson aeson-with base comonad comonad-extras doctemplates extra + feed free lens lens-aeson mustache pandoc pandoc-types path relude + rio shake shake-plus slick split text-time within zipper-extra ]; executableHaskellDepends = [ - aeson base comonad doctemplates extra feed free lens lens-aeson - mustache optparse-applicative pandoc pandoc-types path relude rio - shake shake-plus slick split text-time within zipper-extra + aeson aeson-with base comonad comonad-extras doctemplates extra + feed free lens lens-aeson mustache optparse-applicative pandoc + pandoc-types path relude rio shake shake-plus slick split text-time + within zipper-extra ]; testHaskellDepends = [ - aeson base comonad doctemplates extra feed free lens lens-aeson - mustache pandoc pandoc-types path relude rio shake shake-plus slick - split tasty tasty-golden text-time within zipper-extra + aeson aeson-with base comonad comonad-extras doctemplates extra + feed free lens lens-aeson mustache pandoc pandoc-types path relude + rio shake shake-plus slick split tasty tasty-golden text-time + within zipper-extra ]; description = "Shake-based technical documentation generator; HTML & PDF"; license = stdenv.lib.licenses.mit; @@ -224197,8 +225710,8 @@ self: { }: mkDerivation { pname = "shh"; - version = "0.7.0.7"; - sha256 = "07xj1l7pk6j072ry2mi6jp6r0ivs4m0fqvfvm62jvhm7vhlg3m8m"; + version = "0.7.0.8"; + sha256 = "1f8r8wymdbv8j2m3apdw75xqq2c1s4wr694qhxljvwa9r0s326wf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224215,8 +225728,7 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Simple shell scripting from Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "shh-extras" = callPackage @@ -224225,12 +225737,12 @@ self: { pname = "shh-extras"; version = "0.1.0.1"; sha256 = "0w4ddjszs0lrpr4zcggcwb80bg3yd8lr628jngmh4a05ypv3hxkk"; + revision = "1"; + editedCabalFile = "0kcnk1f1jgaxaqsrnhv2s17firjsms9xvx8d7jvv6ys5iq4nynya"; libraryHaskellDepends = [ base hostname shh time ]; testHaskellDepends = [ base tasty ]; description = "Utility functions for using shh"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "shift" = callPackage @@ -225091,6 +226603,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "simple-cabal_0_1_2" = callPackage + ({ mkDerivation, base, bytestring, Cabal, directory, filepath }: + mkDerivation { + pname = "simple-cabal"; + version = "0.1.2"; + sha256 = "1a834zrj58m7nqvwiwfvqi696dib7h69qlb96vh93zqjn9ndv6hz"; + libraryHaskellDepends = [ + base bytestring Cabal directory filepath + ]; + description = "Cabal file wrapper library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "simple-cmd" = callPackage ({ mkDerivation, base, directory, filepath, process, unix }: mkDerivation { @@ -225381,8 +226907,8 @@ self: { ({ mkDerivation, base, fast-logger, mtl, text }: mkDerivation { pname = "simple-logger"; - version = "0.0.4"; - sha256 = "0550in9vkgf78rxfkzcrna40mihmaqhlixysfz8n0rz0rhw0z9gk"; + version = "0.1.0"; + sha256 = "04qha59ymvxfigb0mpzi9ay297kfjv1i0jnsxxla6rk5imin2i58"; libraryHaskellDepends = [ base fast-logger mtl text ]; description = "A very simple but efficient logging framework"; license = stdenv.lib.licenses.mit; @@ -226151,15 +227677,14 @@ self: { }) {inherit (pkgs.xorg) libXft;}; "single-tuple" = callPackage - ({ mkDerivation, base, hspec, OneTuple, Only }: + ({ mkDerivation, base, hspec, hspec-discover, OneTuple, Only }: mkDerivation { pname = "single-tuple"; - version = "0.1.0.0"; - sha256 = "1sxpbnn1846c3pyq3gm8vx82br8w8dqxvigfr6s160jjlqj7f03b"; - revision = "2"; - editedCabalFile = "06xpski7mxbgmdy2mc4xd6a1y0mfdyskwjhlih4nzxgj7n8v9hfi"; + version = "0.1.1.0"; + sha256 = "1cviix5did4pm4bimg12v2qa9ms5icf19k3iz13g07d5q9jyiwji"; libraryHaskellDepends = [ base OneTuple Only ]; testHaskellDepends = [ base hspec OneTuple Only ]; + testToolDepends = [ hspec-discover ]; description = "a class for single tuple implementations"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -226479,6 +228004,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "sixel" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels + , process, temporary, vector + }: + mkDerivation { + pname = "sixel"; + version = "0.1.2.3"; + sha256 = "0zpxx9fw2vdk2bi9arizas4acihgl17jfwcc7zgzr1579s837ps7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring bytestring JuicyPixels process temporary + vector + ]; + executableHaskellDepends = [ base ]; + description = "Sixel library to show images in a terminal emulator"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sixfiguregroup" = callPackage ({ mkDerivation, base, digit, directory, doctest, filepath, lens , parsec, parsers, QuickCheck, template-haskell @@ -227736,6 +229280,8 @@ self: { pname = "smash-aeson"; version = "0.1.0.0"; sha256 = "0vmazs3ypqxaw4zdywimxfzrsvidnyk5damx6fpy549ny9319rqs"; + revision = "1"; + editedCabalFile = "1y0k6gz9qlr98f543607zkx6a97fnzh3zrbi2b59rlljp0rjvdw8"; libraryHaskellDepends = [ aeson base smash unordered-containers ]; description = "Aeson support for the smash library"; license = stdenv.lib.licenses.bsd3; @@ -228323,6 +229869,8 @@ self: { pname = "snap-core"; version = "1.0.4.1"; sha256 = "19dmfqbsfyk1rkjnnrnajpjfam2xjxgmpfmx10yr5qffgza7gcf0"; + revision = "1"; + editedCabalFile = "0m8vsgrj96a0y9h09szg7gxv9f26yizh4k181ri2sp7ki8p5p7lg"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-builder case-insensitive containers directory filepath hashable HUnit io-streams lifted-base @@ -228557,6 +230105,47 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "snap-server_1_1_1_2" = callPackage + ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder + , bytestring, bytestring-builder, case-insensitive, clock + , containers, criterion, deepseq, directory, filepath, HsOpenSSL + , http-common, http-streams, HUnit, io-streams, io-streams-haproxy + , lifted-base, monad-control, mtl, network, old-locale + , openssl-streams, parallel, QuickCheck, random, snap-core + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, threads, time, transformers, unix, unix-compat, vector + }: + mkDerivation { + pname = "snap-server"; + version = "1.1.1.2"; + sha256 = "1qprlgn59n9layslshpkizzjbsbd87v5h35iylva58vfnwwlmz77"; + configureFlags = [ "-fopenssl" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring bytestring-builder + case-insensitive clock containers filepath HsOpenSSL io-streams + io-streams-haproxy lifted-base mtl network old-locale + openssl-streams snap-core text time unix unix-compat vector + ]; + testHaskellDepends = [ + attoparsec base base16-bytestring blaze-builder bytestring + bytestring-builder case-insensitive clock containers deepseq + directory filepath HsOpenSSL http-common http-streams HUnit + io-streams io-streams-haproxy lifted-base monad-control mtl network + old-locale openssl-streams parallel QuickCheck random snap-core + test-framework test-framework-hunit test-framework-quickcheck2 text + threads time transformers unix unix-compat vector + ]; + benchmarkHaskellDepends = [ + attoparsec base blaze-builder bytestring bytestring-builder + criterion io-streams io-streams-haproxy snap-core vector + ]; + description = "A web server for the Snap Framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "snap-stream" = callPackage ({ mkDerivation, attoparsec, base, bytestring, io-streams , snap-core @@ -230433,28 +232022,26 @@ self: { "souffle-haskell" = callPackage ({ mkDerivation, base, deepseq, directory, filepath, hspec, mtl - , process, souffle, template-haskell, temporary, text - , type-errors-pretty, vector + , process, template-haskell, temporary, text, type-errors-pretty + , vector }: mkDerivation { pname = "souffle-haskell"; - version = "0.2.2"; - sha256 = "1835yq0prh42x9yakfx963hv1lzkhizz02ba344z099rx4fx9fji"; + version = "0.2.3"; + sha256 = "10yl690vbznsa2z9lk2ix6jd8xkx5kriqqblbdr8mlkdzxxv5z6q"; libraryHaskellDepends = [ base deepseq directory filepath mtl process template-haskell temporary text type-errors-pretty vector ]; - libraryToolDepends = [ souffle ]; testHaskellDepends = [ base deepseq directory filepath hspec mtl process template-haskell temporary text type-errors-pretty vector ]; - testToolDepends = [ souffle ]; description = "Souffle Datalog bindings for Haskell"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) souffle;}; + }) {}; "sound-collage" = callPackage ({ mkDerivation, array, base, Cabal, carray, containers, fft @@ -230535,6 +232122,25 @@ self: { broken = true; }) {}; + "source-constraints" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, filepath, ghc + , ghc-paths, heredoc, hspec, syb, text + }: + mkDerivation { + pname = "source-constraints"; + version = "0.0.1"; + sha256 = "0i9p63lbcmc78pp0bvym2zdfvrncrzchkw1xbak6idj3ikb1ljpx"; + libraryHaskellDepends = [ + attoparsec base bytestring filepath ghc syb text + ]; + testHaskellDepends = [ + attoparsec base bytestring filepath ghc ghc-paths heredoc hspec syb + text + ]; + description = "Source constraints GHC plugin"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sourcemap" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , process, random, text, unordered-containers, utf8-string @@ -231278,6 +232884,25 @@ self: { broken = true; }) {}; + "speedy-slice_0_3_1" = callPackage + ({ mkDerivation, base, containers, kan-extensions, lens, mcmc-types + , mwc-probability, pipes, primitive, transformers + }: + mkDerivation { + pname = "speedy-slice"; + version = "0.3.1"; + sha256 = "0i139wp2c75q8a5q018z7ps1ghbqjkkd8nh6z6xfp0rqywq2bsnr"; + libraryHaskellDepends = [ + base kan-extensions lens mcmc-types mwc-probability pipes primitive + transformers + ]; + testHaskellDepends = [ base containers ]; + description = "Speedy slice sampling"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "spelling-suggest" = callPackage ({ mkDerivation, base, edit-distance, parseargs, phonetic-code , sqlite @@ -231562,6 +233187,17 @@ self: { broken = true; }) {}; + "splint" = callPackage + ({ mkDerivation, base, containers, ghc, hlint, stm }: + mkDerivation { + pname = "splint"; + version = "1.0.1.1"; + sha256 = "14rwj7dbzg01lv4abwrgxjianwnshnycsmxcckw1hhqc8wx9jdac"; + libraryHaskellDepends = [ base containers ghc hlint stm ]; + description = "HLint as a GHC source plugin"; + license = stdenv.lib.licenses.isc; + }) {}; + "split_0_1_4_3" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -231661,6 +233297,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "splitmix_0_1" = callPackage + ({ mkDerivation, async, base, base-compat, base-compat-batteries + , bytestring, clock, containers, criterion, deepseq, HUnit + , math-functions, process, random, test-framework + , test-framework-hunit, tf-random, time, vector + }: + mkDerivation { + pname = "splitmix"; + version = "0.1"; + sha256 = "1yhbh6zsklz5fbas2v69xd2qi3xvk4zidzl0acv17fyxa9rwh48w"; + libraryHaskellDepends = [ base deepseq time ]; + testHaskellDepends = [ + async base base-compat base-compat-batteries bytestring containers + deepseq HUnit math-functions process random test-framework + test-framework-hunit tf-random vector + ]; + benchmarkHaskellDepends = [ + base clock containers criterion random tf-random + ]; + description = "Fast Splittable PRNG"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "splitter" = callPackage ({ mkDerivation, base, directory, filepath, parsec, range }: mkDerivation { @@ -232208,6 +233868,21 @@ self: { broken = true; }) {}; + "squares" = callPackage + ({ mkDerivation, adjunctions, base, bifunctors, comonad + , distributive, profunctors + }: + mkDerivation { + pname = "squares"; + version = "0.1.1"; + sha256 = "1lql2qzyiffs09y3iw1wi190agjg49nic95n57jhzcixavk91fgn"; + libraryHaskellDepends = [ + adjunctions base bifunctors comonad distributive profunctors + ]; + description = "The double category of Hask functors and profunctors"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "squeal-postgresql" = callPackage ({ mkDerivation, aeson, async, base, binary, binary-parser , bytestring, bytestring-strict-builder, deepseq, doctest @@ -232687,8 +234362,8 @@ self: { pname = "stache"; version = "2.1.1"; sha256 = "06pn7pm5vgk9f4bsh3m29cik514nv5w655ip04k7p5jv9xgmn4ld"; - revision = "1"; - editedCabalFile = "1cs3pnbxmjpzizydncai7wr5aj454374wr1sc0h705c4cbxqlfs0"; + revision = "2"; + editedCabalFile = "1a25mwi1x3yqq9clm9gz0dibpnppznbx392ixfwc21hnngn7kxsp"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring containers deepseq directory filepath @@ -233509,6 +235184,29 @@ self: { broken = true; }) {}; + "stackcollapse-ghc" = callPackage + ({ mkDerivation, base, bytestring, containers, extra, foldl, hspec + , hspec-golden, recursion-schemes, rosezipper, safe, text + , transformers, utf8-string + }: + mkDerivation { + pname = "stackcollapse-ghc"; + version = "0.0.1"; + sha256 = "0skpikc7yvdqcdaxqiyav4dk6k0sqng9160dgi4yfx54f5za1a64"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring containers extra foldl recursion-schemes rosezipper + safe text transformers + ]; + testHaskellDepends = [ + base bytestring containers extra foldl hspec hspec-golden + recursion-schemes rosezipper safe text transformers utf8-string + ]; + description = "Program to fold GHC prof files into flamegraph input"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "stacked-dag" = callPackage ({ mkDerivation, base, containers, doctest, graphviz , optparse-applicative, text @@ -233866,6 +235564,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libstatgrab;}; + "static" = callPackage + ({ mkDerivation, base, binary, bytestring, constraints, doctest + , mtl, serialise, singletons, tasty, tasty-hunit, template-haskell + , text, transformers + }: + mkDerivation { + pname = "static"; + version = "0.1.0.1"; + sha256 = "1w99kc32r0pfsi3l1bjy7sp5hga5j7fqv0ix8gszzhz600yzphlq"; + libraryHaskellDepends = [ + base binary bytestring constraints serialise singletons + template-haskell text + ]; + testHaskellDepends = [ + base doctest mtl tasty tasty-hunit transformers + ]; + description = "Type-safe and interoperable static values and closures"; + license = stdenv.lib.licenses.gpl3Plus; + }) {}; + "static-canvas" = callPackage ({ mkDerivation, base, double-conversion, free, mtl, text }: mkDerivation { @@ -235300,15 +237018,15 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "stratosphere_0_52_0" = callPackage + "stratosphere_0_53_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers , hashable, hspec, hspec-discover, lens, template-haskell, text , unordered-containers }: mkDerivation { pname = "stratosphere"; - version = "0.52.0"; - sha256 = "1js5rb5f0p7ryja5slpxjpvqfq4f72bw9f66ysd70cjvw3zf3hbh"; + version = "0.53.0"; + sha256 = "0842sfn7vspbq5kc6rx7i2mvmk6zap87233khybbmvrzzyrp0sp2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -236113,18 +237831,18 @@ self: { }) {}; "streamly-fsnotify" = callPackage - ({ mkDerivation, base, fsnotify, paths, semirings, streamly, text - , time + ({ mkDerivation, base, filepath, fsnotify, semirings, streamly + , text, time }: mkDerivation { pname = "streamly-fsnotify"; - version = "1.0.0.1"; - sha256 = "0w81r0szdf4q8v6n389qlzwslhfwvjf0m9nihxsm1y0jgxbzy5cb"; + version = "1.1.1.0"; + sha256 = "1xcw4rsrysh96d91wjmyzb5s7cls3rf0ilpv8dn525iqzv11fl3l"; libraryHaskellDepends = [ - base fsnotify paths semirings streamly text time + base filepath fsnotify semirings streamly text time ]; description = "Folder watching as a Streamly stream"; - license = stdenv.lib.licenses.gpl3Plus; + license = stdenv.lib.licenses.bsd3; }) {}; "streamly-posix" = callPackage @@ -236544,6 +238262,8 @@ self: { pname = "string-interpolate"; version = "0.2.1.0"; sha256 = "0wply8lqfhc1xnqxq88xwygwqxbq86gjrwphygbn7nz66g2abgda"; + revision = "1"; + editedCabalFile = "1xp470mrm3srvmvk6xznx9wim8xwsz93pskpv4hnk2ra3a7lr2lr"; libraryHaskellDepends = [ base bytestring haskell-src-exts haskell-src-meta split template-haskell text text-conversions utf8-string @@ -236840,6 +238560,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stripe-concepts_1_0_2_4" = callPackage + ({ mkDerivation, base, bytestring, text }: + mkDerivation { + pname = "stripe-concepts"; + version = "1.0.2.4"; + sha256 = "0n4q3hsgqrqypmkkim8mcksdlljgldr908wqxlcz6k1wsv9klyc6"; + libraryHaskellDepends = [ base bytestring text ]; + description = "Types for the Stripe API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stripe-core" = callPackage ({ mkDerivation, aeson, base, bytestring, mtl, text, time , transformers, unordered-containers @@ -236920,8 +238652,8 @@ self: { }: mkDerivation { pname = "stripe-scotty"; - version = "1.0.0.2"; - sha256 = "1dvmagbxgmlf7970rwf0cjdk8fcpxkl1isiki1bpq4zd07cjnsfv"; + version = "1.0.0.4"; + sha256 = "0gkagcq2brl4kav6ha333fyl9npgllwws4ixz0z6nas6xf2953pk"; libraryHaskellDepends = [ aeson base bytestring http-types scotty stripe-concepts stripe-signature text unordered-containers @@ -236947,6 +238679,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stripe-signature_1_0_0_4" = callPackage + ({ mkDerivation, base, base16-bytestring, bytestring, cryptonite + , memory, stripe-concepts, text + }: + mkDerivation { + pname = "stripe-signature"; + version = "1.0.0.4"; + sha256 = "1gsw1a1x4a46fiihwqsh2706nsrjy00mv881fmc1aab7ln2cmzkg"; + libraryHaskellDepends = [ + base base16-bytestring bytestring cryptonite memory stripe-concepts + text + ]; + testHaskellDepends = [ base bytestring text ]; + description = "Verification of Stripe webhook signatures"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stripe-tests" = callPackage ({ mkDerivation, aeson, base, bytestring, free, hspec, hspec-core , mtl, random, stripe-core, text, time, transformers @@ -236972,8 +238722,8 @@ self: { }: mkDerivation { pname = "stripe-wreq"; - version = "1.0.1.2"; - sha256 = "0hjk9d0xlg2a6nc2rmc19fmifcyrdj5m69100fy5xkq6brcqxjz1"; + version = "1.0.1.4"; + sha256 = "08c5jkxri3ix19m04w6md1mwc9wd8fgsqr7v3dxzab51ylfivdcr"; libraryHaskellDepends = [ aeson base bytestring lens stripe-concepts text unordered-containers wreq @@ -236982,6 +238732,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stripeapi" = callPackage + ({ mkDerivation, aeson, base, bytestring, ghc-prim, http-client + , http-conduit, http-types, mtl, scientific, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "stripeapi"; + version = "0.1.0.0"; + sha256 = "18qprai04gmpqzlqlqi8rabhljriqb2ph2g3iy2glq8yf3cnvc1n"; + libraryHaskellDepends = [ + aeson base bytestring ghc-prim http-client http-conduit http-types + mtl scientific text time transformers unordered-containers vector + ]; + description = "Stripe-Library"; + license = stdenv.lib.licenses.mit; + }) {}; + "strips" = callPackage ({ mkDerivation, base, containers, hspec, mtl }: mkDerivation { @@ -237019,6 +238786,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "strive_5_0_12" = callPackage + ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline + , http-client, http-client-tls, http-types, markdown-unlit + , template-haskell, text, time, transformers + }: + mkDerivation { + pname = "strive"; + version = "5.0.12"; + sha256 = "1fdwmcpgfw7maw4lf4mw3qs8fiwxdsv518xjjmrp5w3hfjdlqgmz"; + libraryHaskellDepends = [ + aeson base bytestring data-default gpolyline http-client + http-client-tls http-types template-haskell text time transformers + ]; + testHaskellDepends = [ base bytestring markdown-unlit time ]; + testToolDepends = [ markdown-unlit ]; + description = "A client for the Strava V3 API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "strongswan-sql" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, attoparsec, base , bytestring, data-default, failable, haskeline, io-streams @@ -237120,6 +238907,27 @@ self: { broken = true; }) {}; + "structured" = callPackage + ({ mkDerivation, aeson, array, base, base16-bytestring, binary + , bytestring, containers, hashable, scientific, tagged, text + , time-compat, transformers, unordered-containers, uuid-types + , vector + }: + mkDerivation { + pname = "structured"; + version = "0.1"; + sha256 = "0xm0m7jxwrbz8jgcn2dl5vhlz0gcg7wxcbbgaqidm2msmnc6fqww"; + revision = "1"; + editedCabalFile = "067ljj4dfa9kvri944flcw489sy2fbyw75b2s9hz916zdqmzqjwd"; + libraryHaskellDepends = [ + aeson array base base16-bytestring binary bytestring containers + hashable scientific tagged text time-compat transformers + unordered-containers uuid-types vector + ]; + description = "Structure (hash) of your data types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "structured-cli" = callPackage ({ mkDerivation, base, data-default, haskeline, mtl, split , transformers @@ -237803,22 +239611,21 @@ self: { }) {}; "summoner" = callPackage - ({ mkDerivation, aeson, base, bytestring, colourista, containers - , directory, filepath, generic-data, gitrev, hedgehog, hspec - , hspec-hedgehog, neat-interpolation, optparse-applicative, process - , relude, shellmet, text, time, tomland, tree-diff - , validation-selective + ({ mkDerivation, aeson, base, colourista, containers, directory + , filepath, generic-data, gitrev, hedgehog, hspec, hspec-hedgehog + , neat-interpolation, optparse-applicative, process, relude + , shellmet, text, time, tomland, tree-diff, validation-selective }: mkDerivation { pname = "summoner"; - version = "2.0.0.0"; - sha256 = "0cphigybxmvh2ff62b100hywqgln6fhsl68yp2049g4wnmvfzgjf"; + version = "2.0.1.1"; + sha256 = "15n4dwhy4ri1vi446fa2k9i6cxvfrl79hjjgsdjhpyz290lfwvjv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring colourista containers directory filepath - generic-data gitrev neat-interpolation optparse-applicative process - relude shellmet text time tomland validation-selective + aeson base colourista containers directory filepath generic-data + gitrev neat-interpolation optparse-applicative process relude + shellmet text time tomland validation-selective ]; executableHaskellDepends = [ base relude ]; testHaskellDepends = [ @@ -237833,17 +239640,17 @@ self: { }) {}; "summoner-tui" = callPackage - ({ mkDerivation, base, brick, directory, filepath, microlens + ({ mkDerivation, base, brick, colourista, directory, microlens , microlens-th, relude, summoner, text, validation-selective, vty }: mkDerivation { pname = "summoner-tui"; - version = "2.0.0.0"; - sha256 = "1cgwdfbw55xvmw3k8cbwlcf8773mz1rlsvnf1slsk8kn91irhs9g"; + version = "2.0.1.1"; + sha256 = "09rc3yyngma602yyd7bmc6cix9rcwmanfphcxnsv8m1cswjhz14z"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base brick directory filepath microlens microlens-th relude + base brick colourista directory microlens microlens-th relude summoner text validation-selective vty ]; executableHaskellDepends = [ base relude ]; @@ -238684,6 +240491,8 @@ self: { pname = "swagger2"; version = "2.6"; sha256 = "0vkhikxf1gpspc9qjgnvz3glb01bd54bnc5kraac7dyn8cxzwak8"; + revision = "2"; + editedCabalFile = "1gdq1kiccn6qv05fnkb2dzsnsds2v3gri29gd8l1x9vx74mpbh0j"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ aeson aeson-pretty base base-compat-batteries bytestring containers @@ -238870,8 +240679,8 @@ self: { }: mkDerivation { pname = "syb-with-class"; - version = "0.6.1.12"; - sha256 = "1cxy0mph0kqdi3hzy5x3c754a3sjdn14x64ga4bkhvzi6iwbfcq0"; + version = "0.6.1.13"; + sha256 = "1w767im0a2qdi6br6lx4kh946yryibjwjx4a64cijxfrj7gbfxk5"; libraryHaskellDepends = [ array base bytestring containers template-haskell ]; @@ -241499,8 +243308,6 @@ self: { ]; description = "Terminal Art"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "task" = callPackage @@ -241612,17 +243419,17 @@ self: { }) {}; "taskwarrior" = callPackage - ({ mkDerivation, aeson, base, bytestring, hspec, hspec-discover - , process, QuickCheck, quickcheck-instances, random, text, time - , unordered-containers, uuid + ({ mkDerivation, aeson, base, bytestring, containers, hspec + , hspec-discover, process, QuickCheck, quickcheck-instances, random + , text, time, unordered-containers, uuid }: mkDerivation { pname = "taskwarrior"; - version = "0.2.1.0"; - sha256 = "1ladijvlvr6w35y1qlxbp0y34bby58a9bfyhqiynn0s4m5bj55c6"; + version = "0.3.0.0"; + sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; libraryHaskellDepends = [ - aeson base bytestring process random text time unordered-containers - uuid + aeson base bytestring containers process random text time + unordered-containers uuid ]; testHaskellDepends = [ aeson base hspec QuickCheck quickcheck-instances text time @@ -241631,6 +243438,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types and aeson instances for taskwarrior tasks"; license = stdenv.lib.licenses.agpl3Plus; + maintainers = with stdenv.lib.maintainers; [ maralorn ]; }) {}; "tasty" = callPackage @@ -241650,15 +243458,15 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "tasty_1_3" = callPackage + "tasty_1_3_1" = callPackage ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl , optparse-applicative, stm, tagged, unbounded-delays, unix , wcwidth }: mkDerivation { pname = "tasty"; - version = "1.3"; - sha256 = "0c9vmy31z6i4ligrsk0lcn8ir9qajc2yp3zdn8nnjd0myzddzf3b"; + version = "1.3.1"; + sha256 = "1p8lq0yd1880knnygv4spgjj3j2mi8bawd018vcxy9rml7sdzm8w"; libraryHaskellDepends = [ ansi-terminal async base clock containers mtl optparse-applicative stm tagged unbounded-delays unix wcwidth @@ -241708,17 +243516,6 @@ self: { }) {}; "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "2.0.0.3"; - sha256 = "02qzyrn33ylfbk2mgwj08lphprxvzh85c0dz2540qp1j6xa5zxpn"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - - "tasty-dejafu_2_0_0_4" = callPackage ({ mkDerivation, base, dejafu, random, tagged, tasty }: mkDerivation { pname = "tasty-dejafu"; @@ -241727,7 +243524,6 @@ self: { libraryHaskellDepends = [ base dejafu random tagged tasty ]; description = "Deja Fu support for the Tasty test framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-discover" = callPackage @@ -242115,6 +243911,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "tasty-mgolden" = callPackage + ({ mkDerivation, base, Diff, filepath, hlint, tasty + , tasty-expected-failure, tasty-hunit, text, typed-process + }: + mkDerivation { + pname = "tasty-mgolden"; + version = "0.0.1"; + sha256 = "0ysx6gvaz1n1agyw721ay3k7n2l43p2l1p1mf4ppvs4wkg8aibmw"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base Diff filepath tasty text ]; + executableHaskellDepends = [ + base Diff filepath tasty tasty-expected-failure tasty-hunit text + ]; + testHaskellDepends = [ + base Diff filepath hlint tasty tasty-expected-failure tasty-hunit + text typed-process + ]; + description = "Golden testing provider for tasty with muti-line diff output"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tasty-program" = callPackage ({ mkDerivation, base, deepseq, directory, filepath, process, tasty }: @@ -242614,6 +244432,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tdlib" = callPackage + ({ mkDerivation, base, bytestring, tdjson }: + mkDerivation { + pname = "tdlib"; + version = "0.1.1"; + sha256 = "0a364p5yyz4fq1a4fp6amgvj5fkl1dijd7gdy2fbykj0qkaf5dix"; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ tdjson ]; + testHaskellDepends = [ base bytestring ]; + testSystemDepends = [ tdjson ]; + description = "Bidings to the tdlib json interface"; + license = stdenv.lib.licenses.bsd3; + }) {tdjson = null;}; + "tdoc" = callPackage ({ mkDerivation, base, bytestring, template-haskell, transformers , xhtml @@ -243376,8 +245208,6 @@ self: { ]; description = "TensorFlow bindings"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {libtensorflow = null;}; "tensorflow-core-ops" = callPackage @@ -243398,8 +245228,6 @@ self: { ]; description = "Haskell wrappers for Core Tensorflow Ops"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "tensorflow-logging" = callPackage @@ -243428,8 +245256,6 @@ self: { ]; description = "TensorBoard related functionality"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "tensorflow-mnist" = callPackage @@ -243511,8 +245337,6 @@ self: { ]; description = "Friendly layer around TensorFlow bindings"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "tensorflow-proto" = callPackage @@ -243814,8 +245638,8 @@ self: { }: mkDerivation { pname = "termonad"; - version = "3.1.0.0"; - sha256 = "15zh50v5hszvr4xz6hwmwaga2g1avrfhnjzzx9dmghjyggwkhfa2"; + version = "3.1.0.1"; + sha256 = "0arh308hyv6jxj6sjscfdi5n35n4mcxc8kqrjlk6054lm4b9yhxx"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -245499,8 +247323,8 @@ self: { ({ mkDerivation, base, HTF, text }: mkDerivation { pname = "text-utils"; - version = "0.1.0.0"; - sha256 = "0qi64qznipg43x39ah3cnv6l8axj7az2fplcm6jr6xch52yf1dk3"; + version = "0.1.1.0"; + sha256 = "0ljf2r6mqlay9sj87wdnr25rrrbc80phl71i8wzpfn13zyn52w8m"; libraryHaskellDepends = [ base text ]; testHaskellDepends = [ base HTF text ]; description = "Various text utilities"; @@ -246266,6 +248090,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-test-utils_1_0_2" = callPackage + ({ mkDerivation, base, tasty, tasty-hunit, template-haskell + , transformers + }: + mkDerivation { + pname = "th-test-utils"; + version = "1.0.2"; + sha256 = "1c0450d9q8ndk8zyj7x9ybl892jijrzn3pcxqm5igki9n8x3w37k"; + libraryHaskellDepends = [ base template-haskell transformers ]; + testHaskellDepends = [ + base tasty tasty-hunit template-haskell transformers + ]; + description = "Utility functions for testing Template Haskell code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-to-exp" = callPackage ({ mkDerivation, base, hspec, template-haskell }: mkDerivation { @@ -246519,8 +248360,8 @@ self: { pname = "these"; version = "1.0.1"; sha256 = "1k0pi65g7cm9hzdw6my6bzz2zvddkmj1qs45ymqmi316bpiixk3r"; - revision = "3"; - editedCabalFile = "1z6aqz41m1cdm5q5y4jj4fl9j1qcvi32d08r2a103x5ndhf8151q"; + revision = "4"; + editedCabalFile = "06w5wyiq9cbbk1r9ga1ib2d8phlbs483kxp7ql8ygpapdd2a5nsq"; libraryHaskellDepends = [ aeson assoc base base-compat binary deepseq hashable QuickCheck semigroupoids unordered-containers @@ -246529,14 +248370,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "these_1_1" = callPackage + ({ mkDerivation, assoc, base, base-compat, binary, deepseq + , hashable + }: + mkDerivation { + pname = "these"; + version = "1.1"; + sha256 = "0dxi9jwahibn2sgnqsr5kgm91i2nqibzc4r4s04jwwpjwhcyn2xv"; + libraryHaskellDepends = [ + assoc base base-compat binary deepseq hashable + ]; + description = "An either-or-both data type"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "these-lens" = callPackage ({ mkDerivation, base, base-compat, lens, these }: mkDerivation { pname = "these-lens"; version = "1"; sha256 = "144ly13qng95mwnfis8dm7n3843z3w2vp4212qawbpw8hw921c7y"; - revision = "2"; - editedCabalFile = "0krnf1arsr05ygqcpfd7p34k7319fwjbg59fqhilrjl6jzzpyaka"; + revision = "3"; + editedCabalFile = "0nb0irhnj9xvhnyl13bmp86my0idhhqslmszi3jvggr5sk3jzi8a"; libraryHaskellDepends = [ base base-compat lens these ]; description = "Lenses for These"; license = stdenv.lib.licenses.bsd3; @@ -246548,8 +248405,8 @@ self: { pname = "these-optics"; version = "1"; sha256 = "0gmsykzcjx5h6dbfny4dw3jrm33ykcw6rpngf5awwdpg3a4cfgi7"; - revision = "3"; - editedCabalFile = "0nmn7gkq9gx1zfs6sbib3m7zrrjhndfhx2m6sw68nkmc1baipg33"; + revision = "4"; + editedCabalFile = "1wdh7l300ckmx72ky0qjgmfv075rnzj78zv5hlgna0f9df7ib3yw"; libraryHaskellDepends = [ base optics-core these ]; description = "Optics for These"; license = stdenv.lib.licenses.bsd3; @@ -246879,6 +248736,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "threepenny-gui_0_8_3_2" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, containers + , data-default, deepseq, exceptions, file-embed, filepath, hashable + , safe, snap-core, snap-server, stm, template-haskell, text + , transformers, unordered-containers, vault, vector, websockets + , websockets-snap + }: + mkDerivation { + pname = "threepenny-gui"; + version = "0.8.3.2"; + sha256 = "0l18slr09dn4vq9avc1l724cqfv1xclx32f0gnvkcwksg6yjig0r"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson async base bytestring containers data-default deepseq + exceptions file-embed filepath hashable safe snap-core snap-server + stm template-haskell text transformers unordered-containers vault + vector websockets websockets-snap + ]; + description = "GUI framework that uses the web browser as a display"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "threepenny-gui-contextmenu" = callPackage ({ mkDerivation, base, threepenny-gui }: mkDerivation { @@ -247005,8 +248887,8 @@ self: { pname = "through-text"; version = "0.1.0.0"; sha256 = "1kdl36n98kajaa7v7js2sy8bi09p8rrxmlfcclcfc1l92bd2aclk"; - revision = "4"; - editedCabalFile = "1clc4g6rg5970654fd596ygly79axkhyzn773by1wi4grvhw96fi"; + revision = "5"; + editedCabalFile = "1fdy2wyczl2jncy9gg0asasb8bybcnif8aqnw9fq73sr1778kjpf"; libraryHaskellDepends = [ base bytestring case-insensitive text ]; description = "Convert textual types through Text without needing O(n^2) instances"; license = stdenv.lib.licenses.bsd3; @@ -247260,6 +249142,27 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "tidal_1_5_2" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, clock, colour + , containers, criterion, deepseq, hosc, microspec, network, parsec + , primitive, random, text, transformers, vector, weigh + }: + mkDerivation { + pname = "tidal"; + version = "1.5.2"; + sha256 = "03y1hfwc5frbqhcwvvfr6ykas0sy6pw982sgdgkvd3l0wbmnhdrz"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base bifunctors bytestring clock colour containers deepseq hosc + network parsec primitive random text transformers vector + ]; + testHaskellDepends = [ base containers microspec parsec ]; + benchmarkHaskellDepends = [ base criterion weigh ]; + description = "Pattern language for improvised music"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tidal-midi" = callPackage ({ mkDerivation, base, containers, PortMidi, tidal, time , transformers @@ -248052,8 +249955,8 @@ self: { }: mkDerivation { pname = "timeplot"; - version = "1.0.32"; - sha256 = "0ijwday27b3irq6cclab4jlxmxxsjdl5d3gm9igay7fqyif0lmiv"; + version = "1.0.33"; + sha256 = "0jqmgxhvishmh5rh91501pmpbzhj1p7pp87z1wpls9ksscjs925f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -248175,8 +250078,8 @@ self: { ({ mkDerivation, base, time }: mkDerivation { pname = "timespan"; - version = "0.3.0.0"; - sha256 = "07w529iq0xql1adz7m54p8gljmc2jf61by2b1786avbp1lg1x9a6"; + version = "0.4.0.0"; + sha256 = "1gzrdwysyk3lj5pr53w63c8mk0i22rip4v2jp4h38f85lanzwb2b"; libraryHaskellDepends = [ base time ]; description = "Useful timespan datatype and functions"; license = stdenv.lib.licenses.mit; @@ -249364,6 +251267,38 @@ self: { license = stdenv.lib.licenses.mpl20; }) {}; + "tomland_1_3_0_0" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, directory + , hashable, hedgehog, hspec, hspec-golden, hspec-hedgehog + , hspec-megaparsec, markdown-unlit, megaparsec, mtl + , parser-combinators, text, time, transformers + , unordered-containers, validation-selective + }: + mkDerivation { + pname = "tomland"; + version = "1.3.0.0"; + sha256 = "15bzq3frgpqxvvs9r6x8fc66w6rixh81d19ps1x0hr46gcj7b1i4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers deepseq hashable megaparsec mtl + parser-combinators text time transformers unordered-containers + validation-selective + ]; + executableHaskellDepends = [ + base bytestring containers hashable text time unordered-containers + ]; + executableToolDepends = [ markdown-unlit ]; + testHaskellDepends = [ + base bytestring containers directory hashable hedgehog hspec + hspec-golden hspec-hedgehog hspec-megaparsec megaparsec text time + unordered-containers + ]; + description = "Bidirectional TOML serialization"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tomlcheck" = callPackage ({ mkDerivation, base, htoml-megaparsec, megaparsec , optparse-applicative, text @@ -249426,8 +251361,8 @@ self: { }: mkDerivation { pname = "tonatona-google-server-api"; - version = "0.1.2.0"; - sha256 = "1pmpmmyqs41anm0b2cmf0fj75lz31w5s1bidjqjyqymznpna0i0j"; + version = "0.1.3.0"; + sha256 = "1kw2i4il75kzgxim53phdb07gd1axadh262k3g4639kakij7giif"; libraryHaskellDepends = [ base google-server-api monad-logger persistent persistent-sqlite resource-pool servant-client tonalude tonaparser tonatona @@ -251084,8 +253019,8 @@ self: { pname = "tree-diff"; version = "0.1"; sha256 = "1156nbqn0pn9lp4zjsy4vv5g5wmy4zxwmbqdgvq349rydynh3ng3"; - revision = "2"; - editedCabalFile = "081fcdkps3sc1pcfbcxs5f1ifnpx8hsk9ms2gafd793lia6whfsk"; + revision = "4"; + editedCabalFile = "0zl94ppd94szvmqa7vnpbcr2zfppbqm4k6isidzks2mz2ji9dc1i"; libraryHaskellDepends = [ aeson ansi-terminal ansi-wl-pprint base base-compat bytestring bytestring-builder containers hashable parsec parsers pretty @@ -251252,6 +253187,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tree-sitter-rust" = callPackage + ({ mkDerivation, base, tree-sitter }: + mkDerivation { + pname = "tree-sitter-rust"; + version = "0.1.0.0"; + sha256 = "1ba8b19nq48fvfn5gcc15mbr65n9fxz4hx1b04h9fbmd4bx6haaj"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ base tree-sitter ]; + description = "Tree-sitter grammar/parser for Rust"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tree-sitter-tsx" = callPackage ({ mkDerivation, base, tree-sitter }: mkDerivation { @@ -251412,6 +253359,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "trek" = callPackage + ({ mkDerivation, base, logict, mtl }: + mkDerivation { + pname = "trek"; + version = "0.0.1.0"; + sha256 = "02rvyq11591d83rxhmb3c9bi7ahsh7lpwf2a7am2fd3625l5rq55"; + libraryHaskellDepends = [ base logict mtl ]; + testHaskellDepends = [ base logict mtl ]; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "trek-lens" = callPackage + ({ mkDerivation, base, lens, logict, mtl, trek }: + mkDerivation { + pname = "trek-lens"; + version = "0.0.1.0"; + sha256 = "038qn30g82c2wzalhbgb6cglclld8kfmi6m1q76mr9yl9s2h6mf1"; + libraryHaskellDepends = [ base lens logict mtl trek ]; + testHaskellDepends = [ base lens logict mtl trek ]; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tremulous-query" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq , mtl, network @@ -252031,6 +254000,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ttc_0_2_2_0" = callPackage + ({ mkDerivation, base, bytestring, tasty, tasty-hunit + , template-haskell, text + }: + mkDerivation { + pname = "ttc"; + version = "0.2.2.0"; + sha256 = "0ixkfjmjar4sv6a7n0fjrrpbmkb9143lzbmkrxxklf2r71qy9mcf"; + libraryHaskellDepends = [ base bytestring template-haskell text ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit template-haskell text + ]; + description = "Textual Type Classes"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ttl-hashtables" = callPackage ({ mkDerivation, base, clock, containers, data-default, failable , hashable, hashtables, hspec, mtl, transformers @@ -254024,8 +256010,8 @@ self: { }: mkDerivation { pname = "typed-encoding"; - version = "0.2.1.0"; - sha256 = "0z5wp666293d5nsajqa3c8b03n1s85kr3v5hrkvsqv9lq3s49jnp"; + version = "0.4.0.0"; + sha256 = "0h8vpmb0apqvriyjzfagpsd3gxav77d8nygl8s61fbzal7d4zxrx"; libraryHaskellDepends = [ base base64-bytestring bytestring symbols text ]; @@ -254521,8 +256507,8 @@ self: { }: mkDerivation { pname = "tz"; - version = "0.1.3.3"; - sha256 = "1cnin3dlk6xmvk5cz1sjj88djdv1rq87hvwmhc2dj22hgbs3p3ni"; + version = "0.1.3.4"; + sha256 = "11sg11alwlibnl62bd9s3gvhha8c523625cn6y4x10avv6jv320y"; libraryHaskellDepends = [ base binary bytestring containers data-default deepseq template-haskell time tzdata vector @@ -254934,6 +256920,8 @@ self: { pname = "uhttpc"; version = "0.1.1.1"; sha256 = "01plkj4n34s1xbdaky61xzqnc7z2zfx6dzqdlv21np8rk6lirr7d"; + revision = "1"; + editedCabalFile = "1kqb3dzxqhnhcwrdg8bsxkg9vya9zmflihmxxp8whmzb4k8vy9ph"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -255679,10 +257667,10 @@ self: { }: mkDerivation { pname = "unicode-tricks"; - version = "0.7.0.0"; - sha256 = "0lwpdqzprm0s7dgn5pvb6plklr45s4qqa0cbash296zcx8195imx"; + version = "0.8.0.0"; + sha256 = "1ilbl1f5kigb09n1a8nkm484sjyvi7k3wnga6gj5jgss00xj4xfb"; libraryHaskellDepends = [ base data-default QuickCheck text ]; - testHaskellDepends = [ base hspec ]; + testHaskellDepends = [ base hspec QuickCheck ]; testToolDepends = [ hspec-discover ]; description = "Functions to work with unicode blocks more convenient"; license = stdenv.lib.licenses.bsd3; @@ -256559,6 +258547,32 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "unliftio_0_2_13" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , directory, filepath, gauge, hspec, process, QuickCheck, stm, time + , transformers, unix, unliftio-core + }: + mkDerivation { + pname = "unliftio"; + version = "0.2.13"; + sha256 = "1wzrdrcclkbyfjchad60rs08r1b2d20mr7hcs55cx8x16962qmn2"; + libraryHaskellDepends = [ + async base bytestring deepseq directory filepath process stm time + transformers unix unliftio-core + ]; + testHaskellDepends = [ + async base bytestring containers deepseq directory filepath hspec + process QuickCheck stm time transformers unix unliftio-core + ]; + benchmarkHaskellDepends = [ + async base bytestring deepseq directory filepath gauge process stm + time transformers unix unliftio-core + ]; + description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unliftio-core" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -257764,8 +259778,8 @@ self: { }: mkDerivation { pname = "userid"; - version = "0.1.3.4"; - sha256 = "149c32v5fa4aqkknqwlamf1r06ki0g0q03nbsc0giaw5qsavf7x1"; + version = "0.1.3.5"; + sha256 = "0lk3a07sh7i5hh3b5d2734iw3qwz0q4dnf4b6j9br69vi35k64cw"; libraryHaskellDepends = [ aeson base boomerang cereal safecopy web-routes web-routes-th ]; @@ -259773,8 +261787,8 @@ self: { pname = "vector-fftw"; version = "0.1.3.8"; sha256 = "0xlr4566hh6lnpinzrk623a96jnb8mp8mq6cymlsl8y38qx36jp6"; - revision = "2"; - editedCabalFile = "16qbqswgrx48lc4h5fa8ccyxv448scad9f2p9qvgzsn66lmm7iqc"; + revision = "3"; + editedCabalFile = "0wh7sa71gl1ssqqd4axyvwxlmkfb0n3hm90imjvg0vsp7g2y7zs0"; libraryHaskellDepends = [ base primitive storable-complex vector ]; librarySystemDepends = [ fftw ]; description = "A binding to the fftw library for one-dimensional vectors"; @@ -260345,24 +262359,6 @@ self: { }) {}; "versions" = callPackage - ({ mkDerivation, base, base-prelude, checkers, deepseq, hashable - , megaparsec, microlens, QuickCheck, tasty, tasty-hunit - , tasty-quickcheck, text - }: - mkDerivation { - pname = "versions"; - version = "3.5.3"; - sha256 = "0i883v04i1a3sjn1vx15yb3bwi9pq41z650aq3zci72vyvbhr0n7"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - testHaskellDepends = [ - base base-prelude checkers megaparsec microlens QuickCheck tasty - tasty-hunit tasty-quickcheck text - ]; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "versions_3_5_4" = callPackage ({ mkDerivation, base, deepseq, hashable, megaparsec, microlens , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text }: @@ -260377,7 +262373,6 @@ self: { ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vflow-types" = callPackage @@ -261450,14 +263445,12 @@ self: { ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: mkDerivation { pname = "vulkan"; - version = "3.3"; - sha256 = "18xch9fs4xnknfvxx867yg3mbp2y9fv4lldrlk7nkqp8hlsgzh1k"; + version = "3.3.1"; + sha256 = "1fbb17xxn6c5wlhdq5qbpkminr7klfczf4f1flzzjy9kvqgisfxn"; libraryHaskellDepends = [ base bytestring transformers vector ]; librarySystemDepends = [ vulkan ]; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {vulkan = null;}; "vulkan-api" = callPackage @@ -261863,6 +263856,36 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-extra_3_0_29_2" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, http2, HUnit, iproute, network, old-locale, resourcet + , streaming-commons, text, time, transformers, unix, unix-compat + , vault, void, wai, wai-logger, word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.29.2"; + sha256 = "00r65l7xmvhc1jx5fq134q1sysx7ja5dzyhv5x55gmnxmqr0p107"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types http2 iproute network old-locale + resourcet streaming-commons text time transformers unix unix-compat + vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base bytestring case-insensitive cookie fast-logger hspec + http-types http2 HUnit resourcet text time transformers wai zlib + ]; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-frontend-monadcgi" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, cgi , containers, http-types, transformers, wai @@ -262053,15 +264076,15 @@ self: { }) {}; "wai-http2-extra" = callPackage - ({ mkDerivation, auto-update, base, bytestring, containers, doctest - , http-types, wai, warp, word8 + ({ mkDerivation, base, bytestring, containers, doctest, http-types + , psqueues, wai, warp, word8 }: mkDerivation { pname = "wai-http2-extra"; - version = "0.1.2"; - sha256 = "1f4ddgrprdnbpdbb6jj8n2ib206dlj5mgf8ar6r1ls2p90vpn6yr"; + version = "0.1.3"; + sha256 = "0nchb2jxaa687lksryhgpyr8s9p7g6z34rcwddan5lzr5khp0g2c"; libraryHaskellDepends = [ - auto-update base bytestring containers http-types wai warp word8 + base bytestring containers http-types psqueues wai warp word8 ]; testHaskellDepends = [ base doctest ]; description = "WAI utilities for HTTP/2"; @@ -262245,8 +264268,8 @@ self: { }: mkDerivation { pname = "wai-middleware-auth"; - version = "0.2.3.0"; - sha256 = "0cah1g4j8vzncp00x0im5clhq198z8k4bq2q4hxcz9n7libz7l3r"; + version = "0.2.3.1"; + sha256 = "0i5zg6pyrr3f9g39jpk557h5rqzrm36279dav3v8n6lrj919x01m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -263448,8 +265471,8 @@ self: { pname = "warc"; version = "1.0.4"; sha256 = "1mxfm8kdvm0l1lnzma4n9mriz94ypckxqcz1f34fa3n1j3ckc45b"; - revision = "3"; - editedCabalFile = "1j51wz7l7vq3mdccn4gp40vlqri9g8fqsmlndgbd70drhq5a6mpw"; + revision = "5"; + editedCabalFile = "1h0pm3zhyzhayfiknqzljayj50gzaagmian81fs94nb6hs5sww5p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -263478,8 +265501,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.3.10"; - sha256 = "0i2pmcqni2j00jff634ajlngixfkz3fvdfhncwzzc4k2zqbnazpz"; + version = "3.3.11"; + sha256 = "09jqdgxpgkch3i9b8mqjp10dljidgmgyg5as72r9c908m75n7a21"; libraryHaskellDepends = [ array async auto-update base bsb-http-chunked bytestring case-insensitive containers ghc-prim hashable http-date http-types @@ -263501,7 +265524,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "warp_3_3_11" = callPackage + "warp_3_3_12" = callPackage ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked , bytestring, case-insensitive, containers, directory, gauge , ghc-prim, hashable, hspec, http-client, http-date, http-types @@ -263511,8 +265534,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.3.11"; - sha256 = "09jqdgxpgkch3i9b8mqjp10dljidgmgyg5as72r9c908m75n7a21"; + version = "3.3.12"; + sha256 = "0fgglpgg2m3nfngymwgzvn467nsg2r0ff36v3xi8jdqwy9x9ia49"; libraryHaskellDepends = [ array async auto-update base bsb-http-chunked bytestring case-insensitive containers ghc-prim hashable http-date http-types @@ -263621,6 +265644,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "warp-tls_3_2_12" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, data-default-class + , network, streaming-commons, tls, tls-session-manager, wai, warp + }: + mkDerivation { + pname = "warp-tls"; + version = "3.2.12"; + sha256 = "1d75zcacr835m7d1b0n7j19432sdf0qwgqxdf6az3f9brg849ajd"; + libraryHaskellDepends = [ + base bytestring cryptonite data-default-class network + streaming-commons tls tls-session-manager wai warp + ]; + description = "HTTP over TLS support for Warp via the TLS package"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "warp-tls-uid" = callPackage ({ mkDerivation, base, bytestring, data-default, network , streaming-commons, tls, unix, wai, warp, warp-tls, x509 @@ -264085,23 +266125,22 @@ self: { "web-rep" = callPackage ({ mkDerivation, aeson, attoparsec, base, bifunctors, box, clay , doctest, foldl, generic-lens, interpolatedstring-perl6 - , javascript-bridge, JuicyPixels, language-javascript, lens, lucid - , lucid-svg, mmorph, mtl, optparse-generic, scotty, streaming - , tasty, tasty-hspec, text, text-format, transformers + , javascript-bridge, language-javascript, lens, lucid, lucid-svg + , mmorph, mtl, optparse-generic, scotty, streaming, tasty + , tasty-hspec, text, text-format, transformers , unordered-containers, wai, wai-extra, wai-middleware-static }: mkDerivation { pname = "web-rep"; - version = "0.3.2"; - sha256 = "0an5vhqm62j0xrxqqf22kjzi7ch57j5nay5g98ngq3r0rvbk1lv3"; + version = "0.5.0"; + sha256 = "0av64gnh4gq8vxqclzn91776g5xpkvlix1v61wbk065lwc5znv26"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson attoparsec base bifunctors box clay foldl generic-lens - interpolatedstring-perl6 javascript-bridge JuicyPixels - language-javascript lens lucid lucid-svg mmorph mtl scotty - streaming text text-format transformers unordered-containers - wai-middleware-static + interpolatedstring-perl6 javascript-bridge language-javascript lens + lucid lucid-svg mmorph mtl scotty streaming text text-format + transformers unordered-containers wai-middleware-static ]; executableHaskellDepends = [ attoparsec base box lens lucid optparse-generic scotty text wai @@ -264229,8 +266268,8 @@ self: { }: mkDerivation { pname = "web-routes-th"; - version = "0.22.6.5"; - sha256 = "1amzab59hhd723clg9skcn5nhwvlw1la1acc9qdbyg302a75s0l9"; + version = "0.22.6.6"; + sha256 = "0z5mcpnp38x6yzazdkdbj9z99837g9nlm4pp3lxzzsib7qs9a6sp"; libraryHaskellDepends = [ base parsec split template-haskell text web-routes ]; @@ -264289,35 +266328,41 @@ self: { }) {}; "web3" = callPackage - ({ mkDerivation, aeson, async, base, basement, bytestring, cereal - , cryptonite, data-default, exceptions, generics-sop, hspec - , hspec-contrib, hspec-discover, hspec-expectations, http-client - , http-client-tls, machines, memory, microlens, microlens-aeson - , microlens-mtl, microlens-th, mtl, OneTuple, parsec, random - , relapse, split, stm, tagged, template-haskell, text, time - , transformers, uuid-types, vinyl + ({ mkDerivation, aeson, async, attoparsec, base, base58string + , basement, bytestring, cereal, cryptonite, data-default, errors + , exceptions, generics-sop, hspec, hspec-contrib, hspec-discover + , hspec-expectations, http-client, http-client-tls, http-media + , http-types, machines, memory, microlens, microlens-aeson + , microlens-mtl, microlens-th, mtl, network, OneTuple, parsec + , random, relapse, servant, servant-client, split, stm, tagged, tar + , template-haskell, text, time, transformers, unordered-containers + , uuid-types, vinyl, websockets }: mkDerivation { pname = "web3"; - version = "0.8.4.0"; - sha256 = "1sib2s0zkn8a26y4mfyyy7vjxj3b5x4nmanj27zijnh2aa8rr51c"; + version = "0.9.0.0"; + sha256 = "19814hp7ngwv5g16yi1sldshrzy3kk0flgqhhh6dd48vr0p4n8f8"; libraryHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop http-client http-client-tls machines memory - microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple - parsec relapse tagged template-haskell text transformers uuid-types - vinyl + aeson async attoparsec base base58string basement bytestring cereal + cryptonite data-default errors exceptions generics-sop hspec + http-client http-client-tls http-media http-types machines memory + microlens microlens-aeson microlens-mtl microlens-th mtl network + OneTuple parsec relapse servant servant-client tagged tar + template-haskell text transformers unordered-containers uuid-types + vinyl websockets ]; testHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop hspec hspec-contrib hspec-discover - hspec-expectations http-client http-client-tls machines memory - microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple - parsec random relapse split stm tagged template-haskell text time - transformers uuid-types vinyl + aeson async attoparsec base base58string basement bytestring cereal + cryptonite data-default errors exceptions generics-sop hspec + hspec-contrib hspec-discover hspec-expectations http-client + http-client-tls http-media http-types machines memory microlens + microlens-aeson microlens-mtl microlens-th mtl network OneTuple + parsec random relapse servant servant-client split stm tagged tar + template-haskell text time transformers unordered-containers + uuid-types vinyl websockets ]; testToolDepends = [ hspec-discover ]; - description = "Ethereum API for Haskell"; + description = "Web3 API for Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -265810,13 +267855,13 @@ self: { }: mkDerivation { pname = "with-utf8"; - version = "1.0.2.0"; - sha256 = "0zb2xrxf1as38iykljm62kdq6in02miw8xvckh86sfn79csggjvg"; + version = "1.0.2.1"; + sha256 = "13zifhmhpdfwifw9bwyn9w5a29iph7h59jx13r0wiw5ry0g7qbif"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base safe-exceptions text ]; executableHaskellDepends = [ - base directory filepath process safe-exceptions th-env + base directory filepath process safe-exceptions text th-env ]; testHaskellDepends = [ base deepseq hedgehog HUnit safe-exceptions tasty tasty-hedgehog @@ -266695,6 +268740,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "worldturtle" = callPackage + ({ mkDerivation, base, containers, gloss, lens, matrix, mtl }: + mkDerivation { + pname = "worldturtle"; + version = "0.1.1.0"; + sha256 = "1dgp54rxn1pkp9afcvikfdpwa93qnnkayhhh5l2hdbx3hxxcd17r"; + libraryHaskellDepends = [ base containers gloss lens matrix mtl ]; + description = "Turtle graphics"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wp-archivebot" = callPackage ({ mkDerivation, base, feed, HTTP, network, parallel, tagsoup }: mkDerivation { @@ -269645,6 +271701,26 @@ self: { broken = true; }) {}; + "xor" = callPackage + ({ mkDerivation, base, bytestring, criterion, ghc-byteorder + , QuickCheck, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "xor"; + version = "0.0.1.0"; + sha256 = "0v2xcyqzd973v8m4i6f02qifa2zq4whrnw3pw332q3rr1kd2pxxw"; + libraryHaskellDepends = [ base bytestring ghc-byteorder ]; + testHaskellDepends = [ + base bytestring ghc-byteorder QuickCheck tasty tasty-hunit + tasty-quickcheck + ]; + benchmarkHaskellDepends = [ + base bytestring criterion ghc-byteorder + ]; + description = "Efficient XOR masking"; + license = stdenv.lib.licenses.gpl2Plus; + }) {}; + "xorshift" = callPackage ({ mkDerivation, base, random, time }: mkDerivation { @@ -269806,51 +271882,47 @@ self: { }) {}; "xrefcheck" = callPackage - ({ mkDerivation, aeson, aeson-options, async, autoexporter - , base-noprelude, bytestring, cmark-gfm, containers, data-default - , deepseq, directory, directory-tree, filepath, fmt, Glob, hspec - , hspec-discover, http-client, http-types, lens, loot-prelude, mtl - , o-clock, optparse-applicative, pretty-terminal, QuickCheck, req - , roman-numerals, template-haskell, text, text-metrics - , th-lift-instances, th-utilities, yaml + ({ mkDerivation, aeson, aeson-options, async, base, bytestring + , cmark-gfm, containers, data-default, deepseq, directory + , directory-tree, filepath, fmt, Glob, hspec, hspec-discover + , http-client, http-types, lens, mtl, o-clock, optparse-applicative + , pretty-terminal, QuickCheck, req, roman-numerals + , template-haskell, text, text-metrics, th-lift-instances + , th-utilities, universum, with-utf8, yaml }: mkDerivation { pname = "xrefcheck"; - version = "0.1.0.0"; - sha256 = "1ap5pdgbvf9zjwbwi3i46jdizm1ggzpknpmmic22kbw8rdv2i9yr"; + version = "0.1.1.2"; + sha256 = "177pxga1jylm5kgnx0bj6sf2vsspgy24inpx7sk49hf297fnykll"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-options async base-noprelude bytestring cmark-gfm - containers data-default deepseq directory directory-tree filepath - fmt Glob http-client http-types lens loot-prelude mtl o-clock - optparse-applicative pretty-terminal req roman-numerals - template-haskell text text-metrics th-lift-instances th-utilities + aeson aeson-options async base bytestring cmark-gfm containers + data-default deepseq directory directory-tree filepath fmt Glob + http-client http-types lens mtl o-clock optparse-applicative + pretty-terminal req roman-numerals template-haskell text + text-metrics th-lift-instances th-utilities universum with-utf8 yaml ]; - libraryToolDepends = [ autoexporter ]; executableHaskellDepends = [ - aeson aeson-options async base-noprelude bytestring cmark-gfm - containers data-default deepseq directory directory-tree filepath - fmt Glob http-client http-types lens loot-prelude mtl o-clock - optparse-applicative pretty-terminal req roman-numerals - template-haskell text text-metrics th-lift-instances th-utilities + aeson aeson-options async base bytestring cmark-gfm containers + data-default deepseq directory directory-tree filepath fmt Glob + http-client http-types lens mtl o-clock optparse-applicative + pretty-terminal req roman-numerals template-haskell text + text-metrics th-lift-instances th-utilities universum with-utf8 yaml ]; - executableToolDepends = [ autoexporter ]; testHaskellDepends = [ - aeson aeson-options async base-noprelude bytestring cmark-gfm - containers data-default deepseq directory directory-tree filepath - fmt Glob hspec http-client http-types lens loot-prelude mtl o-clock - optparse-applicative pretty-terminal QuickCheck req roman-numerals - template-haskell text text-metrics th-lift-instances th-utilities + aeson aeson-options async base bytestring cmark-gfm containers + data-default deepseq directory directory-tree filepath fmt Glob + hspec http-client http-types lens mtl o-clock optparse-applicative + pretty-terminal QuickCheck req roman-numerals template-haskell text + text-metrics th-lift-instances th-utilities universum with-utf8 yaml ]; - testToolDepends = [ autoexporter hspec-discover ]; + testToolDepends = [ hspec-discover ]; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; - }) {loot-prelude = null;}; + }) {}; "xsact" = callPackage ({ mkDerivation, array, base, containers, directory, process @@ -271019,16 +273091,16 @@ self: { "yaya" = callPackage ({ mkDerivation, base, bifunctors, comonad, constraints, containers , distributive, either, errors, free, kan-extensions, lens - , profunctors, template-haskell, transformers + , profunctors, template-haskell, th-abstraction, transformers }: mkDerivation { pname = "yaya"; - version = "0.3.0.0"; - sha256 = "0jwk4pym5rclgk080lwc3ww1wa42xpzlnf31i8clwg1b9h05c8f2"; + version = "0.3.1.2"; + sha256 = "1s2f0b6qya3saw6kjkv89p9jdjxq1bz08896gflja1zjgaw274gn"; libraryHaskellDepends = [ base bifunctors comonad constraints containers distributive either errors free kan-extensions lens profunctors template-haskell - transformers + th-abstraction transformers ]; description = "Total recursion schemes"; license = stdenv.lib.licenses.agpl3; @@ -271038,8 +273110,8 @@ self: { ({ mkDerivation, base, deriving-compat, hedgehog, yaya }: mkDerivation { pname = "yaya-hedgehog"; - version = "0.2.0.0"; - sha256 = "1pc87r0angyg8mym450hwkswnkf3jv8gmxmyalrxwrf5dwh0029y"; + version = "0.2.0.1"; + sha256 = "0aw932d2yr3w84ia44y46w4w96bc8gdag63h66rhx3v7gwmkwdwg"; libraryHaskellDepends = [ base deriving-compat hedgehog yaya ]; description = "Hedgehog testing support for the Yaya recursion scheme library"; license = stdenv.lib.licenses.agpl3; @@ -271051,8 +273123,8 @@ self: { }: mkDerivation { pname = "yaya-test"; - version = "0.3.0.0"; - sha256 = "1jbj9z5bxf1r5c8sdsyrc66rwlf1pgw2xs7iy4bxs5h37l74bqg6"; + version = "0.3.1.0"; + sha256 = "0kmdf5w8ly3vp0krmi2dy7bjw68z0hmy7i0dx0j7j8s3rzdf8dyh"; isLibrary = false; isExecutable = false; testHaskellDepends = [ @@ -271068,8 +273140,8 @@ self: { }: mkDerivation { pname = "yaya-unsafe"; - version = "0.2.0.0"; - sha256 = "0j4cf7v5pzp4cck2mvs56xpsim7z3z9b8hgpivhp64g529wnzszr"; + version = "0.2.0.1"; + sha256 = "1wj9bgczp5pl85c9sa3fn5zzkccn440mdi8gfi0warc98iy9r2pd"; libraryHaskellDepends = [ base bifunctors comonad either free lens yaya ]; @@ -271216,8 +273288,8 @@ self: { ({ mkDerivation, base, yeshql-core, yeshql-hdbc }: mkDerivation { pname = "yeshql"; - version = "4.1.0.1"; - sha256 = "1dlxq8vp18fagfymlzqa4j0ns174s31d7p1vi54wz0b55ml91if4"; + version = "4.2.0.0"; + sha256 = "07wbblsyc1f2kc47s2z4sg4s7qmgn44kvpvdvq9cf59g5nvm4wkd"; libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; license = stdenv.lib.licenses.mit; @@ -271226,15 +273298,16 @@ self: { }) {}; "yeshql-core" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, parsec - , stm, tasty, tasty-hunit, tasty-quickcheck, template-haskell + ({ mkDerivation, base, containers, convertible, fail, filepath + , parsec, stm, tasty, tasty-hunit, tasty-quickcheck + , template-haskell }: mkDerivation { pname = "yeshql-core"; - version = "4.1.0.2"; - sha256 = "1zhpccdqy8y5ynyn2ax7p9l2lvz573f559iqkip26ijq84pjmny0"; + version = "4.2.0.0"; + sha256 = "1rh6pn182h4cjsca7gbbaq3s25y6lmbwcfzsbm7452m9hrwm0vlf"; libraryHaskellDepends = [ - base containers convertible filepath parsec template-haskell + base containers convertible fail filepath parsec template-haskell ]; testHaskellDepends = [ base containers stm tasty tasty-hunit tasty-quickcheck @@ -271252,8 +273325,8 @@ self: { }: mkDerivation { pname = "yeshql-hdbc"; - version = "4.1.0.2"; - sha256 = "1p2j0fys7kdgb9882hiifnc1r4768c8jp7qy69ns1nbhd4f55b7l"; + version = "4.2.0.0"; + sha256 = "0j0himcx5wicynnckzzn5qfbvk68cd4lm8skdz1i9jkqa54vwq2z"; libraryHaskellDepends = [ base containers convertible filepath HDBC parsec template-haskell yeshql-core @@ -271274,8 +273347,8 @@ self: { }: mkDerivation { pname = "yeshql-postgresql-simple"; - version = "4.1.0.2"; - sha256 = "0mpha4lwb8z89cqlqly6ipssx37abpq10wbrhl979gm25s9yp4ab"; + version = "4.2.0.0"; + sha256 = "1lmr7d6w68d10fkf43qdymm4qpy1lpyjmnqpd3nqv7v9vppc7zpm"; libraryHaskellDepends = [ base containers convertible filepath parsec postgresql-simple template-haskell yeshql-core @@ -272563,8 +274636,8 @@ self: { }: mkDerivation { pname = "yesod-markdown"; - version = "0.12.6.2"; - sha256 = "0w9fmqk49b4c9g26dhrrmbwshrfcrnwcnsba97jyhb2m8bc4s1xj"; + version = "0.12.6.3"; + sha256 = "1q2zbb49248ppda5k5lxqnq8s5yf1mym05jwna59m0kfxp63xbj5"; libraryHaskellDepends = [ base blaze-html blaze-markup bytestring directory pandoc persistent shakespeare text xss-sanitize yesod-core yesod-form @@ -272648,8 +274721,8 @@ self: { }: mkDerivation { pname = "yesod-paginator"; - version = "1.1.0.2"; - sha256 = "0r0qprsr2nkhy2b44xixmys32hp3wwhp5x521jzpcrd1jc5x38s9"; + version = "1.1.1.0"; + sha256 = "06zbmklxpxlxy422k01phanj5zj940mm67gjn9vnz5lrs798q7cj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -274657,8 +276730,8 @@ self: { }: mkDerivation { pname = "zeolite-lang"; - version = "0.6.0.0"; - sha256 = "12g5dsyvc47r236yr4lqa9dzkjqcn646xszw92559w9j555a74lf"; + version = "0.7.0.2"; + sha256 = "0n51sbivvzjnspwp2j4mxsm552b0ay7hgmlvj16xy5w17z8r9pg2"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -275116,6 +277189,8 @@ self: { pname = "zinza"; version = "0.2"; sha256 = "1sy4chm8zan0ixgvvq4vm3fzvhqykn315l333al84768nly9rjv8"; + revision = "1"; + editedCabalFile = "0pgrfx4vnc3m6rlmg5qj4skarq5y0ijz3swf3fyy57310lvifr0q"; libraryHaskellDepends = [ base containers parsec text transformers ]; @@ -275314,8 +277389,8 @@ self: { }: mkDerivation { pname = "zipper-extra"; - version = "0.1.1.0"; - sha256 = "1hmbn4vs1k4w24szq8m1qkvsa042d19xvvxiaj4chj39w2wc9gjr"; + version = "0.1.2.0"; + sha256 = "1734kq6q64ilvxdssjgzyhgm8wpdwbwn59n5v23z40jvqwzy1c62"; libraryHaskellDepends = [ base comonad comonad-extras exceptions split ]; @@ -275779,6 +277854,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "zstd_0_1_2_0" = callPackage + ({ mkDerivation, base, bytestring, criterion, deepseq, ghc-prim + , QuickCheck, test-framework, test-framework-quickcheck2, zlib + }: + mkDerivation { + pname = "zstd"; + version = "0.1.2.0"; + sha256 = "0vjw8r11k9kj6c63sfkwz8akq0g32g1bv6n6clvs4g2j12zq1xk8"; + libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; + testHaskellDepends = [ + base bytestring QuickCheck test-framework + test-framework-quickcheck2 + ]; + benchmarkHaskellDepends = [ + base bytestring criterion ghc-prim zlib + ]; + description = "Haskell bindings to the Zstandard compression algorithm"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "zsyntax" = callPackage ({ mkDerivation, base, constraints, containers, mtl, multiset }: mkDerivation { diff --git a/pkgs/development/haskell-modules/patches/proto-lens-0.5.1.0.patch b/pkgs/development/haskell-modules/patches/proto-lens-0.5.1.0.patch deleted file mode 100644 index b50d3f1cdbf..00000000000 --- a/pkgs/development/haskell-modules/patches/proto-lens-0.5.1.0.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff --git a/src/Data/ProtoLens/Encoding/Parser/Internal.hs b/src/Data/ProtoLens/Encoding/Parser/Internal.hs -index 30eeaad..f2703e7 100644 ---- a/src/Data/ProtoLens/Encoding/Parser/Internal.hs -+++ b/src/Data/ProtoLens/Encoding/Parser/Internal.hs -@@ -1,4 +1,5 @@ - {-# LANGUAGE LambdaCase #-} -+{-# LANGUAGE CPP #-} - -- | Definition of the parsing monad, plus internal - -- unsafe functions. - module Data.ProtoLens.Encoding.Parser.Internal -@@ -36,8 +37,11 @@ instance Applicative Parser where - (<*>) = ap - - instance Monad Parser where -- fail s = Parser $ \_ _ -> return $ ParseFailure s - return = pure - Parser f >>= g = Parser $ \end pos -> f end pos >>= \case - ParseSuccess pos' x -> unParser (g x) end pos' - ParseFailure s -> return $ ParseFailure s -+#if MIN_VERSION_base(4,13,0) -+instance MonadFail Parser where -+#endif -+ fail s = Parser $ \_ _ -> return $ ParseFailure s diff --git a/pkgs/development/haskell-modules/patches/proto-lens-setup-0.4.0.2.patch b/pkgs/development/haskell-modules/patches/proto-lens-setup-0.4.0.2.patch deleted file mode 100644 index a95df00e5db..00000000000 --- a/pkgs/development/haskell-modules/patches/proto-lens-setup-0.4.0.2.patch +++ /dev/null @@ -1,154 +0,0 @@ -diff --git a/src/Data/ProtoLens/Setup.hs b/src/Data/ProtoLens/Setup.hs -index e68f32b..f381199 100644 ---- a/src/Data/ProtoLens/Setup.hs -+++ b/src/Data/ProtoLens/Setup.hs -@@ -41,9 +41,6 @@ import Distribution.PackageDescription - , exeName - , exposedModules - , extraSrcFiles --#if !MIN_VERSION_Cabal(2,0,0) -- , hsSourceDirs --#endif - #if MIN_VERSION_Cabal(2,4,0) - , specVersion - #endif -@@ -53,7 +50,7 @@ import Distribution.PackageDescription - , testBuildInfo - , testName - ) --import qualified Distribution.Simple.BuildPaths as BuildPaths -+import Distribution.Simple.BuildPaths (autogenComponentModulesDir) - import Distribution.Simple.InstallDirs (datadir) - import Distribution.Simple.LocalBuildInfo - ( LocalBuildInfo(..) -@@ -61,9 +58,10 @@ import Distribution.Simple.LocalBuildInfo - , ComponentName(..) - , ComponentLocalBuildInfo - , componentPackageDeps --#if MIN_VERSION_Cabal(2,0,0) - , allComponentsInBuildOrder - , componentNameMap -+#if MIN_VERSION_Cabal(3,0,0) -+ , LibraryName(..) - #endif - ) - import qualified Distribution.Simple.PackageIndex as PackageIndex -@@ -205,16 +203,6 @@ generatingSpecificProtos root getProtos hooks = hooks - { buildHook = \p l h f -> generate l >> buildHook hooks p l h f - , haddockHook = \p l h f -> generate l >> haddockHook hooks p l h f - , replHook = \p l h f args -> generate l >> replHook hooks p l h f args --#if !MIN_VERSION_Cabal(2,0,0) -- -- Older versions of Cabal don't support the autogen-modules field. -- -- Work around it by manually generating the modules and putting them -- -- in a place where `cabal sdist` will pick them up. -- , sDistHook = \p maybe_l h f -> case maybe_l of -- Nothing -> error "Can't run protoc; run 'cabal configure' first." -- Just l -> do -- generate l -- sDistHook hooks (fudgePackageDesc l p) maybe_l h f --#endif - , postCopy = \a flags pkg lbi -> do - let verb = fromFlag $ copyVerbosity flags - let destDir = datadir (absoluteInstallDirs pkg lbi -@@ -316,39 +304,6 @@ copyProtosToDataDir verb root destDir files = do - protoLensImportsPrefix :: FilePath - protoLensImportsPrefix = "proto-lens-imports" - --#if !MIN_VERSION_Cabal(2,0,0) ---- | Add the autogen directory to the hs-source-dirs of all the targets in the ---- .cabal file. Used to fool 'sdist' by pointing it to the generated source ---- files. --fudgePackageDesc :: LocalBuildInfo -> PackageDescription -> PackageDescription --fudgePackageDesc lbi p = p -- { library = -- (\lib -> lib { libBuildInfo = fudgeBuildInfo CLibName $ libBuildInfo lib }) -- <$> library p -- , executables = -- (\exe -> exe { buildInfo = fudgeBuildInfo (CExeName $ exeName exe) -- $ buildInfo exe }) -- <$> executables p -- , testSuites = -- (\test -> test { testBuildInfo = fudgeBuildInfo (CTestName $ testName test) -- $ testBuildInfo test }) -- <$> testSuites p -- , benchmarks = -- (\bench -> bench { benchmarkBuildInfo = -- fudgeBuildInfo (CBenchName $ benchmarkName bench) -- $ benchmarkBuildInfo bench }) -- <$> benchmarks p -- } -- where -- comps = allComponents lbi -- fudgeBuildInfo n bi -- | Just compLBI <- Map.lookup n comps -- = bi { hsSourceDirs = autogenComponentModulesDir lbi compLBI -- : hsSourceDirs bi } -- | otherwise = bi -- Could happen if a component isn't active; try -- -- anyway and see whether Cabal complains later on. --#endif -- - -- | Returns whether the @root@ is a parent folder of @f@. - isSubdirectoryOf :: FilePath -> FilePath -> Bool - isSubdirectoryOf root f -@@ -423,15 +378,18 @@ collectActiveModules - collectActiveModules l = map (\(n, c) -> (c, f n)) $ Map.toList $ allComponents l - where - p = localPkgDescr l -- f CLibName = maybeToList (library p) >>= -+#if MIN_VERSION_Cabal(3,0,0) -+ f (CLibName LMainLibName) -+#else -+ f CLibName -+#endif -+ = maybeToList (library p) >>= - \lib -> exposedModules lib - ++ otherModules (libBuildInfo lib) - f (CExeName n) = otherModules . buildInfo $ exes Map.! n - f (CTestName n) = otherModules . testBuildInfo $ tests Map.! n - f (CBenchName n) = otherModules . benchmarkBuildInfo $ benchs Map.! n --#if MIN_VERSION_Cabal(2,0,0) - f _ = [] -- TODO: other lib kinds; for now just suppress the warning --#endif - exes = Map.fromList [(exeName e, e) | e <- executables p] - tests = Map.fromList [(testName e, e) | e <- testSuites p] - benchs = Map.fromList [(benchmarkName e, e) | e <- benchmarks p] -@@ -441,22 +399,14 @@ collectActiveModules l = map (\(n, c) -> (c, f n)) $ Map.toList $ allComponents - - -- | List all the packages that this one depends on. - collectDeps :: LocalBuildInfo -> [InstalledPackageInfo.InstalledPackageInfo] --#if MIN_VERSION_Cabal(2,0,0) - collectDeps l = do - c <- allComponentsInBuildOrder l - (i,_) <- componentPackageDeps c - Just p <- [PackageIndex.lookupUnitId (installedPkgs l) i] - return p --#else --collectDeps l = do -- (_, c ,_) <- componentsConfigs l -- (_, i) <- componentPackageDeps c -- PackageIndex.lookupSourcePackageId (installedPkgs l) i --#endif - - -- | All the components that will be built by this Cabal command. - allComponents :: LocalBuildInfo -> Map.Map ComponentName ComponentLocalBuildInfo --#if MIN_VERSION_Cabal(2,0,0) - allComponents l = fmap requireOne $ componentNameMap l - where - -- TODO: this doesn't support Backpack, which can have more than one -@@ -464,16 +414,3 @@ allComponents l = fmap requireOne $ componentNameMap l - requireOne [x] = x - requireOne xs = error $ "Data.ProtoLens.Setup.allComponents: expected one " - ++ "component per name, got " ++ show xs -- --#else --allComponents l = Map.fromList [(c, b) | (c, b, _) <- componentsConfigs l] --#endif -- ---- | Get the component-level "autogen" directory where we're putting the ---- generated .hs files. (For Cabal-1.0, use the shared 'BuildPaths.autogenModulesDir'.) --autogenComponentModulesDir :: LocalBuildInfo -> ComponentLocalBuildInfo -> FilePath --#if MIN_VERSION_Cabal(2,0,0) --autogenComponentModulesDir = BuildPaths.autogenComponentModulesDir --#else --autogenComponentModulesDir lbi _ = BuildPaths.autogenModulesDir lbi --#endif diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix index 08119018874..32fa46fd04a 100644 --- a/pkgs/development/haskell-modules/with-packages-wrapper.nix +++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix @@ -113,7 +113,7 @@ symlinkJoin { # Clean up the old links that may have been (transitively) included by # symlinkJoin: rm -f $dynamicLinksDir/* - for d in $(grep dynamic-library-dirs $packageConfDir/*|awk '{print $2}'|sort -u); do + for d in $(grep -Poz "dynamic-library-dirs:\s*\K .+\n" $packageConfDir/*|awk '{print $2}'|sort -u); do ln -s $d/*.dylib $dynamicLinksDir done for f in $packageConfDir/*.conf; do @@ -123,7 +123,7 @@ symlinkJoin { # $dynamicLinksDir cp $f $f-tmp rm $f - sed "s,dynamic-library-dirs: .*,dynamic-library-dirs: $dynamicLinksDir," $f-tmp > $f + sed "N;s,dynamic-library-dirs:\s*.*,dynamic-library-dirs: $dynamicLinksDir," $f-tmp > $f rm $f-tmp done '') + ''