diff --git a/pkgs/data/misc/hackage/pin.json b/pkgs/data/misc/hackage/pin.json index 1fb7b1c6a4a4..07cd47d646a1 100644 --- a/pkgs/data/misc/hackage/pin.json +++ b/pkgs/data/misc/hackage/pin.json @@ -1,6 +1,6 @@ { - "commit": "2c8100e0ec017b1ab20fcf4679176087b10fbd45", - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/2c8100e0ec017b1ab20fcf4679176087b10fbd45.tar.gz", - "sha256": "16jvcyn4cxc2f0p92f71yk1n2p6jmblnhqm8is5ipn0j4xz6l0bl", - "msg": "Update from Hackage at 2022-10-11T19:16:50Z" + "commit": "8983027e744098e8a2fbeac09bcc6eb8a9471fff", + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/8983027e744098e8a2fbeac09bcc6eb8a9471fff.tar.gz", + "sha256": "1iqgakw71x8cymdifpqnv546wmmrda6w862axli4k03vj7rv91iw", + "msg": "Update from Hackage at 2022-10-27T19:26:33Z" } diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3fa372ddb03e..ad5ce6b7aea9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1105,6 +1105,8 @@ self: super: { # Requires pg_ctl command during tests beam-postgres = overrideCabal (drv: { + # https://github.com/NixOS/nixpkgs/issues/198495 + doCheck = pkgs.postgresql.doCheck; testToolDepends = (drv.testToolDepends or []) ++ [pkgs.postgresql]; }) super.beam-postgres; @@ -1127,6 +1129,8 @@ self: super: { sed -i test/PostgreSQL/Test.hs \ -e s^host=localhost^^ ''; + # https://github.com/NixOS/nixpkgs/issues/198495 + doCheck = pkgs.postgresql.doCheck; # Match the test suite defaults (or hardcoded values?) preCheck = drv.preCheck or "" + '' PGUSER=esqutest @@ -1267,6 +1271,8 @@ self: super: { sed -i test/PgInit.hs \ -e s^'host=" <> host <> "'^^ ''; + # https://github.com/NixOS/nixpkgs/issues/198495 + doCheck = pkgs.postgresql.doCheck; preCheck = drv.preCheck or "" + '' PGDATABASE=test PGUSER=test @@ -1471,6 +1477,8 @@ self: super: { testToolDepends = drv.testToolDepends or [] ++ [ pkgs.postgresql pkgs.postgresqlTestHook ]; + # https://github.com/NixOS/nixpkgs/issues/198495 + doCheck = pkgs.postgresql.doCheck; preCheck = drv.preCheck or "" + '' # empty string means use default connection export DATABASE_URL="" @@ -1557,6 +1565,16 @@ self: super: { hlint = enableCabalFlag "ghc-lib" lself.hlint_3_4_1; ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; ghc-lib-parser = lself.ghc-lib-parser_9_2_4_20220729; + # For most ghc versions, we overrideScope Cabal in the configuration-ghc-???.nix, + # because some packages, like ormolu, need a newer Cabal version. + # ghc-paths is special because it depends on Cabal for building + # its Setup.hs, and therefor declares a Cabal dependency, but does + # not actually use it as a build dependency. + # That means ghc-paths can just use the ghc included Cabal version, + # without causing package-db incoherence and we should do that because + # otherwise we have different versions of ghc-paths + # around with have the same abi-hash, which can lead to confusions and conflicts. + ghc-paths = lsuper.ghc-paths.override { Cabal = null; }; }); hls-hlint-plugin = super.hls-hlint-plugin.overrideScope (lself: lsuper: { @@ -1593,6 +1611,11 @@ self: super: { # 2022-09-19: https://github.com/haskell/haskell-language-server/issues/3200 hls-refactor-plugin = dontCheck super.hls-refactor-plugin; + # 2022-10-27: implicit-hie 0.1.3.0 needs a newer version of Cabal-syntax. + implicit-hie = super.implicit-hie.override { + Cabal-syntax = self.Cabal-syntax_3_8_1_0; + }; + # 2021-03-21: Test hangs # https://github.com/haskell/haskell-language-server/issues/1562 # 2021-11-13: Too strict upper bound on implicit-hie-cradle @@ -1901,9 +1924,6 @@ self: super: { # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. trial-optparse-applicative = assert super.trial-optparse-applicative.version == "0.0.0.0"; doJailbreak super.trial-optparse-applicative; - # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. - extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions; - # 2021-04-02: iCalendar is basically unmaintained. # There are PRs for bumping the bounds: https://github.com/chrra/iCalendar/pull/46 iCalendar = overrideCabal { @@ -2417,7 +2437,7 @@ self: super: { csv = overrideCabal (drv: { preCompileBuildDriver = "rm Setup.hs"; }) super.csv; cabal-fmt = doJailbreak (super.cabal-fmt.override { - # Needs newer Cabal-syntex version. + # Needs newer Cabal-syntax version. Cabal-syntax = self.Cabal-syntax_3_8_1_0; }); @@ -2539,6 +2559,12 @@ self: super: { testTarget = "regex-tdfa-unittest"; } super.regex-tdfa; + # Missing test files https://github.com/qrilka/xlsx/issues/165 + xlsx = dontCheck super.xlsx; + + # Missing test files https://github.com/kephas/xdg-basedir-compliant/issues/1 + xdg-basedir-compliant = dontCheck super.xdg-basedir-compliant; + # 2022-09-01: # Restrictive upper bound on base. # Remove once version 1.* is released @@ -2578,7 +2604,7 @@ in { purescript = lib.pipe (super.purescript.overrideScope purescriptOverlay) - [ + ([ # PureScript uses nodejs to run tests, so the tests have been disabled # for now. If someone is interested in figuring out how to get this # working, it seems like it might be possible. @@ -2589,7 +2615,10 @@ in { doJailbreak # Generate shell completions (self.generateOptparseApplicativeCompletions [ "purs" ]) - ]; + ] ++ lib.optionals (lib.versions.majorMinor self.ghc.version == "9.2") [ + markUnbroken + doDistribute + ]); purescript-cst = purescriptStOverride super.purescript-cst; diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix index 85708b5e7774..1a578dbafbdf 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix @@ -52,12 +52,12 @@ self: super: { cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); # Pick right versions for GHC-specific packages 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 1c1579566a9a..dbb550f6fd00 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix @@ -58,12 +58,12 @@ self: super: { cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); # Ignore overly restrictive upper version bounds. diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix index 8951319e1bbb..49a97e8b9178 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix @@ -53,12 +53,12 @@ self: super: { cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); # Jailbreaks & Version Updates diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index e1c5a414fef5..587af092fc47 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -59,12 +59,12 @@ self: super: { cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: { Cabal = self.Cabal_3_8_1_0; Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); doctest = dontCheck (doJailbreak super.doctest); @@ -87,7 +87,7 @@ self: super: { constraints = doJailbreak super.constraints; cpphs = overrideCabal (drv: { postPatch = "sed -i -e 's,time >=1.5 && <1.11,time >=1.5 \\&\\& <1.12,' cpphs.cabal";}) super.cpphs; data-fix = doJailbreak super.data-fix; - dbus = self.dbus_1_2_26; + dbus = self.dbus_1_2_27; dec = doJailbreak super.dec; ed25519 = doJailbreak super.ed25519; ghc-byteorder = doJailbreak super.ghc-byteorder; @@ -132,6 +132,11 @@ self: super: { servant = doJailbreak super.servant; servant-swagger = doJailbreak super.servant-swagger; + # Depends on utf8-light which isn't maintained / doesn't support base >= 4.16 + # https://github.com/haskell-infra/hackage-trustees/issues/347 + # https://mail.haskell.org/pipermail/haskell-cafe/2022-October/135613.html + language-javascript_0_7_0_0 = dontCheck super.language-javascript_0_7_0_0; + # 2022-09-02: Too strict bounds on lens # https://github.com/haskell-servant/servant/pull/1607/files servant-docs = doJailbreak super.servant-docs; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix index b5bf696cc761..2b0bb3876b2a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix @@ -10,7 +10,6 @@ in with haskellLib; self: super: let - doctest_0_20_broken = p: checkAgainAfter self.doctest "0.20.0" "doctest broken on 9.4" (dontCheck p); jailbreakForCurrentVersion = p: v: checkAgainAfter p v "bad bounds" (doJailbreak p); in { llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages; @@ -62,41 +61,15 @@ in { # 0.30 introduced support for GHC 9.2. cryptonite = doDistribute self.cryptonite_0_30; - # Too strict bound on base - # https://github.com/haskell/cabal/issues/8509 - # Requested versions of Cabal, Cabal-syntax and process match GHC 9.4's for now - cabal-install = doJailbreak super.cabal-install; - cabal-install-solver = doJailbreak super.cabal-install-solver; - - # Test failure due to new Cabal 3.8 version. Since the failure only pertains - # to a change in how Cabal internally represents some platforms and we depend - # on the type of representation anywhere, this failure is harmless. Can be - # removed after https://github.com/NixOS/cabal2nix/pull/571 is merged. - # TODO(@sternenseemann): merge and release a fixed version - distribution-nixpkgs = dontCheck super.distribution-nixpkgs; cabal2nix = # cabal2nix depends on foundation, which is broken on aarch64-linux. # https://github.com/haskell-foundation/foundation/issues/571 overrideCabal (drv: { badPlatforms = [ "aarch64-linux" ]; }) - (dontCheck super.cabal2nix); - cabal2nix-unstable = dontCheck super.cabal2nix-unstable; + super.cabal2nix; - # build fails on due to ghc api changes - # unfinished PR that doesn't yet compile: - # https://github.com/sol/doctest/pull/375 - doctest = markBroken super.doctest_0_20_0; + doctest = self.doctest_0_20_1; # consequences of doctest breakage follow: - http-types = doctest_0_20_broken super.http-types; - iproute = doctest_0_20_broken super.iproute; - foldl = doctest_0_20_broken super.foldl; - prettyprinter-ansi-terminal = doctest_0_20_broken super.prettyprinter-ansi-terminal; - pretty-simple = doctest_0_20_broken super.pretty-simple; - http-date = doctest_0_20_broken super.http-date; - network-byte-order = doctest_0_20_broken super.network-byte-order; - co-log-core = doctest_0_20_broken (doJailbreak super.co-log-core); - xml-conduit = doctest_0_20_broken (dontCheck super.xml-conduit); - validation-selective = doctest_0_20_broken (dontCheck super.validation-selective); double-conversion = markBroken super.double-conversion; blaze-textual = checkAgainAfter super.double-conversion "2.0.4.1" "double-conversion fails to build; required for testsuite" (dontCheck super.blaze-textual); @@ -105,6 +78,8 @@ in { lucid = jailbreakForCurrentVersion super.lucid "2.11.1"; invariant = jailbreakForCurrentVersion super.invariant "0.5.6"; implicit-hie-cradle = jailbreakForCurrentVersion super.implicit-hie-cradle "0.5.0.0"; + # https://github.com/co-log/co-log-core/pull/22#issuecomment-1294040208 + co-log-core = jailbreakForCurrentVersion super.co-log-core "0.3.1.0"; haskell-src-meta = doJailbreak super.haskell-src-meta; @@ -114,7 +89,6 @@ in { # Jailbreaks & Version Updates aeson = self.aeson_2_1_1_0; - aeson-diff = doctest_0_20_broken (dontCheck super.aeson-diff); lens-aeson = self.lens-aeson_1_2_2; assoc = doJailbreak super.assoc; @@ -153,7 +127,7 @@ in { # 2022-09-02: Too strict bounds on lens # https://github.com/GetShopTV/swagger2/pull/242 - swagger2 = doctest_0_20_broken (dontCheck (doJailbreak super.swagger2)); + swagger2 = doJailbreak super.swagger2; base-orphans = dontCheck super.base-orphans; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 5c916e0ecc49..7610a82814dc 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -264,6 +264,7 @@ broken-packages: - avatar-generator - aviation-units - avl-static + - avro - avro-piper - avr-shake - avwx @@ -745,6 +746,7 @@ broken-packages: - codo-notation - coin - coinbase-pro + - cointracking-imports - collada-output - collapse-util - collections @@ -1149,6 +1151,7 @@ broken-packages: - djinn-th - dmcc - dmenu + - dnf-repo - dns-patterns - dnsrbl - dnssd @@ -1257,6 +1260,7 @@ broken-packages: - edit - edit-lenses - editline + - effectful-st - effect-handlers - effective-aspects - effect-monad @@ -1357,6 +1361,8 @@ broken-packages: - eventful-sql-common - eventsource-api - eventstore + - eventuo11y + - eventuo11y-dsl - evoke - ewe - exact-cover @@ -1391,7 +1397,6 @@ broken-packages: - extended-containers - extensible-effects-concurrent - extensible-skeleton - - extensions - Extra - extractelf - ez3 @@ -2351,6 +2356,7 @@ broken-packages: - hquantlib - hquery - hR + - h-raylib - hreq-core - h-reversi - hricket @@ -3340,6 +3346,7 @@ broken-packages: - monoid-owns - monoidplus - monoids + - monomer-hagrid - monopati - monus - monzo @@ -3591,6 +3598,7 @@ broken-packages: - Omega - om-elm - om-fail + - om-fork - om-http - om-http-logging - omnifmt @@ -4107,6 +4115,7 @@ broken-packages: - Pup-Events-Server - pure-io - pure-priority-queue + - purescript - purescript-tsd-gen - pure-zlib - pushbullet @@ -5007,7 +5016,6 @@ broken-packages: - Tablify - tabloid - tabs - - taffybar - tag-bits - tagged-exception-core - tagged-timers @@ -5365,6 +5373,9 @@ broken-packages: - unescaping-print - unfix-binders - unfoldable + - unicode-data-names + - unicode-data-scripts + - unicode-data-security - unicode-prelude - unicode-symbols - unicode-tricks @@ -5676,6 +5687,7 @@ broken-packages: - xleb - xls - xlsior + - xlsx-tabular - xlsx-templater - xml2json - xml-conduit-decode diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index ca5decb685b5..51e58be7f3d7 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -416,6 +416,7 @@ package-maintainers: - rel8 - regex-rure - jacinda + - citeproc # owothia - irc-client - chatter diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml index 337310123a79..b210c51483bf 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml @@ -1,4 +1,4 @@ -# Stackage LTS 19.28 +# Stackage LTS 19.30 # This file is auto-generated by # maintainers/scripts/haskell/update-stackage.sh default-package-overrides: @@ -706,7 +706,7 @@ default-package-overrides: - executable-path ==0.0.3.1 - exit-codes ==1.0.0 - exomizer ==1.0.0 - - experimenter ==0.1.0.12 + - experimenter ==0.1.0.14 - expiring-cache-map ==0.0.6.1 - explainable-predicates ==0.1.2.3 - explicit-exception ==0.1.10 @@ -725,7 +725,7 @@ default-package-overrides: - fakedata-quickcheck ==0.2.0 - fakefs ==0.3.0.2 - fakepull ==0.3.0.2 - - faktory ==1.1.2.3 + - faktory ==1.1.2.4 - fast-builder ==0.1.3.0 - fast-logger ==3.1.1 - fast-math ==1.0.2 @@ -887,33 +887,33 @@ default-package-overrides: - ghc-syntax-highlighter ==0.0.7.0 - ghc-tcplugins-extra ==0.4.3 - ghc-trace-events ==0.1.2.6 - - ghc-typelits-extra ==0.4.3 - - ghc-typelits-knownnat ==0.7.6 - - ghc-typelits-natnormalise ==0.7.6 + - ghc-typelits-extra ==0.4.4 + - ghc-typelits-knownnat ==0.7.7 + - ghc-typelits-natnormalise ==0.7.7 - ghc-typelits-presburger ==0.6.2.0 - ghost-buster ==0.1.1.0 - - gi-atk ==2.0.24 - - gi-cairo ==1.0.26 + - gi-atk ==2.0.25 + - gi-cairo ==1.0.27 - gi-cairo-connector ==0.1.1 - - gi-cairo-render ==0.1.1 - - gi-dbusmenu ==0.4.10 - - gi-dbusmenugtk3 ==0.4.11 - - gi-freetype2 ==2.0.1 - - gi-gdk ==3.0.25 - - gi-gdkpixbuf ==2.0.28 - - gi-gdkx11 ==3.0.12 - - gi-gio ==2.0.29 - - gi-glib ==2.0.26 - - gi-gmodule ==2.0.2 - - gi-gobject ==2.0.27 - - gi-graphene ==1.0.4 - - gi-gtk ==3.0.38 - - gi-gtk-hs ==0.3.12 - - gi-gtksource ==3.0.25 - - gi-harfbuzz ==0.0.6 - - gi-javascriptcore ==4.0.24 + - gi-cairo-render ==0.1.2 + - gi-dbusmenu ==0.4.11 + - gi-dbusmenugtk3 ==0.4.12 + - gi-freetype2 ==2.0.2 + - gi-gdk ==3.0.26 + - gi-gdkpixbuf ==2.0.29 + - gi-gdkx11 ==3.0.13 + - gi-gio ==2.0.30 + - gi-glib ==2.0.27 + - gi-gmodule ==2.0.3 + - gi-gobject ==2.0.28 + - gi-graphene ==1.0.5 + - gi-gtk ==3.0.39 + - gi-gtk-hs ==0.3.13 + - gi-gtksource ==3.0.26 + - gi-harfbuzz ==0.0.7 + - gi-javascriptcore ==4.0.25 - ginger ==0.10.4.0 - - gi-pango ==1.0.26 + - gi-pango ==1.0.27 - githash ==0.1.6.2 - github ==0.27 - github-release ==2.0.0.2 @@ -921,10 +921,10 @@ default-package-overrides: - github-types ==0.2.1 - github-webhooks ==0.15.0 - gitrev ==1.3.1 - - gi-vte ==2.91.29 - - gi-xlib ==2.0.11 + - gi-vte ==2.91.30 + - gi-xlib ==2.0.12 - gl ==0.9 - - glabrous ==2.0.5 + - glabrous ==2.0.6 - glasso ==0.1.0 - GLFW-b ==3.3.0.0 - Glob ==0.10.2 @@ -993,7 +993,7 @@ default-package-overrides: - haskeline ==0.8.2 - haskell-awk ==1.2.0.1 - haskell-gi ==0.26.1 - - haskell-gi-base ==0.26.1 + - haskell-gi-base ==0.26.2 - haskell-gi-overloading ==1.0 - haskell-lexer ==1.1 - haskell-lsp-types ==0.24.0.0 @@ -1016,7 +1016,7 @@ default-package-overrides: - has-transformers ==0.1.0.4 - hasty-hamiltonian ==1.3.4 - HaTeX ==3.22.3.1 - - HaXml ==1.25.11 + - HaXml ==1.25.12 - haxr ==3000.11.4.1 - HCodecs ==0.5.2 - hdaemonize ==0.5.6 @@ -1385,7 +1385,7 @@ default-package-overrides: - lazysmallcheck ==0.6 - lca ==0.4 - leancheck ==0.9.12 - - leancheck-instances ==0.0.4 + - leancheck-instances ==0.0.5 - leapseconds-announced ==2017.1.0.1 - learn-physics ==0.6.5 - lens ==5.0.1 @@ -1548,7 +1548,7 @@ default-package-overrides: - mock-time ==0.1.0 - mod ==0.1.2.2 - model ==0.5 - - modern-uri ==0.3.4.4 + - modern-uri ==0.3.5.0 - modular ==0.1.0.8 - monad-chronicle ==1.0.1 - monad-control ==1.0.3.1 @@ -1579,7 +1579,7 @@ default-package-overrides: - monads-tf ==0.1.0.3 - monad-time ==0.3.1.0 - mongoDB ==2.7.1.1 - - monoidal-containers ==0.6.2.0 + - monoidal-containers ==0.6.3.0 - monoid-extras ==0.6.1 - monoid-subclasses ==1.1.3 - monoid-transformer ==0.0.4 @@ -1651,8 +1651,8 @@ default-package-overrides: - network-simple-tls ==0.4 - network-transport ==0.5.4 - network-transport-composed ==0.2.1 - - network-transport-tcp ==0.8.0 - - network-transport-tests ==0.3.0 + - network-transport-tcp ==0.8.1 + - network-transport-tests ==0.3.1 - network-uri ==2.6.4.1 - network-wait ==0.1.2.0 - newtype ==0.2.2.0 @@ -1766,7 +1766,7 @@ default-package-overrides: - partial-isomorphisms ==0.2.3.0 - partial-order ==0.2.0.0 - partial-semigroup ==0.5.1.14 - - password ==3.0.1.0 + - password ==3.0.2.0 - password-instances ==3.0.0.0 - password-types ==1.0.0.0 - pasta-curves ==0.0.1.0 @@ -1786,7 +1786,7 @@ default-package-overrides: - pava ==0.1.1.4 - pcg-random ==0.1.3.7 - pcre2 ==2.1.1.1 - - pcre-heavy ==1.0.0.2 + - pcre-heavy ==1.0.0.3 - pcre-light ==0.4.1.0 - pcre-utils ==0.1.8.2 - pdc ==0.1.1 @@ -1822,7 +1822,7 @@ default-package-overrides: - phatsort ==0.5.0.1 - picosat ==0.1.6 - pid1 ==0.1.3.0 - - pinch ==0.4.1.2 + - pinch ==0.4.2.0 - pipes ==4.3.16 - pipes-attoparsec ==0.5.1.5 - pipes-bytestring ==2.1.7 @@ -1862,7 +1862,7 @@ default-package-overrides: - polysemy-plugin ==0.4.1.1 - polysemy-several ==0.1.1.0 - polysemy-socket ==0.0.2.0 - - polysemy-uncontrolled ==0.1.1.0 + - polysemy-uncontrolled ==0.1.1.1 - polysemy-video ==0.2.0.1 - polysemy-vinyl ==0.1.5.0 - polysemy-webserver ==0.2.1.1 @@ -2379,7 +2379,7 @@ default-package-overrides: - svg-builder ==0.1.1 - SVGFonts ==1.8.0.1 - svg-tree ==0.6.2.4 - - swagger2 ==2.8.4 + - swagger2 ==2.8.5 - swish ==0.10.2.0 - syb ==0.7.2.2 - sydtest-discover ==0.0.0.2 @@ -2595,7 +2595,7 @@ default-package-overrides: - type-spec ==0.4.0.0 - typography-geometry ==1.0.1.0 - tz ==0.1.3.6 - - tzdata ==0.2.20220923.0 + - tzdata ==0.2.20221011.0 - ua-parser ==0.7.7.0 - uglymemo ==0.1.0.1 - unagi-chan ==0.4.1.4 @@ -2614,7 +2614,6 @@ default-package-overrides: - unicode-transforms ==0.4.0.1 - unidecode ==0.1.0.4 - unification-fd ==0.11.2 - - union ==0.1.2 - union-angle ==0.1.0.1 - union-find ==0.2 - unipatterns ==0.0.0.0 @@ -2696,7 +2695,7 @@ default-package-overrides: - vector-th-unbox ==0.2.2 - vectortiles ==1.5.1 - verbosity ==0.4.0.0 - - versions ==5.0.3 + - versions ==5.0.4 - vformat ==0.14.1.0 - vformat-time ==0.1.0.0 - ViennaRNAParser ==1.3.3 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index e91640ae27dd..b9f41f19a5f0 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -234,6 +234,7 @@ dont-distribute-packages: - KiCS-debugger - KiCS-prophecy - LDAPv3 + - LPPaver - LambdaHack - LambdaINet - LambdaPrettyQuote @@ -811,6 +812,7 @@ dont-distribute-packages: - blubber - bluetile - blunt + - bnb-staking-csvs - bno055-haskell - bogre-banana - boilerplate @@ -922,6 +924,7 @@ dont-distribute-packages: - cheapskate-terminal - check-pvp - chevalier-common + - chiasma-test - chitauri - choose-exe - chorale-geo @@ -1346,6 +1349,8 @@ dont-distribute-packages: - eventsource-geteventstore-store - eventsource-store-specs - eventsource-stub-store + - eventuo11y-batteries + - eventuo11y-json - every-bit-counts - exception-monads-fd - exference @@ -1555,7 +1560,7 @@ dont-distribute-packages: - gi-ges - gi-gsk - gi-gstpbutils - - gi-gtk_4_0_5 + - gi-gtk_4_0_6 - gipeda - git-config - git-fmt @@ -2134,6 +2139,7 @@ dont-distribute-packages: - hpaste - hpc-tracer - hplayground + - hpqtypes-effectful - hpqtypes-extras - hprotoc-fork - hps @@ -2173,6 +2179,7 @@ dont-distribute-packages: - hsfacter - hsinspect-lsp - hslogstash + - hslua-module-zip - hsnsq - hspec-expectations-pretty - hspec-pg-transact @@ -2224,6 +2231,7 @@ dont-distribute-packages: - huzzy - hw-all - hw-aws-sqs-conduit + - hw-kafka-avro - hw-uri - hworker-ses - hwormhole @@ -2278,7 +2286,6 @@ dont-distribute-packages: - indentation-parsec - indentation-trifecta - indexation - - indieweb-algorithms - indigo - infernu - infinity @@ -2446,6 +2453,7 @@ dont-distribute-packages: - lambdiff - lang - language-Modula2 + - language-avro - language-boogie - language-ecmascript-analysis - language-eiffel @@ -2653,7 +2661,6 @@ dont-distribute-packages: - metar-http - metronome - micro-gateway - - microformats2-parser - microformats2-types - midimory - mighttpd @@ -2715,6 +2722,8 @@ dont-distribute-packages: - morpheus-graphql-cli - morpheus-graphql-client - morpheus-graphql-code-gen + - morpheus-graphql-code-gen-utils + - morpheus-graphql-server - morpheus-graphql-subscriptions - morphisms-functors-inventory - mortred @@ -2994,6 +3003,7 @@ dont-distribute-packages: - pisigma - pitchtrack - pkgtreediff + - pkgtreediff_0_6_0 - planet-mitchell - playlists-http - plocketed @@ -3272,6 +3282,7 @@ dont-distribute-packages: - ribosome-host - ribosome-host-test - ribosome-root + - ribosome-test - ridley-extras - rio-process-pool - riot @@ -3473,7 +3484,7 @@ dont-distribute-packages: - skeletons - sketch-frp-copilot - skylark-client - - skylighting_0_13 + - skylighting_0_13_1 - slate - slidemews - slip32 @@ -3528,6 +3539,7 @@ dont-distribute-packages: - sock2stream - socket-io - sockets + - solana-staking-csvs - solga-swagger - solr - souffle-dsl diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index c29963bb1d1e..e30a5aa17c4e 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -27,6 +27,10 @@ # If you have an override of this kind, see configuration-common.nix instead. { pkgs, haskellLib }: +let + inherit (pkgs) lib; +in + with haskellLib; # All of the overrides in this set should look like: @@ -788,6 +792,16 @@ self: super: builtins.intersectAttrs super { # Tests access internet prune-juice = dontCheck super.prune-juice; + citeproc = lib.pipe super.citeproc [ + enableSeparateBinOutput + # Enable executable being built and add missing dependencies + (enableCabalFlag "executable") + (addBuildDepends [ self.aeson-pretty ]) + # TODO(@sternenseemann): we may want to enable that for improved performance + # Is correctness good enough since 0.5? + (disableCabalFlag "icu") + ]; + # based on https://github.com/gibiansky/IHaskell/blob/aafeabef786154d81ab7d9d1882bbcd06fc8c6c4/release.nix ihaskell = overrideCabal (drv: { # ihaskell's cabal file forces building a shared executable, which we need @@ -887,7 +901,11 @@ self: super: builtins.intersectAttrs super { ''; }) super.nvfetcher); - rel8 = addTestToolDepend pkgs.postgresql super.rel8; + rel8 = pkgs.lib.pipe super.rel8 [ + (addTestToolDepend pkgs.postgresql) + # https://github.com/NixOS/nixpkgs/issues/198495 + (overrideCabal { doCheck = pkgs.postgresql.doCheck; }) + ]; cachix = self.generateOptparseApplicativeCompletions [ "cachix" ] (super.cachix.override { nix = pkgs.nixVersions.nix_2_9; }); @@ -1054,7 +1072,7 @@ self: super: builtins.intersectAttrs super { # Make sure that Cabal 3.8.* can be built as-is Cabal_3_8_1_0 = doDistribute (super.Cabal_3_8_1_0.override { Cabal-syntax = self.Cabal-syntax_3_8_1_0; - process = self.process_1_6_15_0; + process = self.process_1_6_16_0; }); # cabal-install switched to build type simple in 3.2.0.0 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 4c4999e5be07..8e0ca37c4a2a 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2069,8 +2069,8 @@ self: { }: mkDerivation { pname = "Blammo"; - version = "1.0.2.3"; - sha256 = "1c113fdjwfbh01n3xsprya4dp6wc4m9xvilx9fyb3lbzdmmii624"; + version = "1.1.0.0"; + sha256 = "02j49dzwlx0p39njspz10vbj5qybb1l2l2lk4gdrbicp953czaa8"; libraryHaskellDepends = [ aeson base bytestring case-insensitive clock containers dlist envparse exceptions fast-logger http-types lens monad-logger-aeson @@ -9618,8 +9618,8 @@ self: { pname = "HStringTemplate"; version = "0.8.8"; sha256 = "1n8ci0kzjcgnqh4dfpqwlh7mnlzyiqiqc6hc0zr65p0balbg8zbi"; - revision = "2"; - editedCabalFile = "1iq8ni7im7b0q3hpchyc9j7iw1r431xlikwsqlhiwnw61q2c5qi5"; + revision = "3"; + editedCabalFile = "0316jr5npssxxxj85x74vasvm2ib09mjv2jy7abwjs7cfqbpnr8w"; libraryHaskellDepends = [ array base blaze-builder bytestring containers deepseq directory filepath mtl old-locale parsec pretty semigroups syb @@ -10062,8 +10062,8 @@ self: { }: mkDerivation { pname = "HaXml"; - version = "1.25.11"; - sha256 = "1l5kmiqvnqzdzz3jyaphy7ckglm6jhn0b10kf47yizv0w496bmjg"; + version = "1.25.12"; + sha256 = "1xaqp519dw948v00q309msx07yhzxbd0k8ds5q434l6g6cmsqqgc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -12612,6 +12612,38 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "LPPaver" = callPackage + ({ mkDerivation, aern2-mfun, aern2-mp, base, collect-errors + , containers, directory, mixed-types-num, optparse-applicative + , parallel, pqueue, PropaFP, simplex-method + }: + mkDerivation { + pname = "LPPaver"; + version = "0.0.3.1"; + sha256 = "0avnvdd538akcf8dsybyp4k3sb539n38d0vv6fv7psvhz8bwbr7a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aern2-mfun aern2-mp base collect-errors containers directory + mixed-types-num optparse-applicative parallel pqueue PropaFP + simplex-method + ]; + executableHaskellDepends = [ + aern2-mfun aern2-mp base collect-errors containers directory + mixed-types-num optparse-applicative parallel pqueue PropaFP + simplex-method + ]; + testHaskellDepends = [ + aern2-mfun aern2-mp base collect-errors containers directory + mixed-types-num optparse-applicative parallel pqueue PropaFP + simplex-method + ]; + description = "An automated prover targeting problems that involve nonlinear real arithmetic"; + license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + mainProgram = "lppaver"; + }) {}; + "LParse" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -14246,20 +14278,17 @@ self: { }) {}; "Monadoro" = callPackage - ({ mkDerivation, ansi-terminal, base, doctest, hspec, process, time - }: + ({ mkDerivation, base, doctest, hspec, process, time }: mkDerivation { pname = "Monadoro"; - version = "0.2.8.1"; - sha256 = "0w0wjxvg36y1qdvljqlg2l4dw5jwbhmm1q6979rns6ncvlyjyyvn"; + version = "0.3.3.0"; + sha256 = "1zya572cc0gml4k9mm2g9z5bakjzz6ivigdc9fpv2bsrnc58a4y4"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; - libraryHaskellDepends = [ ansi-terminal base process time ]; - executableHaskellDepends = [ ansi-terminal base process time ]; - testHaskellDepends = [ - ansi-terminal base doctest hspec process time - ]; + libraryHaskellDepends = [ base process time ]; + executableHaskellDepends = [ base process time ]; + testHaskellDepends = [ base doctest hspec process time ]; description = "A minimalistic CLI Pomodoro timer"; license = lib.licenses.mit; mainProgram = "monadoro"; @@ -16747,8 +16776,10 @@ self: { }: mkDerivation { pname = "PropaFP"; - version = "0.1.0.0"; - sha256 = "1rq39yciyqrzc2ky9w0phg6m00m106mng6vf586rl3yd9v83makg"; + version = "0.1.1.0"; + sha256 = "0r69x9i5iq740y6r7v3i86q7vx19qwrad0klmi3iy7a0g7wa5ldy"; + revision = "1"; + editedCabalFile = "0sx7198rx2ajcp6mn0ym474h24fizf1cbw0skyw8fanri7jr2i41"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -16917,6 +16948,8 @@ self: { pname = "PyF"; version = "0.10.2.0"; sha256 = "0a1bq7c3vx6yp7745xr2vlxjsqgqa0s1f7yzqnfsybqwff03zbcw"; + revision = "1"; + editedCabalFile = "0hinbn56d8bw45zxazpmgv1b6lcmlcys9jfdkv2lyr5j44pzpvvj"; libraryHaskellDepends = [ base bytestring ghc ghc-boot mtl parsec template-haskell text time ]; @@ -26300,7 +26333,7 @@ self: { license = lib.licenses.bsd3; }) {}; - "aeson-typescript_0_4_0_0" = callPackage + "aeson-typescript_0_4_1_0" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, hspec, mtl, process, string-interpolate , template-haskell, temporary, text, th-abstraction, transformers @@ -26308,8 +26341,8 @@ self: { }: mkDerivation { pname = "aeson-typescript"; - version = "0.4.0.0"; - sha256 = "0qy8hnrczyfxlyayrs9x1sp25wv9klc5n6c1pdds4lf09aq201ji"; + version = "0.4.1.0"; + sha256 = "0zr6p0yyzm1mdhnyycd37alw3xg2jmx303mbd5a7251wffxc42n8"; libraryHaskellDepends = [ aeson base containers mtl string-interpolate template-haskell text th-abstraction transformers unordered-containers @@ -26418,8 +26451,8 @@ self: { pname = "aeson-yaml"; version = "1.1.0.1"; sha256 = "06x1l0a0dvzf8n2xmqny5qpsgdsl03xlh2z9x7wdxiykl8p4xd24"; - revision = "2"; - editedCabalFile = "1pylybgbj1z3b7yj6xig60w2x9j3ljr0s0pfxsrqdym2c65dv7ww"; + revision = "3"; + editedCabalFile = "11srm7kkslnicqvbk728kzpy58am8rz680f7l6axn2nfh5ykx8n6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -38057,8 +38090,8 @@ self: { }: mkDerivation { pname = "avro"; - version = "0.6.1.1"; - sha256 = "16ii6mvls85i0gfmq9c2mhzan3rcfz3ishnk80rw5z69r29z2wyl"; + version = "0.6.1.2"; + sha256 = "02qczc2hih1yvmarbi4vjccvh8x2n8wsjllq3hm42shkd9xl0s6a"; libraryHaskellDepends = [ aeson array base base16-bytestring bifunctors binary bytestring containers data-binary-ieee754 deepseq fail HasBigDecimal hashable @@ -38081,6 +38114,8 @@ self: { ]; description = "Avro serialization support for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "avro-piper" = callPackage @@ -38241,8 +38276,8 @@ self: { }: mkDerivation { pname = "aws-arn"; - version = "0.2.0.0"; - sha256 = "1amqcycxncgcs7nvpxrr2f2r2g6dhyfmlcwsk2am8l9ncmrr8ijx"; + version = "0.3.0.0"; + sha256 = "042lzvm1wpdqfrmgl1ygqgkdisvjyf9jfg9aqnibwhk2pw354dj3"; libraryHaskellDepends = [ base deriving-compat hashable profunctors tagged text ]; @@ -41638,15 +41673,15 @@ self: { }) {}; "bearriver" = callPackage - ({ mkDerivation, base, dunai, MonadRandom, mtl, simple-affine-space - , transformers + ({ mkDerivation, base, deepseq, dunai, MonadRandom, mtl + , simple-affine-space, transformers }: mkDerivation { pname = "bearriver"; - version = "0.13.6"; - sha256 = "07ga08r2wwwd2n7jq2bc93jaiqymn4kih2mjb43273zz29kxds99"; + version = "0.13.7"; + sha256 = "1synznzas89cyp05lhiwxfsbmz5zv2pyjn08548dr21ih1x4560j"; libraryHaskellDepends = [ - base dunai MonadRandom mtl simple-affine-space transformers + base deepseq dunai MonadRandom mtl simple-affine-space transformers ]; description = "FRP Yampa replacement implemented with Monadic Stream Functions"; license = lib.licenses.bsd3; @@ -46956,6 +46991,7 @@ self: { ]; description = "Generate CSV Exports of Your BNB Staking Rewards"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bnb-staking-csvs"; }) {}; @@ -48395,7 +48431,7 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; - "brick_1_3" = callPackage + "brick_1_4" = callPackage ({ mkDerivation, base, bimap, bytestring, config-ini, containers , contravariant, data-clist, deepseq, directory, exceptions , filepath, microlens, microlens-mtl, microlens-th, mtl, QuickCheck @@ -48404,8 +48440,8 @@ self: { }: mkDerivation { pname = "brick"; - version = "1.3"; - sha256 = "0lpd6685ya0va0a6n7cw70f5b1s13y8ynzac0gkxyqb1ivzj0hsb"; + version = "1.4"; + sha256 = "12gwwqq38x0k6hjcn72dpcdwi0lrvyy8gxmp884h22l73xa4vda6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -48467,8 +48503,8 @@ self: { }: mkDerivation { pname = "brick-panes"; - version = "1.0.0.0"; - sha256 = "1q4j4scamy1rracjx78nld3r2grn53ifs7qjhk80w8qdjabjh6vr"; + version = "1.0.0.1"; + sha256 = "05f5c99b44c6aajx12hx4ayxjldbj4n0fi70i95q18qxy9aacljw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base brick containers microlens vty ]; @@ -49579,8 +49615,8 @@ self: { pname = "bugzilla-redhat"; version = "1.0.0"; sha256 = "1g95j03y2sg1fwdf48a05nijqllkd0m7scn1wbfyzvb57q716hlx"; - revision = "2"; - editedCabalFile = "1x4vkr7wxwdvzdcam9zawmbc1ssl8ifpyaczimw2h63l47vv4y8b"; + revision = "3"; + editedCabalFile = "1f5mbfskr7h14ywg3v23x3r7d0k80z4ksflvqsbzkb2z3nqikj4a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -52090,8 +52126,8 @@ self: { pname = "cabal-install"; version = "3.8.1.0"; sha256 = "1rk7xb86c1vgarv1m16d2i82fiig6q119j51gvq2pq8l5rpl7kk1"; - revision = "1"; - editedCabalFile = "0d6g8q9g8xv69dk51d2jjnc2bv9ah59vn1p5xg1hn42filh35sa1"; + revision = "2"; + editedCabalFile = "1l2lvljkr1ibnr3py7xfp2csxyb3rzlhy7jlpx8gkamq9cjmi6p2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -52259,6 +52295,8 @@ self: { pname = "cabal-install-solver"; version = "3.8.1.0"; sha256 = "1rzzi3jx5ivxy43vdg460fsbn1p2v5br1havcara65vmqgv6j8yz"; + revision = "1"; + editedCabalFile = "1g487j20pj03pc10yaha18v73wh3ackxjgfpfqaj7xznqcbm5xwm"; libraryHaskellDepends = [ array base bytestring Cabal Cabal-syntax containers edit-distance filepath mtl pretty transformers @@ -52817,8 +52855,8 @@ self: { }: mkDerivation { pname = "cabal2nix"; - version = "2.19.0"; - sha256 = "1cmx8vas9fryr8sd5a485aa43rdx60l3fbrk1kppwx4s9jw9hq65"; + version = "2.19.1"; + sha256 = "1ck7yqvvxkylwh3pw8hj24jg5jqx6hqy3bm37dkg85q9p9fs7nz0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -53773,6 +53811,29 @@ self: { broken = true; }) {}; + "call-alloy_0_4" = callPackage + ({ mkDerivation, async, base, bytestring, containers, directory + , extra, filepath, hspec, mtl, process, split, trifecta, unix + }: + mkDerivation { + pname = "call-alloy"; + version = "0.4"; + sha256 = "1af4a6inik3dcawn4lwlk01pyx6j5a1ly07qqf0ywkz2pv4ifgdc"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + async base bytestring containers directory extra filepath mtl + process split trifecta unix + ]; + testHaskellDepends = [ + async base bytestring containers directory extra filepath hspec mtl + process split trifecta unix + ]; + description = "A simple library to call Alloy given a specification"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {}; + "call-haskell-from-anything" = callPackage ({ mkDerivation, base, bytestring, data-msgpack, mtl , storable-endian, template-haskell @@ -53795,14 +53856,17 @@ self: { }) {}; "call-plantuml" = callPackage - ({ mkDerivation, base, bytestring, filepath, hspec, process }: + ({ mkDerivation, async, base, bytestring, filepath, hspec, process + }: mkDerivation { pname = "call-plantuml"; - version = "0.0.1"; - sha256 = "1bx914719566fkhpxxyc22m3x8aq6c134kgs2a6ipf583883yfzh"; + version = "0.0.1.1"; + sha256 = "0wipnjcwv4d92vh1nmf228gf8bdy2yc0fana0a7zg5fxkaqznq0v"; enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring filepath process ]; - testHaskellDepends = [ base bytestring filepath hspec process ]; + libraryHaskellDepends = [ async base bytestring filepath process ]; + testHaskellDepends = [ + async base bytestring filepath hspec process + ]; description = "A simple library to call PlantUML given a diagram specification"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; @@ -53849,26 +53913,29 @@ self: { , GenericPretty, ghc-prim, happy, hmatrix, hspec, hspec-discover , lattices, lens, matrix, mmorph, mtl, optparse-applicative , parallel, pipes, pretty, QuickCheck, sbv, silently, singletons - , strict, syb, syz, template-haskell, temporary, text, time - , transformers, uniplate, vector, verifiable-expressions, vinyl + , singletons-base, singletons-th, strict, syb, syz + , template-haskell, temporary, text, time, transformers, uniplate + , vector, verifiable-expressions, vinyl }: mkDerivation { pname = "camfort"; - version = "1.1.2"; - sha256 = "13a6x4j4f95izwz7g5sykpb2pq4lzwcswi31986gkyl6nicn5cfj"; + version = "1.2.0"; + sha256 = "1i2ssa4zlxa0c9gfhzm32rg8kc2fixyqyh203xhd9f82rn113mn8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory fgl filepath fortran-src GenericPretty ghc-prim hmatrix lattices lens - matrix mmorph mtl parallel pipes pretty sbv singletons strict syb - syz template-haskell text transformers uniplate vector - verifiable-expressions vinyl + matrix mmorph mtl parallel pipes pretty sbv singletons + singletons-base singletons-th strict syb syz template-haskell text + transformers uniplate vector verifiable-expressions vinyl ]; librarySystemDepends = [ flint ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ - base directory fortran-src optparse-applicative + array base binary bytestring containers directory fgl filepath + fortran-src hmatrix lattices lens mtl optparse-applicative sbv text + uniplate verifiable-expressions ]; testHaskellDepends = [ array base binary bytestring containers directory fgl filepath @@ -55826,8 +55893,8 @@ self: { pname = "cbor-tool"; version = "0.2.2.0"; sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p"; - revision = "3"; - editedCabalFile = "12sdpffqii9z70kbxn64vg08wlsgd6llbi479nxjc819cdmpgm59"; + revision = "4"; + editedCabalFile = "1wr6dlijy5j1b88bfmyvzj5pdipw6rcb40gfik678apr2q7gw0i6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -55850,6 +55917,8 @@ self: { pname = "cborg"; version = "0.2.8.0"; sha256 = "07mh5bk61k5dz2x5g7fqw2cv7bjzs7v65yxvzkq7mdbkq8kwhn9f"; + revision = "1"; + editedCabalFile = "13m2shrlpvg5s9d40a2463mmckzg50y8jb47zfd6i1rg6q3q6xx6"; libraryHaskellDepends = [ array base bytestring containers deepseq ghc-bignum ghc-prim half primitive text @@ -55872,6 +55941,8 @@ self: { pname = "cborg-json"; version = "0.2.5.0"; sha256 = "1m3w0yyp6xb07fx04g5c52pb0b46vpkgpi32w1c8bz867x2p7hsq"; + revision = "1"; + editedCabalFile = "0zzn2p6yl9mqw7agm5w7iiz105078gv66vxr8bqazilgssqk5wyg"; libraryHaskellDepends = [ aeson aeson-pretty base cborg scientific text unordered-containers vector @@ -57633,42 +57704,56 @@ self: { }) {}; "chiasma" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, composition - , composition-extra, conduit, conduit-extra, containers, cornea - , data-default, deepseq, directory, either, exceptions, filepath - , free, hedgehog, lens, mtl, parsec, parsers, posix-pty - , prettyprinter, prettyprinter-ansi-terminal, process, random - , relude, resourcet, split, stm-chans, stm-conduit, tasty - , tasty-hedgehog, text, transformers, typed-process, unix, unliftio - , unliftio-core, uuid + ({ mkDerivation, attoparsec, base, bytestring, composition + , containers, exon, extra, first-class-families, lens, parsec + , parsers, path, polysemy, polysemy-conc, polysemy-log + , polysemy-plugin, polysemy-process, polysemy-time, prelate + , prettyprinter, prettyprinter-ansi-terminal, random, text + , transformers, typed-process, uuid }: mkDerivation { pname = "chiasma"; - version = "0.2.0.0"; - sha256 = "11pbg9mlmp15hs2wdca0qyhbc94d91xkl75jlcaksla8l1qnnz9m"; + version = "0.10.0.0"; + sha256 = "116780x6a6avs2w62r32319w6fqhn2iwvxbfrl83h01iskr57x53"; libraryHaskellDepends = [ - aeson attoparsec base bytestring composition composition-extra - conduit conduit-extra containers cornea data-default deepseq - directory either exceptions filepath free lens mtl parsec parsers - posix-pty prettyprinter prettyprinter-ansi-terminal process random - relude resourcet split stm-chans stm-conduit text transformers - typed-process unix unliftio unliftio-core uuid + attoparsec base bytestring composition containers exon extra + first-class-families lens parsec parsers path polysemy + polysemy-conc polysemy-log polysemy-plugin polysemy-process + polysemy-time prelate prettyprinter prettyprinter-ansi-terminal + random text transformers typed-process uuid ]; - testHaskellDepends = [ - aeson attoparsec base bytestring composition composition-extra - conduit conduit-extra containers cornea data-default deepseq - directory either exceptions filepath free hedgehog lens mtl parsec - parsers posix-pty prettyprinter prettyprinter-ansi-terminal process - random relude resourcet split stm-chans stm-conduit tasty - tasty-hedgehog text transformers typed-process unix unliftio - unliftio-core uuid - ]; - description = "tmux api"; + description = "A tmux client for Polysemy"; license = "BSD-2-Clause-Patent"; hydraPlatforms = lib.platforms.none; broken = true; }) {}; + "chiasma-test" = callPackage + ({ mkDerivation, base, bytestring, chiasma, chronos, exon, hedgehog + , lens, path, path-io, polysemy, polysemy-chronos, polysemy-conc + , polysemy-log, polysemy-plugin, polysemy-process, polysemy-test + , polysemy-time, prelate, tasty, tasty-hedgehog, text + , typed-process + }: + mkDerivation { + pname = "chiasma-test"; + version = "0.10.0.0"; + sha256 = "0244xxn0j53v0jcvj9d11wfrxjwjpr9247nbgqj8ipz5v56amih3"; + libraryHaskellDepends = [ + base bytestring chiasma chronos exon hedgehog path path-io polysemy + polysemy-chronos polysemy-conc polysemy-log polysemy-plugin + polysemy-process polysemy-test polysemy-time prelate text + typed-process + ]; + testHaskellDepends = [ + base chiasma hedgehog lens path-io polysemy polysemy-chronos + polysemy-plugin polysemy-test prelate tasty tasty-hedgehog + ]; + description = "A tmux client for Polysemy"; + license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; + }) {}; + "chimera" = callPackage ({ mkDerivation, adjunctions, base, distributive, mtl, QuickCheck , random, tasty, tasty-bench, tasty-hunit, tasty-quickcheck @@ -58258,8 +58343,8 @@ self: { }: mkDerivation { pname = "churros"; - version = "0.1.5.0"; - sha256 = "05fb9vmx18dypfw6303y74cbag9vv187w6z402dv4vff35ya4bvh"; + version = "0.1.6.0"; + sha256 = "0ksjwdk36i8c90dzp9l24ynd2647ihv20kgv8412qcg3g3wplzpz"; libraryHaskellDepends = [ async base containers random stm time unagi-chan ]; @@ -58280,8 +58365,8 @@ self: { }: mkDerivation { pname = "cicero-api"; - version = "0.1.1.3"; - sha256 = "1wsvdi0hfsa6p70a9yag998iyzn3irbydrs17nfxalq5cnzwg0y4"; + version = "0.1.2.0"; + sha256 = "1y8dvv9ly64kwnx15ln5gidmab3wdwjclsbf719ajczvaxfkic0z"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -58760,6 +58845,7 @@ self: { ]; description = "Generates citations and bibliography from CSL styles"; license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.sternenseemann ]; }) {}; "citeproc_0_8_0_2" = callPackage @@ -58787,6 +58873,7 @@ self: { description = "Generates citations and bibliography from CSL styles"; license = lib.licenses.bsd2; hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.sternenseemann ]; }) {}; "citeproc-hs" = callPackage @@ -59328,8 +59415,8 @@ self: { }: mkDerivation { pname = "clash-shake"; - version = "0.3.1"; - sha256 = "1paym4vsihwggml62m0ijlln9349p4yrcpg6bvh6i199h3qs78id"; + version = "0.3.1.2"; + sha256 = "1nj9vhzfybm43jcns8nr3ka4gjc1xyn0ccv6xiqdyjipzldx4a1n"; libraryHaskellDepends = [ aeson base bytestring clash-ghc clash-lib clash-prelude directory shake split stache text unordered-containers @@ -60772,8 +60859,8 @@ self: { }: mkDerivation { pname = "cloudi"; - version = "2.0.4"; - sha256 = "0d53ya6mqjl74yj1skmlbir5vvrfisrliahilm2jkaj3l8awyr2h"; + version = "2.0.5"; + sha256 = "0ry89sh969p0zhgchnciidacbkjkzs25mfnv07fm740lzzvh5isb"; libraryHaskellDepends = [ array base binary bytestring containers network time unix zlib ]; @@ -61960,10 +62047,8 @@ self: { }: mkDerivation { pname = "codeworld-api"; - version = "0.7.0"; - sha256 = "1l1w4mrw4b2njz4kmfvd94mlwn776vryy1y9x9cb3r69fw5qy2f3"; - revision = "4"; - editedCabalFile = "06qa2djbzfdwlvgbr2k8667fipyrkdvp8a1vac75fla99pdwp7yi"; + version = "0.8.0"; + sha256 = "0iaiw3gngpg2cwm0pgckn9vb0hjm7xm8szsii0k2s4d8fkl4k5rv"; libraryHaskellDepends = [ aeson base base64-bytestring blank-canvas bytestring cereal cereal-text containers deepseq dependent-sum ghc-prim hashable @@ -62320,6 +62405,8 @@ self: { ]; description = "Generate CSV & XLSX files for importing into CoinTracking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "colada" = callPackage @@ -65414,6 +65501,8 @@ self: { pname = "conduit"; version = "1.3.4.3"; sha256 = "0zchhxcpciq4nr7ll4z4c7wshlngphr0dz0y3xfml1pfls3a18mc"; + revision = "1"; + editedCabalFile = "0fsvnlx8gd9d8f70f6gl68ljhmff790anrifrixcflz0j2kfxwjh"; libraryHaskellDepends = [ base bytestring directory exceptions filepath mono-traversable mtl primitive resourcet text transformers unix unliftio-core vector @@ -68544,7 +68633,7 @@ self: { license = lib.licenses.mit; }) {}; - "core-program_0_6_1_0" = callPackage + "core-program_0_6_1_1" = callPackage ({ mkDerivation, base, bytestring, core-data, core-text, directory , exceptions, filepath, fsnotify, hashable, hourglass, mtl , prettyprinter, safe-exceptions, stm, template-haskell @@ -68553,8 +68642,8 @@ self: { }: mkDerivation { pname = "core-program"; - version = "0.6.1.0"; - sha256 = "0gbahw4gwgj4ms5dg2142jmmhwrb9w6bc3ivpqg0h4cnd7ai20fr"; + version = "0.6.1.1"; + sha256 = "1qc9acs4jcrs80677fkd42h7nzwx8n7falrnxjsqpslh6i900hzc"; libraryHaskellDepends = [ base bytestring core-data core-text directory exceptions filepath fsnotify hashable hourglass mtl prettyprinter safe-exceptions stm @@ -68574,8 +68663,8 @@ self: { }: mkDerivation { pname = "core-telemetry"; - version = "0.2.6.1"; - sha256 = "0i74ij12q99dap4yvwf4rkirq9wwib9w6ygwav29j2rv8rni6pim"; + version = "0.2.7.0"; + sha256 = "148ij7rdnjh4fl84b8r20vffm0564afj101zn7xkji653fv1ha0s"; libraryHaskellDepends = [ base bytestring core-data core-program core-text exceptions http-streams io-streams mtl network-info random safe-exceptions @@ -68626,8 +68715,8 @@ self: { }: mkDerivation { pname = "core-webserver-servant"; - version = "0.1.1.2"; - sha256 = "084m2lisd9gwhasnxd2yc98f75zpa2zy3rq6sgj56f6aq7vnl0vv"; + version = "0.1.1.3"; + sha256 = "1bp7b6v96lqvsa39j9z1010yg4zjbl8v30anil12803ayc2ilvw3"; libraryHaskellDepends = [ base core-program core-telemetry core-webserver-warp mtl safe-exceptions servant servant-server vault wai @@ -68638,17 +68727,18 @@ self: { }) {}; "core-webserver-warp" = callPackage - ({ mkDerivation, async, base, bytestring, core-data, core-program - , core-telemetry, core-text, http-types, http2, mtl - , safe-exceptions, vault, wai, warp + ({ mkDerivation, async, base, bytestring, bytestring-trie + , core-data, core-program, core-telemetry, core-text, http-types + , http2, mtl, safe-exceptions, vault, wai, warp }: mkDerivation { pname = "core-webserver-warp"; - version = "0.1.1.6"; - sha256 = "05r4y1fywxxf4mi3i319vis67b2kdxf3caxq3nnlpc1ssyw37hc0"; + version = "0.2.0.0"; + sha256 = "0z0jjcj5gdcgxnnsjay5g2nw0ls43qslm3345n6732l515czivk7"; libraryHaskellDepends = [ - async base bytestring core-data core-program core-telemetry - core-text http-types http2 mtl safe-exceptions vault wai warp + async base bytestring bytestring-trie core-data core-program + core-telemetry core-text http-types http2 mtl safe-exceptions vault + wai warp ]; description = "Interoperability with Wai/Warp"; license = lib.licenses.mit; @@ -76088,6 +76178,8 @@ self: { pname = "dbmonitor"; version = "0.1.0"; sha256 = "02j2f6r7jkgmmxqxysz45api0ai8wic4dffhw0y1xxhwfw5cx023"; + revision = "1"; + editedCabalFile = "0ks4sch746lvy4da4hh5mmxan487i6y0bjm5sw8vxcm6xa5jvqfg"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -76136,7 +76228,7 @@ self: { license = lib.licenses.asl20; }) {}; - "dbus_1_2_26" = callPackage + "dbus_1_2_27" = callPackage ({ mkDerivation, base, bytestring, cereal, conduit, containers , criterion, deepseq, directory, exceptions, extra, filepath, lens , network, parsec, process, QuickCheck, random, resourcet, split @@ -76145,8 +76237,8 @@ self: { }: mkDerivation { pname = "dbus"; - version = "1.2.26"; - sha256 = "1c9ljbwcrnzlbrjjp7bgpwbwykm03qvha05h55yp8k11za03wh9i"; + version = "1.2.27"; + sha256 = "0lkk9hd78h2ilvi0bj5jqq5q5lwyxzdlknwvckhwyxnlf3y6dz8z"; libraryHaskellDepends = [ base bytestring cereal conduit containers deepseq exceptions filepath lens network parsec random split template-haskell text @@ -77277,8 +77369,8 @@ self: { pname = "deepseq-generics"; version = "0.2.0.0"; sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; - revision = "7"; - editedCabalFile = "1issqf30ykabjpk7f66k8pfyylxw7bxa39b5iq72s76nxi392lig"; + revision = "8"; + editedCabalFile = "0dcv4kf2g4xyacjpci9kql1gm706lkzhcyz9ks9jkbdvyvs8lf90"; libraryHaskellDepends = [ base deepseq ghc-prim ]; testHaskellDepends = [ base deepseq ghc-prim HUnit test-framework test-framework-hunit @@ -77835,10 +77927,8 @@ self: { }: mkDerivation { pname = "dep-t-advice"; - version = "0.6.1.0"; - sha256 = "1l3zphhyb55da4jrkbhgynwb72s1lm63iyi4p35np1jffwfcc9mg"; - revision = "1"; - editedCabalFile = "09rszbs5l4z8zzhizipiqk8g11h9gr7brn03ylhci716mkzwkzw5"; + version = "0.6.2.0"; + sha256 = "0kzrk3fp68phdlz2snqzgma2b7997j06gwpg3cb0m8s9rpkkszmw"; libraryHaskellDepends = [ base dep-t mtl sop-core transformers unliftio-core ]; @@ -79160,8 +79250,8 @@ self: { pname = "dhall"; version = "1.41.2"; sha256 = "14m5rrvkid76qnvg0l14xw1mnqclhip3gjrz20g1lp4fd5p056ka"; - revision = "1"; - editedCabalFile = "1gi2j6d3mh0wqx6756cp04c676843wdibfwv3i2wypvsk74dlvjm"; + revision = "2"; + editedCabalFile = "18jh1c2zinwglih5gc8av2szicyywq5q0kl2h5200sm67nxmask9"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -79341,8 +79431,8 @@ self: { pname = "dhall-docs"; version = "1.0.10"; sha256 = "1rh6nxmjin8kvbscbhbcjsgxnlkw1r19plzpps6wkx86zfjd2ms2"; - revision = "1"; - editedCabalFile = "06778mcqzqspy60jciy4vn2b8cbvv8dr5y0hcd560jr1yhjn0n8p"; + revision = "2"; + editedCabalFile = "1zm07bnaf6j0h5x2rlyvi4fs5d42w2v5z11qxc7gysqp1k2p99m1"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -83151,10 +83241,8 @@ self: { }: mkDerivation { pname = "distribution-nixpkgs"; - version = "1.7.0"; - sha256 = "007riyq6irmzzmf3gynaa5hpz8a4khg8wl4blyz78c59bqblpw69"; - revision = "1"; - editedCabalFile = "0xzrh7kfla9c43jjjnd2r13xsp994gdkxkwgav2kl50qxzdb88nx"; + version = "1.7.0.1"; + sha256 = "0yaha7arm9cn9sxacqwmr2qcnw2cxn53xww11im00mx7gk127rh2"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring Cabal containers deepseq language-nix lens @@ -83573,22 +83661,25 @@ self: { }) {}; "dnf-repo" = callPackage - ({ mkDerivation, base, directory, extra, filepath, simple-cmd + ({ mkDerivation, base, directory, extra, filepath, Glob, simple-cmd , simple-cmd-args }: mkDerivation { pname = "dnf-repo"; - version = "0.3"; - sha256 = "0x2x6sapghvm4006iplk750ihign5akl1mlrga79k8f81krb3i3s"; + version = "0.5"; + sha256 = "1adpbm76kra59jgbrx2b1lzi06lq3znwqy8wapx0p5qsf630kilw"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; executableHaskellDepends = [ - base directory extra filepath simple-cmd simple-cmd-args + base directory extra filepath Glob simple-cmd simple-cmd-args ]; + testHaskellDepends = [ base simple-cmd ]; description = "DNF wrapper tool to control repos"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dnf-repo"; + broken = true; }) {}; "dns" = callPackage @@ -84328,7 +84419,7 @@ self: { mainProgram = "doctest"; }) {}; - "doctest_0_20_0" = callPackage + "doctest_0_20_1" = callPackage ({ mkDerivation, base, base-compat, code-page, deepseq, directory , exceptions, filepath, ghc, ghc-paths, hspec, hspec-core , hspec-discover, HUnit, mockery, process, QuickCheck, setenv @@ -84336,10 +84427,8 @@ self: { }: mkDerivation { pname = "doctest"; - version = "0.20.0"; - sha256 = "0sk50b8zxq4hvc8qphlmfha1lsv3xha7q7ka081jgswf1qpg34y4"; - revision = "5"; - editedCabalFile = "0d7xgi71zdfbg3an6v2ss4lj6lvlmvq36hy788nd94ja2bgfsmpx"; + version = "0.20.1"; + sha256 = "00jbpqvcqxx1nmf41li947d9d3ifwchzzp37mlag68hgnza6z9a4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -86508,14 +86597,14 @@ self: { maintainers = [ lib.maintainers.turion ]; }) {}; - "dunai_0_9_0" = callPackage + "dunai_0_9_1" = callPackage ({ mkDerivation, base, MonadRandom, simple-affine-space, tasty , tasty-hunit, transformers, transformers-base }: mkDerivation { pname = "dunai"; - version = "0.9.0"; - sha256 = "0p93c1h5bggvabx4vvd95khmjrq4qh46rvxkm4cqcdfd0601lyy5"; + version = "0.9.1"; + sha256 = "0krgbs9xqar78815xrgqbj63678jm0mjbsvnqdayh0c2awf9i8bj"; libraryHaskellDepends = [ base MonadRandom simple-affine-space transformers transformers-base ]; @@ -86546,8 +86635,8 @@ self: { ({ mkDerivation, base, dunai, normaldistribution, QuickCheck }: mkDerivation { pname = "dunai-test"; - version = "0.9.0"; - sha256 = "0j007pd475fmxhnvvwh6z8awrxfcfgwmph1z412k332lrj46nhv7"; + version = "0.9.1"; + sha256 = "0p78yvn98vp3qjd6dx23nwwzq6v6sks2gp9cycmcnjk3yn8470j9"; libraryHaskellDepends = [ base dunai normaldistribution QuickCheck ]; @@ -87874,8 +87963,8 @@ self: { pname = "ed25519"; version = "0.0.5.0"; sha256 = "0v8msqvgzimhs7p5ri25hrb1ni2wvisl5rmdxy89fc59py79b9fq"; - revision = "5"; - editedCabalFile = "1ckyssya3vw8nf4w324zhbyyf92zlzr2kcv20bvw58wz7mgppb14"; + revision = "6"; + editedCabalFile = "0qyx6cl52fnll8lp6v9133wfvv3zhvq7v2crn441mng520j9wp48"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck @@ -88313,20 +88402,20 @@ self: { "effectful" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory - , effectful-core, exceptions, lifted-base, process, stm, tasty - , tasty-bench, tasty-hunit, text, time, unix, unliftio + , effectful-core, exceptions, lifted-base, primitive, process, stm + , tasty, tasty-bench, tasty-hunit, text, time, unix, unliftio }: mkDerivation { pname = "effectful"; - version = "2.1.0.0"; - sha256 = "16vkxjmlwmyrvp3gdjma73jqlbmvbj9cawazg9h6fchxfr6ps53n"; + version = "2.2.0.0"; + sha256 = "0zymvpg7bbvgwpziqj3bfpxbb77d45kph0qcrdilfi9w1bbjg63r"; libraryHaskellDepends = [ async base bytestring directory effectful-core process stm time unliftio ]; testHaskellDepends = [ - base containers effectful-core exceptions lifted-base tasty - tasty-hunit unliftio + base containers effectful-core exceptions lifted-base primitive + tasty tasty-hunit unliftio ]; benchmarkHaskellDepends = [ async base tasty-bench text unix unliftio @@ -88341,8 +88430,8 @@ self: { }: mkDerivation { pname = "effectful-core"; - version = "2.1.0.0"; - sha256 = "1lgg8f66jrs206b4zvkplq7w8d8sd91mxj9333sr4v4dnnshp4lk"; + version = "2.2.0.0"; + sha256 = "0i4ybsqkamsg91vp4pkr7pxpscfk5n44far9c53cbnh49nx14jqg"; libraryHaskellDepends = [ base containers exceptions monad-control primitive transformers-base unliftio-core @@ -88379,6 +88468,8 @@ self: { libraryHaskellDepends = [ base effectful-core primitive ]; description = "`ST`-style mutation for `effectful`"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effectful-th" = callPackage @@ -91123,22 +91214,19 @@ self: { license = lib.licenses.bsd3; }) {}; - "enummapset_0_7_0_0" = callPackage + "enummapset_0_7_1_0" = callPackage ({ mkDerivation, aeson, array, base, containers, deepseq, ghc-prim - , HUnit, QuickCheck, semigroups, test-framework - , test-framework-hunit, test-framework-quickcheck2 + , HUnit, QuickCheck, test-framework, test-framework-hunit + , test-framework-quickcheck2 }: mkDerivation { pname = "enummapset"; - version = "0.7.0.0"; - sha256 = "194x78axmihq9r83w8dj4z0299aa63zkkbq82f7ybgr2ckgvqcd5"; - libraryHaskellDepends = [ - aeson base containers deepseq semigroups - ]; + version = "0.7.1.0"; + sha256 = "1zhfl1qrm7r124v0xphh50lnll7cgmlacdmxwwlwhmzyrp1bwf69"; + libraryHaskellDepends = [ aeson base containers deepseq ]; testHaskellDepends = [ aeson array base containers deepseq ghc-prim HUnit QuickCheck - semigroups test-framework test-framework-hunit - test-framework-quickcheck2 + test-framework test-framework-hunit test-framework-quickcheck2 ]; description = "IntMap and IntSet with Enum keys/elements"; license = lib.licenses.bsd3; @@ -93587,39 +93675,73 @@ self: { }) {}; "eventuo11y" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, primitive - , resourcet, text, time, unliftio-core, uuid + ({ mkDerivation, base, exceptions, primitive, resourcet + , safe-exceptions, transformers, unliftio-core }: mkDerivation { pname = "eventuo11y"; - version = "0.3.2.0"; - sha256 = "1dx6q09bymvr7f4l7bnmb8c9gn46yp95qfhf9dml5i33x4scr2s8"; + version = "0.5.0.0"; + sha256 = "19rsw7xs8hy1yl145fgsfd3rddvpxjgxv05kd557hgv35ipkklmz"; libraryHaskellDepends = [ - aeson base bytestring exceptions primitive resourcet text time - unliftio-core uuid + base exceptions primitive resourcet safe-exceptions transformers + unliftio-core ]; description = "An event-oriented observability library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eventuo11y-batteries" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, case-insensitive - , containers, eventuo11y, exceptions, http-media, http-types - , monad-control, mtl, network, semigroupoids, servant-client - , servant-client-core, text, transformers-base, wai, warp + , containers, eventuo11y, eventuo11y-json, http-media, http-types + , monad-control, mtl, network, safe-exceptions, semigroupoids + , servant-client, servant-client-core, text, transformers-base, wai + , warp }: mkDerivation { pname = "eventuo11y-batteries"; - version = "0.2.1.0"; - sha256 = "0hdhryk7srb0dcjbqfk6ah2l7x3bbl3rqhncwx0wc3nfcx97dr0v"; + version = "0.2.1.1"; + sha256 = "1s3mwr9cnfsn1kh63dq6djwvvj4sx256w47r9s6wsii9ibgqig8v"; libraryHaskellDepends = [ aeson base binary bytestring case-insensitive containers eventuo11y - exceptions http-media http-types monad-control mtl network - semigroupoids servant-client servant-client-core text - transformers-base wai warp + eventuo11y-json http-media http-types monad-control mtl network + safe-exceptions semigroupoids servant-client servant-client-core + text transformers-base wai warp ]; description = "Grab bag of eventuo11y-enriched functionality"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + }) {}; + + "eventuo11y-dsl" = callPackage + ({ mkDerivation, base, template-haskell, th-compat }: + mkDerivation { + pname = "eventuo11y-dsl"; + version = "0.1.0.0"; + sha256 = "0nm0q8p5qbnx56gvpsbzz5vwkx08sn8wcdyb6hli4ihq407ml8qz"; + libraryHaskellDepends = [ base template-haskell th-compat ]; + description = "DSL for defining eventuo11y fields and selectors"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {}; + + "eventuo11y-json" = callPackage + ({ mkDerivation, aeson, base, bytestring, eventuo11y + , eventuo11y-dsl, template-haskell, text, th-compat, time, uuid + }: + mkDerivation { + pname = "eventuo11y-json"; + version = "0.1.0.0"; + sha256 = "1bl4lqxq38nvwnm6s9w27ja4x571y6lvjvx7amc2i498i3mr5jzq"; + libraryHaskellDepends = [ + aeson base bytestring eventuo11y eventuo11y-dsl template-haskell + text th-compat time uuid + ]; + description = "aeson-based rendering for eventuo11y"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "every" = callPackage @@ -94618,38 +94740,6 @@ self: { }) {}; "experimenter" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, cereal-vector - , conduit, containers, deepseq, directory, esqueleto, filepath - , foundation, HaTeX, hostname, hspec, lens, matrix, monad-logger - , mtl, mwc-random, parallel, persistent, persistent-postgresql - , persistent-template, process, QuickCheck, resource-pool - , resourcet, stm, text, time, transformers, unix, unliftio-core - , vector - }: - mkDerivation { - pname = "experimenter"; - version = "0.1.0.12"; - sha256 = "0sam7wl4gha9midkgj15h0q68g121pihxxvv8dlx3wgd9as1h5d6"; - libraryHaskellDepends = [ - aeson base bytestring cereal cereal-vector conduit containers - deepseq directory esqueleto filepath HaTeX hostname lens matrix - monad-logger mtl mwc-random parallel persistent - persistent-postgresql persistent-template process resource-pool - resourcet stm text time transformers unix unliftio-core vector - ]; - testHaskellDepends = [ - aeson base bytestring cereal cereal-vector conduit containers - deepseq directory esqueleto filepath foundation HaTeX hostname - hspec lens matrix monad-logger mtl mwc-random parallel persistent - persistent-postgresql persistent-template process QuickCheck - resource-pool resourcet stm text time transformers unix - unliftio-core vector - ]; - description = "Perform scientific experiments stored in a DB, and generate reports"; - license = lib.licenses.bsd3; - }) {}; - - "experimenter_0_1_0_14" = callPackage ({ mkDerivation, aeson, base, bytestring, cereal, cereal-vector , conduit, containers, deepseq, directory, esqueleto, filepath , foundation, HaTeX, hostname, hspec, lens, matrix, monad-logger @@ -94679,7 +94769,6 @@ self: { ]; description = "Perform scientific experiments stored in a DB, and generate reports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "expiring-cache-map" = callPackage @@ -95300,8 +95389,8 @@ self: { }: mkDerivation { pname = "extensions"; - version = "0.0.0.1"; - sha256 = "0wxkkdvsq8pqirw5w8ss20iyblw9197q420cpwnqzbl2xb0cjk6n"; + version = "0.1.0.0"; + sha256 = "1b4wiw228hlk0ywjzpgw7rg9nwfmav82c976ipn0ql0gyh7v27xc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95318,9 +95407,7 @@ self: { ]; description = "Parse Haskell Language Extensions"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "extensions"; - broken = true; }) {}; "external-sort" = callPackage @@ -95909,8 +95996,8 @@ self: { }: mkDerivation { pname = "faktory"; - version = "1.1.2.3"; - sha256 = "1mihcmz3wzw2f6vfwv7xkvzhiql1fbb5v2llpkx5y455z939xl37"; + version = "1.1.2.4"; + sha256 = "0mn888cjk8ag94il7zcbk6q5cq2vf2dxf1b8ba8ki2rypxld5m7a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -96381,6 +96468,25 @@ self: { license = lib.licenses.bsd3; }) {}; + "fastmemo_0_1_1" = callPackage + ({ mkDerivation, base, bytestring, containers, QuickCheck + , utf8-string, vector + }: + mkDerivation { + pname = "fastmemo"; + version = "0.1.1"; + sha256 = "0jjsfdadf1dz516dhqd42bvbd230dymzpav7kzzvkn2yr81p456s"; + libraryHaskellDepends = [ + base bytestring containers utf8-string vector + ]; + testHaskellDepends = [ + base bytestring containers QuickCheck utf8-string vector + ]; + description = "Memoize functions on Generic types"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "fastparser" = callPackage ({ mkDerivation, base, bytestring, bytestring-lexing, containers , criterion, kan-extensions, microlens, thyme, transformers @@ -96432,6 +96538,8 @@ self: { pname = "fastsum"; version = "0.2.0.0"; sha256 = "1yjsmk8ws6y5rbv23d3jqyqz4pvkzn44dmx1gflldgdfm9xi31ac"; + revision = "1"; + editedCabalFile = "14xrvz46f5ngj1jzdlcabg342ixczcfc3rx1hryil8rv976bdidr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -98456,14 +98564,14 @@ self: { license = lib.licenses.bsd3; }) {}; - "filepath-bytestring_1_4_2_1_11" = callPackage + "filepath-bytestring_1_4_2_1_12" = callPackage ({ mkDerivation, base, bytestring, criterion, filepath, QuickCheck , unix }: mkDerivation { pname = "filepath-bytestring"; - version = "1.4.2.1.11"; - sha256 = "1y906vb9p51awzgd5s1bq718kw03gpw7z8i8bdznlw7i9r40shbk"; + version = "1.4.2.1.12"; + sha256 = "0i8j724fz8h1bcqvlvp3sxmgyrvx2sim74cvzkpc9m05yn9p27sq"; libraryHaskellDepends = [ base bytestring unix ]; testHaskellDepends = [ base bytestring filepath QuickCheck ]; benchmarkHaskellDepends = [ base criterion filepath ]; @@ -98852,18 +98960,18 @@ self: { }) {}; "findhttp" = callPackage - ({ mkDerivation, base, basic-prelude, bytestring, directory - , filepath, Glob, http-directory, simple-cmd-args, text + ({ mkDerivation, base, bytestring, directory, filepath, Glob + , http-directory, simple-cmd-args, text }: mkDerivation { pname = "findhttp"; - version = "0.1"; - sha256 = "1hw7cbmy0b01kfpfxavq3gc17vnq4vr2fy3bcvh4jnz9rizfmr9w"; + version = "0.1.1"; + sha256 = "1rsgdj3fm5zcvby8wms4lslr5bzj5n8rkdxckva7px4sks02fg2n"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base basic-prelude bytestring directory filepath Glob - http-directory simple-cmd-args text + base bytestring directory filepath Glob http-directory + simple-cmd-args text ]; description = "List http/html files"; license = lib.licenses.gpl3Only; @@ -100040,7 +100148,7 @@ self: { maintainers = [ lib.maintainers.sternenseemann ]; }) {}; - "flat_0_5" = callPackage + "flat_0_5_2" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , dlist, filepath, ghc-prim, hashable, list-t, mono-traversable , pretty, primitive, QuickCheck, quickcheck-text, tasty @@ -100049,8 +100157,8 @@ self: { }: mkDerivation { pname = "flat"; - version = "0.5"; - sha256 = "1338h8w2s1vpjl019rv1qmc5s0xlpn3jdi4jzycc805l9cxdqa7w"; + version = "0.5.2"; + sha256 = "189jgx5zd1m3wgn2mal93ak1p6qp9mkaz38gkfzvgv6nwgywxxix"; libraryHaskellDepends = [ array base bytestring containers deepseq dlist ghc-prim hashable list-t mono-traversable pretty primitive text unordered-containers @@ -102165,7 +102273,7 @@ self: { mainProgram = "fortran-src"; }) {}; - "fortran-src_0_11_0" = callPackage + "fortran-src_0_12_0" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , deepseq, directory, either, fgl, filepath, GenericPretty, happy , hspec, hspec-discover, mtl, pretty, QuickCheck, singletons @@ -102174,8 +102282,8 @@ self: { }: mkDerivation { pname = "fortran-src"; - version = "0.11.0"; - sha256 = "0rh7zpnykm30y5jlr6077jdzpbf6qsccdmbs083wb1lv5gijza7k"; + version = "0.12.0"; + sha256 = "02n9s5an0z39gx8ks9pr3vrj6h683yra2djwi2m62rl76yw9nsmw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -102202,20 +102310,19 @@ self: { }) {}; "fortran-src-extras" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , directory, either, filepath, fortran-src, GenericPretty, hspec - , hspec-discover, optparse-applicative, silently, text, uniplate - , yaml + ({ mkDerivation, aeson, base, bytestring, containers, either + , filepath, fortran-src, GenericPretty, hspec, hspec-discover + , optparse-applicative, silently, text, uniplate, yaml }: mkDerivation { pname = "fortran-src-extras"; - version = "0.3.2"; - sha256 = "1b8vcg86pq92r1012s6fpnnkr489zs9x202rdjkjnyrmzm9v8rrx"; + version = "0.4.0"; + sha256 = "064cszvqn1p3r4fjldi7yibm7dd7iahanfld02z7if4l5w8l6dyc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base binary bytestring containers directory either filepath - fortran-src GenericPretty optparse-applicative text uniplate + aeson base bytestring containers either filepath fortran-src + GenericPretty optparse-applicative text uniplate ]; executableHaskellDepends = [ aeson base bytestring containers fortran-src GenericPretty @@ -104060,7 +104167,7 @@ self: { license = lib.licenses.bsd3; }) {}; - "fsnotify_0_4_0_1" = callPackage + "fsnotify_0_4_1_0" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , exceptions, filepath, hinotify, monad-control, random, retry , safe-exceptions, sandwich, temporary, text, time, unix @@ -104068,24 +104175,19 @@ self: { }: mkDerivation { pname = "fsnotify"; - version = "0.4.0.1"; - sha256 = "02gnbwxgs5b4rnqpgprvqxw9d2vw2yi276dn6ync3czrxyqliz78"; - revision = "1"; - editedCabalFile = "00yspy6jwriwgr0zi806z31q082kx1gfihfspf3izlxcm5qinyjh"; - isLibrary = true; - isExecutable = true; + version = "0.4.1.0"; + sha256 = "1vzpx91n2qml0628zq1c0bwnz7d4bal4vwl52hyil60shx5gnc6i"; libraryHaskellDepends = [ async base bytestring containers directory filepath hinotify monad-control safe-exceptions text time unix unix-compat ]; - executableHaskellDepends = [ + testHaskellDepends = [ async base directory exceptions filepath random retry safe-exceptions sandwich temporary unix-compat unliftio ]; description = "Cross platform library for file change notification"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "tests"; }) {}; "fsnotify-conduit" = callPackage @@ -107161,12 +107263,12 @@ self: { license = lib.licenses.mit; }) {}; - "generic-functor_1_0_0_0" = callPackage + "generic-functor_1_1_0_0" = callPackage ({ mkDerivation, ap-normalize, base, transformers }: mkDerivation { pname = "generic-functor"; - version = "1.0.0.0"; - sha256 = "0cnwzz7303z55nr64bi56w2bqxh7wxmv8wxzmh5xb37k674qjgz6"; + version = "1.1.0.0"; + sha256 = "1hh5p7bk4pkq7095wiwiw5v53abh6csc4g0q47f3kgpavkf83d8c"; libraryHaskellDepends = [ ap-normalize base ]; testHaskellDepends = [ base transformers ]; description = "Deriving generalized functors with GHC.Generics"; @@ -107496,14 +107598,16 @@ self: { ({ mkDerivation, base, containers, transformers }: mkDerivation { pname = "generic-trie"; - version = "0.3.1"; - sha256 = "1x7f5bp7d13g737198l43y2mf9mzngg9vmhyh1yaxg8xfpzc3anh"; - revision = "2"; - editedCabalFile = "1dxf7c66vncw8zn0848g0bk2i2msbrb4njzvkzwvlaiphq0gqg10"; + version = "0.3.2"; + sha256 = "19027g8xqy99x0gg5a8cnvyf6n1jnk7qvpgn4d0b3ha168fa2k0l"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base containers transformers ]; + executableHaskellDepends = [ base ]; description = "A map, where the keys may be complex structured data"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "bogus"; broken = true; }) {}; @@ -110824,10 +110928,8 @@ self: { }: mkDerivation { pname = "ghc-typelits-extra"; - version = "0.4.3"; - sha256 = "06g40q0n2d10c2zksx5rrjkvm5ywi3rh41hbiwy4zs28x9idsv18"; - revision = "1"; - editedCabalFile = "0m6z24zmi169zifz1jg4zri0izr5z37qx33c9mphy74vd6ds3zzz"; + version = "0.4.4"; + sha256 = "1pjai171y374569xzqnp6amf7dvj57pcfykh3g48m5jij2b8jbc6"; libraryHaskellDepends = [ base containers ghc ghc-bignum ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat ghc-typelits-natnormalise transformers @@ -110841,26 +110943,6 @@ self: { }) {}; "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-natnormalise, tasty, tasty-hunit, tasty-quickcheck - , template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.7.6"; - sha256 = "10m4y0hf25w2i40464pz85lqs5dr8cznl191icnibc5fjynyzd9v"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - testHaskellDepends = [ - base ghc-typelits-natnormalise tasty tasty-hunit tasty-quickcheck - ]; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = lib.licenses.bsd2; - }) {}; - - "ghc-typelits-knownnat_0_7_7" = callPackage ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra , ghc-typelits-natnormalise, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers @@ -110878,29 +110960,9 @@ self: { ]; description = "Derive KnownNat constraints from other KnownNat constraints"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-bignum - , ghc-tcplugins-extra, tasty, tasty-hunit, template-haskell - , transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.7.6"; - sha256 = "09d70iw58m5g6yi8k2b52f1g0pfdqm5fzhs8rd7fgrgmi70np9bx"; - revision = "1"; - editedCabalFile = "1b587pryjkbvgayqwm8cn7ljmcyd4jikrxxkgm6zq1v9qhi7xy22"; - libraryHaskellDepends = [ - base containers ghc ghc-bignum ghc-tcplugins-extra transformers - ]; - testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = lib.licenses.bsd2; - }) {}; - - "ghc-typelits-natnormalise_0_7_7" = callPackage ({ mkDerivation, base, containers, ghc, ghc-bignum , ghc-tcplugins-extra, tasty, tasty-hunit, template-haskell , transformers @@ -110915,7 +110977,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit template-haskell ]; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-typelits-presburger" = callPackage @@ -111019,8 +111080,8 @@ self: { }: mkDerivation { pname = "ghci-dap"; - version = "0.0.18.0"; - sha256 = "1mkw7h7zzjd7kx9345rnkvh70qwkg8q6h5am2lgaybxmxkig8wlc"; + version = "0.0.19.0"; + sha256 = "07f0q83pcma3c0v7sdkkb1nzx40f55v47v44gaa2pg6clkl7p1gx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111728,18 +111789,18 @@ self: { "gi-adwaita" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdk - , gi-gio, gi-gobject, gi-gtk, haskell-gi, haskell-gi-base + , gi-gio, gi-gobject, gi-gtk, gi-pango, haskell-gi, haskell-gi-base , haskell-gi-overloading, libadwaita, text, transformers }: mkDerivation { pname = "gi-adwaita"; - version = "1.0.1"; - sha256 = "0l0n19ap2hvvl6kpwhqqr4n01xjc8rj9fl49ya2pbvxpjy97yqha"; + version = "1.0.3"; + sha256 = "1j5gccj480h2ms2spg7an0mdhb1mlm5hz7kkyga5smkfkc8pbj8h"; setupHaskellDepends = [ - base Cabal gi-gdk gi-gio gi-gobject gi-gtk haskell-gi + base Cabal gi-gdk gi-gio gi-gobject gi-gtk gi-pango haskell-gi ]; libraryHaskellDepends = [ - base bytestring containers gi-gdk gi-gio gi-gobject gi-gtk + base bytestring containers gi-gdk gi-gio gi-gobject gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; libraryPkgconfigDepends = [ libadwaita ]; @@ -111757,8 +111818,8 @@ self: { }: mkDerivation { pname = "gi-atk"; - version = "2.0.24"; - sha256 = "1xhjzjcdbnfk7b6r035ch3plpgk9yk2qawq7iffc47y67dxhcd6b"; + version = "2.0.25"; + sha256 = "0x3qwz8576c1m2y6sxjjzxi0q5x47lbaawipsiaiimk51x4p4div"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -111776,8 +111837,8 @@ self: { }: mkDerivation { pname = "gi-cairo"; - version = "1.0.26"; - sha256 = "1f3gfhqg03b64n4ipg3q96wkwsisrs79bbg7335nwg92frkv1j79"; + version = "1.0.27"; + sha256 = "1f074s37fw1wjd2ycmji8vhvl1lzaclqh7n2pippdfvhfidrkbxf"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -111829,8 +111890,8 @@ self: { }: mkDerivation { pname = "gi-cairo-render"; - version = "0.1.1"; - sha256 = "09gxykx633xvwcqx1cjl9kj2748jdq49ayy6z5p3hz7bxqlna952"; + version = "0.1.2"; + sha256 = "07h3k8bzb6qhk7x2v68dg5gsxxpjpr7k3vvh2fyqb9zj9rq8lyfc"; libraryHaskellDepends = [ array base bytestring haskell-gi-base mtl text utf8-string ]; @@ -111848,8 +111909,8 @@ self: { }: mkDerivation { pname = "gi-clutter"; - version = "1.0.2"; - sha256 = "1fyqpgj2q7mnlvqp60203mnl797vvsrfmgildp3zdi4dmqsv4vws"; + version = "1.0.3"; + sha256 = "1mbpk0s37sifpydww4qh6m7nyz8p323i2r2zr4h4cnvb6vpfvaqy"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-cogl gi-gio gi-glib gi-gobject gi-json gi-pango haskell-gi @@ -111872,8 +111933,8 @@ self: { }: mkDerivation { pname = "gi-cogl"; - version = "1.0.2"; - sha256 = "0y7inkzp3vxck4para77dzd4qczl3r61nv5y5hcyycmlpzlwfjzj"; + version = "1.0.3"; + sha256 = "1kzf9sqa9glhiaka6qajx0mdm8qfp30j6612l8v98vc312bly6dp"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -111893,8 +111954,8 @@ self: { }: mkDerivation { pname = "gi-coglpango"; - version = "1.0.2"; - sha256 = "0yx0nqnpkkx0wcbljx02ivwf9749d02xqpwpp2zck2cpc9ll7xca"; + version = "1.0.3"; + sha256 = "193nblss2d4xlj4kiaz8745797lfpqxm65knzr6al1rdqikc6gdc"; setupHaskellDepends = [ base Cabal gi-cogl gi-glib gi-gobject gi-pango gi-pangocairo haskell-gi @@ -111917,8 +111978,8 @@ self: { }: mkDerivation { pname = "gi-dbusmenu"; - version = "0.4.10"; - sha256 = "05q3sijfsma2rinyw1rb7z4fphdqakbg18zlpf8jpv89c1329d3q"; + version = "0.4.11"; + sha256 = "06mzjyn1l97n171c92kvsnhhz2fs1pz48n1bwk1b58wnjdrhhscd"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -111938,8 +111999,8 @@ self: { }: mkDerivation { pname = "gi-dbusmenugtk3"; - version = "0.4.11"; - sha256 = "1ipq8irzqswpak6zip9ghpkvk29mwnym8d70md3an0idlq0gcnw6"; + version = "0.4.12"; + sha256 = "1ky4x665p5f7zlfckz7fykgnl9n839vz5pv4l0lprhp0l04f32hz"; setupHaskellDepends = [ base Cabal gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-gtk haskell-gi @@ -111962,8 +112023,8 @@ self: { }: mkDerivation { pname = "gi-freetype2"; - version = "2.0.1"; - sha256 = "00sgy9ppwf7im98vrcjp0ihb3zgaxcsm8klqv4h3z8n8ypv44ir2"; + version = "2.0.2"; + sha256 = "066xpysbzzfjd0gpjxvhfbgy1zwhqd14gibs4daycszk09d9kspp"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -111982,8 +112043,8 @@ self: { }: mkDerivation { pname = "gi-gdk"; - version = "3.0.25"; - sha256 = "1flgsm7sqsfp53pqbc8fv9pnsc84qnjmhircsqnx8jvkg5iyvxnx"; + version = "3.0.26"; + sha256 = "14271bbi1dy0r1krxg0ry3hqmqv10v55ja55a912qknsq1ya8nka"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi @@ -111998,7 +112059,7 @@ self: { license = lib.licenses.lgpl21Only; }) {inherit (pkgs) gtk3;}; - "gi-gdk_4_0_4" = callPackage + "gi-gdk_4_0_5" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text @@ -112006,8 +112067,8 @@ self: { }: mkDerivation { pname = "gi-gdk"; - version = "4.0.4"; - sha256 = "1ah515cakq6w9bbwq393xbpx326v9xincvhgihqsc67gjcqpbva4"; + version = "4.0.5"; + sha256 = "1pa8vbm931xq3rb9xr441sccga9h1y03lzf6hp2rwkhyhs006hax"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi @@ -112030,8 +112091,8 @@ self: { }: mkDerivation { pname = "gi-gdkpixbuf"; - version = "2.0.28"; - sha256 = "01fjx8nwy27mlhhh3p8qi1z8xcbzi7cs07x01hk8kxrmvd71a2pf"; + version = "2.0.29"; + sha256 = "16j3pilr5ffcgxp598svdsbjsgh3ds9a24frkp4ph2g2sjmzdcrk"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gmodule gi-gobject haskell-gi ]; @@ -112051,8 +112112,8 @@ self: { }: mkDerivation { pname = "gi-gdkx11"; - version = "3.0.12"; - sha256 = "0lx5c13i4g4jy47zpkhd3nn714d7n2ljqib4p4ylgs9cyj145hd4"; + version = "3.0.13"; + sha256 = "0qakqwx59r389nnp2zxcknsri8lm9bzgm9nk7vx4mpsrff65138i"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi ]; @@ -112066,15 +112127,15 @@ self: { license = lib.licenses.lgpl21Only; }) {inherit (pkgs) gtk3;}; - "gi-gdkx11_4_0_4" = callPackage + "gi-gdkx11_4_0_5" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk4-x11, haskell-gi , haskell-gi-base, haskell-gi-overloading, text, transformers }: mkDerivation { pname = "gi-gdkx11"; - version = "4.0.4"; - sha256 = "1bbwy8sqn642y0yv10l65p2f7zc3nb14mcdwfd2k3cqpmyyhq0ns"; + version = "4.0.5"; + sha256 = "0pzsacizbxljl7fm0939fr9vpi6zgl6by89glvklv8imln59pl78"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi ]; @@ -112097,8 +112158,8 @@ self: { }: mkDerivation { pname = "gi-ges"; - version = "1.0.1"; - sha256 = "1xx6n88bdfxp8xjgvwwrgam8ky7gaswg3kdpz817g7x2l2j2d14n"; + version = "1.0.2"; + sha256 = "1qmf1f2a9lmhzbif638r1npbjzv6bpm2r7j51nb4bpbv5vmggl6j"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject gi-gst gi-gstpbutils gi-gstvideo haskell-gi @@ -112121,8 +112182,8 @@ self: { }: mkDerivation { pname = "gi-ggit"; - version = "1.0.11"; - sha256 = "06hkq87q8a69ini8drwld4pd8z26mlysk9vkigpkigwlbsizjjm7"; + version = "1.0.12"; + sha256 = "13n717b5f0p156yvwp9hnp3ma31blgdc3b378cx0b97h0533msyl"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112143,8 +112204,8 @@ self: { }: mkDerivation { pname = "gi-gio"; - version = "2.0.29"; - sha256 = "14kh1qdayi55flf2108ivq7sc1k9qd8dish19jbdij198hsjgria"; + version = "2.0.30"; + sha256 = "186a8bk2s94awnq4w50w2msdjs08a1mknxb2417qpwzc5yy1f9q3"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112179,8 +112240,8 @@ self: { }: mkDerivation { pname = "gi-girepository"; - version = "1.0.25"; - sha256 = "0xpydz66vmb8f46ql2h8rq486i4pf5nbjm98839iyhsv653plxp0"; + version = "1.0.26"; + sha256 = "0nlxzs5i1wjli5bczlvab6ch4d2lwai1zab2yiz1l9bw3qkzkbiz"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112198,8 +112259,8 @@ self: { }: mkDerivation { pname = "gi-glib"; - version = "2.0.26"; - sha256 = "0i38ch8giqs92kkfzyw4wlz8y0r5kn2h94b6y33nj4ja3ggrg1qm"; + version = "2.0.27"; + sha256 = "0cd0kbl7lsk5jjilhcs8969xaa7ncm81ilpdsqpxvdm2hgrg06y2"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -112217,8 +112278,8 @@ self: { }: mkDerivation { pname = "gi-gmodule"; - version = "2.0.2"; - sha256 = "1jbplvicc6jsjcz8gqkiq71b8cx57m010wbq2ilirv4rif90ggnx"; + version = "2.0.3"; + sha256 = "043n3nyxy29chzc7xzhinp40yxazlikqcjdbm3pvh344jv7m5xjx"; setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib haskell-gi haskell-gi-base @@ -112236,8 +112297,8 @@ self: { }: mkDerivation { pname = "gi-gobject"; - version = "2.0.27"; - sha256 = "1xfw8jg81pbhgb20kw2jvhbxcs8d0sl4zf3dsar9sy7gl4lgwh0g"; + version = "2.0.28"; + sha256 = "0av574yvvbky1pm187fmjkmy52lssvv74zad30818qbkzpkwfdx8"; setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib haskell-gi haskell-gi-base @@ -112255,8 +112316,8 @@ self: { }: mkDerivation { pname = "gi-graphene"; - version = "1.0.4"; - sha256 = "0c1dh5jzmqm5ysv296c37ma8miscpba1z1kq7b4l9sfmnhi4blsa"; + version = "1.0.5"; + sha256 = "0633cf1n4lzrh0v5ksip4y4qizahyi3cv2njsg0bix802c4pd8rs"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112277,8 +112338,8 @@ self: { }: mkDerivation { pname = "gi-gsk"; - version = "4.0.4"; - sha256 = "0y2gpxy4bl3k1br3d6lm7javzw1q5r499lqhas028gawbfba6s4x"; + version = "4.0.5"; + sha256 = "02zmzywk0yyrg1rffwsiq6whxwk8f4mpg3vmybrr91iih9pv36g3"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-graphene gi-pango haskell-gi @@ -112301,8 +112362,8 @@ self: { }: mkDerivation { pname = "gi-gst"; - version = "1.0.25"; - sha256 = "1rx7arlghfvkh4ccl5dd40a108d4kmr2fmwrrgl22z7k2xgl0wqp"; + version = "1.0.26"; + sha256 = "1d1sidmhszdpcka3bf4xiph2896z1ipvjfvlyjy50lahz9igr2lq"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112320,8 +112381,8 @@ self: { }: mkDerivation { pname = "gi-gstaudio"; - version = "1.0.24"; - sha256 = "09xfss2q4bywnidfqyq57zdma3qwhx7sl40qg7qdqhma36axxryk"; + version = "1.0.25"; + sha256 = "1brrhplrahbhyk4yn1bmxlz6pf9ynwbrr1yvblz35x8lrinw9086"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -112341,8 +112402,8 @@ self: { }: mkDerivation { pname = "gi-gstbase"; - version = "1.0.25"; - sha256 = "179qi645giqkfdrig07l54wn2dj5wicjfhyy7m9132imxh8czcg9"; + version = "1.0.26"; + sha256 = "0n4szf0mf1hnylh30k16x7af7kzvsqbk9niyanqa73i7bh972j3m"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst haskell-gi ]; @@ -112363,8 +112424,8 @@ self: { }: mkDerivation { pname = "gi-gstpbutils"; - version = "1.0.24"; - sha256 = "18sxnrx5wbr1fbmvrjk6v09nc5q2xxm36vmlbd331314fpr0ic7m"; + version = "1.0.25"; + sha256 = "1ymm8qi4w72qqdwlb6ynmbhfdh47biijjp361vkax0d66rjjlz8l"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstaudio gi-gsttag gi-gstvideo haskell-gi @@ -112387,8 +112448,8 @@ self: { }: mkDerivation { pname = "gi-gsttag"; - version = "1.0.24"; - sha256 = "0l7h2r2q3sn8li1qq7bidplh1vic9w4054qnrimxhpndkcd8gxsk"; + version = "1.0.25"; + sha256 = "1k6fwddap8y2iy32aihf1771kwjb2xmqxs0jgvl4pqh7z1gk1xhf"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -112410,8 +112471,8 @@ self: { }: mkDerivation { pname = "gi-gstvideo"; - version = "1.0.25"; - sha256 = "1zkzs7qkzfp8ixkagbqkmgylla7msdjg83sdf2qwmgcmzfk480c7"; + version = "1.0.26"; + sha256 = "1bwfqxq4h2c2n7bl3hxrv7ykd97kxnhdck5w9wvd6abm2p18r4w0"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -112432,8 +112493,8 @@ self: { }: mkDerivation { pname = "gi-gtk"; - version = "3.0.38"; - sha256 = "0xnz5969v9nz6llg7856zdn3pcn1llvr1p0jl8vxk4n5wrwgqjms"; + version = "3.0.39"; + sha256 = "0ib53hq6wds44z636frbph2pmzy1bjpkc1kyxx9y09yj5bg3mm6k"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi @@ -112448,7 +112509,7 @@ self: { license = lib.licenses.lgpl21Only; }) {inherit (pkgs) gtk3;}; - "gi-gtk_4_0_5" = callPackage + "gi-gtk_4_0_6" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject , gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base @@ -112456,8 +112517,8 @@ self: { }: mkDerivation { pname = "gi-gtk"; - version = "4.0.5"; - sha256 = "04ph4adisr51j5dy2lpp0kxp06m332dfxmq92rnq3w0l810z2hi8"; + version = "4.0.6"; + sha256 = "146x3xp12jl416gl75mdx6jgnh0ayh9s64f7nl5ccw5r7dw8fz6f"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-graphene gi-gsk gi-pango haskell-gi @@ -112525,8 +112586,8 @@ self: { }: mkDerivation { pname = "gi-gtk-hs"; - version = "0.3.12"; - sha256 = "1ph9fq2lwa16pq68vkmp2843n0hjx89zfjmxs80lsv41bkvza8qy"; + version = "0.3.13"; + sha256 = "0w9bjhny6l2ll83ffcdmdzgnza0gfgyqv8v161pj080lsq00fdli"; libraryHaskellDepends = [ base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-gtk haskell-gi-base mtl text transformers @@ -112542,8 +112603,8 @@ self: { }: mkDerivation { pname = "gi-gtk-layer-shell"; - version = "0.1.2"; - sha256 = "0sdf71nqk3yxpyh7qdk65glg97nwc2almk852rqjlgjnlmjnyyx0"; + version = "0.1.3"; + sha256 = "0ywv7qy50hi1a1dc83zj2zwvilsvz69v8dld1cvs9njp3y83wai6"; setupHaskellDepends = [ base Cabal gi-gdk gi-gtk haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-gdk gi-gtk haskell-gi haskell-gi-base @@ -112612,8 +112673,8 @@ self: { }: mkDerivation { pname = "gi-gtksource"; - version = "3.0.25"; - sha256 = "0fxfl1gc75ffp7h1dmqwig681zw578rplhpb87bhhb811sw11ibd"; + version = "3.0.26"; + sha256 = "0xax0w5zxiqw2nhz3ndl6kyxfa61n1ldwq3r6s1i0khz0xx79k5q"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi @@ -112636,8 +112697,8 @@ self: { }: mkDerivation { pname = "gi-handy"; - version = "1.0.1"; - sha256 = "0i8lvwb4kzfnqnlj7bdy4pvif4hhaxpdkn2rga3i8l78cmm8y4kh"; + version = "1.0.2"; + sha256 = "1kr135nnyxik670arjm0h8d9mrwm1a002grmiivayzggcxx22625"; setupHaskellDepends = [ base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi @@ -112661,8 +112722,8 @@ self: { }: mkDerivation { pname = "gi-harfbuzz"; - version = "0.0.6"; - sha256 = "05jmh8mhx17jys9620shbkz1nc9jvfjr7snmpq2lxpvq2fw813ss"; + version = "0.0.7"; + sha256 = "05w123b1w3bjbaj0wq82b51bx4vnfbb6qcsd94svbhxgi705sjfx"; setupHaskellDepends = [ base Cabal gi-freetype2 gi-glib gi-gobject haskell-gi ]; @@ -112682,8 +112743,8 @@ self: { }: mkDerivation { pname = "gi-ibus"; - version = "1.5.4"; - sha256 = "0lrczkck1w0pydzsrjlf25m6pxri1kjd9hw7rz1wis36ahqvhbvr"; + version = "1.5.5"; + sha256 = "0chppwjmz2bqjwga62q6sbdkhjahyw4cmp6w9p8kyra40dwr97mv"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112704,8 +112765,8 @@ self: { }: mkDerivation { pname = "gi-javascriptcore"; - version = "4.0.24"; - sha256 = "1jr7yp6hxcp2vqaa0s320hqhdfaflyby6rvgb2pfm9qs1dqzafsn"; + version = "4.0.25"; + sha256 = "1dcg3c9df2gg6vqrv7ai18lnxw6zlwn6qyn2k10p4d4h0dpq9ck8"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112724,8 +112785,8 @@ self: { }: mkDerivation { pname = "gi-json"; - version = "1.0.2"; - sha256 = "00qxmkdr9rl77aimfqk2s8m56anpy4fcn0b6m2k5dr4f9xf1i4nq"; + version = "1.0.3"; + sha256 = "1vmrliim4czlb35y44nxc3rxsrb3cp02c0v8niaps6kmiyv93hg9"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112745,8 +112806,8 @@ self: { }: mkDerivation { pname = "gi-notify"; - version = "0.7.24"; - sha256 = "1dgjj1nqy2b37si8y5g5m12nrbqkfx8z6hir0gsvymfkbzfcx7j1"; + version = "0.7.25"; + sha256 = "034kya0mmzr9djnhrpwqpp02x4bmv681w1bcl2bga3napp4ayirv"; setupHaskellDepends = [ base Cabal gi-gdkpixbuf gi-glib gi-gobject haskell-gi ]; @@ -112766,8 +112827,8 @@ self: { }: mkDerivation { pname = "gi-ostree"; - version = "1.0.15"; - sha256 = "1lrblmsn91an1mqv4iml235bbwx1yz0llhyzf62jr65krs11jhwd"; + version = "1.0.16"; + sha256 = "0sq9nphsap5q9fryk2vpd6r67y791gcrzcap3w2b4n6i34ziv7rm"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112788,8 +112849,8 @@ self: { }: mkDerivation { pname = "gi-pango"; - version = "1.0.26"; - sha256 = "1x1d4v5g6sxw12pcq7qrv4kyr7wkv755wqzdal2z9l2qzr1bqssz"; + version = "1.0.27"; + sha256 = "00v6kn1k9rzlncl867xwbis1jqy5vc12gkmbsij4hxfjr9h0h1cq"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject gi-harfbuzz haskell-gi ]; @@ -112808,20 +112869,21 @@ self: { "gi-pangocairo" = callPackage ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-cairo, gi-glib, gi-gobject, gi-pango, haskell-gi + , gi-cairo, gi-gio, gi-glib, gi-gobject, gi-pango, haskell-gi , haskell-gi-base, haskell-gi-overloading, pango, text , transformers }: mkDerivation { pname = "gi-pangocairo"; - version = "1.0.26"; - sha256 = "0alm4v7dl44pv3ydw5fg4x6w6yzghjscnzd1qi6jbv1pqrv0f3xm"; + version = "1.0.28"; + sha256 = "06jld35ncq6yharggvdbcsy2g13gh5mq4j26w88yik0x4jiqz2j1"; setupHaskellDepends = [ - base Cabal gi-cairo gi-glib gi-gobject gi-pango haskell-gi + base Cabal gi-cairo gi-gio gi-glib gi-gobject gi-pango haskell-gi ]; libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-glib gi-gobject gi-pango - haskell-gi haskell-gi-base haskell-gi-overloading text transformers + base bytestring containers gi-cairo gi-gio gi-glib gi-gobject + gi-pango haskell-gi haskell-gi-base haskell-gi-overloading text + transformers ]; libraryPkgconfigDepends = [ cairo pango ]; preCompileBuildDriver = '' @@ -112841,8 +112903,8 @@ self: { }: mkDerivation { pname = "gi-poppler"; - version = "0.18.26"; - sha256 = "1wxm7fx1xjj2a332mh2sr1pz994aici888x69a197ccnn8p3g75k"; + version = "0.18.27"; + sha256 = "1qg81j5b40hics97diafqjxk7sw32fvlqv277awnym24m6f96lj3"; setupHaskellDepends = [ base Cabal gi-cairo gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112863,8 +112925,8 @@ self: { }: mkDerivation { pname = "gi-rsvg"; - version = "2.0.2"; - sha256 = "1c9rmawsz12i6rlq8s3mhsj8q5a7q3809y8bf1yq6nzvzkm8gsrj"; + version = "2.0.3"; + sha256 = "1j7mqfl6f0zs1yhw6z0sai6ckc9hgmqqwbqifr08yfshzfsp951v"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject haskell-gi @@ -112886,8 +112948,8 @@ self: { }: mkDerivation { pname = "gi-secret"; - version = "0.0.14"; - sha256 = "1n03lk4x7inkq68z9krv3jgkpjsya8jjyim09qzb83cj77wb67m8"; + version = "0.0.15"; + sha256 = "11lg3lj731d0xajr5dhw5dpgws894q78nvvlj3g5i6w3y2dn9x05"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112907,8 +112969,8 @@ self: { }: mkDerivation { pname = "gi-soup"; - version = "2.4.25"; - sha256 = "1rpl5q9xwfbbhzg7220855mb15qpdpx668gs7lxj7w26arp8xzcs"; + version = "2.4.26"; + sha256 = "1kxkbhllc04klg570ziwwgybsp97a7xq6gb8ggzf9hyr1ys77rq4"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -112928,8 +112990,8 @@ self: { }: mkDerivation { pname = "gi-vips"; - version = "8.0.2"; - sha256 = "055vlgxnvvdsq86d09jcv7d7fp0msw0gg95fm2vkpx3n1zx00z6j"; + version = "8.0.3"; + sha256 = "1vzrnmifisyxakvkp6mgwgn0gqr8gwfa06cwyzhslma0snlnrk3v"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -112948,8 +113010,8 @@ self: { }: mkDerivation { pname = "gi-vte"; - version = "2.91.29"; - sha256 = "15c1vmkk4h723qjvmq30rcqfk5b5kihcjdqmncmgshi2qv80aa2q"; + version = "2.91.30"; + sha256 = "1n787xacng9279y7vi2g4lmxvx8xgb967v55fxvmxhjyds35fy4w"; setupHaskellDepends = [ base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi @@ -112996,8 +113058,8 @@ self: { }: mkDerivation { pname = "gi-webkit2"; - version = "4.0.28"; - sha256 = "0k6y33vg6641a4qis2ypnj8xms40a203y0as299rsj0l5rk9ykaw"; + version = "4.0.29"; + sha256 = "1ccpa6dvl68drpbpi372arjx3rw5ypgbdifvl5cd4c822hvjbq4h"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi @@ -113021,8 +113083,8 @@ self: { }: mkDerivation { pname = "gi-webkit2webextension"; - version = "4.0.27"; - sha256 = "1m00h1yrnq6b5h635rpwhcdhvls3rg6lcp5gq3n22rqr131fsrr9"; + version = "4.0.28"; + sha256 = "0zrpma7vxg5x375w1avw8s7cw9s9psh79z846czjpkidxh66995f"; setupHaskellDepends = [ base Cabal gi-gio gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi @@ -113040,21 +113102,22 @@ self: { "gi-wnck" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-gdk, gi-gdkpixbuf, gi-gobject, gi-gtk, haskell-gi - , haskell-gi-base, haskell-gi-overloading, libwnck, text - , transformers + , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk + , haskell-gi, haskell-gi-base, haskell-gi-overloading, libwnck + , text, transformers }: mkDerivation { pname = "gi-wnck"; - version = "3.0.11"; - sha256 = "0jhsr7skjn7i3klnfm9z2fg2gfl5mqsp7hd8ajlkjv7z8xk25j1w"; + version = "3.0.13"; + sha256 = "19m259gnh7haq9kaa60z3wnd3x0s2ir49g6jjc499l4rmmvga5gp"; setupHaskellDepends = [ - base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gobject gi-gtk haskell-gi + base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-glib gi-gobject + gi-gtk haskell-gi ]; libraryHaskellDepends = [ - base bytestring containers gi-atk gi-gdk gi-gdkpixbuf gi-gobject - gi-gtk haskell-gi haskell-gi-base haskell-gi-overloading text - transformers + base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf + gi-glib gi-gobject gi-gtk haskell-gi haskell-gi-base + haskell-gi-overloading text transformers ]; libraryPkgconfigDepends = [ libwnck ]; description = "Wnck bindings"; @@ -113069,8 +113132,8 @@ self: { }: mkDerivation { pname = "gi-xlib"; - version = "2.0.11"; - sha256 = "0l6xr26asmy3rvzi5lazkfpik1n41v9a7bg2pypssc26130amp1f"; + version = "2.0.12"; + sha256 = "0dy1xfzbhkyh7nj270mmz1acnwdf0f7c3rzz31lw9zrjyf9670gj"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -113905,6 +113968,27 @@ self: { license = lib.licenses.bsd3; }) {}; + "githash_0_1_6_3" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, hspec + , process, template-haskell, temporary, th-compat, unliftio + }: + mkDerivation { + pname = "githash"; + version = "0.1.6.3"; + sha256 = "06zg1rif1rcxni1vacmr2bh1nbm6i62rjbikfr4xsyzq1sv7kfpw"; + libraryHaskellDepends = [ + base bytestring directory filepath process template-haskell + th-compat + ]; + testHaskellDepends = [ + base bytestring directory filepath hspec process template-haskell + temporary th-compat unliftio + ]; + description = "Compile git revision info into Haskell projects"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "github" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , binary, binary-instances, bytestring, containers, cryptohash-sha1 @@ -114226,8 +114310,8 @@ self: { }: mkDerivation { pname = "githud"; - version = "3.2.2"; - sha256 = "19z21w6qxfndh381gcyi1ap14map886pkkc3nax8s417mv744ag3"; + version = "3.3.0"; + sha256 = "0pwjh87kk3kvlan16mk0ki4pvz5iyb3r4dnb51z0y8xzdccwisaz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -114547,6 +114631,8 @@ self: { pname = "gitson"; version = "0.5.2"; sha256 = "15i1xj3z0gxvxqgwh5902cna6ig5pixxkcrdgsvhpsk4mbkxc7b7"; + revision = "1"; + editedCabalFile = "1ddjx87n53r6nawgidig3xfv9a13gpxj915fjbglk9ps2pp4dckm"; libraryHaskellDepends = [ aeson aeson-pretty base base-compat bytestring conduit-combinators conduit-extra directory errors filepath flock lifted-base @@ -114673,26 +114759,6 @@ self: { }) {}; "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, directory, either, hspec, text - , unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "2.0.5"; - sha256 = "1yxyyjjhfi30ymd0v80xrn4m81m2hs3v5slbdd2hc856k91lmghg"; - 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 = lib.licenses.bsd3; - }) {}; - - "glabrous_2_0_6" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , cereal, cereal-text, directory, either, hspec, text , unordered-containers @@ -114710,7 +114776,6 @@ self: { ]; description = "A template DSL library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "glade" = callPackage @@ -119393,8 +119458,8 @@ self: { }: mkDerivation { pname = "grammatical-parsers"; - version = "0.6"; - sha256 = "1ck7zv110yrwz04q10j38wx6ipap88np9px6l94rxbha1m1k7nhi"; + version = "0.7"; + sha256 = "0582mr13z5bq71s76ngvm01dfrg68mw968mad0m4nbfx147za0ih"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -120246,6 +120311,31 @@ self: { license = lib.licenses.mit; }) {}; + "graphula_2_0_2_2" = callPackage + ({ mkDerivation, base, containers, directory, generic-arbitrary + , generics-eot, hspec, HUnit, markdown-unlit, monad-logger, mtl + , persistent, persistent-sqlite, QuickCheck, random, resourcet + , semigroups, temporary, text, transformers, unliftio + , unliftio-core + }: + mkDerivation { + pname = "graphula"; + version = "2.0.2.2"; + sha256 = "066lcn262x4l826sglybrz4mp58ishcj0h1r5h41aiy09mcf4g3v"; + libraryHaskellDepends = [ + base containers directory generics-eot HUnit mtl persistent + QuickCheck random semigroups temporary text unliftio unliftio-core + ]; + testHaskellDepends = [ + base generic-arbitrary hspec markdown-unlit monad-logger persistent + persistent-sqlite QuickCheck resourcet transformers unliftio-core + ]; + testToolDepends = [ markdown-unlit ]; + description = "A simple interface for generating persistent data and linking its dependencies"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "graphula-core" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , generics-eot, hspec, http-api-data, HUnit, markdown-unlit @@ -122207,6 +122297,20 @@ self: { broken = true; }) {}; + "h-raylib" = callPackage + ({ mkDerivation, base, c, libGL, libX11 }: + mkDerivation { + pname = "h-raylib"; + version = "4.5.0.1"; + sha256 = "1bb0g8gn08pp2s763d0ic7hj46whpb6xdq0hvpar26srxlkxnzjl"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ c libGL libX11 ]; + description = "Raylib bindings for Haskell"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {c = null; inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;}; + "h-reversi" = callPackage ({ mkDerivation, base, blank-canvas, containers, hspec, QuickCheck , split, stm, text @@ -125555,14 +125659,14 @@ self: { }) {}; "hanabi-dealer" = callPackage - ({ mkDerivation, base, containers, random }: + ({ mkDerivation, array, base, containers, random, tf-random }: mkDerivation { pname = "hanabi-dealer"; - version = "0.11.0.2"; - sha256 = "1ndg8zmcc5a9z9qcc5z5nwssywxighnqxa4pzc5iy7kw4x9bm3kn"; + version = "0.15.1.1"; + sha256 = "1ldyr5jqlr97kjk4pgqrc15rh11cx5wy3fydmzk6laknpqyshvr3"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base containers random ]; + libraryHaskellDepends = [ array base containers random tf-random ]; description = "Hanabi card game"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -128437,8 +128541,8 @@ self: { }: mkDerivation { pname = "haskell-debug-adapter"; - version = "0.0.36.0"; - sha256 = "1xihq4ll632cqbvr5g2lf6ajxw32jvlkwhs1d92prcls1inkznwp"; + version = "0.0.37.0"; + sha256 = "1srinycpz3zb86r6b1kyn0ikc8hd62vzgig9ki0lddrxjxc637gg"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -128664,18 +128768,54 @@ self: { license = lib.licenses.lgpl21Only; }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; + "haskell-gi_0_26_2" = callPackage + ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal + , cabal-doctest, containers, directory, doctest, filepath, glib + , gobject-introspection, haskell-gi-base, mtl, pretty-show, process + , regex-tdfa, safe, text, transformers, xdg-basedir, xml-conduit + }: + mkDerivation { + pname = "haskell-gi"; + version = "0.26.2"; + sha256 = "05r84czb05n69g7p7jazljh95yzdh2lpzgjjypgpg75mh83igr2w"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + ansi-terminal attoparsec base bytestring Cabal containers directory + filepath haskell-gi-base mtl pretty-show process regex-tdfa safe + text transformers xdg-basedir xml-conduit + ]; + libraryPkgconfigDepends = [ glib gobject-introspection ]; + testHaskellDepends = [ base doctest process ]; + description = "Generate Haskell bindings for GObject Introspection capable libraries"; + license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; + "haskell-gi-base" = callPackage ({ mkDerivation, base, bytestring, containers, glib, text }: mkDerivation { pname = "haskell-gi-base"; - version = "0.26.1"; - sha256 = "1m9sdyf0v8y6q3ac5fv18drclm8b36kbwh8prdfih6wjd8wrxry3"; + version = "0.26.2"; + sha256 = "1jlc8hwpg2mbhmv6ra8b2dsf1wqsfn0hrphikrbgvbcls2wd6xw0"; libraryHaskellDepends = [ base bytestring containers text ]; libraryPkgconfigDepends = [ glib ]; description = "Foundation for libraries generated by haskell-gi"; license = lib.licenses.lgpl21Only; }) {inherit (pkgs) glib;}; + "haskell-gi-base_0_26_3" = callPackage + ({ mkDerivation, base, bytestring, containers, glib, text }: + mkDerivation { + pname = "haskell-gi-base"; + version = "0.26.3"; + sha256 = "1n0pgyd5gm4lic3c48cvl10chk15jdd1d381f3fcizp61rhslvfs"; + libraryHaskellDepends = [ base bytestring containers text ]; + libraryPkgconfigDepends = [ glib ]; + description = "Foundation for libraries generated by haskell-gi"; + license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + }) {inherit (pkgs) glib;}; + "haskell-gi-overloading" = callPackage ({ mkDerivation }: mkDerivation { @@ -132067,7 +132207,7 @@ self: { license = lib.licenses.mit; }) {}; - "hasql_1_6_1_4" = callPackage + "hasql_1_6_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-strict-builder, contravariant, contravariant-extras , dlist, gauge, hashable, hashtables, mtl, network-ip @@ -132078,8 +132218,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "1.6.1.4"; - sha256 = "1x3frmckky3yxi5p2p76v4cx9gv0hd2iyvd2mgd359cgdcvnlvzp"; + version = "1.6.2"; + sha256 = "1ph1di36lhhi2y542cc5mm0pprq1j6yb2i69bwms59173amh8gcx"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-strict-builder contravariant dlist hashable hashtables mtl network-ip @@ -132395,15 +132535,15 @@ self: { license = lib.licenses.mit; }) {}; - "hasql-pool_0_8_0_4" = callPackage - ({ mkDerivation, async, base, hasql, hspec, rerebase, stm, time + "hasql-pool_0_8_0_6" = callPackage + ({ mkDerivation, async, base, hasql, hspec, rerebase, stm , transformers }: mkDerivation { pname = "hasql-pool"; - version = "0.8.0.4"; - sha256 = "1zpc79k63pysc5zj7lcj81qm48gs0f6zqv455dpwgyipj7g0ba65"; - libraryHaskellDepends = [ base hasql stm time transformers ]; + version = "0.8.0.6"; + sha256 = "0scpgynr20j8qkhi5gjl0mh7iq713vz7r1zr4xa0jv0s2nd14j2v"; + libraryHaskellDepends = [ base hasql stm transformers ]; testHaskellDepends = [ async hasql hspec rerebase stm ]; description = "Pool of connections for Hasql"; license = lib.licenses.mit; @@ -141166,6 +141306,8 @@ self: { pname = "hlrdb-core"; version = "0.2.0.0"; sha256 = "0hkjll4v4kxc133b19kk9k4dkrbag6qdw24gwrhikrxlk666jsbl"; + revision = "1"; + editedCabalFile = "15pcz7f2alsyccz5id162ka4win9j6l98ygpgaycl6n57vcd3nsv"; libraryHaskellDepends = [ base bytestring hashable hedis lens mtl profunctors random time unordered-containers @@ -145171,16 +145313,16 @@ self: { license = lib.licenses.bsd3; }) {}; - "hpc_0_6_0_3" = callPackage - ({ mkDerivation, base, containers, directory, filepath, time }: + "hpc_0_6_2_0" = callPackage + ({ mkDerivation, base, containers, deepseq, directory, filepath + , time + }: mkDerivation { pname = "hpc"; - version = "0.6.0.3"; - sha256 = "1am2fcxg7d3j3kpyhz48wzbpg83dk2jmzhqm4yiib649alzcgnhn"; - revision = "3"; - editedCabalFile = "06dbiaf0sangq3zdyr3x9wkvs2fgyas3ipqkfwfmycax6j17jgyy"; + version = "0.6.2.0"; + sha256 = "0igq0x3hsdfh4sw40ac8ld5xmsdqxykfz1jmzmwf142za6q7k964"; libraryHaskellDepends = [ - base containers directory filepath time + base containers deepseq directory filepath time ]; description = "Code Coverage Library for Haskell"; license = lib.licenses.bsd3; @@ -145496,25 +145638,24 @@ self: { broken = true; }) {inherit (pkgs) postgresql;}; - "hpqtypes_1_10_0_1" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, Cabal, containers - , directory, exceptions, filepath, HUnit, lifted-base - , monad-control, mtl, postgresql, QuickCheck, random, resource-pool - , scientific, semigroups, test-framework, test-framework-hunit - , text, text-show, time, transformers, transformers-base - , unordered-containers, uuid-types, vector + "hpqtypes_1_10_0_2" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, containers + , exceptions, HUnit, libpq, lifted-base, monad-control, mtl + , QuickCheck, random, resource-pool, scientific, semigroups + , test-framework, test-framework-hunit, text, text-show, time + , transformers, transformers-base, unordered-containers, uuid-types + , vector }: mkDerivation { pname = "hpqtypes"; - version = "1.10.0.1"; - sha256 = "19lakc0m4fgv36kiw9ziyr3abq6jrb6rij443s7a2n3xfrjwy0b8"; - setupHaskellDepends = [ base Cabal directory filepath ]; + version = "1.10.0.2"; + sha256 = "0rrsd16cxh8p0ssayxla99svapkbbl2sn5n9hi8vcf9hazfh8nlw"; libraryHaskellDepends = [ aeson async base bytestring containers exceptions lifted-base monad-control mtl resource-pool semigroups text text-show time transformers transformers-base uuid-types vector ]; - librarySystemDepends = [ postgresql ]; + libraryPkgconfigDepends = [ libpq ]; testHaskellDepends = [ aeson base bytestring exceptions HUnit lifted-base monad-control mtl QuickCheck random scientific test-framework @@ -145525,7 +145666,26 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; - }) {inherit (pkgs) postgresql;}; + }) {libpq = null;}; + + "hpqtypes-effectful" = callPackage + ({ mkDerivation, base, effectful-core, exceptions, hpqtypes, tasty + , tasty-hunit, text + }: + mkDerivation { + pname = "hpqtypes-effectful"; + version = "1.0.0.0"; + sha256 = "0jfg20n5cai2rrx2g2rl2ndamylg31bjf0i66jc7qcwqwp1l1r5j"; + libraryHaskellDepends = [ + base effectful-core exceptions hpqtypes + ]; + testHaskellDepends = [ + base effectful-core exceptions hpqtypes tasty tasty-hunit text + ]; + description = "Adaptation of the hpqtypes library for the effectful ecosystem"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; "hpqtypes-extras" = callPackage ({ mkDerivation, base, base16-bytestring, bytestring, containers @@ -145534,8 +145694,8 @@ self: { }: mkDerivation { pname = "hpqtypes-extras"; - version = "1.16.1.0"; - sha256 = "1kl9miwarrr69h2b3mmx65ypbfflhhw117k42d9k6jrxbibj7fqq"; + version = "1.16.2.0"; + sha256 = "0vb96dm8w089j8zc0i5k8abr7dx5nbrmlpjwhpi2vshhmmihkja3"; libraryHaskellDepends = [ base base16-bytestring bytestring containers cryptohash exceptions extra hpqtypes log-base mtl text text-show @@ -146311,6 +146471,8 @@ self: { pname = "hs-duktape"; version = "1.0.0"; sha256 = "1bbxp7285vw39jbqpl80jqg46vwycva5fzn4prk3a2fs419xdxzm"; + revision = "1"; + editedCabalFile = "09lmnx2i5gq601sj9byzbcq5idppj3gg44ns522xd25rcxn40d8a"; setupHaskellDepends = [ base Cabal directory process ]; libraryHaskellDepends = [ aeson base bytestring text transformers unordered-containers vector @@ -149426,16 +149588,12 @@ self: { }) {}; "hslua-list" = callPackage - ({ mkDerivation, base, bytestring, hslua-core, hslua-marshalling - , tasty, tasty-lua - }: + ({ mkDerivation, base, bytestring, hslua-core, tasty, tasty-lua }: mkDerivation { pname = "hslua-list"; - version = "1.0.0"; - sha256 = "05fkxplc8ayvzidv8z5fv8cns19p96vmzh7v794qh5wksllkb08q"; - libraryHaskellDepends = [ - base bytestring hslua-core hslua-marshalling - ]; + version = "1.1.0"; + sha256 = "1437ff2vqhaymiabp31qhr5ixb99h93cp6qz6z82c4d9c5wvl0q6"; + libraryHaskellDepends = [ base bytestring hslua-core ]; testHaskellDepends = [ base hslua-core tasty tasty-lua ]; description = "Opinionated, but extensible Lua list type"; license = lib.licenses.mit; @@ -149578,6 +149736,29 @@ self: { license = lib.licenses.mit; }) {}; + "hslua-module-zip" = callPackage + ({ mkDerivation, base, bytestring, filepath, hslua-core, hslua-list + , hslua-marshalling, hslua-module-system, hslua-packaging, tasty + , tasty-hunit, tasty-lua, text, time, zip-archive + }: + mkDerivation { + pname = "hslua-module-zip"; + version = "1.0.0"; + sha256 = "0fxqrzfh9iq801pj965pws3cj8gm3wl642ilmy30kriczdvjsny6"; + libraryHaskellDepends = [ + base bytestring filepath hslua-core hslua-list hslua-marshalling + hslua-packaging text time zip-archive + ]; + testHaskellDepends = [ + base bytestring filepath hslua-core hslua-list hslua-marshalling + hslua-module-system hslua-packaging tasty tasty-hunit tasty-lua + text time zip-archive + ]; + description = "Lua module to work with file zips"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "hslua-objectorientation" = callPackage ({ mkDerivation, base, bytestring, containers, exceptions , hslua-core, hslua-marshalling, lua-arbitrary, mtl, QuickCheck @@ -149821,8 +150002,8 @@ self: { ({ mkDerivation, base, vector }: mkDerivation { pname = "hsnoise"; - version = "0.0.2"; - sha256 = "0f8xpmzmg71l7qn1vjvzncsx8r7vfpzvlnlq0029ixf64gshbmzl"; + version = "0.0.3"; + sha256 = "0wdkq9c39x0ma90bdi5m85sx4crfkv4k0zg8l3371q4sik931ixr"; libraryHaskellDepends = [ base vector ]; description = "A coherent 3d noise library"; license = lib.licenses.bsd3; @@ -153054,6 +153235,8 @@ self: { pname = "http-client-rustls"; version = "0.0.0.0"; sha256 = "1rwiclqc1hpxgaqz6y8pxl96g68bg8d8m1clapg60fgmyj0zjnha"; + revision = "1"; + editedCabalFile = "0qhs7zbkw0zp1rv96da484kxizlx9vkc8n7zr8rz9w55gszb2bcf"; libraryHaskellDepends = [ base bytestring http-client network resourcet rustls text ]; @@ -153445,8 +153628,8 @@ self: { pname = "http-link-header"; version = "1.2.1"; sha256 = "15pcav5k7j4pvqwkyyrqgcm7yxqippx4yiprsg9fpml4kywcr2ca"; - revision = "1"; - editedCabalFile = "13r2gkvn0v1077xhpinlqfbq8hdpgasm5p895mxi72mqlwnqcrc6"; + revision = "3"; + editedCabalFile = "16xbv4cz8b9gh42za6bhz73qcqrd5ix330cs4prj2jn124hb9xwx"; libraryHaskellDepends = [ attoparsec base bytestring errors http-api-data network-uri text ]; @@ -155655,6 +155838,7 @@ self: { testHaskellDepends = [ base hedgehog hspec hw-hspec-hedgehog ]; description = "Avro support for Kafka infrastructure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hw-kafka-client" = callPackage @@ -159454,18 +159638,19 @@ self: { }) {}; "implicit-hie" = callPackage - ({ mkDerivation, attoparsec, base, directory, filepath, filepattern - , hspec, hspec-attoparsec, text, transformers, yaml + ({ mkDerivation, attoparsec, base, bytestring, Cabal-syntax + , directory, filepath, filepattern, hspec, hspec-attoparsec, text + , transformers, yaml }: mkDerivation { pname = "implicit-hie"; - version = "0.1.2.7"; - sha256 = "0yb457n26455kbq6kv8g48q66pmmaxcpikmpg9gm00sd6adgq6gl"; + version = "0.1.3.0"; + sha256 = "0s2h09gp1z81fxc9j5vcxvzyvf5nvqyhkw7mwq4sg8jjpm0r4gn3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base directory filepath filepattern text transformers - yaml + attoparsec base bytestring Cabal-syntax directory filepath + filepattern text transformers yaml ]; executableHaskellDepends = [ attoparsec base directory filepath filepattern text transformers @@ -159792,8 +159977,8 @@ self: { }: mkDerivation { pname = "incipit"; - version = "0.3.1.0"; - sha256 = "00x6g4ngcyak0dh7ms2wx0kh1ckm8laanfp823yskkg9gc71blqy"; + version = "0.4.0.0"; + sha256 = "0w4wipaq0iscfnv68x5insjbcqcrnfx6r75lkq6v7nxj1y124yqa"; libraryHaskellDepends = [ base incipit-core polysemy-conc polysemy-log polysemy-resume polysemy-time @@ -160288,28 +160473,31 @@ self: { "indieweb-algorithms" = callPackage ({ mkDerivation, aeson, aeson-qq, base, bytestring, containers - , data-default, either, hspec, hspec-expectations-pretty-diff - , http-link-header, lens, lens-aeson, microformats2-parser, mtl - , network-uri, raw-strings-qq, safe, template-haskell, text, time - , transformers, unordered-containers, vector + , data-default, either, errors, hspec + , hspec-expectations-pretty-diff, http-link-header, lens + , lens-aeson, microformats2-parser, mtl, network-uri + , raw-strings-qq, safe, template-haskell, text, time, transformers + , unordered-containers, vector, xml-conduit, xml-conduit-writer + , xml-lens }: mkDerivation { pname = "indieweb-algorithms"; - version = "0.1.0"; - sha256 = "1cl0rjfhgb6fn8nlm09qs1jg9xd01507x7ii65vrp98c4zfc85rl"; + version = "0.1.1"; + sha256 = "15hh4xkkqycv74grjfssma2h3prvax00y8fpgqh8wyb3laq5n75g"; libraryHaskellDepends = [ - aeson base bytestring containers data-default either + aeson base bytestring containers data-default either errors http-link-header lens lens-aeson microformats2-parser network-uri - safe text time transformers unordered-containers vector + safe text time transformers unordered-containers vector xml-conduit + xml-conduit-writer xml-lens ]; testHaskellDepends = [ aeson aeson-qq base bytestring data-default hspec - hspec-expectations-pretty-diff microformats2-parser mtl network-uri - raw-strings-qq template-haskell text time + hspec-expectations-pretty-diff http-link-header lens lens-aeson + microformats2-parser mtl network-uri raw-strings-qq + template-haskell text time xml-conduit ]; description = "A collection of implementations of IndieWeb algorithms"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "indigo" = callPackage @@ -160409,8 +160597,8 @@ self: { }: mkDerivation { pname = "infernal"; - version = "0.6.0"; - sha256 = "1qk0d5k7kjkhqxpkm1fnah1syd0la1z88l5mwv3z6ly5njvj78fl"; + version = "0.7.0"; + sha256 = "0jbmcwdpnqxvfcbcd2xqybmz69mycwbzxrj9hlgas365y4m2rlka"; libraryHaskellDepends = [ aeson base binary bytestring case-insensitive exceptions hashable http-client http-types little-logger little-rio microlens @@ -172331,8 +172519,8 @@ self: { }: mkDerivation { pname = "language-Modula2"; - version = "0.1.2"; - sha256 = "0sag6wayg9c6rzdb2n3wbvqq0ncs6pk0pdbpvgx1pr84gfxlg1i6"; + version = "0.1.3"; + sha256 = "0izh9scx1hky2f47qq0gbfwwcvn984h3icpbw475z5qbid0j3856"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172436,6 +172624,7 @@ self: { ]; description = "Language definition and parser for AVRO files"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "language-bash" = callPackage @@ -173282,8 +173471,8 @@ self: { }: mkDerivation { pname = "language-oberon"; - version = "0.3.1"; - sha256 = "0x54bbdaxmz8z09hipvf5f30d0h3cvnppm47ra7xn4iycf2vbrkd"; + version = "0.3.2"; + sha256 = "0k4r2h02znhs4l5nm88pwva0d7d3p9bga1rrdjga6rjd1ihhbfx1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -175015,24 +175204,6 @@ self: { }) {}; "leancheck-instances" = callPackage - ({ mkDerivation, array, base, bytestring, containers, leancheck - , nats, text, time - }: - mkDerivation { - pname = "leancheck-instances"; - version = "0.0.4"; - sha256 = "1l1hwkhxgmy7ssqhrbi8xngb99zhdfnchzq4668gi35a932a1id7"; - libraryHaskellDepends = [ - array base bytestring containers leancheck nats text time - ]; - testHaskellDepends = [ - base bytestring containers leancheck nats text - ]; - description = "Common LeanCheck instances"; - license = lib.licenses.bsd3; - }) {}; - - "leancheck-instances_0_0_5" = callPackage ({ mkDerivation, array, base, bytestring, containers, leancheck , nats, text, time }: @@ -175048,7 +175219,6 @@ self: { ]; description = "Common LeanCheck instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "leankit-api" = callPackage @@ -176647,6 +176817,8 @@ self: { pname = "libfuse3"; version = "0.2.0.0"; sha256 = "10i92xy8bl36ymmdq3yp9lh7rbzwbk7gff6cqnijchddllj7maca"; + revision = "1"; + editedCabalFile = "10nv0lgd9494dp9ipmjlqsgwc91hv4mhcqmxglwmalf0lhmbw9cw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -177594,6 +177766,8 @@ self: { pname = "libyaml"; version = "0.1.2"; sha256 = "1dcpbsjg6n305l07isxmavgp01lbv1qggy16acjyxjlz35pxchlg"; + revision = "1"; + editedCabalFile = "00f1rag6sd7c8kza2agw9089p9vf21iiga2aq41nbf6d3yqn7dkz"; libraryHaskellDepends = [ base bytestring conduit resourcet ]; description = "Low-level, streaming YAML interface"; license = lib.licenses.bsd3; @@ -177930,8 +178104,8 @@ self: { }: mkDerivation { pname = "lifx-lan"; - version = "0.7"; - sha256 = "00lci0mj75pyrimzcbyq088pg7k6xx1p9pps09l7m3y4dhbnsyyf"; + version = "0.7.1"; + sha256 = "1apzp7pkd2vl7nxmdcmdnpa89wrs1fmaii8gd01bjcmjkk7qxgli"; libraryHaskellDepends = [ ansi-terminal base binary bytestring colour composition containers extra monad-loops mtl network random safe text time transformers @@ -178396,7 +178570,7 @@ self: { license = lib.licenses.mit; }) {}; - "linear-base_0_2_0" = callPackage + "linear-base_0_3_0" = callPackage ({ mkDerivation, base, containers, deepseq, gauge, ghc-prim , hashable, hashtables, hedgehog, inspection-testing , linear-generics, mmorph, MonadRandom, primitive, random @@ -178406,8 +178580,8 @@ self: { }: mkDerivation { pname = "linear-base"; - version = "0.2.0"; - sha256 = "0s6z21b71pbqjmbz1r2d6xk90a9wbpa4f1dhlia209avhr1wsv26"; + version = "0.3.0"; + sha256 = "0b1hs26a9av8vml10kw1jjsliwwhj3h2cmfnkiqbrqpm47yxmr35"; libraryHaskellDepends = [ base containers ghc-prim hashable linear-generics primitive storable-tuple text transformers vector @@ -179385,6 +179559,8 @@ self: { pname = "liquid-fixpoint"; version = "8.10.7"; sha256 = "02zih8q3kv94s1l4m9d8f3d60idm1an23kxx0ahjfg8cdqgi3gym"; + revision = "1"; + editedCabalFile = "0ddqrx1ffihwmfw1jy9cycj253zq0f9f7n7xvwl6k07q58nadaf4"; configureFlags = [ "-fbuild-external" ]; isLibrary = true; isExecutable = true; @@ -183346,10 +183522,8 @@ self: { }: mkDerivation { pname = "lucid2"; - version = "0.0.20220526"; - sha256 = "004bmzwzxfq2pmp7wn1mrdwkw9fnyfnmvzymnwn8fczkq17w4csd"; - revision = "1"; - editedCabalFile = "1b4vh46z3imkxmw6mg5mh12zhckrjlkbw7m5ix75l5ryl26lqlsc"; + version = "0.0.20221012"; + sha256 = "00r3qmxrs3jh3v4gl5m38j86ihh78q4vmsk4bz2pbcc8gh2yficj"; libraryHaskellDepends = [ base blaze-builder bytestring containers mtl text transformers ]; @@ -184591,6 +184765,8 @@ self: { pname = "magicbane"; version = "0.5.1"; sha256 = "18kxixk0cj32pjpwp96mpnppy21xn4gy4xksb97m31j30kmlas91"; + revision = "1"; + editedCabalFile = "0hay0nfaxlvm5l7jywd08779j9vcpjjrflx4cy62krsqmw9vnybm"; libraryHaskellDepends = [ aeson aeson-qq attoparsec base bytestring conduit conduit-combinators data-has ekg-core ekg-wai envy errors @@ -187992,6 +188168,26 @@ self: { mainProgram = "mega-sdist"; }) {}; + "mega-sdist_0_4_3_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, optparse-simple, pantry + , path, path-io, rio, rio-orphans, yaml + }: + mkDerivation { + pname = "mega-sdist"; + version = "0.4.3.0"; + sha256 = "0bv490zs2a25r0kwb7kqmami3xfxmjg9fqb1j4azn7jyf14jg367"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring optparse-simple pantry path path-io rio + rio-orphans yaml + ]; + description = "Handles uploading to Hackage from mega repos"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "mega-sdist"; + }) {}; + "megalisp" = callPackage ({ mkDerivation, base, megaparsec, mtl, text }: mkDerivation { @@ -189509,20 +189705,18 @@ self: { }) {}; "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec - , aws-lambda-haskell-runtime, aws-lambda-haskell-runtime-wai, base - , base-compat, blaze-html, blaze-markup, bytestring - , case-insensitive, containers, data-default, either, errors - , githash, hspec, hspec-expectations-pretty-diff, html-conduit - , lens, lens-aeson, mtl, network, network-uri, options, pcre-heavy - , raw-strings-qq, safe, scotty, tagsoup, template-haskell, text - , time, transformers, unordered-containers, vector, wai, wai-cli - , wai-extra, xml-lens, xss-sanitize + ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat + , blaze-markup, bytestring, case-insensitive, containers + , data-default, either, errors, hspec + , hspec-expectations-pretty-diff, html-conduit, lens, lens-aeson + , mtl, network-uri, pcre-heavy, raw-strings-qq, safe, tagsoup + , template-haskell, text, time, transformers, unordered-containers + , vector, xml-lens, xss-sanitize }: mkDerivation { pname = "microformats2-parser"; - version = "1.0.2.0"; - sha256 = "1vrw60az8jb3m9kk2vsn1v5l68jmwxsfw3p7lfwl9a8d4gk5m1gp"; + version = "1.0.2.2"; + sha256 = "0r1j0ky2kqc1qkvdhmcxxjwc7gplmsr0pdra2fc0xb0k7ccb2hvc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189531,12 +189725,6 @@ self: { lens lens-aeson network-uri pcre-heavy safe tagsoup text time transformers unordered-containers vector xml-lens xss-sanitize ]; - executableHaskellDepends = [ - aeson aeson-pretty aws-lambda-haskell-runtime - aws-lambda-haskell-runtime-wai base base-compat blaze-html - blaze-markup data-default githash network network-uri options - scotty text wai wai-cli wai-extra - ]; testHaskellDepends = [ aeson-qq base base-compat bytestring data-default hspec hspec-expectations-pretty-diff html-conduit mtl network-uri @@ -189544,7 +189732,6 @@ self: { ]; description = "A Microformats 2 parser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "microformats2-types" = callPackage @@ -189555,6 +189742,8 @@ self: { pname = "microformats2-types"; version = "0.4.1"; sha256 = "1p2s2g78bnqbcf0www0x11pz5nyxjfac7q7sbd2qfn1v777ylv7b"; + revision = "1"; + editedCabalFile = "0z6gx7zv3xc88n1x9z4ihrc8yb8x1j3klyan2xplfq6c6khhqa6f"; libraryHaskellDepends = [ aeson base data-default-class pandoc-types setters text time ]; @@ -191229,8 +191418,8 @@ self: { }: mkDerivation { pname = "mit-3qvpPyAi6mH"; - version = "10"; - sha256 = "1kwwklq8bd2ckq2djlw21hiv2sr723s3nh873hs8f7rapjsrnv23"; + version = "11"; + sha256 = "0p5v2spwd8rz5h5zclbr7wq5m4qvsihvp91p52d2vd3jdd6xaszx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -192090,19 +192279,17 @@ self: { "modern-uri" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant - , criterion, deepseq, exceptions, hspec, hspec-discover + , criterion, deepseq, exceptions, hashable, hspec, hspec-discover , hspec-megaparsec, megaparsec, mtl, profunctors, QuickCheck , reflection, tagged, template-haskell, text, weigh }: mkDerivation { pname = "modern-uri"; - version = "0.3.4.4"; - sha256 = "19fffy7kb7ibajagdryjy872x56045zi6c1div8wvr8aisd55qsz"; - revision = "2"; - editedCabalFile = "0izxigj0rvzz25gg3k1y09hcx7rx1xvq6dc5awi4kzdw323nvmv4"; + version = "0.3.5.0"; + sha256 = "09pxr1im78fg8024my34qhcj25w3hjq585l3k5qxl81dcypkjhdb"; libraryHaskellDepends = [ base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged + hashable megaparsec mtl profunctors QuickCheck reflection tagged template-haskell text ]; testHaskellDepends = [ @@ -192486,32 +192673,38 @@ self: { }) {}; "monad-bayes" = callPackage - ({ mkDerivation, abstract-par, base, containers, criterion, free - , hspec, ieee754, log-domain, math-functions, monad-coroutine, mtl - , mwc-random, optparse-applicative, process, QuickCheck, safe - , statistics, time, transformers, vector + ({ mkDerivation, abstract-par, base, brick, containers, criterion + , foldl, free, histogram-fill, hspec, ieee754, integration, lens + , linear, log-domain, math-functions, matrix, monad-coroutine + , monad-extras, mtl, mwc-random, optparse-applicative, pipes + , pretty-simple, primitive, process, profunctors, QuickCheck + , random, safe, scientific, statistics, text, time, transformers + , typed-process, vector, vty }: mkDerivation { pname = "monad-bayes"; - version = "0.1.1.0"; - sha256 = "1pmhj377h8jwaxh6pv3s8fq2sm82lrilyxys2m84a2ln6g0aw664"; + version = "1.0.0"; + sha256 = "1s5niiss16a5lgw2jhda3c34r1ylcjb5k14bk0n7p7l117xpxsza"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers free ieee754 log-domain math-functions - monad-coroutine mtl mwc-random safe statistics transformers vector + base brick containers foldl free histogram-fill ieee754 integration + lens linear log-domain math-functions matrix monad-coroutine + monad-extras mtl mwc-random pipes pretty-simple primitive random + safe scientific statistics text vector vty ]; executableHaskellDepends = [ - base containers log-domain mwc-random optparse-applicative time - vector + base containers log-domain math-functions mwc-random + optparse-applicative pipes pretty-simple random text time vector ]; testHaskellDepends = [ - base hspec ieee754 log-domain math-functions mtl QuickCheck - transformers vector + base containers foldl hspec ieee754 lens linear log-domain + math-functions matrix mtl mwc-random pipes pretty-simple + profunctors QuickCheck random statistics text transformers vector ]; benchmarkHaskellDepends = [ - abstract-par base containers criterion log-domain mwc-random - process vector + abstract-par base containers criterion log-domain mwc-random pipes + pretty-simple process random text typed-process vector ]; description = "A library for probabilistic programming"; license = lib.licenses.mit; @@ -192962,8 +193155,8 @@ self: { pname = "monad-logger"; version = "0.3.37"; sha256 = "1z275a428zcj73zz0cpfha2adwiwqqqp7klx3kbd3i9rl20xa106"; - revision = "1"; - editedCabalFile = "1w6awsn2fw0fca17lv92gcp3sk25yv9gkg68ll39iznkq6xblcdf"; + revision = "2"; + editedCabalFile = "1kkw07kk8gv7d9iarradqcqzjpdfh5shjlhfbf2v25mmcpchp6hd"; libraryHaskellDepends = [ base bytestring conduit conduit-extra exceptions fast-logger lifted-base monad-control monad-loops mtl resourcet stm stm-chans @@ -193057,6 +193250,8 @@ self: { pname = "monad-logger-prefix"; version = "0.1.12"; sha256 = "00gsp7mhvqvfbdh75lgr73j5adw3hd4cp969h241gaw892z3qvws"; + revision = "1"; + editedCabalFile = "0vrksfi4l7djn8z0kbknidp8g1kcahy938f9dmp27fkydwrjv14i"; libraryHaskellDepends = [ base exceptions monad-control monad-logger mtl resourcet text transformers transformers-base unliftio-core @@ -194214,6 +194409,39 @@ self: { license = lib.licenses.asl20; }) {}; + "mongoDB_2_7_1_2" = callPackage + ({ mkDerivation, array, base, base16-bytestring, base64-bytestring + , binary, bson, bytestring, conduit, conduit-extra, containers + , criterion, cryptohash, data-default-class, dns, fail, hashtables + , hspec, http-types, lifted-base, monad-control, mtl, network + , nonce, old-locale, parsec, pureMD5, random, random-shuffle + , resourcet, stm, tagged, text, time, tls, transformers + , transformers-base + }: + mkDerivation { + pname = "mongoDB"; + version = "2.7.1.2"; + sha256 = "0csjhvsvy534lq7lvqx96dw6ia3737rg7q96174067k7mhkxwf9m"; + libraryHaskellDepends = [ + array base base16-bytestring base64-bytestring binary bson + bytestring conduit conduit-extra containers cryptohash + data-default-class dns fail hashtables http-types lifted-base + monad-control mtl network nonce parsec pureMD5 random + random-shuffle resourcet stm tagged text time tls transformers + transformers-base + ]; + testHaskellDepends = [ base hspec mtl old-locale text time ]; + benchmarkHaskellDepends = [ + array base base16-bytestring base64-bytestring binary bson + bytestring containers criterion cryptohash data-default-class dns + fail hashtables http-types lifted-base monad-control mtl network + nonce parsec random random-shuffle stm text tls transformers-base + ]; + description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + }) {}; + "mongodb-queue" = callPackage ({ mkDerivation, base, data-default, hspec, lifted-base , monad-control, mongoDB, network, text, transformers @@ -194533,24 +194761,6 @@ self: { }) {}; "monoidal-containers" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens - , newtype, semialign, these, unordered-containers, witherable - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.6.2.0"; - sha256 = "0rnhlm77zrql42z3zsn3ag279q0vrz2idygc0x4p50q3780670p3"; - revision = "1"; - editedCabalFile = "07l42gkixdpamqqzdwqfcd62yga5cvhbxz5l0jpgs8kgf6prna4p"; - libraryHaskellDepends = [ - aeson base containers deepseq hashable lens newtype semialign these - unordered-containers witherable - ]; - description = "Containers with monoidal accumulation"; - license = lib.licenses.bsd3; - }) {}; - - "monoidal-containers_0_6_3_0" = callPackage ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens , newtype, semialign, these, unordered-containers, witherable }: @@ -194564,7 +194774,6 @@ self: { ]; description = "Containers with monoidal accumulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "monoidal-functors" = callPackage @@ -194669,6 +194878,8 @@ self: { pname = "monomer"; version = "1.5.0.0"; sha256 = "0asp7j9xmysspyv2l8fcr36flcayqyhp41139kzg00b7jglpbpyg"; + revision = "1"; + editedCabalFile = "1ig93calrshb8q4jp8iw0y2yqkxmd5n7xg1nabc9bp0ypacba13m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -194696,6 +194907,35 @@ self: { hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) glew;}; + "monomer-hagrid" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default + , data-default-class, hspec, hspec-discover, ilist, lens, monomer + , mtl, stm, text, time + }: + mkDerivation { + pname = "monomer-hagrid"; + version = "0.1.0.0"; + sha256 = "0mr4fnzlrci1qnyl7rdiklzz3l5sqzgax5lqx66n209221a7pnki"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-default-class ilist lens monomer text + ]; + executableHaskellDepends = [ + base containers data-default-class ilist lens monomer text time + ]; + testHaskellDepends = [ + base bytestring containers data-default data-default-class hspec + ilist lens monomer mtl stm text + ]; + testToolDepends = [ hspec-discover ]; + description = "A datagrid widget for the Monomer library"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "examples"; + broken = true; + }) {}; + "monomorphic" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -195189,29 +195429,30 @@ self: { }) {}; "morpheus-graphql" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, file-embed + ({ mkDerivation, aeson, base, bytestring, containers , morpheus-graphql-app, morpheus-graphql-code-gen - , morpheus-graphql-core, morpheus-graphql-subscriptions - , morpheus-graphql-tests, mtl, relude, tasty, tasty-hunit - , template-haskell, text, transformers, unordered-containers - , vector + , morpheus-graphql-core, morpheus-graphql-server + , morpheus-graphql-subscriptions, morpheus-graphql-tests, mtl + , relude, tasty, tasty-hunit, template-haskell, text, transformers + , unordered-containers, vector }: mkDerivation { pname = "morpheus-graphql"; - version = "0.21.0"; - sha256 = "1xvhrgjdfxqn8ck75b3hpgj12i4y94fkcp0gr7bvyh3cbhrbycnk"; + version = "0.24.3"; + sha256 = "0z1kxwkflwzn6xqv8a046biv16a4fq8sxma7n4hbby7zqmzbwpj5"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring containers morpheus-graphql-app - morpheus-graphql-code-gen morpheus-graphql-core mtl relude - template-haskell text transformers unordered-containers vector + morpheus-graphql-code-gen morpheus-graphql-core + morpheus-graphql-server mtl relude template-haskell text + transformers unordered-containers vector ]; testHaskellDepends = [ - aeson base bytestring containers file-embed morpheus-graphql-app + aeson base bytestring containers morpheus-graphql-app morpheus-graphql-code-gen morpheus-graphql-core - morpheus-graphql-subscriptions morpheus-graphql-tests mtl relude - tasty tasty-hunit template-haskell text transformers - unordered-containers vector + morpheus-graphql-server morpheus-graphql-subscriptions + morpheus-graphql-tests mtl relude tasty tasty-hunit + template-haskell text transformers unordered-containers vector ]; description = "Morpheus GraphQL"; license = lib.licenses.mit; @@ -195227,8 +195468,8 @@ self: { }: mkDerivation { pname = "morpheus-graphql-app"; - version = "0.21.0"; - sha256 = "041a6rdbvs9g5ia384qgyppdkyq71xrlcqwz8szyyw2ra97sy0pg"; + version = "0.24.3"; + sha256 = "1hm4v3x6p718zjgk4svfslvqm6nca5kg30rhh2ax63gkfvp1i2xr"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring containers hashable megaparsec @@ -195270,28 +195511,29 @@ self: { "morpheus-graphql-client" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory - , file-embed, modern-uri, morpheus-graphql-code-gen + , file-embed, modern-uri, morpheus-graphql-code-gen-utils , morpheus-graphql-core, morpheus-graphql-subscriptions, mtl - , relude, req, tasty, tasty-hunit, template-haskell, text - , transformers, unliftio-core, unordered-containers, websockets - , wuss + , prettyprinter, relude, req, tasty, tasty-hunit, template-haskell + , text, transformers, unliftio-core, unordered-containers + , websockets, wuss }: mkDerivation { pname = "morpheus-graphql-client"; - version = "0.21.0"; - sha256 = "1mn520aj62i9spby3ik0ynmjbj6baw6hmc3lcv4zp2v1ywypycci"; + version = "0.24.3"; + sha256 = "1xfwah79w0akg0fhz7xkhwmik5bfz4c9kwbscxf08w99669k1lwd"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring containers file-embed modern-uri - morpheus-graphql-code-gen morpheus-graphql-core - morpheus-graphql-subscriptions mtl relude req template-haskell text - transformers unliftio-core unordered-containers websockets wuss + morpheus-graphql-code-gen-utils morpheus-graphql-core + morpheus-graphql-subscriptions mtl prettyprinter relude req + template-haskell text transformers unliftio-core + unordered-containers websockets wuss ]; testHaskellDepends = [ aeson base bytestring containers directory file-embed modern-uri - morpheus-graphql-code-gen morpheus-graphql-core - morpheus-graphql-subscriptions mtl relude req tasty tasty-hunit - template-haskell text transformers unliftio-core + morpheus-graphql-code-gen-utils morpheus-graphql-core + morpheus-graphql-subscriptions mtl prettyprinter relude req tasty + tasty-hunit template-haskell text transformers unliftio-core unordered-containers websockets wuss ]; description = "Morpheus GraphQL Client"; @@ -195300,24 +195542,30 @@ self: { }) {}; "morpheus-graphql-code-gen" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath - , morpheus-graphql-core, optparse-applicative, prettyprinter - , relude, template-haskell, text, unordered-containers + ({ mkDerivation, base, bytestring, containers, file-embed, filepath + , Glob, morpheus-graphql-client, morpheus-graphql-code-gen-utils + , morpheus-graphql-core, morpheus-graphql-server + , optparse-applicative, prettyprinter, relude, template-haskell + , text, unordered-containers, yaml }: mkDerivation { pname = "morpheus-graphql-code-gen"; - version = "0.21.0"; - sha256 = "17z3zyk47pfs94i9lxjylxmx5c2m38nkhs4g3pf9qn129czjb48y"; + version = "0.24.3"; + sha256 = "040grsj1q9b2jy5y7pxy2islfaa6jd0winkg2dvzg1dwwh74rayc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring containers morpheus-graphql-core prettyprinter - relude template-haskell text unordered-containers + base bytestring containers file-embed + morpheus-graphql-code-gen-utils morpheus-graphql-core + morpheus-graphql-server prettyprinter relude template-haskell text + unordered-containers ]; executableHaskellDepends = [ - base bytestring containers filepath morpheus-graphql-core - optparse-applicative prettyprinter relude template-haskell text - unordered-containers + base bytestring containers file-embed filepath Glob + morpheus-graphql-client morpheus-graphql-code-gen-utils + morpheus-graphql-core morpheus-graphql-server optparse-applicative + prettyprinter relude template-haskell text unordered-containers + yaml ]; description = "Morpheus GraphQL CLI"; license = lib.licenses.bsd3; @@ -195325,6 +195573,24 @@ self: { mainProgram = "morpheus"; }) {}; + "morpheus-graphql-code-gen-utils" = callPackage + ({ mkDerivation, base, bytestring, containers + , morpheus-graphql-core, prettyprinter, relude, template-haskell + , text, unordered-containers + }: + mkDerivation { + pname = "morpheus-graphql-code-gen-utils"; + version = "0.24.3"; + sha256 = "1ss36qkf47zgwwivi70bjq5l5mkqin5181yc7dxg865sgdm9jc5z"; + libraryHaskellDepends = [ + base bytestring containers morpheus-graphql-core prettyprinter + relude template-haskell text unordered-containers + ]; + description = "Morpheus GraphQL CLI"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "morpheus-graphql-core" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , hashable, megaparsec, morpheus-graphql-tests, mtl, relude @@ -195333,8 +195599,8 @@ self: { }: mkDerivation { pname = "morpheus-graphql-core"; - version = "0.21.0"; - sha256 = "1p5cirgqiv73ka0k4rb7dwky57dwj7nr0vpr6frfgvjsnmpbqq0s"; + version = "0.24.3"; + sha256 = "0nh7nvdgqj95g1fafisjg9dxfk2hd9x0mb7da6lwcrsyb005iald"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base bytestring containers hashable megaparsec mtl relude @@ -195353,26 +195619,48 @@ self: { broken = true; }) {}; + "morpheus-graphql-server" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, file-embed + , morpheus-graphql-app, morpheus-graphql-core + , morpheus-graphql-subscriptions, morpheus-graphql-tests, mtl + , relude, tasty, tasty-hunit, template-haskell, text, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "morpheus-graphql-server"; + version = "0.24.3"; + sha256 = "1xiy43pxmgh5kh2c1vk6g7ay0kinh7rx5xb1lrjw5wkl9sw2l7dg"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base bytestring containers morpheus-graphql-app + morpheus-graphql-core mtl relude template-haskell text transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers file-embed morpheus-graphql-app + morpheus-graphql-core morpheus-graphql-subscriptions + morpheus-graphql-tests mtl relude tasty tasty-hunit + template-haskell text transformers unordered-containers vector + ]; + description = "Morpheus GraphQL"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "morpheus-graphql-subscriptions" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory - , morpheus-graphql-app, morpheus-graphql-core, mtl, relude, tasty - , tasty-hunit, text, transformers, unliftio-core - , unordered-containers, uuid, websockets + ({ mkDerivation, aeson, base, bytestring, morpheus-graphql-app + , morpheus-graphql-core, mtl, relude, text, transformers + , unliftio-core, unordered-containers, uuid, websockets }: mkDerivation { pname = "morpheus-graphql-subscriptions"; - version = "0.21.0"; - sha256 = "0qf1jw8lgjph0is7irbj07f4dina9aqznzr18wp9gwywxn0mzvgi"; + version = "0.24.3"; + sha256 = "1cky0br7nkpnjgk0j0qxfz4gd7z14badhpll51yakysxz8y5clsf"; libraryHaskellDepends = [ aeson base bytestring morpheus-graphql-app morpheus-graphql-core mtl relude text transformers unliftio-core unordered-containers uuid websockets ]; - testHaskellDepends = [ - aeson base bytestring directory morpheus-graphql-app - morpheus-graphql-core mtl relude tasty tasty-hunit text - transformers unliftio-core unordered-containers uuid websockets - ]; description = "Morpheus GraphQL Subscriptions"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; @@ -195394,14 +195682,14 @@ self: { license = lib.licenses.mit; }) {}; - "morpheus-graphql-tests_0_21_0" = callPackage + "morpheus-graphql-tests_0_24_3" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, relude, tasty , tasty-hunit, text, unordered-containers }: mkDerivation { pname = "morpheus-graphql-tests"; - version = "0.21.0"; - sha256 = "13xf8q7p32c549bih2133lcsikspnv4ay6c7bcm433dwvxf13rcm"; + version = "0.24.3"; + sha256 = "0kgzwjg0jr44rfa2pz9k80pvj22spj2qmp6l31fyy54bi89z98vh"; libraryHaskellDepends = [ aeson base bytestring directory relude tasty tasty-hunit text unordered-containers @@ -199257,15 +199545,18 @@ self: { }: mkDerivation { pname = "mywork"; - version = "1.0.0.0"; - sha256 = "0xmisv0680g7840a1hwiw9fw5fzkqss6qxaw4wck6qix98aaqm0a"; - isLibrary = false; + version = "1.0.1.0"; + sha256 = "0mcgc2f8d3v29l940n5pmw2l4na7nz9098w6krc37yl8rddgfjn6"; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ + libraryHaskellDepends = [ aeson base brick brick-panes bytestring containers ini lens mtl path path-io template-haskell text text-zipper time unordered-containers vector vty ]; + executableHaskellDepends = [ + base brick brick-panes lens mtl text vty + ]; description = "Tool to keep track of what you have been working on and where"; license = lib.licenses.isc; hydraPlatforms = lib.platforms.none; @@ -202449,8 +202740,8 @@ self: { }: mkDerivation { pname = "network-transport-tcp"; - version = "0.8.0"; - sha256 = "09zjk3ydnm7v8ryjy60p0jnd18sgf3z2yklyxp6ga5llnyzsv53a"; + version = "0.8.1"; + sha256 = "1ia7985pngbmg6cvgw9xkqdyrgbsg98hzzcjzg5ksfsh6jddrvgx"; libraryHaskellDepends = [ async base bytestring containers data-accessor network network-transport uuid @@ -202468,10 +202759,8 @@ self: { }: mkDerivation { pname = "network-transport-tests"; - version = "0.3.0"; - sha256 = "1552mgccfyyvvnplhflkfxgg3246jgx9iiv71a0gwblllbsh5y8p"; - revision = "1"; - editedCabalFile = "0kk8kib742s3iiah6d9g94ma776m4nyh14syvibsssfj1immf3jd"; + version = "0.3.1"; + sha256 = "0md91zi8g4vfbj53w1ghbgw50mlgvpnd1pya9y98i8ab8flhk923"; libraryHaskellDepends = [ ansi-terminal base bytestring containers mtl network-transport random @@ -203229,8 +203518,8 @@ self: { }: mkDerivation { pname = "ngx-export-log"; - version = "1.5"; - sha256 = "0jixskgyv4f31qhxqlhdbg93ib7lj9vwgrbqh4ha1z74gsyx4axv"; + version = "1.5.1"; + sha256 = "03wr3v7x26c0cm01rclc5fkj2a66pamcjikx8wgariljdzfzr7qs"; libraryHaskellDepends = [ base bytestring ngx-export ngx-export-tools template-haskell ]; @@ -203829,8 +204118,8 @@ self: { }: mkDerivation { pname = "nix-tree"; - version = "0.2.0"; - sha256 = "1m8ahqdm9ivgc1l1mk3s9q8gviklpq6kckn7jhdzx2mbzx7gf2vj"; + version = "0.2.1"; + sha256 = "1ca4a6mmbb8kvja3ipiifj7kfxayq9ik3ip10m6nkf99a56060jw"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -204622,6 +204911,8 @@ self: { pname = "nonempty-vector"; version = "0.2.1.0"; sha256 = "0w6fn8dinf8lcbhr5797i5kyixpasylpwn97ljmkjc6n3ad1b21y"; + revision = "1"; + editedCabalFile = "18w57f8sdix71a27gwbifw7hmg34lms22c99gp7i7j7g154f3cn3"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base deepseq primitive vector ]; testHaskellDepends = [ base doctest ]; @@ -206492,6 +206783,8 @@ self: { pname = "o-clock"; version = "1.3.0"; sha256 = "1swayrdhz10b67m6ipa75qz9ycz6r7xbk9fdq3ajlhp9bry31l7i"; + revision = "1"; + editedCabalFile = "1fis58d0r7yvznmgijc2878gjv0261apb748d5pcphmgk9i5kzf3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -207432,8 +207725,8 @@ self: { }: mkDerivation { pname = "om-fork"; - version = "0.7.1.6"; - sha256 = "0lj26k234vqn9q536v0lbgzrdag83yjdczjp48v9jhwjj02y8m24"; + version = "0.7.1.7"; + sha256 = "1fpgyh44had11yxarhdavscf12693kgal0js9j3mdj8115dv53nz"; libraryHaskellDepends = [ aeson base exceptions ki monad-logger om-show text unliftio ]; @@ -207442,6 +207735,8 @@ self: { ]; description = "Concurrency utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-http" = callPackage @@ -208439,8 +208734,8 @@ self: { pname = "openapi3"; version = "3.2.2"; sha256 = "0d31ilv2ivwswzbpfibqwnld8697vk63wyr6yl80brjx60g4jp9j"; - revision = "1"; - editedCabalFile = "01cqwjmv4y4d4d3v7rn2jm7l0vmqha2xfph9c6jq2ia0xl90z7a1"; + revision = "2"; + editedCabalFile = "1yc3wlc8j84glav3hzx1l4yq33k05bll252a8yl6ld275jjswn8p"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -211384,8 +211679,8 @@ self: { }: mkDerivation { pname = "package-version"; - version = "0.2"; - sha256 = "0381k1s0gc5wqxx21fg3nk7cgg821qlszdnwp1gl9jrykbfqak44"; + version = "0.3"; + sha256 = "01d0345qs5c02gmh3ccsl0xbmiqwcbdpzlqgx2pwj6iv9vvjrf5l"; libraryHaskellDepends = [ base bytestring deepseq prettyprinter safe-exceptions template-haskell text @@ -211660,8 +211955,8 @@ self: { }: mkDerivation { pname = "pact-time"; - version = "0.2.0.0"; - sha256 = "04d8hd4hnbsjvzjjvnyabc68srhyp8k9459pp0y1sdc7z6c0qq1m"; + version = "0.2.0.1"; + sha256 = "1k55bwf7crkr16szyjyzwc5f4h2r0x3yxaajvvffnqkbjpq3zwy0"; libraryHaskellDepends = [ aeson attoparsec base bytestring cereal clock Decimal deepseq microlens mtl text vector vector-space @@ -213070,6 +213365,48 @@ self: { license = lib.licenses.bsd3; }) {}; + "pantry_0_7_0" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal + , casa-client, casa-types, conduit, conduit-extra, containers + , cryptonite, cryptonite-conduit, digest, exceptions, filelock + , generic-deriving, hackage-security, hedgehog, hpack, hspec + , http-client, http-client-tls, http-conduit, http-download + , http-types, memory, mtl, network-uri, path, path-io, persistent + , persistent-sqlite, persistent-template, primitive, QuickCheck + , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint + , tar-conduit, text, text-metrics, time, transformers, unix-compat + , unliftio, unordered-containers, vector, yaml, zip-archive + }: + mkDerivation { + pname = "pantry"; + version = "0.7.0"; + sha256 = "19jb1gmpypdv4mdn3gp6fwgwhrynx5w7dy666yr4k23zdbkcrz1v"; + libraryHaskellDepends = [ + aeson ansi-terminal base bytestring Cabal casa-client casa-types + conduit conduit-extra containers cryptonite cryptonite-conduit + digest filelock generic-deriving hackage-security hpack http-client + http-client-tls http-conduit http-download http-types memory mtl + network-uri path path-io persistent persistent-sqlite + persistent-template primitive resourcet rio rio-orphans + rio-prettyprint tar-conduit text text-metrics time transformers + unix-compat unliftio unordered-containers vector yaml zip-archive + ]; + testHaskellDepends = [ + aeson ansi-terminal base bytestring Cabal casa-client casa-types + conduit conduit-extra containers cryptonite cryptonite-conduit + digest exceptions filelock generic-deriving hackage-security + hedgehog hpack hspec http-client http-client-tls http-conduit + http-download http-types memory mtl network-uri path path-io + persistent persistent-sqlite persistent-template primitive + QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint + tar-conduit text text-metrics time transformers unix-compat + unliftio unordered-containers vector yaml zip-archive + ]; + description = "Content addressable Haskell package management"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "pantry-tmp" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans , base64-bytestring, bytestring, Cabal, conduit, conduit-extra @@ -214924,34 +215261,6 @@ self: { }) {}; "password" = callPackage - ({ mkDerivation, base, base-compat, base64, bytestring, Cabal - , cabal-doctest, cryptonite, doctest, memory, password-types - , QuickCheck, quickcheck-instances, scrypt, tasty, tasty-hunit - , tasty-quickcheck, template-haskell, text - }: - mkDerivation { - pname = "password"; - version = "3.0.1.0"; - sha256 = "1kdc1lwya9sq3vb5wvvs2bz0z38mqn9cpim4f6awym99c57g01rk"; - revision = "3"; - editedCabalFile = "151z62mwqzblddcwj83dhwz2qfj53g0nl6sbdcsf489xbb9z3vk9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base64 bytestring cryptonite memory password-types - template-haskell text - ]; - testHaskellDepends = [ - base base-compat bytestring cryptonite doctest memory - password-types QuickCheck quickcheck-instances scrypt tasty - tasty-hunit tasty-quickcheck template-haskell text - ]; - description = "Hashing and checking of passwords"; - license = lib.licenses.bsd3; - platforms = lib.platforms.x86; - maintainers = [ lib.maintainers.cdepillabout ]; - }) {}; - - "password_3_0_2_0" = callPackage ({ mkDerivation, base, base-compat, base64, bytestring, Cabal , cabal-doctest, cryptonite, doctest, memory, password-types , QuickCheck, quickcheck-instances, scrypt, tasty, tasty-hunit @@ -214974,7 +215283,6 @@ self: { description = "Hashing and checking of passwords"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.cdepillabout ]; }) {}; @@ -215122,8 +215430,8 @@ self: { }: mkDerivation { pname = "patat"; - version = "0.8.7.0"; - sha256 = "05bg36lbhqlh80w952hrpy88n99qddv86hiqqbc6p3bc89rlzg1w"; + version = "0.8.8.0"; + sha256 = "13y2cj01yl1pq9gdbzjq1mc4qp8ljnmf3hdb13sc5058y0054zy1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -215999,10 +216307,10 @@ self: { }: mkDerivation { pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "1lfbjgvl55jh226n307c2w8mrb3l1myzbkjh4j0jfcb8nybzcp4a"; + version = "1.0.0.3"; + sha256 = "03wqr7q242j23g910l0qgagqyy8fi3b5gv7xsaym7m41zki1bw9y"; revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; + editedCabalFile = "0wa517agsib2q658bfsb9fdm12yz3pqzj204v9jf9rz4fm4y8q81"; libraryHaskellDepends = [ base base-compat bytestring pcre-light semigroups string-conversions template-haskell @@ -217461,6 +217769,8 @@ self: { pname = "persistent"; version = "2.14.3.0"; sha256 = "06cs30886s0y50kw4p2x8jw1k173il4mfqdfbkkdnd6kc97j920j"; + revision = "1"; + editedCabalFile = "1qbi74kmjk07wgib2y6pscjbr8mazlj490928h5bvahw10jx3611"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring blaze-html bytestring conduit containers fast-logger http-api-data lift-type monad-logger @@ -217732,6 +218042,8 @@ self: { pname = "persistent-mongoDB"; version = "2.13.0.1"; sha256 = "1ck74kpzkz623c43qb8r1cjq8chi2p721vx95zrpciz8jm496235"; + revision = "1"; + editedCabalFile = "1h007vh9cx0y963xacxhf3rn2wjnc22ygil9c0z13mljmqssf5h6"; libraryHaskellDepends = [ aeson base bson bytestring cereal conduit http-api-data mongoDB network path-pieces persistent resource-pool resourcet text time @@ -217978,15 +218290,15 @@ self: { license = lib.licenses.mit; }) {}; - "persistent-qq_2_12_0_3" = callPackage + "persistent-qq_2_12_0_5" = callPackage ({ mkDerivation, aeson, base, bytestring, fast-logger , haskell-src-meta, hspec, HUnit, monad-logger, mtl, persistent , persistent-sqlite, resourcet, template-haskell, text, unliftio }: mkDerivation { pname = "persistent-qq"; - version = "2.12.0.3"; - sha256 = "0iv9x73g846grhb4vdh1xhpbwmk6hg5jh1xl2i7yh986pnqbl23g"; + version = "2.12.0.5"; + sha256 = "1mkgrczllayf8mq773rqp11d677fqjxcblmb3l97m0k1qyvpjq1h"; libraryHaskellDepends = [ base haskell-src-meta mtl persistent template-haskell text ]; @@ -220042,10 +220354,8 @@ self: { }: mkDerivation { pname = "pinch"; - version = "0.4.1.2"; - sha256 = "0khgx08mpj16lzqkk3xmxf5a6a68fc6x1vfg1r0lgj5lx2dgl89j"; - revision = "1"; - editedCabalFile = "1hpcwjgp12kp5hny74xjhrj7dj89pa4gin84b24arqlvmz5w9anq"; + version = "0.4.2.0"; + sha256 = "107zxrmhf8bdvjk5yy438xxg7015k1b0zvpkfvh7dif7l3j9c4cm"; libraryHaskellDepends = [ array base bytestring cereal containers deepseq ghc-prim hashable network semigroups text unordered-containers vector @@ -220313,8 +220623,8 @@ self: { pname = "pipes"; version = "4.3.16"; sha256 = "163lx5sf68zx5kik5h1fjsyckwr9shdsn5k2dsjq3mhg077nxqgl"; - revision = "5"; - editedCabalFile = "1wjpz0anr4cpf8x5ffw2cpzcz9y4qvxa1qacdc576hyawkshfbj6"; + revision = "6"; + editedCabalFile = "16s8a1ijakhsk73ny2vrw6a8r2dszgncd0wk735ii6csg3l2c9pm"; libraryHaskellDepends = [ base exceptions mmorph mtl transformers void ]; @@ -220872,8 +221182,8 @@ self: { pname = "pipes-group"; version = "1.0.12"; sha256 = "1issfj3syi6lfbcdn3bhlbnlh86s92ldsb04c4ac69xipsgyhwqk"; - revision = "6"; - editedCabalFile = "19yzgmwv8vnx2jqsybs5h2cwfxnfc6xi2wzl96hi4jbf3cnkayyj"; + revision = "7"; + editedCabalFile = "0g6xrp4xi4gzar5l4jhpfi617zvy1hv0i9rg7gg23fcqfyc1kh22"; libraryHaskellDepends = [ base free pipes pipes-parse transformers ]; @@ -221770,6 +222080,30 @@ self: { mainProgram = "pkgtreediff"; }) {}; + "pkgtreediff_0_6_0" = callPackage + ({ mkDerivation, async, base, bytestring, directory, extra + , filepath, Glob, http-client, http-client-tls, http-directory + , http-types, koji, rpm-nvr, simple-cmd, simple-cmd-args, text + }: + mkDerivation { + pname = "pkgtreediff"; + version = "0.6.0"; + sha256 = "1n7dvv0c2hx90hv7fm1crhl8wn3krryv602msa7klzdl9syd9s1f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base rpm-nvr ]; + executableHaskellDepends = [ + async base bytestring directory extra filepath Glob http-client + http-client-tls http-directory http-types koji rpm-nvr simple-cmd + simple-cmd-args text + ]; + testHaskellDepends = [ base simple-cmd ]; + description = "RPM package tree diff tool"; + license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + mainProgram = "pkgtreediff"; + }) {}; + "pktree" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -223508,8 +223842,8 @@ self: { }: mkDerivation { pname = "polysemy-conc"; - version = "0.9.0.0"; - sha256 = "0nmnc3h4np742yf0c196q3d0bfdvm9k3dp0482712ka1zjk8ck1k"; + version = "0.10.0.0"; + sha256 = "17683p4j54kapg279cbdxl7j0gyrshcsxcs0xngyaplgajwq6pnk"; libraryHaskellDepends = [ async base containers incipit-core polysemy polysemy-resume polysemy-time stm stm-chans torsor unagi-chan unix @@ -223571,21 +223905,21 @@ self: { "polysemy-http" = callPackage ({ mkDerivation, aeson, base, case-insensitive, exon, hedgehog , http-client, http-client-tls, http-types, network, polysemy - , polysemy-plugin, polysemy-time, prelate, servant, servant-client - , servant-server, tasty, tasty-hedgehog, time, warp + , polysemy-plugin, prelate, servant-client, servant-server, tasty + , tasty-hedgehog, time, warp }: mkDerivation { pname = "polysemy-http"; - version = "0.8.0.0"; - sha256 = "1ccd45ln80b0pbdpk2wmky3hlz89f8jjlrfbnxd4ycf2crap8wzl"; + version = "0.9.0.0"; + sha256 = "13d5ydyaq6jjinq8h8slxj0iw6bfpg7cdv0lj0kl8kpvikr6livg"; libraryHaskellDepends = [ aeson base case-insensitive exon http-client http-client-tls http-types polysemy polysemy-plugin prelate time ]; testHaskellDepends = [ aeson base exon hedgehog http-client network polysemy - polysemy-plugin polysemy-time prelate servant servant-client - servant-server tasty tasty-hedgehog warp + polysemy-plugin prelate servant-client servant-server tasty + tasty-hedgehog warp ]; description = "Polysemy effects for HTTP clients"; license = "BSD-2-Clause-Patent"; @@ -223878,8 +224212,8 @@ self: { }: mkDerivation { pname = "polysemy-process"; - version = "0.9.0.0"; - sha256 = "1jd3iryv3vwy8zv328sfwh1ifrj788fhs63vgppr503wgkqzmwbn"; + version = "0.10.0.0"; + sha256 = "1f0bnpzd1k1aj9f3100z240ljvlw9b5ikafif05bwzcpavsy7zli"; libraryHaskellDepends = [ base incipit-core path path-io polysemy polysemy-conc polysemy-resume polysemy-time posix-pty process stm-chans @@ -224041,10 +224375,8 @@ self: { ({ mkDerivation, base, polysemy, polysemy-methodology }: mkDerivation { pname = "polysemy-uncontrolled"; - version = "0.1.1.0"; - sha256 = "08q69sn1ac4xhpffiabayw2l5j1jy9iz1y37ww84kx32njas9c2b"; - revision = "1"; - editedCabalFile = "09j8fw0m1i0zp33v7pg3g2550blwajksvwbfnqq1slhmbyigd2jr"; + version = "0.1.1.1"; + sha256 = "01z19dy9gb78iwanszyipszq05piaa3n4qjmyj0yg22a1xsm02mi"; libraryHaskellDepends = [ base polysemy polysemy-methodology ]; description = "Uncontrolled toy effect for polysemy"; license = lib.licenses.mit; @@ -227172,8 +227504,8 @@ self: { }: mkDerivation { pname = "prelate"; - version = "0.1.0.0"; - sha256 = "149x6hmb25dd140kkpmcx60zqi6r4wc8yaj0jk75374b3gfqdvwz"; + version = "0.2.0.0"; + sha256 = "03620awa3yh3jfzqzr2i6gbhg4wfq33v7m42rzwnr6j83pkd59im"; libraryHaskellDepends = [ aeson base exon extra generic-lens incipit microlens microlens-ghc polysemy-chronos polysemy-conc polysemy-log polysemy-process @@ -227728,7 +228060,7 @@ self: { maintainers = [ lib.maintainers.cdepillabout ]; }) {}; - "pretty-simple_4_1_1_0" = callPackage + "pretty-simple_4_1_2_0" = callPackage ({ mkDerivation, base, Cabal, cabal-doctest, containers, criterion , doctest, Glob, mtl, optparse-applicative, prettyprinter , prettyprinter-ansi-terminal, QuickCheck, template-haskell, text @@ -227736,8 +228068,8 @@ self: { }: mkDerivation { pname = "pretty-simple"; - version = "4.1.1.0"; - sha256 = "0jjxlb0psj5wj7h8dsmqbx8qwdyzmgsv7r9my51x9qb7m6qpkqfs"; + version = "4.1.2.0"; + sha256 = "0di7n3kq2bl0xqj9b1xxf3jznyy6cfyjs6hf6g0bi72rf4wprd1w"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -228958,14 +229290,14 @@ self: { license = lib.licenses.mit; }) {}; - "process_1_6_15_0" = callPackage + "process_1_6_16_0" = callPackage ({ mkDerivation, base, bytestring, deepseq, directory, filepath , unix }: mkDerivation { pname = "process"; - version = "1.6.15.0"; - sha256 = "1azpl6qhi3ym4s2i1vh6z9kydpb9vgg76x803an9760jsdn1pcs4"; + version = "1.6.16.0"; + sha256 = "0a4kr9vndm7wxv9yw9ras5n3y3vr9xx0nkwkazfs06i7s6017hmv"; libraryHaskellDepends = [ base deepseq directory filepath unix ]; testHaskellDepends = [ base bytestring directory ]; description = "Process libraries"; @@ -230172,8 +230504,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "5.13"; - sha256 = "0hr2n5kxc7l6a0h5fs6i5hspni7ymw5dzgxwfdsa8j6mpzrw5yd4"; + version = "5.14.1"; + sha256 = "1lbqd4mj8mjk1l2pcqjw214w9znnp9mbs8z7dxi5spd819vw0d2d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -231966,11 +232298,11 @@ 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, cborg - , cheapskate, clock, containers, cryptonite, data-ordlist, deepseq - , directory, dlist, edit-distance, exceptions, file-embed, filepath - , fsnotify, generic-random, gitrev, Glob, happy, haskeline, hspec + , ansi-terminal, ansi-wl-pprint, array, base, blaze-html + , bower-json, boxes, bytestring, Cabal, cborg, cheapskate, clock + , containers, cryptonite, data-ordlist, deepseq, directory, dlist + , edit-distance, exceptions, file-embed, filepath, fsnotify + , generic-random, gitrev, Glob, happy, haskeline, hspec , hspec-discover, http-types, HUnit, language-javascript, lens , lifted-async, lifted-base, memory, monad-control, monad-logger , monoidal-containers, mtl, network, newtype, optparse-applicative @@ -231979,30 +232311,31 @@ self: { , serialise, sourcemap, split, stm, stringsearch, syb, text, these , time, transformers, transformers-base, transformers-compat , typed-process, unordered-containers, utf8-string, vector + , witherable }: mkDerivation { pname = "purescript"; - version = "0.15.4"; - sha256 = "13w604knmazp8bhbdcb7smfpyy4nwsbng10km0gmp367lxwr09yz"; + version = "0.15.6"; + sha256 = "19p8jzn76vc5w4g95y36vfhih1s5kq12dvczvfb7zkmn3n6n3g3m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson aeson-better-errors aeson-pretty ansi-terminal array base - 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 lens 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 Glob haskeline + language-javascript lens lifted-async lifted-base memory monad-control monad-logger monoidal-containers mtl parallel parsec pattern-arrows process protolude regex-tdfa safe scientific semialign semigroups serialise sourcemap split stm stringsearch syb text these time transformers transformers-base transformers-compat - typed-process unordered-containers utf8-string vector + typed-process unordered-containers utf8-string vector witherable ]; 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 - cborg cheapskate clock containers cryptonite data-ordlist deepseq + array base blaze-html bower-json boxes bytestring Cabal cborg + cheapskate clock containers cryptonite data-ordlist deepseq directory dlist edit-distance exceptions file-embed filepath fsnotify gitrev Glob haskeline http-types language-javascript lens lifted-async lifted-base memory monad-control monad-logger @@ -232010,27 +232343,29 @@ self: { parsec pattern-arrows process protolude regex-tdfa safe scientific semialign semigroups serialise sourcemap split stm stringsearch syb text these time transformers transformers-base transformers-compat - typed-process unordered-containers utf8-string vector + typed-process unordered-containers utf8-string vector witherable ]; executableToolDepends = [ happy ]; testHaskellDepends = [ aeson aeson-better-errors aeson-pretty ansi-terminal array base - 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 - generic-random Glob haskeline hspec HUnit language-javascript lens - lifted-async lifted-base memory monad-control monad-logger - monoidal-containers mtl newtype parallel parsec pattern-arrows - process protolude QuickCheck regex-base regex-tdfa safe scientific - semialign semigroups serialise sourcemap split stm stringsearch syb - text these time transformers transformers-base transformers-compat - typed-process unordered-containers utf8-string vector + blaze-html bower-json boxes bytestring Cabal cborg cheapskate clock + containers cryptonite data-ordlist deepseq directory dlist + edit-distance file-embed filepath fsnotify generic-random Glob + haskeline hspec HUnit language-javascript lens lifted-async + lifted-base memory monad-control monad-logger monoidal-containers + mtl newtype parallel parsec pattern-arrows process protolude + QuickCheck regex-base regex-tdfa safe scientific semialign + semigroups serialise sourcemap split stm stringsearch syb text + these time transformers transformers-base transformers-compat + typed-process unordered-containers utf8-string vector witherable ]; testToolDepends = [ happy hspec-discover ]; doCheck = false; description = "PureScript Programming Language Compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "purs"; + broken = true; }) {}; "purescript-ast" = callPackage @@ -236134,6 +236469,29 @@ self: { license = lib.licenses.bsd3; }) {}; + "rank2classes_1_4_6" = callPackage + ({ mkDerivation, base, Cabal, cabal-doctest, data-functor-logistic + , distributive, doctest, markdown-unlit, tasty, tasty-hunit + , template-haskell, transformers + }: + mkDerivation { + pname = "rank2classes"; + version = "1.4.6"; + sha256 = "09wpjan20m6icrw7v41dn85kapy6ijz2mm17iw2pp51c4h9c09ci"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + base data-functor-logistic distributive template-haskell + transformers + ]; + testHaskellDepends = [ + base data-functor-logistic distributive doctest tasty tasty-hunit + ]; + testToolDepends = [ markdown-unlit ]; + description = "standard type constructor class hierarchy, only with methods of rank 2 types"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "rapid" = callPackage ({ mkDerivation, async, base, containers, foreign-store, stm }: mkDerivation { @@ -236614,14 +236972,14 @@ self: { broken = true; }) {}; - "rattletrap_11_2_12" = callPackage + "rattletrap_11_2_14" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring , containers, filepath, http-client, http-client-tls, text }: mkDerivation { pname = "rattletrap"; - version = "11.2.12"; - sha256 = "1c3mpcjx2yl1w5myrqsdcsgr5x2hiv4pw5qd3ghlxkhl15rxbkzv"; + version = "11.2.14"; + sha256 = "0r879vbdhv77l14wzv03s8hlhmmzzfl6igkwnclr9lq8ncbafrxm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -240913,8 +241271,8 @@ self: { }: mkDerivation { pname = "registry"; - version = "0.3.3.0"; - sha256 = "12xj9wrqp3wfg1kjql6l6l4avk2mf40n1z7mhhsrc457v7br1lfc"; + version = "0.3.3.4"; + sha256 = "1x5ilikd9xxdhkzvvm5mklxrzx8vbyzzji4rqnw8lsgrxpzwca9d"; libraryHaskellDepends = [ base containers exceptions hashable mmorph mtl protolude resourcet semigroupoids semigroups template-haskell text transformers-base @@ -240940,8 +241298,8 @@ self: { }: mkDerivation { pname = "registry-aeson"; - version = "0.2.2.0"; - sha256 = "1p5imwr93hx4nid57f2qfad3s2q0b667ns2hl0vs9y54fqvy79ra"; + version = "0.2.3.3"; + sha256 = "03wh6sl921hsqk32749y4gklpfjxjbhyw0dwk0zw6ja28jzpny7g"; libraryHaskellDepends = [ aeson base bytestring containers protolude registry template-haskell text transformers unordered-containers vector @@ -240964,8 +241322,8 @@ self: { }: mkDerivation { pname = "registry-hedgehog"; - version = "0.7.0.5"; - sha256 = "1mc8m74mx5119b6k7ac4ysilnwm0163a4c57gc15620mw3f0w0dl"; + version = "0.7.2.0"; + sha256 = "07lynkbwcjjlhh7v7rxa7s1b3m3vh1lfamdq4iwqy8b54p7fybs5"; libraryHaskellDepends = [ base containers hedgehog mmorph multimap protolude registry tasty tasty-discover tasty-hedgehog tasty-th template-haskell text @@ -242628,6 +242986,8 @@ self: { pname = "req-conduit"; version = "1.0.1"; sha256 = "0zyy9j6iiz8z2jdx25vp77arfbmrck7bjndm3p4s9l9399c5bm62"; + revision = "1"; + editedCabalFile = "0gbm1c95ml7binmazn15737a8ls5p21f9d0d6pzc3fla0rz91ic1"; libraryHaskellDepends = [ base bytestring conduit http-client req resourcet transformers ]; @@ -243192,6 +243552,23 @@ self: { license = lib.licenses.bsd3; }) {}; + "resourcet_1_3_0" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, mtl + , primitive, transformers, unliftio-core + }: + mkDerivation { + pname = "resourcet"; + version = "1.3.0"; + sha256 = "0swrz7h73m86x3937gdiay3z30y9hn35n86v5brh38j2xs2ifq7c"; + libraryHaskellDepends = [ + base containers exceptions mtl primitive transformers unliftio-core + ]; + testHaskellDepends = [ base exceptions hspec transformers ]; + description = "Deterministic allocation and freeing of scarce resources"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "resourcet-effectful" = callPackage ({ mkDerivation, base, effectful-core, resourcet }: mkDerivation { @@ -244621,8 +244998,7 @@ self: { description = "Test tools for Ribosome"; license = "BSD-2-Clause-Patent"; hydraPlatforms = lib.platforms.none; - broken = true; - }) {chiasma-test = null;}; + }) {}; "richreports" = callPackage ({ mkDerivation, ascetic, base, MissingH }: @@ -247285,6 +247661,8 @@ self: { pname = "rustls"; version = "0.0.0.0"; sha256 = "1j7qxmapz9znmbd02359qxbsh1pkprzcg2jjpsz80kfyb6bjj766"; + revision = "1"; + editedCabalFile = "18jh00sbyixqjm2y6048f83qpqq4jlbzrik5i62is93rmn4pnnc2"; libraryHaskellDepends = [ base bytestring derive-storable derive-storable-plugin network resourcet text transformers @@ -249582,6 +249960,23 @@ self: { license = lib.licenses.asl20; }) {}; + "scalpel_0_6_2_1" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, data-default + , http-client, http-client-tls, scalpel-core, tagsoup, text + }: + mkDerivation { + pname = "scalpel"; + version = "0.6.2.1"; + sha256 = "0w3l38czfsgbyd3x6yir7qw9bl8nmhclrbpbwfyhs39728jlscnc"; + libraryHaskellDepends = [ + base bytestring case-insensitive data-default http-client + http-client-tls scalpel-core tagsoup text + ]; + description = "A high level web scraping library for Haskell"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + }) {}; + "scalpel-core" = callPackage ({ mkDerivation, base, bytestring, containers, criterion , data-default, fail, HUnit, mtl, pointedlist, regex-base @@ -249603,6 +249998,26 @@ self: { license = lib.licenses.asl20; }) {}; + "scalpel-core_0_6_2_1" = callPackage + ({ mkDerivation, base, bytestring, containers, criterion + , data-default, fail, HUnit, mtl, pointedlist, regex-base + , regex-tdfa, tagsoup, text, transformers, vector + }: + mkDerivation { + pname = "scalpel-core"; + version = "0.6.2.1"; + sha256 = "1yl1lsi5xm3qdlww2sb6vyppjiisj54f4yzvffv3qg8dgkfjfdra"; + libraryHaskellDepends = [ + base bytestring containers data-default fail mtl pointedlist + regex-base regex-tdfa tagsoup text transformers vector + ]; + testHaskellDepends = [ base HUnit regex-base regex-tdfa tagsoup ]; + benchmarkHaskellDepends = [ base criterion tagsoup text ]; + description = "A high level web scraping library for Haskell"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + }) {}; + "scalpel-search" = callPackage ({ mkDerivation, base, hspec, scalpel, scalpel-core, tagsoup, text , uri @@ -251154,6 +251569,8 @@ self: { pname = "sdl2"; version = "2.5.4.0"; sha256 = "1g35phifz49kxk48s8jmgglxhxl79cbzc1cg2qlgk0vdpxpin8ym"; + revision = "1"; + editedCabalFile = "19kr714da3lp064h1ky1bxwgkcrjy2ks5qby6214fj99dg7rxipr"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -253123,6 +253540,8 @@ self: { pname = "serialise"; version = "0.2.6.0"; sha256 = "05m5h5vfjp4wvh6y7j2f3d4c3l6gxww2n1v38vqrjacpw641izwk"; + revision = "1"; + editedCabalFile = "0rlsi4jq2d1dak2fps5flcn27lywjlhvsi0x2k2lvnjqawnfb3f9"; libraryHaskellDepends = [ array base bytestring cborg containers ghc-prim half hashable primitive strict text these time unordered-containers vector @@ -253296,8 +253715,8 @@ self: { pname = "servant"; version = "0.19"; sha256 = "1rahn436vc3xajn563ni25jqkg87fvhqkpswan1xy6qsfr0ikdjb"; - revision = "4"; - editedCabalFile = "0g0y6xj9wa8fl62slqfpimx2c6xadqvyqhl661pbbk3f1p11j4cd"; + revision = "5"; + editedCabalFile = "0hn8qkvzazjncnawzzx7l0kdhzj35fy1387b00znirz6kx9w5vqp"; libraryHaskellDepends = [ aeson attoparsec base base-compat bifunctors bytestring case-insensitive constraints deepseq http-api-data http-media @@ -253389,8 +253808,8 @@ self: { pname = "servant-auth-client"; version = "0.4.1.0"; sha256 = "16rmwdrx0qyqa821ipayczzl3gv8gvqgx8k9q8qaw19w87hwkh83"; - revision = "5"; - editedCabalFile = "19y15pn7h1gv22y4yww33ri27plfwblygh5alfznsjdnmfzij3v4"; + revision = "6"; + editedCabalFile = "0d6mi3w3gx9h21awf1gy2wx7dwh5l9ichww21a3p5rfd8a8swypf"; libraryHaskellDepends = [ base bytestring containers servant servant-auth servant-client-core ]; @@ -253445,8 +253864,8 @@ self: { pname = "servant-auth-docs"; version = "0.2.10.0"; sha256 = "0j1ynnrb6plrhpb2vzs2p7a9jb41llp0j1jwgap7hjhkwhyc7wxd"; - revision = "10"; - editedCabalFile = "0c77b23wxqw168sk11s897pjnq4ma4cjvw99b0ny2ggf0v83hw6n"; + revision = "11"; + editedCabalFile = "1xk6j4l5jccwzk0xkiv6ny6w33g92wziacqvqgc5rvy2mzyff4fl"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base lens servant servant-auth servant-docs text @@ -253856,8 +254275,8 @@ self: { pname = "servant-client"; version = "0.19"; sha256 = "1bdapsr6il0f019ss8wsxndpc8cd5czj40xczay5qhl7fqnxg5pa"; - revision = "3"; - editedCabalFile = "16a3lsm2w4jvnisy0n38jx8a1974qywg569fml6zhx9fvz741dd8"; + revision = "4"; + editedCabalFile = "0j2i3fvqkhf80hada6vga3674z3bnnl1n3k655alfwnxl7zlgppa"; libraryHaskellDepends = [ base base-compat bytestring containers deepseq exceptions http-client http-media http-types kan-extensions monad-control mtl @@ -253886,8 +254305,8 @@ self: { pname = "servant-client-core"; version = "0.19"; sha256 = "0cisc5cyl367cwrch1gr812aspd36a21hkwi6mwj708rpspwvrmc"; - revision = "3"; - editedCabalFile = "1sk2nf0w9wxd7sqn3kla65kk91rk03xz8ll297wg2b2xqybvy8ph"; + revision = "4"; + editedCabalFile = "1qhqab6akfw6ay4rlrbwmii1s8flbkgp9b9bfzkdhwng7nvwdc80"; libraryHaskellDepends = [ aeson base base-compat base64-bytestring bytestring constraints containers deepseq exceptions free http-media http-types @@ -254589,8 +255008,8 @@ self: { pname = "servant-js"; version = "0.9.4.2"; sha256 = "15n5s3i491cxjxj70wa8yhpipaz47q46s04l4ysc64wgijlnm8xy"; - revision = "2"; - editedCabalFile = "1wi3q1rn384h9gvxv6dmk31h0wwb6j4yjimz01cz6sgs7fs77ndj"; + revision = "3"; + editedCabalFile = "1i8ngrrdnql03hlv07wfwbswfwm6zfj66n3byg647hcl71q67ppc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -254788,8 +255207,8 @@ self: { pname = "servant-multipart"; version = "0.12.1"; sha256 = "1p55kb3zhq25ncp7wimhggssn68abfgsnlldk13rk1iajaj6y8y5"; - revision = "3"; - editedCabalFile = "1wkbwd6gypmv7aziaag3gzwgvvqx4bw8i4qp2vpmc7ip2ydm10ml"; + revision = "4"; + editedCabalFile = "0z4n3a1cdb082nwh3ig68wjk617cvwpq0n9ivsab55nvsr2wsm8q"; libraryHaskellDepends = [ base bytestring directory lens resourcet servant servant-docs servant-foreign servant-multipart-api servant-server @@ -254964,6 +255383,8 @@ self: { pname = "servant-openapi3"; version = "2.0.1.5"; sha256 = "0zcyqga4hbdyk34368108vv9vavzdhv26xphas7yppada2sshfay"; + revision = "1"; + editedCabalFile = "0bscnxbw1zd0f7ycjr54kxfdcxzndgbxpamc75r1yzly262xrc1b"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ aeson aeson-pretty base base-compat bytestring hspec http-media @@ -255481,8 +255902,8 @@ self: { pname = "servant-server"; version = "0.19.1"; sha256 = "1g88vdwacwli79y5idqlrbhl2k9r463h560f2lk5abhqsmsm9bhd"; - revision = "2"; - editedCabalFile = "18as15x192ila9cqiff1yliidwlihx9kvjgji2sml11ahwhqyy75"; + revision = "3"; + editedCabalFile = "16jqzkrf9r7lz7y48dnl4v8s4hfn7hmfsmfbj7d96h53r2v4pz5g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -259215,6 +259636,21 @@ self: { mainProgram = "test"; }) {}; + "signal-messaging-dbus" = callPackage + ({ mkDerivation, base, bytestring, dbus, unliftio }: + mkDerivation { + pname = "signal-messaging-dbus"; + version = "1.0.0.2"; + sha256 = "0xlsrbx92vdxn1wa3za3pana7z1py0lfp4fyjrpyqp0m66rl81s1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring dbus unliftio ]; + executableHaskellDepends = [ base bytestring dbus unliftio ]; + description = "Bindings for signal-cli's DBus interface"; + license = "AGPL"; + mainProgram = "signal-dbus-example"; + }) {}; + "signals" = callPackage ({ mkDerivation, base, containers, hashable, imperative-edsl-vhdl , language-vhdl, mtl, observable-sharing, operational-alacarte @@ -259264,13 +259700,13 @@ self: { }) {}; "significant-figures" = callPackage - ({ mkDerivation, base, HasBigDecimal, haskeline, HUnit, parsec - , tasty, tasty-hunit, terminfo, text + ({ mkDerivation, base, HasBigDecimal, haskeline, parsec, tasty + , tasty-hunit, tasty-quickcheck, terminfo, text }: mkDerivation { pname = "significant-figures"; - version = "0.1.0.1"; - sha256 = "0ry17vy8mvwd5z4i8vnk86gqxli5lgbmhgp1209qivx3y3pha5p6"; + version = "0.2.0.0"; + sha256 = "07x4sgjcnjf7hmq7x17lc2qwd1vsnybm6s620y0cwaawr81rhlxx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base HasBigDecimal parsec text ]; @@ -259278,7 +259714,7 @@ self: { base HasBigDecimal haskeline parsec terminfo text ]; testHaskellDepends = [ - base HasBigDecimal HUnit tasty tasty-hunit text + base HasBigDecimal tasty tasty-hunit tasty-quickcheck text ]; description = "Calculate expressions involving significant figures"; license = lib.licenses.gpl3Plus; @@ -259481,6 +259917,24 @@ self: { maintainers = [ lib.maintainers.turion ]; }) {}; + "simple-affine-space_0_2" = callPackage + ({ mkDerivation, base, deepseq, directory, filepath, hlint, process + , regex-posix + }: + mkDerivation { + pname = "simple-affine-space"; + version = "0.2"; + sha256 = "1wxsbw1l5ynff3df6yvz22zwnnm77bhr67yccpkfsz9l9l566a3w"; + libraryHaskellDepends = [ base deepseq ]; + testHaskellDepends = [ + base directory filepath hlint process regex-posix + ]; + description = "A simple library for affine and vector spaces"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.turion ]; + }) {}; + "simple-amount" = callPackage ({ mkDerivation, aeson, base, data-default, gmp, hedgehog, HUnit , lens, mpfr, pretty, pretty-show, profunctors, split, tasty @@ -261124,8 +261578,8 @@ self: { }: mkDerivation { pname = "sitepipe"; - version = "0.4.0.1"; - sha256 = "1iq7i2zs1bqnxqjp5bwsx8q2vvp1kngwg45mzsiwmhzq4m88x80h"; + version = "0.4.0.2"; + sha256 = "11v2135a92jcxi4nssds76ki25rdbrdp0q2fl6nnq5sw4ickk7ar"; libraryHaskellDepends = [ aeson base bytestring containers directory exceptions filepath Glob lens lens-aeson megaparsec MissingH mtl mustache @@ -261625,15 +262079,15 @@ self: { mainProgram = "skylighting"; }) {}; - "skylighting_0_13" = callPackage + "skylighting_0_13_1" = callPackage ({ mkDerivation, base, binary, blaze-html, bytestring, containers , pretty-show, skylighting-core, skylighting-format-ansi , skylighting-format-blaze-html, skylighting-format-latex, text }: mkDerivation { pname = "skylighting"; - version = "0.13"; - sha256 = "0gjafmiqah9d7a6h3qx7jmkih6yc47bks5r6hgl5911vhjgifm7k"; + version = "0.13.1"; + sha256 = "0azlnrms9cp6vfp33mrzlhv2vv8v3257hri8j3r37x8h2ml3i6h9"; configureFlags = [ "-fexecutable" ]; isLibrary = true; isExecutable = true; @@ -261681,7 +262135,7 @@ self: { license = lib.licenses.bsd3; }) {}; - "skylighting-core_0_13" = callPackage + "skylighting-core_0_13_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary , bytestring, case-insensitive, colour, containers, criterion, Diff , directory, filepath, mtl, pretty-show, QuickCheck, safe, tasty @@ -261690,10 +262144,8 @@ self: { }: mkDerivation { pname = "skylighting-core"; - version = "0.13"; - sha256 = "01j6v2dy04lsmrx98hvgpb6vnirs1h0gbiy7q5ck5q3k37cqys7p"; - revision = "1"; - editedCabalFile = "1kbwbkjgilr0m0hfiq94rlvk691wgrmlrbd916mkv5h869qdyjrr"; + version = "0.13.1"; + sha256 = "1cfc03684pwxydms5ld7y75msaw5w4y5hhdpyi36xj17y4wf1drw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -261722,6 +262174,8 @@ self: { pname = "skylighting-extensions"; version = "1.0.0.0"; sha256 = "1wi9vai606gf25m3q4p4ilwm8d2m7p5xk0wczq34h9pamfhcaqic"; + revision = "2"; + editedCabalFile = "0i1rwlvy92dlr71wl9n6rly4kry90lynbs3gn1l0gg75d0scbpkq"; libraryHaskellDepends = [ base containers skylighting skylighting-modding text ]; @@ -265297,6 +265751,7 @@ self: { ]; description = "Generate CSV Exports of your Solana Staking Rewards"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "solana-staking-csvs"; }) {}; @@ -265966,8 +266421,8 @@ self: { }: mkDerivation { pname = "spade"; - version = "0.1.0.7"; - sha256 = "02pih7d5jv231gj674rilyfkbc27his7ibs50whkjqnfbf673fzl"; + version = "0.1.0.8"; + sha256 = "000cpyz9bvjf7rw2w0vwi4m6jj1hmdiq1qxs1039yrnfx7pq36r1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -268351,8 +268806,8 @@ self: { pname = "stack"; version = "2.9.1"; sha256 = "01020dx89m07qmjs58vs2kidhkzq3106md08w6c65bzxvlf6kcwk"; - revision = "2"; - editedCabalFile = "14k4b8cn52bdl4n181afq8zqycl8nb4mv8vsg636c6b4s9yc053w"; + revision = "3"; + editedCabalFile = "1i0ddb17kzxvlv3xpgyi3acsi21h6iadwwv21ih063cdk9ilysxg"; configureFlags = [ "-fdisable-git-info" "-fhide-dependency-versions" "-fsupported-build" @@ -271543,6 +271998,30 @@ self: { license = lib.licenses.mit; }) {}; + "streaming-commons_0_2_2_5" = callPackage + ({ mkDerivation, array, async, base, bytestring, deepseq, directory + , gauge, hspec, hspec-discover, network, process, QuickCheck + , random, stm, text, transformers, unix, zlib + }: + mkDerivation { + pname = "streaming-commons"; + version = "0.2.2.5"; + sha256 = "0157xjz8nhr65y9rm7rdf3pnjlrsgaqam7qfg7nqq91bvfdq2l6a"; + libraryHaskellDepends = [ + array async base bytestring directory network process random stm + text transformers unix zlib + ]; + testHaskellDepends = [ + array async base bytestring deepseq hspec network QuickCheck text + unix zlib + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ base bytestring deepseq gauge text ]; + description = "Common lower-level functions needed by various streaming data libraries"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "streaming-concurrency" = callPackage ({ mkDerivation, base, exceptions, hspec, HUnit, lifted-async , monad-control, QuickCheck, quickcheck-instances, stm, streaming @@ -275219,8 +275698,8 @@ self: { }: mkDerivation { pname = "swagger2"; - version = "2.8.4"; - sha256 = "11gpnh7dg6bqbvgwfw9xri3l08kvxply698arpz62ix38qyf14iv"; + version = "2.8.5"; + sha256 = "16r9657sp6zvj4jcs0yp7nvgnhjfsla29knaimkddsqa3k8qf1v6"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ aeson aeson-pretty base base-compat-batteries bytestring containers @@ -275240,6 +275719,39 @@ self: { license = lib.licenses.bsd3; }) {}; + "swagger2_2_8_6" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries + , bytestring, Cabal, cabal-doctest, containers, cookie, doctest + , generics-sop, Glob, hashable, hspec, hspec-discover, http-media + , HUnit, insert-ordered-containers, lens, mtl, network, optics-core + , optics-th, QuickCheck, quickcheck-instances, scientific + , template-haskell, text, time, transformers, unordered-containers + , utf8-string, uuid-types, vector + }: + mkDerivation { + pname = "swagger2"; + version = "2.8.6"; + sha256 = "1cvz98cn4xzr7fx8q7rwr22l7l95z1cvq7qpm1shwca5j4gq5084"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + aeson aeson-pretty base base-compat-batteries bytestring containers + cookie generics-sop hashable http-media insert-ordered-containers + lens mtl network optics-core optics-th QuickCheck scientific + template-haskell text time transformers unordered-containers + uuid-types vector + ]; + testHaskellDepends = [ + aeson base base-compat-batteries bytestring containers doctest Glob + hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck + quickcheck-instances template-haskell text time + unordered-containers utf8-string vector + ]; + testToolDepends = [ hspec-discover ]; + description = "Swagger 2.0 data model"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "swapper" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, happstack-data , happstack-state, parallel, tokyocabinet @@ -275273,8 +275785,8 @@ self: { }: mkDerivation { pname = "swarm"; - version = "0.1.0.1"; - sha256 = "1zcyyi1vd0y21qyfcx3kcbp6bwcn6n33my44g1jkqqvfxigp4zya"; + version = "0.1.1.0"; + sha256 = "18w84a0hb975qcwsd9kcji88h6xyrf7dbqcvfjdhhgbbd4y8pv9h"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -275583,8 +276095,8 @@ self: { }: mkDerivation { pname = "sydtest"; - version = "0.12.0.1"; - sha256 = "0psnv1kpai4sn7z8g0lgpmzf0myp71wp5sganvyawi8iwk88cw8w"; + version = "0.13.0.0"; + sha256 = "0msa5y6fl00qjrj08c6bccbav179f05jk9hb9lmfbffq6bc86rc5"; libraryHaskellDepends = [ async autodocodec autodocodec-yaml base bytestring containers Diff dlist envparse filepath MonadRandom mtl optparse-applicative path @@ -277778,35 +278290,36 @@ self: { }) {}; "taffybar" = callPackage - ({ mkDerivation, ansi-terminal, base, broadcast-chan, bytestring - , ConfigFile, containers, dbus, dbus-hslogger, directory, dyre - , either, enclosed-exceptions, filepath, gi-cairo - , gi-cairo-connector, gi-cairo-render, gi-gdk, gi-gdkpixbuf - , gi-gdkx11, gi-glib, gi-gtk, gi-gtk-hs, gi-pango, gtk-sni-tray - , gtk-strut, gtk3, haskell-gi, haskell-gi-base, hslogger - , HStringTemplate, http-client, http-client-tls, http-types - , multimap, old-locale, optparse-applicative, parsec, process - , rate-limit, regex-compat, safe, scotty, split - , status-notifier-item, stm, template-haskell, text, time - , time-locale-compat, time-units, transformers, transformers-base - , tuple, unix, utf8-string, X11, xdg-basedir, xdg-desktop-entry - , xml, xml-helpers, xmonad + ({ mkDerivation, aeson, ansi-terminal, base, broadcast-chan + , bytestring, conduit, ConfigFile, containers, data-default, dbus + , dbus-hslogger, directory, dyre, either, enclosed-exceptions + , filepath, gi-cairo, gi-cairo-connector, gi-cairo-render, gi-gdk + , gi-gdkpixbuf, gi-gdkx11, gi-glib, gi-gtk, gi-gtk-hs, gi-pango + , gtk-sni-tray, gtk-strut, gtk3, haskell-gi, haskell-gi-base + , hslogger, HStringTemplate, http-client, http-client-tls + , http-conduit, http-types, multimap, old-locale + , optparse-applicative, parsec, process, rate-limit, regex-compat + , safe, scotty, split, status-notifier-item, stm, template-haskell + , text, time, time-locale-compat, time-units, transformers + , transformers-base, tuple, unix, utf8-string, X11, xdg-basedir + , xdg-desktop-entry, xml, xml-helpers, xmonad }: mkDerivation { pname = "taffybar"; - version = "3.3.0"; - sha256 = "17ggcv1y3md11sccbb9mpss2qdanlkv7wy098qh28gra9kq4ibgm"; + version = "4.0.0"; + sha256 = "1rwir1jlqxby2gj4pxbhz9khn6pfgn4bn3wca6q8zyzn0vs3i2wg"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; libraryHaskellDepends = [ - ansi-terminal base broadcast-chan bytestring ConfigFile containers - dbus dbus-hslogger directory dyre either enclosed-exceptions - filepath gi-cairo gi-cairo-connector gi-cairo-render gi-gdk - gi-gdkpixbuf gi-gdkx11 gi-glib gi-gtk gi-gtk-hs gi-pango - gtk-sni-tray gtk-strut haskell-gi haskell-gi-base hslogger - HStringTemplate http-client http-client-tls http-types multimap - old-locale parsec process rate-limit regex-compat safe scotty split + aeson ansi-terminal base broadcast-chan bytestring conduit + ConfigFile containers data-default dbus dbus-hslogger directory + dyre either enclosed-exceptions filepath gi-cairo + gi-cairo-connector gi-cairo-render gi-gdk gi-gdkpixbuf gi-gdkx11 + gi-glib gi-gtk gi-gtk-hs gi-pango gtk-sni-tray gtk-strut haskell-gi + haskell-gi-base hslogger HStringTemplate http-client + http-client-tls http-conduit http-types multimap old-locale parsec + process rate-limit regex-compat safe scotty split status-notifier-item stm template-haskell text time time-locale-compat time-units transformers transformers-base tuple unix utf8-string X11 xdg-basedir xdg-desktop-entry xml xml-helpers @@ -277814,16 +278327,14 @@ self: { ]; libraryPkgconfigDepends = [ gtk3 ]; executableHaskellDepends = [ - base directory hslogger optparse-applicative + base data-default directory hslogger optparse-applicative ]; executablePkgconfigDepends = [ gtk3 ]; description = "A desktop bar similar to xmobar, but with more GUI"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "taffybar"; maintainers = [ lib.maintainers.rvl ]; - broken = true; }) {inherit (pkgs) gtk3;}; "tag-bits" = callPackage @@ -279305,14 +279816,14 @@ self: { license = lib.licenses.bsd3; }) {}; - "tasty-hedgehog_1_3_1_0" = callPackage + "tasty-hedgehog_1_4_0_0" = callPackage ({ mkDerivation, base, hedgehog, tagged, tasty , tasty-expected-failure }: mkDerivation { pname = "tasty-hedgehog"; - version = "1.3.1.0"; - sha256 = "1iq452mvd9wc9pfmjsmm848jwp3cvsk1faf2mlr21vcs0yaxvq3m"; + version = "1.4.0.0"; + sha256 = "1gcwbiqnxv7bkq48sh1d7ra3i53kdflzhpqrx4vlmhd7i69h1r4k"; libraryHaskellDepends = [ base hedgehog tagged tasty ]; testHaskellDepends = [ base hedgehog tasty tasty-expected-failure @@ -281536,6 +282047,20 @@ self: { license = lib.licenses.bsd3; }) {}; + "termbox_1_0_0" = callPackage + ({ mkDerivation, base, ki, termbox-bindings-hs }: + mkDerivation { + pname = "termbox"; + version = "1.0.0"; + sha256 = "0diqjxam4vvw8prycjrq7qvn44lihda5rwibhwwp87vn840z0j3s"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ki termbox-bindings-hs ]; + description = "termbox"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "termbox-banana" = callPackage ({ mkDerivation, base, reactive-banana, termbox }: mkDerivation { @@ -281565,6 +282090,28 @@ self: { broken = true; }) {}; + "termbox-bindings-c" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "termbox-bindings-c"; + version = "0.1.0"; + sha256 = "1q7frripz88zgcfmx2lab2vrj19gywnskng07zf7icsj9j6bdwyw"; + libraryHaskellDepends = [ base ]; + description = "termbox bindings"; + license = lib.licenses.bsd3; + }) {}; + + "termbox-bindings-hs" = callPackage + ({ mkDerivation, base, termbox-bindings-c }: + mkDerivation { + pname = "termbox-bindings-hs"; + version = "0.1.0"; + sha256 = "07m6lp997skqp04a430ynsrzdpwcczblxawvlcbizffsznkmnl64"; + libraryHaskellDepends = [ base termbox-bindings-c ]; + description = "termbox bindings"; + license = lib.licenses.bsd3; + }) {}; + "termcolor" = callPackage ({ mkDerivation, base, cli }: mkDerivation { @@ -281748,6 +282295,48 @@ self: { }) {inherit (pkgs) gtk3; inherit (pkgs) pcre2; vte_291 = pkgs.vte;}; + "termonad_4_4_0_0" = callPackage + ({ mkDerivation, adjunctions, aeson, base, Cabal, cabal-doctest + , classy-prelude, colour, constraints, containers, data-default + , directory, distributive, doctest, dyre, file-embed, filepath + , focuslist, genvalidity-containers, genvalidity-hspec, gi-gdk + , gi-gio, gi-glib, gi-gtk, gi-pango, gi-vte, gtk3, haskell-gi-base + , hedgehog, inline-c, lens, mono-traversable, pcre2, pretty-simple + , QuickCheck, tasty, tasty-hedgehog, tasty-hspec, template-haskell + , text, transformers, unordered-containers, vte_291, xml-conduit + , xml-html-qq, yaml + }: + mkDerivation { + pname = "termonad"; + version = "4.4.0.0"; + sha256 = "0xyb0z0k16mpsr5nc7a4k7w04k6skfwja25f5w329w1djrkvqfyx"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + adjunctions aeson base classy-prelude colour constraints containers + data-default directory distributive dyre file-embed filepath + focuslist gi-gdk gi-gio gi-glib gi-gtk gi-pango gi-vte + haskell-gi-base inline-c lens mono-traversable pretty-simple + QuickCheck text transformers unordered-containers xml-conduit + xml-html-qq yaml + ]; + libraryPkgconfigDepends = [ gtk3 pcre2 vte_291 ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base doctest genvalidity-containers genvalidity-hspec hedgehog lens + QuickCheck tasty tasty-hedgehog tasty-hspec template-haskell + ]; + description = "Terminal emulator configurable in Haskell"; + license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + mainProgram = "termonad"; + maintainers = [ lib.maintainers.cdepillabout ]; + }) {inherit (pkgs) gtk3; inherit (pkgs) pcre2; + vte_291 = pkgs.vte;}; + "termplot" = callPackage ({ mkDerivation, base, brick, data-default, optparse-applicative , process, split, time-units, transformers, unix, vty @@ -284700,24 +285289,21 @@ self: { }) {}; "the-snip" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec - , optparse-simple, path, path-io, rio, text, unix + ({ mkDerivation, attoparsec, base, hspec, optparse-simple, path + , path-io, rio, unix }: mkDerivation { pname = "the-snip"; - version = "0.0.0.1"; - sha256 = "087wddnzz9hxjqd057wjjvlmbzr1x65bhycnhm45aqpxcbzy63i1"; + version = "0.1.0.0"; + sha256 = "18jn9f317ayhxymr8mvjcfid4gblsjw6db04q3ah9pifarz78snx"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring path path-io rio text unix - ]; + libraryHaskellDepends = [ attoparsec base path path-io rio unix ]; executableHaskellDepends = [ - attoparsec base bytestring optparse-simple path path-io rio text - unix + attoparsec base optparse-simple path path-io rio unix ]; testHaskellDepends = [ - attoparsec base bytestring hspec path path-io rio text unix + attoparsec base hspec path path-io rio unix ]; description = "Command line tool for extracting demarcated snippets from text files"; license = lib.licenses.bsd3; @@ -292384,14 +292970,15 @@ self: { }: mkDerivation { pname = "twitchapi"; - version = "0.0.1"; - sha256 = "14yy5hbz1mxrr4pxwy62vslyx0rjkq7flmglrx5h7vzijc240jf7"; + version = "0.0.2"; + sha256 = "0lw7lr41lnm0jz3ig3y7y23348sp7mvpnihz90nh8j5iv74j7z12"; libraryHaskellDepends = [ aeson base bytestring hoauth2 http-client text time timerep uri-bytestring ]; testHaskellDepends = [ - aeson base bytestring hspec QuickCheck text time timerep + aeson base bytestring hspec http-client QuickCheck text time + timerep ]; description = "Client access to Twitch.tv API endpoints"; license = lib.licenses.bsd3; @@ -293071,8 +293658,8 @@ self: { pname = "type-level-sets"; version = "0.8.9.0"; sha256 = "1acsr7g9ssli9yil9kws47gc6h3csmk2afncyki41pipa1vsriv4"; - revision = "1"; - editedCabalFile = "0cc0ws2plharq0gvindgmkp1fs82zd43zijkh7wf0ilfnr2l17z2"; + revision = "2"; + editedCabalFile = "1pd7lblyz7frgwm473is7phv7rm9cj5ypyf2z1n1jwj0aj8mb11p"; libraryHaskellDepends = [ base ghc-prim ]; description = "Type-level sets and finite maps (with value-level counterparts)"; license = lib.licenses.bsd3; @@ -294187,8 +294774,8 @@ self: { }: mkDerivation { pname = "tzdata"; - version = "0.2.20220923.0"; - sha256 = "0wzk15hlrjpdqh796h1v120223kn1327qr0rzp13ak0y5hm1fqrw"; + version = "0.2.20221011.0"; + sha256 = "118k2zbn71cri9f7b7293hsj5vyrmz7v60a7rl0r2abgkxkf39d2"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base bytestring containers deepseq vector @@ -295406,14 +295993,33 @@ self: { license = lib.licenses.asl20; }) {}; + "unicode-data_0_4_0" = callPackage + ({ mkDerivation, base, deepseq, hspec, hspec-discover, tasty + , tasty-bench + }: + mkDerivation { + pname = "unicode-data"; + version = "0.4.0"; + sha256 = "09s1chc7g9sgvjxs6ld5m4vrkm1shf7401ywffjrx1xfdjidb428"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; + description = "Access Unicode Character Database (UCD)"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + }) {}; + "unicode-data-names" = callPackage ({ mkDerivation, base, deepseq, hspec, hspec-discover, tasty , tasty-bench, unicode-data }: mkDerivation { pname = "unicode-data-names"; - version = "0.1.0"; - sha256 = "08f071i6p13q6n9aqlibdn0zsl4b6079lml341bfydd5qj9kjmgv"; + version = "0.2.0"; + sha256 = "0i28rp5g6wmnga6i95a6cq3dhkjg3v477xwycbcl38dfwdj3iy2c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -295422,6 +296028,8 @@ self: { benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; description = "Unicode characters names and aliases"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-data-scripts" = callPackage @@ -295430,8 +296038,8 @@ self: { }: mkDerivation { pname = "unicode-data-scripts"; - version = "0.1.0"; - sha256 = "0qj2wlk85cflmpxzhgsbykqvxfis8jnp4ylpiag5wvn7ppn05040"; + version = "0.2.0"; + sha256 = "13igfgjqkkh5az5cxkqlp51ix34d9m8hgsjqc342hcbbal51zc82"; libraryHaskellDepends = [ base unicode-data ]; testHaskellDepends = [ base hspec unicode-data ]; testToolDepends = [ hspec-discover ]; @@ -295440,6 +296048,8 @@ self: { ]; description = "Unicode characters scripts"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-data-security" = callPackage @@ -295448,14 +296058,16 @@ self: { }: mkDerivation { pname = "unicode-data-security"; - version = "0.1.0"; - sha256 = "0vi1mvlzk6w11dc77hr5yq5aficisszf4mig5nrq0kp68s2jk5lv"; + version = "0.2.0"; + sha256 = "10x58l62i7bj9kmnchp1rggln40sfbsyw4pxlzbk8dmhkh5zmdlx"; libraryHaskellDepends = [ base unicode-data ]; testHaskellDepends = [ base hspec ]; testToolDepends = [ hspec-discover ]; benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; description = "Unicode security mechanisms database"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-general-category" = callPackage @@ -295560,8 +296172,8 @@ self: { pname = "unicode-transforms"; version = "0.4.0.1"; sha256 = "1z29jvli2rqkynfxni1gibl81458j7h8lrb8fg6lpnj8svhy2y1j"; - revision = "1"; - editedCabalFile = "0ml5j3j3dan7fgbyd3vgmlrij7bgszgfh244b1sppciis1v4m94p"; + revision = "2"; + editedCabalFile = "1imm3svpz2shilj2kmmmcyy5yd4c1mpmz5v1gvjrr98hrab2i9x7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -296886,6 +297498,33 @@ self: { license = lib.licenses.mit; }) {}; + "unliftio_0_2_23_0" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , directory, filepath, gauge, hspec, process, QuickCheck + , safe-exceptions, stm, time, transformers, unix, unliftio-core + }: + mkDerivation { + pname = "unliftio"; + version = "0.2.23.0"; + sha256 = "1zg4ddi4z85550abw9ijycbbjg8ddig7r0vcma8ik03dxzga71id"; + libraryHaskellDepends = [ + async base bytestring deepseq directory filepath process + safe-exceptions stm time transformers unix unliftio-core + ]; + testHaskellDepends = [ + async base bytestring containers deepseq directory filepath hspec + process QuickCheck safe-exceptions stm time transformers unix + unliftio-core + ]; + benchmarkHaskellDepends = [ + async base bytestring deepseq directory filepath gauge process + safe-exceptions stm time transformers unix unliftio-core + ]; + description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "unliftio-core" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -301006,6 +301645,8 @@ self: { pname = "verifiable-expressions"; version = "0.6.2"; sha256 = "1nrlcbimng6qf4g7h4hxg3j05kd0hlihkhp8hj5js44n29vg89qk"; + revision = "1"; + editedCabalFile = "15h6zdzqvfkh480y5yp1sfjw79pkc6iv5b8mz785p3bgrspdlvn9"; libraryHaskellDepends = [ base containers lens mtl sbv transformers union vinyl ]; @@ -301149,8 +301790,8 @@ self: { }: mkDerivation { pname = "versions"; - version = "5.0.3"; - sha256 = "1ca3m9rvx89mniipbkxz3nm49mz7s4nhqc11hpsa6hjw9ff5kcjv"; + version = "5.0.4"; + sha256 = "1zny1kkk42nxwsbjfg87kwgcz4amjbihzqqpwmr3vcwqgx06lx19"; libraryHaskellDepends = [ base deepseq hashable megaparsec parser-combinators text ]; @@ -302706,8 +303347,8 @@ self: { pname = "wai-cli"; version = "0.2.3"; sha256 = "0fflvxfc9ibkrrgqdsr89gl77b0b706a8g7ylydaqqz6z089qbi3"; - revision = "1"; - editedCabalFile = "04w3gm1fcsxlrx7px5i737g61pgf2mlw8jyn2p6nczcyrwdvvicj"; + revision = "2"; + editedCabalFile = "1dv6lvfrsjpg733ssxgxghlfddqmnm8h2lp99wxyc8iiliy62vl9"; libraryHaskellDepends = [ ansi-terminal base http-types iproute monads-tf network options stm streaming-commons transformers unix wai wai-extra warp warp-tls @@ -302884,6 +303525,8 @@ self: { pname = "wai-extra"; version = "3.1.12.1"; sha256 = "1ya4m0c2p3wxzjlmk3yasc3pm61z309hzry9d39lj5wqv93a4wn6"; + revision = "1"; + editedCabalFile = "15v9m9af34s2iz9836bd1xi0s27sffviai4ywb2g3cv33fnpnljh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -305192,6 +305835,20 @@ self: { license = lib.licenses.bsd3; }) {}; + "wd" = callPackage + ({ mkDerivation, base, directory, process }: + mkDerivation { + pname = "wd"; + version = "0.1.0.0"; + sha256 = "06ilhp2mcjs66hbjnzbkbmxagi0lqg0galv6jshin77dzml8vxqq"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base directory process ]; + description = "Run a command on a specified directory"; + license = lib.licenses.asl20; + mainProgram = "wd"; + }) {}; + "weak" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -307672,14 +308329,14 @@ self: { maintainers = [ lib.maintainers.maralorn ]; }) {}; - "witch_1_1_1_0" = callPackage + "witch_1_1_2_0" = callPackage ({ mkDerivation, base, bytestring, containers, HUnit, tagged , template-haskell, text, time, transformers }: mkDerivation { pname = "witch"; - version = "1.1.1.0"; - sha256 = "0zxrwl2dyx3p701anh29czw3fp7pk68i32g5cd1z8806zdy0c1hv"; + version = "1.1.2.0"; + sha256 = "1ahikszzypycjilz0749wwcfppk8xdc1n4q97nxbf33h13jpaxax"; libraryHaskellDepends = [ base bytestring containers tagged template-haskell text time ]; @@ -310028,6 +310685,26 @@ self: { license = lib.licenses.bsd3; }) {}; + "xdg-basedir-compliant" = callPackage + ({ mkDerivation, aeson, base, bytestring, filepath, hspec, polysemy + , polysemy-plugin, polysemy-zoo, QuickCheck, split + }: + mkDerivation { + pname = "xdg-basedir-compliant"; + version = "1.0.2"; + sha256 = "0451z9w6607ci2s3bx8q73j3fw3ff3lnjf3i4h4nkscf76m84zzl"; + libraryHaskellDepends = [ + base bytestring filepath polysemy polysemy-plugin polysemy-zoo + split + ]; + testHaskellDepends = [ + aeson base bytestring filepath hspec polysemy polysemy-plugin + polysemy-zoo QuickCheck split + ]; + description = "XDG Basedir"; + license = lib.licenses.bsd3; + }) {}; + "xdg-desktop-entry" = callPackage ({ mkDerivation, base, ConfigFile, directory, either, filepath , multimap, safe, transformers, unix @@ -310465,8 +311142,8 @@ self: { }: mkDerivation { pname = "xlsx"; - version = "1.0.0.1"; - sha256 = "1fs2xks7wcbr0idgd50kxlb35l5xy1icvkiyxm8q8772bq2zvadl"; + version = "1.1.0"; + sha256 = "09h2z1qys01lmddkacs4z3gm36dd1ndn0hw8cn3mmciyczawn2w1"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary-search bytestring conduit containers data-default deepseq dlist errors exceptions extra @@ -310500,6 +311177,8 @@ self: { testHaskellDepends = [ base ]; description = "Xlsx table cell value extraction utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xlsx-templater" = callPackage @@ -311440,17 +312119,18 @@ self: { "xmobar" = callPackage ({ mkDerivation, aeson, alsa-core, alsa-mixer, async, base - , bytestring, containers, dbus, directory, extensible-exceptions - , filepath, gauge, hinotify, hspec, http-client-tls, http-conduit - , http-types, iwlib, libmpd, libXpm, libXrandr, libXrender, mtl - , old-locale, parsec, parsec-numbers, process, regex-compat, stm - , temporary, time, timezone-olson, timezone-series, transformers - , unix, utf8-string, wirelesstools, X11, X11-xft + , bytestring, cairo, colour, containers, dbus, directory + , extensible-exceptions, filepath, gauge, hinotify, hspec + , http-client-tls, http-conduit, http-types, iwlib, libmpd, libXpm + , libXrandr, libXrender, mtl, old-locale, pango, parsec + , parsec-numbers, process, regex-compat, stm, temporary, time + , timezone-olson, timezone-series, transformers, unix, utf8-string + , wirelesstools, X11, X11-xft }: mkDerivation { pname = "xmobar"; - version = "0.44.2"; - sha256 = "0gdphjn5ll5lkb2psdsb34563wsz6g0y2gg3z8cj4jy8lvbbv808"; + version = "0.45"; + sha256 = "0p64z535lk338f247gvddc6c4326xs41ar817whdvzj2910pyn86"; configureFlags = [ "-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus" "-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris" @@ -311460,11 +312140,12 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson alsa-core alsa-mixer async base bytestring containers dbus - directory extensible-exceptions filepath hinotify http-client-tls - http-conduit http-types iwlib libmpd mtl old-locale parsec - parsec-numbers process regex-compat stm time timezone-olson - timezone-series transformers unix utf8-string X11 X11-xft + aeson alsa-core alsa-mixer async base bytestring cairo colour + containers dbus directory extensible-exceptions filepath hinotify + http-client-tls http-conduit http-types iwlib libmpd mtl old-locale + pango parsec parsec-numbers process regex-compat stm time + timezone-olson timezone-series transformers unix utf8-string X11 + X11-xft ]; librarySystemDepends = [ libXpm libXrandr libXrender wirelesstools @@ -311974,37 +312655,36 @@ self: { "xrefcheck" = callPackage ({ mkDerivation, aeson, aeson-casing, async, base, bytestring , case-insensitive, cmark-gfm, containers, data-default, directory - , directory-tree, dlist, exceptions, filepath, firefly, fmt - , ftp-client, Glob, hspec, hspec-discover, hspec-expectations - , http-client, http-types, HUnit, lens, modern-uri, mtl, o-clock - , optparse-applicative, pretty-terminal, QuickCheck, raw-strings-qq - , regex-tdfa, req, roman-numerals, tagged, tagsoup, tasty - , tasty-discover, tasty-hunit, text, text-metrics + , dlist, exceptions, filepath, firefly, fmt, ftp-client, Glob + , http-client, http-types, lens, modern-uri, mtl, o-clock + , optparse-applicative, pretty-terminal, process, raw-strings-qq + , reflection, regex-tdfa, req, tagged, tagsoup, tasty + , tasty-discover, tasty-hunit, tasty-quickcheck, text, text-metrics , th-lift-instances, time, transformers, universum, uri-bytestring , with-utf8, yaml }: mkDerivation { pname = "xrefcheck"; - version = "0.2.1"; - sha256 = "1xvz2qbchkb9p7prhc89gsmcwyl77spb0gxy9mw89c44wd12b9ns"; + version = "0.2.2"; + sha256 = "0qyl2wislma25s3n5aaqd732a2p7i9lsv4fvydm121a4r5sc5j4h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson aeson-casing async base bytestring cmark-gfm containers - data-default directory directory-tree dlist exceptions filepath fmt - ftp-client Glob http-client http-types lens modern-uri mtl o-clock - optparse-applicative pretty-terminal raw-strings-qq regex-tdfa req - roman-numerals tagsoup text text-metrics th-lift-instances time - transformers universum uri-bytestring yaml + data-default directory dlist exceptions filepath fmt ftp-client + Glob http-client http-types lens modern-uri mtl o-clock + optparse-applicative pretty-terminal process raw-strings-qq + reflection regex-tdfa req tagsoup text text-metrics + th-lift-instances time transformers universum uri-bytestring yaml ]; executableHaskellDepends = [ base bytestring universum with-utf8 ]; testHaskellDepends = [ base bytestring case-insensitive cmark-gfm containers directory - firefly fmt hspec hspec-expectations http-types HUnit modern-uri - o-clock optparse-applicative QuickCheck regex-tdfa tagged tasty - tasty-hunit time universum uri-bytestring yaml + firefly fmt http-types modern-uri o-clock optparse-applicative + reflection regex-tdfa tagged tasty tasty-hunit tasty-quickcheck + time universum uri-bytestring yaml ]; - testToolDepends = [ hspec-discover tasty-discover ]; + testToolDepends = [ tasty-discover ]; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; mainProgram = "xrefcheck"; @@ -312682,6 +313362,8 @@ self: { pname = "yaml"; version = "0.11.8.0"; sha256 = "1s0arllihjjqp65jbc8c1w5106i2infppsirvbsifpmpkf14w6pn"; + revision = "2"; + editedCabalFile = "1dix5jm3d380vjr9l6wqz54zk883kilk8rijlvjp6b13mjxwcj1l"; configureFlags = [ "-fsystem-libyaml" ]; isLibrary = true; isExecutable = true; @@ -317668,8 +318350,8 @@ self: { pname = "zip"; version = "1.7.2"; sha256 = "1c5pr3hv11dpn4ybd4742qkpqmvb9l3l7xmzlsf65wm2p8071dvj"; - revision = "1"; - editedCabalFile = "1hazf2p31rzjycci8y40zm302msr0mgvb242lww21rxrpicbzl8d"; + revision = "2"; + editedCabalFile = "0gacj2fp0yg45l5vxby0n03lza91zfykk74p6a2r3abrfmvw7kq8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03c277393424..af68606d049b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32012,10 +32012,8 @@ with pkgs; # customConfig = builtins.readFile ./tabbed.config.h; }; - # Use GHC 9.0 when this asserts starts to fire - taffybar = assert haskellPackages.taffybar.version == "3.3.0"; - callPackage ../applications/window-managers/taffybar { - inherit (haskell.packages.ghc810) ghcWithPackages taffybar; + taffybar = callPackage ../applications/window-managers/taffybar { + inherit (haskellPackages) ghcWithPackages taffybar; }; tagainijisho = libsForQt5.callPackage ../applications/office/tagainijisho {}; diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index 61e577bb31aa..baa93c2bff76 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -394,6 +394,9 @@ let compilerNames.ghc902 compilerNames.ghc924 ]; + purescript = [ + compilerNames.ghc924 + ]; purescript-cst = [ compilerNames.ghc8107 ];