lol

Merge pull request #209112 from NixOS/haskell-updates

haskellPackages: update stackage and hackage

authored by

maralorn and committed by
GitHub
be313a93 f6f44561

+1069 -384
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "78541d36393ac3dd0ffa32b4a9af15fecdefb5d1", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/78541d36393ac3dd0ffa32b4a9af15fecdefb5d1.tar.gz", 4 - "sha256": "1qwjkjlz9sw1jnsarin6803vj68bfm3iyysfwxaifga5w4dsrqcs", 5 - "msg": "Update from Hackage at 2022-12-30T22:03:31Z" 2 + "commit": "9f677e1d2267621375d22e3f6c1a25246678be4c", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/9f677e1d2267621375d22e3f6c1a25246678be4c.tar.gz", 4 + "sha256": "0y2mbj8dwfgdz5pzdq682clab10xgnqlrfv1najx53yy5jf63pcv", 5 + "msg": "Update from Hackage at 2023-01-06T18:29:38Z" 6 6 }
+2
pkgs/development/compilers/ghc/common-hadrian.nix
··· 353 353 ''; 354 354 355 355 ${if targetPlatform.isGhcjs then "configureScript" else null} = "emconfigure ./configure"; 356 + # GHC currently ships an edited config.sub so ghcjs is accepted which we can not rollback 357 + ${if targetPlatform.isGhcjs then "dontUpdateAutotoolsGnuConfigScripts" else null} = true; 356 358 357 359 # TODO(@Ericson2314): Always pass "--target" and always prefix. 358 360 configurePlatforms = [ "build" "host" ]
+3 -3
pkgs/development/haskell-modules/cabal2nix-unstable.nix
··· 8 8 }: 9 9 mkDerivation { 10 10 pname = "cabal2nix"; 11 - version = "unstable-2022-12-08"; 11 + version = "unstable-2023-01-06"; 12 12 src = fetchzip { 13 - url = "https://github.com/NixOS/cabal2nix/archive/021a48f4b4942462154b06fd81429a248638f87f.tar.gz"; 14 - sha256 = "1is1q5mqi86vzy3ni2959hr95gs9hwd5wiz92hanfli3infg00xc"; 13 + url = "https://github.com/NixOS/cabal2nix/archive/d24f4eab2352468510fb81e276aab9d62e94b561.tar.gz"; 14 + sha256 = "16d3mf4d622gns1myx9mwx39sx0l9wndybxn5ik00x0pxnmh7f36"; 15 15 }; 16 16 postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot"; 17 17 isLibrary = true;
+10 -28
pkgs/development/haskell-modules/configuration-common.nix
··· 66 66 # > https://github.com/roelvandijk/numerals 67 67 numerals = doJailbreak (dontCheck super.numerals); 68 68 69 - # Too stricut upper bound on time 70 - # https://github.com/acw/rate-limit/issues/9 71 - rate-limit = doJailbreak super.rate-limit; 72 - 73 69 # This test keeps being aborted because it runs too quietly for too long 74 70 Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2; 75 71 ··· 478 474 # https://github.com/kkardzis/curlhs/issues/6 479 475 curlhs = dontCheck super.curlhs; 480 476 481 - # Too strict upper bounds on bytestring & time 482 - # https://github.com/barrucadu/irc-conduit/issues/35 483 - irc-conduit = doJailbreak super.irc-conduit; 484 - # https://github.com/barrucadu/irc-client/issues/77 485 - irc-client = doJailbreak super.irc-client; 486 - 487 477 # https://github.com/hvr/token-bucket/issues/3 488 478 token-bucket = dontCheck super.token-bucket; 489 479 ··· 654 644 }) newer; 655 645 656 646 # * The standard libraries are compiled separately. 657 - # * We need multiple patches from master to fix compilation with 647 + # * We need a patch from master to fix compilation with 658 648 # updated dependencies (haskeline and megaparsec) which can be 659 - # removed when the next idris release (1.3.4 probably) comes 660 - # around. 649 + # removed when the next idris release comes around. 661 650 idris = self.generateOptparseApplicativeCompletions [ "idris" ] 662 - (doJailbreak (dontCheck super.idris)); 651 + (appendPatch (fetchpatch { 652 + name = "idris-libffi-0.2.patch"; 653 + url = "https://github.com/idris-lang/Idris-dev/commit/6d6017f906c5aa95594dba0fd75e7a512f87883a.patch"; 654 + hash = "sha256-wyLjqCyLh5quHMOwLM5/XjlhylVC7UuahAM79D8+uls="; 655 + }) (doJailbreak (dontCheck super.idris))); 663 656 664 657 # Too strict bound on hspec 665 658 # https://github.com/lspitzner/multistate/issues/9#issuecomment-1367853016 ··· 1357 1350 haskell-language-server = (lib.pipe super.haskell-language-server [ 1358 1351 dontCheck 1359 1352 (disableCabalFlag "stan") # Sorry stan is totally unmaintained and terrible to get to run. It only works on ghc 8.8 or 8.10 anyways … 1360 - (assert super.hls-call-hierarchy-plugin.version == "1.1.0.0"; disableCabalFlag "callHierarchy") # Disabled temporarily: https://github.com/haskell/haskell-language-server/pull/3431 1361 1353 ]).overrideScope (lself: lsuper: { 1362 - hls-call-hierarchy-plugin = null; 1363 1354 # For most ghc versions, we overrideScope Cabal in the configuration-ghc-???.nix, 1364 1355 # because some packages, like ormolu, need a newer Cabal version. 1365 1356 # ghc-paths is special because it depends on Cabal for building ··· 1977 1968 "--skip" "/toJsonSerializer/should generate valid JSON/" 1978 1969 ] ++ drv.testFlags or []; 1979 1970 }) super.hschema-aeson; 1980 - # https://github.com/ssadler/aeson-quick/issues/3 1981 - aeson-quick = overrideCabal (drv: { 1982 - testFlags = [ 1983 - "-p" "!/asLens.set/&&!/complex.set/&&!/multipleKeys.set/" 1984 - ] ++ drv.testFlags or []; 1985 - }) super.aeson-quick; 1986 1971 # https://github.com/minio/minio-hs/issues/165 1987 1972 minio-hs = overrideCabal (drv: { 1988 1973 testFlags = [ ··· 2110 2095 # https://github.com/zellige/hs-geojson/issues/29 2111 2096 geojson = dontCheck super.geojson; 2112 2097 2113 - # Support network >= 3.1.2 2114 - # https://github.com/erebe/wstunnel/pull/107 2115 - wstunnel = appendPatch (fetchpatch { 2116 - url = "https://github.com/erebe/wstunnel/pull/107/commits/47c1f62bdec1dbe77088d9e3ceb6d872f922ce34.patch"; 2117 - sha256 = "sha256-fW5bVbAGQxU/gd9zqgVNclwKraBtUjkKDek7L0c4+O0="; 2118 - }) super.wstunnel; 2098 + # Test suite doesn't compile 2099 + # https://github.com/erebe/wstunnel/issues/145 2100 + wstunnel = dontCheck super.wstunnel; 2119 2101 2120 2102 # Test data missing from sdist 2121 2103 # https://github.com/ngless-toolkit/ngless/issues/152
+3 -2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 560 560 - cabal-meta 561 561 - cabal-mon 562 562 - cabal-nirvana 563 + - cabal-plan-bounds 563 564 - cabal-progdeps 564 565 - cabalQuery 565 566 - CabalSearch ··· 853 854 - Conscript 854 855 - consistent 855 856 - console-program 857 + - constable 856 858 - const-math-ghc-plugin 857 859 - constrained 858 860 - constrained-categories ··· 2323 2325 - HLogger 2324 2326 - hlongurl 2325 2327 - hls-brittany-plugin 2326 - - hls-call-hierarchy-plugin 2327 2328 - hls-haddock-comments-plugin 2328 2329 - hls-selection-range-plugin 2329 2330 - hls-stan-plugin ··· 2661 2662 - identifiers 2662 2663 - idiii 2663 2664 - idna2008 2664 - - idris 2665 2665 - IDynamic 2666 2666 - ieee-utils 2667 2667 - iexcloud ··· 4327 4327 - rattle 4328 4328 - rattletrap 4329 4329 - raven-haskell-scotty 4330 + - raylib-imgui 4330 4331 - raz 4331 4332 - rbst 4332 4333 - rclient
+6
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 192 192 - HROOT-hist 193 193 - HROOT-io 194 194 - HROOT-math 195 + - HROOT-net 195 196 - HROOT-tree 196 197 - HRay 197 198 - HSGEP ··· 672 673 - array-forth 673 674 - arraylist 674 675 - ascii-cows 676 + - ascii-superset_1_2_4_0 675 677 - ascii-table 678 + - ascii-th_1_1_1_0 679 + - ascii_1_4_2_0 676 680 - asic 677 681 - asil 678 682 - assert4hs-hspec ··· 1027 1031 - comfort-array 1028 1032 - comfort-array-shape 1029 1033 - comfort-fftw 1034 + - comfort-glpk 1030 1035 - commsec 1031 1036 - commsec-keyexchange 1032 1037 - comonad-random ··· 1395 1400 - ewe 1396 1401 - exference 1397 1402 - exinst-aeson 1403 + - exinst-base 1398 1404 - exinst-bytes 1399 1405 - exinst-cereal 1400 1406 - exinst-deepseq
+29 -2
pkgs/development/haskell-modules/configuration-nix.nix
··· 359 359 preCheck = ''export PATH="$PWD/dist/build/ghcide:$PATH"''; 360 360 }) super.ghcide; 361 361 362 + # At least on 1.3.4 version on 32-bit architectures tasty requires 363 + # unbounded-delays via .cabal file conditions. 364 + tasty = overrideCabal (drv: { 365 + libraryHaskellDepends = 366 + (drv.libraryHaskellDepends or []) 367 + ++ lib.optionals (!(pkgs.stdenv.hostPlatform.isAarch64 368 + || pkgs.stdenv.hostPlatform.isx86_64)) [ 369 + self.unbounded-delays 370 + ]; 371 + }) super.tasty; 372 + 362 373 tasty-discover = overrideCabal (drv: { 363 374 # Depends on itself for testing 364 375 preBuild = '' ··· 800 811 # time 801 812 random = dontCheck super.random; 802 813 814 + # https://github.com/Gabriella439/nix-diff/pull/74 815 + nix-diff = overrideCabal (drv: { 816 + postPatch = '' 817 + substituteInPlace src/Nix/Diff/Types.hs \ 818 + --replace "{-# OPTIONS_GHC -Wno-orphans #-}" "{-# OPTIONS_GHC -Wno-orphans -fconstraint-solver-iterations=0 #-}" 819 + ''; 820 + }) (doJailbreak (dontCheck super.nix-diff)); 821 + 803 822 # mockery's tests depend on hspec-discover which dependso on mockery for its tests 804 823 mockery = dontCheck super.mockery; 805 824 # same for logging-facade ··· 840 859 buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; 841 860 postInstall = drv.postInstall or "" + '' 842 861 wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ 843 - pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch ] 862 + pkgs.lib.makeBinPath [ 863 + pkgs.nvchecker 864 + pkgs.nix-prefetch 865 + pkgs.nix-prefetch-docker 866 + ] 844 867 }" 845 868 ''; 846 869 }) super.nvfetcher); ··· 851 874 (overrideCabal { doCheck = pkgs.postgresql.doCheck; }) 852 875 ]; 853 876 854 - cachix = super.cachix.override { nix = pkgs.nixVersions.nix_2_10; }; 877 + cachix = super.cachix.override { 878 + nix = pkgs.nixVersions.nix_2_10; 879 + fsnotify = super.fsnotify_0_4_1_0; 880 + hnix-store-core = super.hnix-store-core_0_6_1_0; 881 + }; 855 882 856 883 hercules-ci-agent = super.hercules-ci-agent.override { nix = pkgs.nixVersions.nix_2_10; }; 857 884 hercules-ci-cnix-expr =
+14 -4
pkgs/development/haskell-modules/generic-builder.nix
··· 11 11 in 12 12 13 13 { pname 14 - , dontStrip ? (ghc.isGhcjs or false) 14 + # Note that ghc.isGhcjs != stdenv.hostPlatform.isGhcjs. 15 + # ghc.isGhcjs implies that we are using ghcjs, a project separate from GHC. 16 + # (mere) stdenv.hostPlatform.isGhcjs means that we are using GHC's JavaScript 17 + # backend. The latter is a normal cross compilation backend and needs little 18 + # special accomodation. 19 + , dontStrip ? (ghc.isGhcjs or false || stdenv.hostPlatform.isGhcjs) 15 20 , version, revision ? null 16 21 , sha256 ? null 17 22 , src ? fetchurl { url = "mirror://hackage/${pname}-${version}.tar.gz"; inherit sha256; } ··· 171 176 # Pass the "wrong" C compiler rather than none at all so packages that just 172 177 # use the C preproccessor still work, see 173 178 # https://github.com/haskell/cabal/issues/6466 for details. 174 - "--with-gcc=${(if stdenv.hasCC then stdenv else buildPackages.stdenv).cc.targetPrefix}cc" 179 + "--with-gcc=${if stdenv.hasCC then "$CC" else "$CC_FOR_BUILD"}" 175 180 ] ++ optionals stdenv.hasCC [ 176 181 "--with-ld=${stdenv.cc.bintools.targetPrefix}ld" 177 182 "--with-ar=${stdenv.cc.bintools.targetPrefix}ar" ··· 246 251 allPkgconfigDepends = pkg-configDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends ++ 247 252 optionals doCheck testPkgconfigDepends ++ optionals doBenchmark benchmarkPkgconfigDepends; 248 253 249 - depsBuildBuild = [ nativeGhc ]; 254 + depsBuildBuild = [ nativeGhc ] 255 + # CC_FOR_BUILD may be necessary if we have no C preprocessor for the host 256 + # platform. See crossCabalFlags above for more details. 257 + ++ lib.optionals (!stdenv.hasCC) [ buildPackages.stdenv.cc ]; 250 258 collectedToolDepends = 251 259 buildTools ++ libraryToolDepends ++ executableToolDepends ++ 252 260 optionals doCheck testToolDepends ++ ··· 316 324 inherit src; 317 325 318 326 inherit depsBuildBuild nativeBuildInputs; 319 - buildInputs = otherBuildInputs ++ optionals (!isLibrary) propagatedBuildInputs; 327 + buildInputs = otherBuildInputs ++ optionals (!isLibrary) propagatedBuildInputs 328 + # For patchShebangsAuto in fixupPhase 329 + ++ optionals stdenv.hostPlatform.isGhcjs [ nodejs ]; 320 330 propagatedBuildInputs = optionals isLibrary propagatedBuildInputs; 321 331 322 332 LANG = "en_US.UTF-8"; # GHC needs the locale configured during the Haddock phase.
+982 -337
pkgs/development/haskell-modules/hackage-packages.nix
··· 8416 8416 libraryHaskellDepends = [ base bytestring unix ]; 8417 8417 librarySystemDepends = [ fuse ]; 8418 8418 preConfigure = '' 8419 - sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${fuse}/lib@" HFuse.cabal 8419 + sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${lib.getLib fuse}/lib@" HFuse.cabal 8420 8420 ''; 8421 8421 description = "HFuse is a binding for the Linux FUSE library"; 8422 8422 license = lib.licenses.bsd3; ··· 9318 9318 }) {inherit (pkgs) gsl;}; 9319 9319 9320 9320 "HROOT" = callPackage 9321 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9322 - , HROOT-graf, HROOT-hist, HROOT-io, HROOT-math, HROOT-tree 9323 - , template-haskell 9321 + ({ mkDerivation, base, Cabal, HROOT-core, HROOT-graf, HROOT-hist 9322 + , HROOT-io, HROOT-math, HROOT-net, HROOT-tree, process 9324 9323 }: 9325 9324 mkDerivation { 9326 9325 pname = "HROOT"; 9327 - version = "0.9.0.1"; 9328 - sha256 = "1mc3lhwjdrwv32hbl5q6j293gmifla9hk815sxayz35g3h9pg9p8"; 9326 + version = "0.10.0.2"; 9327 + sha256 = "1si50g4dhjphg1lqji8wlihgn1wnshsarhl5gjhc8107absddbmb"; 9328 + setupHaskellDepends = [ base Cabal process ]; 9329 9329 libraryHaskellDepends = [ 9330 - base fficxx fficxx-runtime HROOT-core HROOT-graf HROOT-hist 9331 - HROOT-io HROOT-math HROOT-tree template-haskell 9330 + base HROOT-core HROOT-graf HROOT-hist HROOT-io HROOT-math HROOT-net 9331 + HROOT-tree 9332 9332 ]; 9333 9333 description = "Haskell binding to the ROOT data analysis framework"; 9334 - license = lib.licenses.lgpl21Only; 9334 + license = lib.licenses.lgpl21Plus; 9335 9335 hydraPlatforms = lib.platforms.none; 9336 9336 }) {}; 9337 9337 9338 9338 "HROOT-core" = callPackage 9339 - ({ mkDerivation, base, fficxx, fficxx-runtime, template-haskell }: 9339 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, process 9340 + , stdcxx, template-haskell 9341 + }: 9340 9342 mkDerivation { 9341 9343 pname = "HROOT-core"; 9342 - version = "0.9.0.1"; 9343 - sha256 = "1qxadv3kdd0wn3vb6jk65h9qr1ihr775zsrn2pp2z1xhlj3d8g85"; 9344 + version = "0.10.0.2"; 9345 + sha256 = "0cis7fjm1lisn9ipfxk8dkxdxdr8kpfrfp21ac2y6chcappxxpjp"; 9346 + setupHaskellDepends = [ base Cabal process ]; 9344 9347 libraryHaskellDepends = [ 9345 - base fficxx fficxx-runtime template-haskell 9348 + base fficxx fficxx-runtime stdcxx template-haskell 9346 9349 ]; 9347 9350 description = "Haskell binding to ROOT Core modules"; 9348 - license = lib.licenses.lgpl21Only; 9351 + license = lib.licenses.lgpl21Plus; 9349 9352 hydraPlatforms = lib.platforms.none; 9350 9353 broken = true; 9351 9354 }) {}; 9352 9355 9353 9356 "HROOT-graf" = callPackage 9354 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9355 - , HROOT-hist, template-haskell 9357 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9358 + , HROOT-hist, process, stdcxx, template-haskell 9356 9359 }: 9357 9360 mkDerivation { 9358 9361 pname = "HROOT-graf"; 9359 - version = "0.9.0.1"; 9360 - sha256 = "1a1i7slarqz64k8v02m6lbrjay11xsr88i2siy8gygqshp6ncf4r"; 9362 + version = "0.10.0.2"; 9363 + sha256 = "0qfcqla07cz06xw09xdh5jnsixrrl5f4l1gxsf2cg2x2nl4yvpna"; 9364 + setupHaskellDepends = [ base Cabal process ]; 9361 9365 libraryHaskellDepends = [ 9362 - base fficxx fficxx-runtime HROOT-core HROOT-hist template-haskell 9366 + base fficxx fficxx-runtime HROOT-core HROOT-hist stdcxx 9367 + template-haskell 9363 9368 ]; 9364 9369 description = "Haskell binding to ROOT Graf modules"; 9365 - license = lib.licenses.lgpl21Only; 9370 + license = lib.licenses.lgpl21Plus; 9366 9371 hydraPlatforms = lib.platforms.none; 9367 9372 }) {}; 9368 9373 9369 9374 "HROOT-hist" = callPackage 9370 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9371 - , template-haskell 9375 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9376 + , process, stdcxx, template-haskell 9372 9377 }: 9373 9378 mkDerivation { 9374 9379 pname = "HROOT-hist"; 9375 - version = "0.9.0.1"; 9376 - sha256 = "059hlsqn394hd3805hzrm85khvycwd9dnsbjrks9lmbr7sz13aad"; 9380 + version = "0.10.0.2"; 9381 + sha256 = "0xyh3xnjpfz0218jg0r67kl1frw9gf2m11bnjlaxvqlzfnrxgxr0"; 9382 + setupHaskellDepends = [ base Cabal process ]; 9377 9383 libraryHaskellDepends = [ 9378 - base fficxx fficxx-runtime HROOT-core template-haskell 9384 + base fficxx fficxx-runtime HROOT-core stdcxx template-haskell 9379 9385 ]; 9380 9386 description = "Haskell binding to ROOT Hist modules"; 9381 - license = lib.licenses.lgpl21Only; 9387 + license = lib.licenses.lgpl21Plus; 9382 9388 hydraPlatforms = lib.platforms.none; 9383 9389 }) {}; 9384 9390 9385 9391 "HROOT-io" = callPackage 9386 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9387 - , template-haskell 9392 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9393 + , process, stdcxx, template-haskell 9388 9394 }: 9389 9395 mkDerivation { 9390 9396 pname = "HROOT-io"; 9391 - version = "0.9.0.1"; 9392 - sha256 = "0jx3ikypvynpd2mfyya86jqdmjl4i12fzvsmn66yksx32hgcksqw"; 9397 + version = "0.10.0.2"; 9398 + sha256 = "0h36jpc8ljwhk6rmv6i7i8mls0s0lcii3fdjaa23r9bbrl76jgk4"; 9399 + setupHaskellDepends = [ base Cabal process ]; 9393 9400 libraryHaskellDepends = [ 9394 - base fficxx fficxx-runtime HROOT-core template-haskell 9401 + base fficxx fficxx-runtime HROOT-core stdcxx template-haskell 9395 9402 ]; 9396 9403 description = "Haskell binding to ROOT IO modules"; 9397 - license = lib.licenses.lgpl21Only; 9404 + license = lib.licenses.lgpl21Plus; 9398 9405 hydraPlatforms = lib.platforms.none; 9399 9406 }) {}; 9400 9407 9401 9408 "HROOT-math" = callPackage 9402 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9403 - , template-haskell 9409 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9410 + , process, stdcxx, template-haskell 9404 9411 }: 9405 9412 mkDerivation { 9406 9413 pname = "HROOT-math"; 9407 - version = "0.9.0.1"; 9408 - sha256 = "12cx3m67mdisi7k675gd4ifa2zmbhqywpgb1slacwzdjlqazhs96"; 9414 + version = "0.10.0.2"; 9415 + sha256 = "1sgj7lr0j7yik0x6fy6vfiv2qqw1b58yhm2z8fq765x3ypilj24m"; 9416 + setupHaskellDepends = [ base Cabal process ]; 9409 9417 libraryHaskellDepends = [ 9410 - base fficxx fficxx-runtime HROOT-core template-haskell 9418 + base fficxx fficxx-runtime HROOT-core stdcxx template-haskell 9411 9419 ]; 9412 9420 description = "Haskell binding to ROOT Math modules"; 9413 - license = lib.licenses.lgpl21Only; 9421 + license = lib.licenses.lgpl21Plus; 9414 9422 hydraPlatforms = lib.platforms.none; 9415 9423 }) {}; 9416 9424 9425 + "HROOT-net" = callPackage 9426 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9427 + , HROOT-io, process, RHTTP, stdcxx, template-haskell 9428 + }: 9429 + mkDerivation { 9430 + pname = "HROOT-net"; 9431 + version = "0.10.0.2"; 9432 + sha256 = "1lw0zkb8wmd5raa1fbjaw5l3r6kvvll72vs4rmdjqmg0rld3hgnk"; 9433 + setupHaskellDepends = [ base Cabal process ]; 9434 + libraryHaskellDepends = [ 9435 + base fficxx fficxx-runtime HROOT-core HROOT-io stdcxx 9436 + template-haskell 9437 + ]; 9438 + librarySystemDepends = [ RHTTP ]; 9439 + description = "Haskell binding to ROOT Net modules"; 9440 + license = lib.licenses.lgpl21Plus; 9441 + hydraPlatforms = lib.platforms.none; 9442 + }) {RHTTP = null;}; 9443 + 9417 9444 "HROOT-tree" = callPackage 9418 - ({ mkDerivation, base, fficxx, fficxx-runtime, HROOT-core 9419 - , template-haskell 9445 + ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core 9446 + , process, stdcxx, template-haskell 9420 9447 }: 9421 9448 mkDerivation { 9422 9449 pname = "HROOT-tree"; 9423 - version = "0.9.0.1"; 9424 - sha256 = "1whcigrfm0mmnkazby0ycgsz3x9182r00zwh569b0lbbg0m5qbj4"; 9450 + version = "0.10.0.2"; 9451 + sha256 = "1k5sfd9a02hgbxq9slsvaxw40l0i6nyvw0ihjs1v7lamsicd8b7y"; 9452 + setupHaskellDepends = [ base Cabal process ]; 9425 9453 libraryHaskellDepends = [ 9426 - base fficxx fficxx-runtime HROOT-core template-haskell 9454 + base fficxx fficxx-runtime HROOT-core stdcxx template-haskell 9427 9455 ]; 9428 9456 description = "Haskell binding to ROOT Tree modules"; 9429 - license = lib.licenses.lgpl21Only; 9457 + license = lib.licenses.lgpl21Plus; 9430 9458 hydraPlatforms = lib.platforms.none; 9431 9459 }) {}; 9432 9460 ··· 10424 10452 pname = "HaskellNet"; 10425 10453 version = "0.6.0.1"; 10426 10454 sha256 = "08rwi28q46md2d25l1h6s6hdqf8c2c47is5w5vyydbqx6pmfdc73"; 10455 + revision = "1"; 10456 + editedCabalFile = "0c5ixp7nl0h9nixr3g079wvjvs7j6hra2va5hnj93bsjbcm350k3"; 10427 10457 libraryHaskellDepends = [ 10428 10458 array base base64 bytestring cryptohash-md5 mime-mail mtl network 10429 10459 network-bsd old-time pretty text ··· 10432 10462 license = lib.licenses.bsd3; 10433 10463 }) {}; 10434 10464 10465 + "HaskellNet_0_6_0_2" = callPackage 10466 + ({ mkDerivation, array, base, base64, bytestring, cryptohash-md5 10467 + , mime-mail, mtl, network, network-bsd, old-time, pretty, text 10468 + }: 10469 + mkDerivation { 10470 + pname = "HaskellNet"; 10471 + version = "0.6.0.2"; 10472 + sha256 = "0lqdqch6qwfrf89hfmvvcna2wgvhzx02v0cwsm7bbhq258alfapj"; 10473 + libraryHaskellDepends = [ 10474 + array base base64 bytestring cryptohash-md5 mime-mail mtl network 10475 + network-bsd old-time pretty text 10476 + ]; 10477 + description = "Client support for POP3, SMTP, and IMAP"; 10478 + license = lib.licenses.bsd3; 10479 + hydraPlatforms = lib.platforms.none; 10480 + }) {}; 10481 + 10435 10482 "HaskellNet-SSL" = callPackage 10436 10483 ({ mkDerivation, base, bytestring, connection, data-default 10437 10484 , HaskellNet, network, network-bsd ··· 15706 15753 pname = "OpenGLRaw"; 15707 15754 version = "3.3.4.1"; 15708 15755 sha256 = "07nk0rgm6jcxz6yshwhv5lj5frs6371w3hdjxwa4biws2kmbs6hj"; 15756 + revision = "1"; 15757 + editedCabalFile = "15abvqkxc08lx9d44323izccfp7bqfiljnd587zn80vdvmkzs6zc"; 15709 15758 libraryHaskellDepends = [ 15710 15759 base bytestring containers fixed half text transformers 15711 15760 ]; ··· 21093 21142 pname = "TypeCompose"; 21094 21143 version = "0.9.14"; 21095 21144 sha256 = "0msss17lrya6y5xfvxl41xsqs6yr09iw6m1px4xlwin72xwly0sn"; 21096 - revision = "1"; 21097 - editedCabalFile = "1pxg6az5vkl0zvs3zdvvvnhxqawd9fkkd44jmzzzyyibppgni6x4"; 21145 + revision = "2"; 21146 + editedCabalFile = "1ghzj47mfjs1vqai93gh1mmsk92jz1bx0azfzxm0jmnwkgr3vlnh"; 21098 21147 libraryHaskellDepends = [ base base-orphans ]; 21099 21148 description = "Type composition classes & instances"; 21100 21149 license = lib.licenses.bsd3; ··· 24971 25020 }: 24972 25021 mkDerivation { 24973 25022 pname = "adhoc-fixtures"; 24974 - version = "0.1.0.0"; 24975 - sha256 = "16m8a2b2z8n3zxr8dash6k1fq16ks7vi3dza751sd12ay7m0gn2w"; 25023 + version = "0.1.0.1"; 25024 + sha256 = "1cxrk9nikkvy3c190g2vamv1f7i71v2g080fpzjp6wzspm7r32gy"; 24976 25025 libraryHaskellDepends = [ base safe-exceptions yarl ]; 24977 25026 testHaskellDepends = [ 24978 25027 base hspec hspec-core hspec-discover safe-exceptions yarl ··· 24988 25037 }: 24989 25038 mkDerivation { 24990 25039 pname = "adhoc-fixtures-hspec"; 24991 - version = "0.1.0.0"; 24992 - sha256 = "0xzgq11lwm66wi3sdlxxpqjgv9wfrysjvn28zyrjrq791vmlg0p9"; 25040 + version = "0.1.0.1"; 25041 + sha256 = "0vd882cna6p7bn58ynmiih9jjv4az0kxf3294v1cl7gw7hclmaqk"; 24993 25042 libraryHaskellDepends = [ adhoc-fixtures base hspec yarl ]; 24994 25043 testHaskellDepends = [ 24995 25044 adhoc-fixtures base hspec hspec-core hspec-discover safe-exceptions ··· 35050 35099 pname = "ascii"; 35051 35100 version = "1.2.4.0"; 35052 35101 sha256 = "1rsv9ah0jvf66w3k4smh67wpbm03xl4pdyj8svmdy49hbpihimwi"; 35102 + revision = "2"; 35103 + editedCabalFile = "00pw1px9ggp6aq9pvimxj9q746b74cgc0pz4rn22q40mdqjadhwl"; 35053 35104 libraryHaskellDepends = [ 35054 35105 ascii-case ascii-char ascii-group ascii-numbers ascii-predicates 35055 35106 ascii-superset ascii-th base bytestring text ··· 35059 35110 license = lib.licenses.asl20; 35060 35111 }) {}; 35061 35112 35113 + "ascii_1_4_2_0" = callPackage 35114 + ({ mkDerivation, ascii-case, ascii-caseless, ascii-char 35115 + , ascii-group, ascii-numbers, ascii-predicates, ascii-superset 35116 + , ascii-th, base, bytestring, hspec, text 35117 + }: 35118 + mkDerivation { 35119 + pname = "ascii"; 35120 + version = "1.4.2.0"; 35121 + sha256 = "0ql2g9fapm9vzdfpnvax7884cl80s1s61ki98mmy6mjxszlry9jp"; 35122 + libraryHaskellDepends = [ 35123 + ascii-case ascii-caseless ascii-char ascii-group ascii-numbers 35124 + ascii-predicates ascii-superset ascii-th base bytestring text 35125 + ]; 35126 + testHaskellDepends = [ 35127 + ascii-case ascii-caseless ascii-char ascii-group ascii-numbers 35128 + ascii-predicates ascii-superset ascii-th base bytestring hspec text 35129 + ]; 35130 + description = "The ASCII character set and encoding"; 35131 + license = lib.licenses.asl20; 35132 + hydraPlatforms = lib.platforms.none; 35133 + }) {}; 35134 + 35062 35135 "ascii-art-to-unicode" = callPackage 35063 35136 ({ mkDerivation, base, comonad, doctest, strict }: 35064 35137 mkDerivation { ··· 35085 35158 testHaskellDepends = [ ascii-char base hspec ]; 35086 35159 description = "ASCII letter case"; 35087 35160 license = lib.licenses.asl20; 35161 + }) {}; 35162 + 35163 + "ascii-case_1_0_1_2" = callPackage 35164 + ({ mkDerivation, ascii-char, base, hashable, hspec }: 35165 + mkDerivation { 35166 + pname = "ascii-case"; 35167 + version = "1.0.1.2"; 35168 + sha256 = "17gqpc65ffy4ipf0bhrs5nyqcmn6fxpx859m03wzm5m2y7ki67nd"; 35169 + libraryHaskellDepends = [ ascii-char base hashable ]; 35170 + testHaskellDepends = [ ascii-char base hspec ]; 35171 + description = "ASCII letter case"; 35172 + license = lib.licenses.asl20; 35173 + hydraPlatforms = lib.platforms.none; 35088 35174 }) {}; 35089 35175 35090 35176 "ascii-caseless" = callPackage ··· 35113 35199 license = lib.licenses.asl20; 35114 35200 }) {}; 35115 35201 35116 - "ascii-char_1_0_0_17" = callPackage 35202 + "ascii-char_1_0_1_0" = callPackage 35117 35203 ({ mkDerivation, base, hashable, hspec }: 35118 35204 mkDerivation { 35119 35205 pname = "ascii-char"; 35120 - version = "1.0.0.17"; 35121 - sha256 = "1562gkfvrcjygs9qpyswsk25d4m2pxblmmbb0hw8jsaml2jwsyss"; 35206 + version = "1.0.1.0"; 35207 + sha256 = "1fls3yw3gs36hwqp32pn7mfibkspx5a80k32wybzc3hfp4qyymlv"; 35122 35208 libraryHaskellDepends = [ base hashable ]; 35123 35209 testHaskellDepends = [ base hspec ]; 35124 35210 description = "A Char type representing an ASCII character"; ··· 35169 35255 license = lib.licenses.asl20; 35170 35256 }) {}; 35171 35257 35258 + "ascii-group_1_0_0_15" = callPackage 35259 + ({ mkDerivation, ascii-char, base, hashable, hedgehog }: 35260 + mkDerivation { 35261 + pname = "ascii-group"; 35262 + version = "1.0.0.15"; 35263 + sha256 = "006b4idi63hz8x54a5fmx5isypdvif8q4ijf274dr93n0c9wh1di"; 35264 + libraryHaskellDepends = [ ascii-char base hashable ]; 35265 + testHaskellDepends = [ ascii-char base hedgehog ]; 35266 + description = "ASCII character groups"; 35267 + license = lib.licenses.asl20; 35268 + hydraPlatforms = lib.platforms.none; 35269 + }) {}; 35270 + 35172 35271 "ascii-holidays" = callPackage 35173 35272 ({ mkDerivation, base, random, random-shuffle, terminfo, time }: 35174 35273 mkDerivation { ··· 35206 35305 license = lib.licenses.asl20; 35207 35306 }) {}; 35208 35307 35209 - "ascii-numbers_1_1_0_1" = callPackage 35308 + "ascii-numbers_1_1_0_2" = callPackage 35210 35309 ({ mkDerivation, ascii-case, ascii-char, ascii-superset, base 35211 35310 , bytestring, hashable, hedgehog, invert, text 35212 35311 }: 35213 35312 mkDerivation { 35214 35313 pname = "ascii-numbers"; 35215 - version = "1.1.0.1"; 35216 - sha256 = "1zb37db0vpcnh63izq9m62p2an1w496ljh7d196k0i1w76j2jhiy"; 35314 + version = "1.1.0.2"; 35315 + sha256 = "0dqqnqrn3hvmjgakm6vzbidlik4p483wcslcwr60qbxa1v5lmznv"; 35316 + revision = "2"; 35317 + editedCabalFile = "19x9mh11pb7j4ykf9vicprn6mlhcb9gwsk82gh5yk366k4r172d7"; 35217 35318 libraryHaskellDepends = [ 35218 35319 ascii-case ascii-char ascii-superset base bytestring hashable text 35219 35320 ]; ··· 35240 35341 license = lib.licenses.asl20; 35241 35342 }) {}; 35242 35343 35243 - "ascii-predicates_1_0_1_1" = callPackage 35344 + "ascii-predicates_1_0_1_2" = callPackage 35244 35345 ({ mkDerivation, ascii-char, base, hedgehog }: 35245 35346 mkDerivation { 35246 35347 pname = "ascii-predicates"; 35247 - version = "1.0.1.1"; 35248 - sha256 = "1r8kd5p17jd46298wp7b1rvfg86g752k2x45ppqikrbkqv9vkvmc"; 35348 + version = "1.0.1.2"; 35349 + sha256 = "0awk97iib6rzrpsh7322f09sj6rkmhkn1hrgsw0zxq0w0bfp7kyj"; 35249 35350 libraryHaskellDepends = [ ascii-char base ]; 35250 35351 testHaskellDepends = [ ascii-char base hedgehog ]; 35251 35352 description = "Various categorizations of ASCII characters"; ··· 35315 35416 license = lib.licenses.asl20; 35316 35417 }) {}; 35317 35418 35318 - "ascii-superset_1_0_1_14" = callPackage 35319 - ({ mkDerivation, ascii-char, base, bytestring, hashable, hedgehog 35320 - , text 35419 + "ascii-superset_1_2_4_0" = callPackage 35420 + ({ mkDerivation, ascii-case, ascii-caseless, ascii-char, base 35421 + , bytestring, hashable, hspec, text 35321 35422 }: 35322 35423 mkDerivation { 35323 35424 pname = "ascii-superset"; 35324 - version = "1.0.1.14"; 35325 - sha256 = "1zggxgxwdc8cd224dgmrq0bijgi0adv233ysnpaw97sa9m6mgmb6"; 35425 + version = "1.2.4.0"; 35426 + sha256 = "0gh7k9fjh5l2a8xdd964gd4fy0lmfz9y0pnfykx7wiqiqirv2v4y"; 35326 35427 libraryHaskellDepends = [ 35327 - ascii-char base bytestring hashable text 35428 + ascii-case ascii-caseless ascii-char base bytestring hashable text 35429 + ]; 35430 + testHaskellDepends = [ 35431 + ascii-case ascii-caseless ascii-char base hspec text 35328 35432 ]; 35329 - testHaskellDepends = [ ascii-char base hedgehog text ]; 35330 35433 description = "Representing ASCII with refined supersets"; 35331 35434 license = lib.licenses.asl20; 35332 35435 hydraPlatforms = lib.platforms.none; ··· 35369 35472 license = lib.licenses.asl20; 35370 35473 }) {}; 35371 35474 35372 - "ascii-th_1_0_0_12" = callPackage 35373 - ({ mkDerivation, ascii-char, ascii-superset, base, bytestring 35374 - , hedgehog, template-haskell, text 35475 + "ascii-th_1_1_1_0" = callPackage 35476 + ({ mkDerivation, ascii-case, ascii-caseless, ascii-char 35477 + , ascii-superset, base, bytestring, hspec, template-haskell, text 35375 35478 }: 35376 35479 mkDerivation { 35377 35480 pname = "ascii-th"; 35378 - version = "1.0.0.12"; 35379 - sha256 = "1kdqkd7sq8kb8ymy4p45w39ndr7z2jcjy9c5ws227hrhglam9pcy"; 35481 + version = "1.1.1.0"; 35482 + sha256 = "1jfjj7rir0bbbasvdb11ymcpjk4zv0br5sk2839hnnlgam9a75g5"; 35483 + revision = "1"; 35484 + editedCabalFile = "06dsa4nrpvy1sm4hr4q6ydgjizf4r7s9xvlc9ra4f8mawsq85zx6"; 35380 35485 libraryHaskellDepends = [ 35381 - ascii-char ascii-superset base template-haskell 35486 + ascii-case ascii-caseless ascii-char ascii-superset base 35487 + template-haskell 35382 35488 ]; 35383 35489 testHaskellDepends = [ 35384 - ascii-char ascii-superset base bytestring hedgehog text 35490 + ascii-case ascii-caseless ascii-char ascii-superset base bytestring 35491 + hspec text 35385 35492 ]; 35386 35493 description = "Template Haskell support for ASCII"; 35387 35494 license = lib.licenses.asl20; ··· 37737 37844 license = lib.licenses.mit; 37738 37845 }) {}; 37739 37846 37847 + "autodocodec-yaml_0_2_0_3" = callPackage 37848 + ({ mkDerivation, autodocodec, autodocodec-schema, base, bytestring 37849 + , containers, path, path-io, safe-coloured-text, scientific, text 37850 + , unordered-containers, vector, yaml 37851 + }: 37852 + mkDerivation { 37853 + pname = "autodocodec-yaml"; 37854 + version = "0.2.0.3"; 37855 + sha256 = "00cf3zz0jgnqq45rkpf5a9jlds16rgfc15ndhv1fgq7yz935g93f"; 37856 + libraryHaskellDepends = [ 37857 + autodocodec autodocodec-schema base bytestring containers path 37858 + path-io safe-coloured-text scientific text unordered-containers 37859 + vector yaml 37860 + ]; 37861 + description = "Autodocodec interpreters for yaml"; 37862 + license = lib.licenses.mit; 37863 + hydraPlatforms = lib.platforms.none; 37864 + }) {}; 37865 + 37740 37866 "autoexporter" = callPackage 37741 37867 ({ mkDerivation, base, Cabal, directory, filepath }: 37742 37868 mkDerivation { ··· 38391 38517 mainProgram = "aws-cloudfront-signed-cookies"; 38392 38518 }) {}; 38393 38519 38520 + "aws-cloudfront-signed-cookies_0_2_0_12" = callPackage 38521 + ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types 38522 + , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog 38523 + , lens, lens-aeson, neat-interpolation, optparse-applicative, pem 38524 + , text, time, vector 38525 + }: 38526 + mkDerivation { 38527 + pname = "aws-cloudfront-signed-cookies"; 38528 + version = "0.2.0.12"; 38529 + sha256 = "1gdam3h8ir1lz8phhj03ckiv0f371xl79adi4kz2yqk2ayvcixhv"; 38530 + isLibrary = true; 38531 + isExecutable = true; 38532 + libraryHaskellDepends = [ 38533 + aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring 38534 + bytestring cookie cryptonite lens lens-aeson optparse-applicative 38535 + pem text time vector 38536 + ]; 38537 + executableHaskellDepends = [ base ]; 38538 + testHaskellDepends = [ base hedgehog neat-interpolation ]; 38539 + description = "Generate signed cookies for AWS CloudFront"; 38540 + license = lib.licenses.mit; 38541 + hydraPlatforms = lib.platforms.none; 38542 + mainProgram = "aws-cloudfront-signed-cookies"; 38543 + }) {}; 38544 + 38394 38545 "aws-cloudfront-signer" = callPackage 38395 38546 ({ mkDerivation, asn1-encoding, asn1-types, base, base64-bytestring 38396 38547 , bytestring, crypto-pubkey-types, RSA, time ··· 46486 46637 }: 46487 46638 mkDerivation { 46488 46639 pname = "blockfrost-api"; 46489 - version = "0.7.0.0"; 46490 - sha256 = "0s2ri7g6gxfkcvpf5z7s08qhs60snbpxz75gjaw9bab3h49aadnc"; 46640 + version = "0.7.1.0"; 46641 + sha256 = "0dy2xspnmy9487zgjaws250kp5qnip3ir8qwnn57ah92h3z1w0mj"; 46491 46642 libraryHaskellDepends = [ 46492 46643 aeson base bytestring containers data-default-class deriving-aeson 46493 46644 lens QuickCheck quickcheck-instances safe-money servant ··· 46511 46662 }: 46512 46663 mkDerivation { 46513 46664 pname = "blockfrost-client"; 46514 - version = "0.7.0.0"; 46515 - sha256 = "19gf6shsjikhrbd898504vapii2x49h7pnzv86r1k45ypmibhira"; 46665 + version = "0.7.1.0"; 46666 + sha256 = "1cr3zb69hradfc02di523vhykp0y8v8mpyzc37xw8i3phrgasw57"; 46516 46667 isLibrary = true; 46517 46668 isExecutable = true; 46518 46669 libraryHaskellDepends = [ ··· 51720 51871 }: 51721 51872 mkDerivation { 51722 51873 pname = "cabal-cache"; 51723 - version = "1.0.5.5"; 51724 - sha256 = "0474z8cw2wikqg3bnsxqj4rxy13n5l8p06fq72l4klh01s8i1qfl"; 51874 + version = "1.0.5.4"; 51875 + sha256 = "15jg140ly7rska7v8ihvd383q9lj4i5c18rzjad4yi8f78jjciqb"; 51725 51876 isLibrary = true; 51726 51877 isExecutable = true; 51727 51878 libraryHaskellDepends = [ ··· 52541 52692 description = "Library and utility for processing cabal's plan.json file"; 52542 52693 license = lib.licenses.gpl2Plus; 52543 52694 mainProgram = "cabal-plan"; 52695 + }) {}; 52696 + 52697 + "cabal-plan-bounds" = callPackage 52698 + ({ mkDerivation, base, bytestring, cabal-plan, Cabal-syntax 52699 + , containers, optparse-applicative, text 52700 + }: 52701 + mkDerivation { 52702 + pname = "cabal-plan-bounds"; 52703 + version = "0.1.0.1"; 52704 + sha256 = "1s8ljyp8bi0h637abxq4ma2m5bx8cpiw5ib6n50npprycv9h3v04"; 52705 + isLibrary = false; 52706 + isExecutable = true; 52707 + executableHaskellDepends = [ 52708 + base bytestring cabal-plan Cabal-syntax containers 52709 + optparse-applicative text 52710 + ]; 52711 + description = "Derives cabal bounds from build plans"; 52712 + license = lib.licenses.bsd2; 52713 + hydraPlatforms = lib.platforms.none; 52714 + mainProgram = "cabal-plan-bounds"; 52715 + broken = true; 52544 52716 }) {}; 52545 52717 52546 52718 "cabal-progdeps" = callPackage ··· 53269 53441 , cachix-api, concurrent-extra, conduit, conduit-extra 53270 53442 , conduit-zstd, containers, cookie, cryptonite, dhall, directory 53271 53443 , ed25519, either, extra, filepath, fsnotify 53272 - , hercules-ci-cnix-store, here, hspec, hspec-discover, http-client 53273 - , http-client-tls, http-conduit, http-types, inline-c-cpp, katip 53274 - , lukko, lzma-conduit, megaparsec, memory, mmorph, netrc, nix 53275 - , optparse-applicative, pretty-terminal, prettyprinter, process 53276 - , protolude, resourcet, retry, safe-exceptions, servant 53277 - , servant-auth, servant-auth-client, servant-client 53278 - , servant-client-core, servant-conduit, stm, stm-chans, stm-conduit 53279 - , systemd, temporary, text, time, unix, unordered-containers 53280 - , uri-bytestring, uuid, vector, versions, websockets, wuss 53444 + , hercules-ci-cnix-store, here, hnix-store-core, hspec 53445 + , hspec-discover, http-client, http-client-tls, http-conduit 53446 + , http-types, inline-c-cpp, katip, lukko, lzma-conduit, megaparsec 53447 + , memory, mmorph, netrc, nix, optparse-applicative, pretty-terminal 53448 + , prettyprinter, process, protolude, resourcet, retry 53449 + , safe-exceptions, servant, servant-auth, servant-auth-client 53450 + , servant-client, servant-client-core, servant-conduit, stm 53451 + , stm-chans, stm-conduit, systemd, temporary, text, time, unix 53452 + , unordered-containers, uri-bytestring, uuid, vector, versions 53453 + , websockets, wuss 53281 53454 }: 53282 53455 mkDerivation { 53283 53456 pname = "cachix"; 53284 - version = "1.1"; 53285 - sha256 = "1pqh02jqkd90zxjfyjknavr8zly5yp046ac727klxq2x8gw9hq5r"; 53457 + version = "1.2"; 53458 + sha256 = "1fvm565651rd0wlx3rhsrm3x8fa1jjvpkp9xgrcj8pnpi5dsn07w"; 53286 53459 isLibrary = true; 53287 53460 isExecutable = true; 53288 53461 libraryHaskellDepends = [ 53289 53462 aeson async base base64-bytestring bytestring cachix-api 53290 53463 concurrent-extra conduit conduit-extra conduit-zstd containers 53291 53464 cookie cryptonite dhall directory ed25519 either extra filepath 53292 - fsnotify hercules-ci-cnix-store here http-client http-client-tls 53293 - http-conduit http-types inline-c-cpp katip lukko lzma-conduit 53294 - megaparsec memory mmorph netrc optparse-applicative pretty-terminal 53295 - prettyprinter process protolude resourcet retry safe-exceptions 53296 - servant servant-auth servant-auth-client servant-client 53297 - servant-client-core servant-conduit stm stm-chans stm-conduit 53298 - systemd temporary text time unix unordered-containers 53465 + fsnotify hercules-ci-cnix-store here hnix-store-core http-client 53466 + http-client-tls http-conduit http-types inline-c-cpp katip lukko 53467 + lzma-conduit megaparsec memory mmorph netrc optparse-applicative 53468 + pretty-terminal prettyprinter process protolude resourcet retry 53469 + safe-exceptions servant servant-auth servant-auth-client 53470 + servant-client servant-client-core servant-conduit stm stm-chans 53471 + stm-conduit systemd temporary text time unix unordered-containers 53299 53472 uri-bytestring uuid vector versions websockets wuss 53300 53473 ]; 53301 53474 libraryPkgconfigDepends = [ nix ]; ··· 53325 53498 }: 53326 53499 mkDerivation { 53327 53500 pname = "cachix-api"; 53328 - version = "1.1"; 53329 - sha256 = "19zh0znah72mqkb4ns4288wq0y02r4ah0pbfvn68lrc02yjf9bhs"; 53501 + version = "1.2"; 53502 + sha256 = "1i3z0arn8cwglbsq8kxzcpp2ghypv7i03crpplbn0myk8wzflxdy"; 53330 53503 libraryHaskellDepends = [ 53331 53504 aeson async base base16-bytestring bytestring conduit cookie 53332 53505 cryptonite deepseq deriving-aeson exceptions http-api-data ··· 54018 54191 }: 54019 54192 mkDerivation { 54020 54193 pname = "candid"; 54021 - version = "0.4"; 54022 - sha256 = "17l3qyprkn4ffnpxxh1359f61f4qpbmbxwaclxiqr8aahjsk2d2z"; 54194 + version = "0.4.0.1"; 54195 + sha256 = "14np7yakm97d6scw5ldlsjacri317wwyingwsys7987zk01dfcln"; 54023 54196 isLibrary = true; 54024 54197 isExecutable = true; 54025 54198 libraryHaskellDepends = [ ··· 57453 57626 }) {}; 57454 57627 57455 57628 "check-cfg-ambiguity" = callPackage 57456 - ({ mkDerivation, base, containers }: 57629 + ({ mkDerivation, base, containers, doctest, QuickCheck }: 57457 57630 mkDerivation { 57458 57631 pname = "check-cfg-ambiguity"; 57459 - version = "0.0.0.1"; 57460 - sha256 = "1qdg707a8yq61s5rs677yc8wp00sxdrf4vpr2r3c98q2psbkxl1n"; 57632 + version = "0.1.0.0"; 57633 + sha256 = "0iswfg7m9qnhr1128xbhaa06ai2rhnr7c781y7z92v29xd7mjyjg"; 57461 57634 libraryHaskellDepends = [ base containers ]; 57635 + testHaskellDepends = [ base doctest QuickCheck ]; 57462 57636 description = "Checks context free grammar for ambiguity using brute force up to given limit"; 57463 57637 license = lib.licenses.bsd3; 57464 57638 }) {}; ··· 60102 60276 }: 60103 60277 mkDerivation { 60104 60278 pname = "clerk"; 60105 - version = "0.1.0.1"; 60106 - sha256 = "0djxny7h6g4j49zyhak6369ycl2idd2jqy906g8frghlkvkbyy8z"; 60107 - isLibrary = true; 60108 - isExecutable = true; 60279 + version = "0.1.0.2"; 60280 + sha256 = "0nbli8pj7v4wblbji2hqlkwbh98iiclg7vpbg6qsa91bw8p4nwmd"; 60109 60281 libraryHaskellDepends = [ 60110 60282 base bytestring containers data-default lens mtl text time 60111 60283 transformers xlsx 60112 60284 ]; 60113 - executableHaskellDepends = [ 60114 - base bytestring containers data-default lens mtl text time 60115 - transformers xlsx 60116 - ]; 60117 60285 description = "Declaratively describe spreadsheets and generate xlsx"; 60118 60286 license = lib.licenses.bsd3; 60119 - mainProgram = "clerk"; 60120 60287 }) {}; 60121 60288 60122 60289 "cless" = callPackage ··· 61628 61795 pname = "co-log-concurrent"; 61629 61796 version = "0.5.1.0"; 61630 61797 sha256 = "07qmx9z03vmgq2cgz4352fsav7r1nx8n7svmrhg2lkdiyp0j7a59"; 61798 + revision = "2"; 61799 + editedCabalFile = "1ldh0c0927ay8wpamybaw66cz4rz3jskv8iwvxlxw8mmr4pwyvk0"; 61631 61800 libraryHaskellDepends = [ base co-log-core stm ]; 61632 61801 description = "Asynchronous backend for co-log library"; 61633 61802 license = lib.licenses.mpl20; ··· 62151 62320 ({ mkDerivation, base, profunctors }: 62152 62321 mkDerivation { 62153 62322 pname = "coercible-subtypes"; 62154 - version = "0.2.0.0"; 62155 - sha256 = "0n8g69l3iwcy588yj29b7qsac8n8cl44ibb62a36x9n2jpgz5xif"; 62156 - revision = "1"; 62157 - editedCabalFile = "09573n1g66j1zqipjp5mzspbkzyijwqhgx6xjn0jlf69vglx22rj"; 62323 + version = "0.3.0.0"; 62324 + sha256 = "14swbn5509wb46iwgp2lj8hqi3ca82jacgq028cmwz35zsc1zjds"; 62158 62325 libraryHaskellDepends = [ base profunctors ]; 62159 62326 description = "Coercible but only in one direction"; 62160 62327 license = lib.licenses.bsd3; ··· 63237 63404 hydraPlatforms = lib.platforms.none; 63238 63405 }) {}; 63239 63406 63407 + "comfort-glpk" = callPackage 63408 + ({ mkDerivation, base, comfort-array, deepseq 63409 + , doctest-exitcode-stdio, doctest-lib, glpk, glpk-headers 63410 + , non-empty, QuickCheck, utility-ht 63411 + }: 63412 + mkDerivation { 63413 + pname = "comfort-glpk"; 63414 + version = "0.0"; 63415 + sha256 = "16cg5bc1a04zz23bhgfai9bgllwdkl975j9l7r9im8l9qn7ah1xy"; 63416 + libraryHaskellDepends = [ 63417 + base comfort-array deepseq glpk-headers non-empty utility-ht 63418 + ]; 63419 + librarySystemDepends = [ glpk ]; 63420 + testHaskellDepends = [ 63421 + base comfort-array doctest-exitcode-stdio doctest-lib QuickCheck 63422 + utility-ht 63423 + ]; 63424 + description = "Linear Programming using GLPK and comfort-array"; 63425 + license = lib.licenses.bsd3; 63426 + hydraPlatforms = lib.platforms.none; 63427 + }) {inherit (pkgs) glpk;}; 63428 + 63240 63429 "comfort-graph" = callPackage 63241 63430 ({ mkDerivation, base, containers, doctest-exitcode-stdio 63242 63431 , QuickCheck, semigroups, transformers, utility-ht ··· 66977 67166 broken = true; 66978 67167 }) {}; 66979 67168 67169 + "constable" = callPackage 67170 + ({ mkDerivation, base, doctest }: 67171 + mkDerivation { 67172 + pname = "constable"; 67173 + version = "0.1.0.0"; 67174 + sha256 = "0hz63w3h7if70701kzclvcjr1310ycfcm9y46xfv8mgbs4kjp2xx"; 67175 + libraryHaskellDepends = [ base ]; 67176 + testHaskellDepends = [ base doctest ]; 67177 + description = "A safe interface for Const summarization"; 67178 + license = lib.licenses.bsd3; 67179 + hydraPlatforms = lib.platforms.none; 67180 + broken = true; 67181 + }) {}; 67182 + 66980 67183 "constaparser" = callPackage 66981 67184 ({ mkDerivation, attoparsec, base, bytestring, vector }: 66982 67185 mkDerivation { ··· 68361 68564 license = lib.licenses.mit; 68362 68565 }) {}; 68363 68566 68567 + "cookie_0_4_6" = callPackage 68568 + ({ mkDerivation, base, bytestring, data-default-class, deepseq 68569 + , HUnit, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text 68570 + , time 68571 + }: 68572 + mkDerivation { 68573 + pname = "cookie"; 68574 + version = "0.4.6"; 68575 + sha256 = "1ajbcsk4k0jc6v2fqn36scs6l8wa6fq46gd54pak75rbqdbajhcc"; 68576 + libraryHaskellDepends = [ 68577 + base bytestring data-default-class deepseq text time 68578 + ]; 68579 + testHaskellDepends = [ 68580 + base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck 68581 + text time 68582 + ]; 68583 + description = "HTTP cookie parsing and rendering"; 68584 + license = lib.licenses.mit; 68585 + hydraPlatforms = lib.platforms.none; 68586 + }) {}; 68587 + 68364 68588 "cookies" = callPackage 68365 68589 ({ mkDerivation, base, bytestring, chronos, hashable, text, time }: 68366 68590 mkDerivation { ··· 70021 70245 }: 70022 70246 mkDerivation { 70023 70247 pname = "crc32c"; 70024 - version = "0.0.0"; 70025 - sha256 = "1y008mi1livbm6rpc4rj4nnrkwqqm7xk92sdf14r5iqwj8nnh209"; 70248 + version = "0.1.0"; 70249 + sha256 = "0b7minx4d0801nbyryz9jx680hlbrx6incwnhrz7g0dgpw0fhw0b"; 70026 70250 libraryHaskellDepends = [ base bytestring ]; 70027 70251 libraryToolDepends = [ c2hs ]; 70028 70252 testHaskellDepends = [ ··· 71631 71855 pname = "csound-catalog"; 71632 71856 version = "0.7.6"; 71633 71857 sha256 = "0gida0g314hl8nyn5ybbv57yjf10mhjmsdmhk5vgblvhnc95ks36"; 71858 + revision = "1"; 71859 + editedCabalFile = "0jjpnm5v161d0g36kd9jqqasfzq2g2qaqn95pyb87bkrsrhrqnac"; 71634 71860 libraryHaskellDepends = [ 71635 71861 base csound-expression csound-sampler sharc-timbre transformers 71636 71862 ]; ··· 71661 71887 pname = "csound-expression"; 71662 71888 version = "5.4.3"; 71663 71889 sha256 = "00hd0sb1787cx7yppg2f3zkd3y8d75fsmf460qnsxc77m4qw5388"; 71890 + revision = "1"; 71891 + editedCabalFile = "0fd6ln4kgf3cvj396l5w4zzl5zfkaf6ylqhly86lajr72mypf1nr"; 71664 71892 libraryHaskellDepends = [ 71665 71893 base Boolean colour containers csound-expression-dynamic 71666 71894 csound-expression-opcodes csound-expression-typed data-default ··· 71680 71908 pname = "csound-expression-dynamic"; 71681 71909 version = "0.3.9"; 71682 71910 sha256 = "0cj1g7x06y9b8dky6k2dixv8gxxrcdjvlr8big5fld34w8k39cn6"; 71911 + revision = "2"; 71912 + editedCabalFile = "061j05spmhh9nsk77f75bqnh75l0w3xhyv1897rkfpp9gz9k5rrv"; 71683 71913 libraryHaskellDepends = [ 71684 71914 array base Boolean containers data-default data-fix data-fix-cse 71685 71915 deriving-compat hashable transformers wl-pprint ··· 71698 71928 pname = "csound-expression-opcodes"; 71699 71929 version = "0.0.5.1"; 71700 71930 sha256 = "0h1a9yklsqbykhdinmk8znm7kfg0jd1k394cx2lirpdxn136kbcm"; 71931 + revision = "1"; 71932 + editedCabalFile = "1jia50zyv8kp0x66igy3bzmhgdgw87cc75gjsw2q1lmd7l82pxky"; 71701 71933 libraryHaskellDepends = [ 71702 71934 base csound-expression-dynamic csound-expression-typed transformers 71703 71935 ]; ··· 71716 71948 pname = "csound-expression-typed"; 71717 71949 version = "0.2.7"; 71718 71950 sha256 = "1mh1mfyi2vx8ykyc1ca8vpbi545fkp7f0ss5nw6dkykl6zm7pj6d"; 71951 + revision = "1"; 71952 + editedCabalFile = "05vfq1cjznkpaxsficvdccn47z5qa69ykx1ff43zyri5bab3zqzq"; 71719 71953 enableSeparateDataOutput = true; 71720 71954 libraryHaskellDepends = [ 71721 71955 base Boolean colour containers csound-expression-dynamic ··· 71733 71967 pname = "csound-sampler"; 71734 71968 version = "0.0.10.1"; 71735 71969 sha256 = "1c2g83a0n4y1fvq3amj9m2hygg9rbpl5x8zsicb52qjm7vjing2i"; 71970 + revision = "1"; 71971 + editedCabalFile = "09x2bb3ar7c1av0n7988405i3canmk8jxb8a59jn2zdrm0fh7jlz"; 71736 71972 libraryHaskellDepends = [ base csound-expression transformers ]; 71737 71973 description = "A musical sampler based on Csound"; 71738 71974 license = lib.licenses.bsd3; ··· 71816 72052 71817 72053 "css-selectors" = callPackage 71818 72054 ({ mkDerivation, aeson, alex, array, base, binary, blaze-markup 71819 - , bytestring, data-default, Decimal, happy, hashable, QuickCheck 71820 - , shakespeare, template-haskell, test-framework 72055 + , bytestring, data-default-class, Decimal, deepseq, happy, hashable 72056 + , QuickCheck, shakespeare, template-haskell, test-framework 71821 72057 , test-framework-quickcheck2, text, zlib 71822 72058 }: 71823 72059 mkDerivation { 71824 72060 pname = "css-selectors"; 71825 - version = "0.4.0.3"; 71826 - sha256 = "1jz7s5lpfgs6axzkmwp2is1mhsn8jsb52ahxv8my07lx0yvy1g7v"; 72061 + version = "0.5.0.0"; 72062 + sha256 = "0k51bs3dqfzrq76fa37z8f9n02nw9gkvb04l1yzbcs3a2fvwdnsq"; 71827 72063 libraryHaskellDepends = [ 71828 - aeson array base binary blaze-markup bytestring data-default 71829 - Decimal hashable QuickCheck shakespeare template-haskell text zlib 72064 + aeson array base binary blaze-markup bytestring data-default-class 72065 + Decimal deepseq hashable QuickCheck shakespeare template-haskell 72066 + text zlib 71830 72067 ]; 71831 72068 libraryToolDepends = [ alex happy ]; 71832 72069 testHaskellDepends = [ ··· 73050 73287 license = lib.licenses.mit; 73051 73288 }) {}; 73052 73289 73290 + "d10_1_0_1_2" = callPackage 73291 + ({ mkDerivation, base, hashable, hedgehog, template-haskell }: 73292 + mkDerivation { 73293 + pname = "d10"; 73294 + version = "1.0.1.2"; 73295 + sha256 = "138mhpl9yhaxbd98m1n5g8h4skbb4agyf7igl1ar3mr6snfhilas"; 73296 + libraryHaskellDepends = [ 73297 + base hashable hedgehog template-haskell 73298 + ]; 73299 + testHaskellDepends = [ base hashable hedgehog template-haskell ]; 73300 + doHaddock = false; 73301 + description = "Digits 0-9"; 73302 + license = lib.licenses.mit; 73303 + hydraPlatforms = lib.platforms.none; 73304 + }) {}; 73305 + 73053 73306 "d3d11binding" = callPackage 73054 73307 ({ mkDerivation, base, c-storable-deriving, d3d11, D3DCompiler 73055 73308 , d3dx11, d3dxof, dxgi, dxguid, vect, Win32 ··· 76975 77228 }: 76976 77229 mkDerivation { 76977 77230 pname = "debug-me"; 76978 - version = "1.20220324"; 76979 - sha256 = "0zpg45bfqnlcnxh8kg2yy336qq9zb01g0ypqf7s2la33kxgck8n5"; 77231 + version = "1.20221231"; 77232 + sha256 = "1bwbrxgnsjd1n9za0c1hlsrciq75zkjp1vbs3vzz0m6pj0j405li"; 76980 77233 isLibrary = false; 76981 77234 isExecutable = true; 76982 77235 setupHaskellDepends = [ base Cabal filepath ]; ··· 80096 80349 pname = "diagrams-cairo"; 80097 80350 version = "1.4.2"; 80098 80351 sha256 = "094vavgsfn7hxn2h7phvmx82wdhw51vqqv29p8hsvmijf1gxa7c1"; 80099 - revision = "2"; 80100 - editedCabalFile = "0hn1bbssknzqz3b8r281d4ibzv3fx3n33vaqcixajhcb87wnsi10"; 80352 + revision = "3"; 80353 + editedCabalFile = "094l4p8kwqbpdrgmkpy93znljl94la7spkmsd2v3lrc8c4i7r022"; 80101 80354 libraryHaskellDepends = [ 80102 80355 array base bytestring cairo colour containers data-default-class 80103 80356 diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl ··· 83549 83802 }: 83550 83803 mkDerivation { 83551 83804 pname = "dnf-repo"; 83552 - version = "0.5.2"; 83553 - sha256 = "0h3ik35jr1x142lsdififxkh6zz8c0frw3vvfn4nzg7cx5dxa1ng"; 83805 + version = "0.5.3"; 83806 + sha256 = "0ffg7zajfjfr8r3v33kv0ajv8yx2zl7mm83k1haa94ng85k5b5mm"; 83554 83807 isLibrary = false; 83555 83808 isExecutable = true; 83556 83809 enableSeparateDataOutput = true; ··· 84433 84686 license = lib.licenses.mit; 84434 84687 }) {}; 84435 84688 84689 + "doctest-parallel_0_3_0" = callPackage 84690 + ({ mkDerivation, base, base-compat, Cabal, code-page, containers 84691 + , deepseq, directory, exceptions, filepath, ghc, ghc-paths, Glob 84692 + , hspec, hspec-core, HUnit, mockery, process, QuickCheck, random 84693 + , setenv, silently, stringbuilder, syb, template-haskell 84694 + , transformers, unordered-containers 84695 + }: 84696 + mkDerivation { 84697 + pname = "doctest-parallel"; 84698 + version = "0.3.0"; 84699 + sha256 = "121ql1pygbs1cars5mva7lxa96aq0fhn27n3vnn5zqrvdypn3ys4"; 84700 + libraryHaskellDepends = [ 84701 + base base-compat Cabal code-page containers deepseq directory 84702 + exceptions filepath ghc ghc-paths Glob process random syb 84703 + template-haskell transformers unordered-containers 84704 + ]; 84705 + testHaskellDepends = [ 84706 + base base-compat code-page containers deepseq directory exceptions 84707 + filepath ghc ghc-paths hspec hspec-core HUnit mockery process 84708 + QuickCheck setenv silently stringbuilder syb transformers 84709 + ]; 84710 + doHaddock = false; 84711 + description = "Test interactive Haskell examples"; 84712 + license = lib.licenses.mit; 84713 + hydraPlatforms = lib.platforms.none; 84714 + }) {}; 84715 + 84436 84716 "doctest-prop" = callPackage 84437 84717 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 84438 84718 mkDerivation { ··· 94147 94427 }) {}; 94148 94428 94149 94429 "exinst" = callPackage 94150 - ({ mkDerivation, base, binary, bytestring, constraints, deepseq 94151 - , hashable, profunctors, QuickCheck, singletons, tasty, tasty-hunit 94152 - , tasty-quickcheck 94430 + ({ mkDerivation, base, binary, constraints, deepseq, hashable 94431 + , profunctors, QuickCheck, singletons 94153 94432 }: 94154 94433 mkDerivation { 94155 94434 pname = "exinst"; 94156 - version = "0.8"; 94157 - sha256 = "08axj8yqnqbmxq4yi0fy2rffnkn7lcab2j13b9qlwl5ykc2jrhfh"; 94435 + version = "0.9"; 94436 + sha256 = "13qsqv1wmz30xvmzznndvzcy2y4qsc52vf21crjrixp38y8in80r"; 94158 94437 libraryHaskellDepends = [ 94159 94438 base binary constraints deepseq hashable profunctors QuickCheck 94160 94439 singletons 94161 94440 ]; 94162 - testHaskellDepends = [ 94163 - base binary bytestring constraints deepseq hashable profunctors 94164 - QuickCheck singletons tasty tasty-hunit tasty-quickcheck 94165 - ]; 94166 94441 description = "Dependent pairs and their instances"; 94167 94442 license = lib.licenses.bsd3; 94168 94443 hydraPlatforms = lib.platforms.none; ··· 94171 94446 94172 94447 "exinst-aeson" = callPackage 94173 94448 ({ mkDerivation, aeson, base, bytestring, constraints, exinst 94174 - , QuickCheck, singletons, tasty, tasty-quickcheck 94449 + , exinst-base, QuickCheck, singletons, tasty, tasty-quickcheck 94175 94450 }: 94176 94451 mkDerivation { 94177 94452 pname = "exinst-aeson"; 94178 - version = "0.7.1"; 94179 - sha256 = "1rl9sg6bqac944dh4v6xish6fw6x5mr6a937nyq0yrjmg8d3gswp"; 94453 + version = "0.9"; 94454 + sha256 = "0d4nlx02rr4km0n2g1sc7qk3dzqcbh57lmw3baw3g83xfwmq20r9"; 94180 94455 libraryHaskellDepends = [ 94181 94456 aeson base constraints exinst singletons 94182 94457 ]; 94183 94458 testHaskellDepends = [ 94184 - aeson base bytestring exinst QuickCheck tasty tasty-quickcheck 94459 + aeson base bytestring exinst exinst-base QuickCheck tasty 94460 + tasty-quickcheck 94461 + ]; 94462 + description = "@exinst@ support for @aeson@ package"; 94463 + license = lib.licenses.bsd3; 94464 + hydraPlatforms = lib.platforms.none; 94465 + }) {}; 94466 + 94467 + "exinst-base" = callPackage 94468 + ({ mkDerivation, base, binary, bytestring, constraints, deepseq 94469 + , exinst, hashable, QuickCheck, singletons, singletons-base, tasty 94470 + , tasty-quickcheck 94471 + }: 94472 + mkDerivation { 94473 + pname = "exinst-base"; 94474 + version = "0.9"; 94475 + sha256 = "0kv7qxd2brzfbwpiihvwz7ph3vc6g0aysba897brxiifjvr602v0"; 94476 + libraryHaskellDepends = [ 94477 + base constraints exinst singletons singletons-base 94478 + ]; 94479 + testHaskellDepends = [ 94480 + base binary bytestring deepseq exinst hashable QuickCheck tasty 94481 + tasty-quickcheck 94185 94482 ]; 94186 - description = "Dependent pairs and their instances"; 94483 + description = "@exinst@ support for @base@ package"; 94187 94484 license = lib.licenses.bsd3; 94188 94485 hydraPlatforms = lib.platforms.none; 94189 94486 }) {}; 94190 94487 94191 94488 "exinst-bytes" = callPackage 94192 94489 ({ mkDerivation, base, binary, bytes, bytestring, cereal 94193 - , constraints, exinst, exinst-cereal, QuickCheck, singletons, tasty 94194 - , tasty-quickcheck 94490 + , constraints, exinst, exinst-base, exinst-cereal, QuickCheck 94491 + , singletons, tasty, tasty-quickcheck 94195 94492 }: 94196 94493 mkDerivation { 94197 94494 pname = "exinst-bytes"; 94198 - version = "0.7.1"; 94199 - sha256 = "0carx1qbs97pxj9bq6splar46myfjz8l0imqmy2nr868sf7an7q5"; 94495 + version = "0.9"; 94496 + sha256 = "0nla51kwdlspwya5vq8nc52px3f75is4n7qy6xmncsdffmr6bbcl"; 94200 94497 libraryHaskellDepends = [ 94201 94498 base bytes constraints exinst singletons 94202 94499 ]; 94203 94500 testHaskellDepends = [ 94204 - base binary bytes bytestring cereal exinst exinst-cereal QuickCheck 94205 - tasty tasty-quickcheck 94501 + base binary bytes bytestring cereal exinst exinst-base 94502 + exinst-cereal QuickCheck tasty tasty-quickcheck 94206 94503 ]; 94207 - description = "Dependent pairs and their instances"; 94504 + description = "@exinst@ support for @bytes@ package"; 94208 94505 license = lib.licenses.bsd3; 94209 94506 hydraPlatforms = lib.platforms.none; 94210 94507 }) {}; 94211 94508 94212 94509 "exinst-cereal" = callPackage 94213 94510 ({ mkDerivation, base, binary, bytestring, cereal, constraints 94214 - , exinst, QuickCheck, singletons, tasty, tasty-quickcheck 94511 + , exinst, exinst-base, QuickCheck, singletons, tasty 94512 + , tasty-quickcheck 94215 94513 }: 94216 94514 mkDerivation { 94217 94515 pname = "exinst-cereal"; 94218 - version = "0.7.1"; 94219 - sha256 = "1ffya75sjy1b60a2c10zymshc8qi1b79rzgpa2mpvlr0glf5i32d"; 94516 + version = "0.9"; 94517 + sha256 = "19pnrh0z7xyx75hdkk6xqp88j45n2nndnsgc2hz2fxwqyly08cbz"; 94220 94518 libraryHaskellDepends = [ 94221 94519 base cereal constraints exinst singletons 94222 94520 ]; 94223 94521 testHaskellDepends = [ 94224 - base binary bytestring cereal exinst QuickCheck tasty 94522 + base binary bytestring cereal exinst exinst-base QuickCheck tasty 94225 94523 tasty-quickcheck 94226 94524 ]; 94227 - description = "Dependent pairs and their instances"; 94525 + description = "@exinst@ support for @cereal@ package"; 94228 94526 license = lib.licenses.bsd3; 94229 94527 hydraPlatforms = lib.platforms.none; 94230 94528 }) {}; ··· 94256 94554 }) {}; 94257 94555 94258 94556 "exinst-serialise" = callPackage 94259 - ({ mkDerivation, base, binary, constraints, exinst, QuickCheck 94260 - , serialise, singletons, tasty, tasty-quickcheck 94557 + ({ mkDerivation, base, binary, constraints, exinst, exinst-base 94558 + , QuickCheck, serialise, singletons, tasty, tasty-quickcheck 94261 94559 }: 94262 94560 mkDerivation { 94263 94561 pname = "exinst-serialise"; 94264 - version = "0.7.1"; 94265 - sha256 = "06fqhxcqwam7160i2m0hsmbdkb0q21kv0vy5azilrbphhz4ycfvp"; 94562 + version = "0.9"; 94563 + sha256 = "0c6hbffyfjbrg3gfdd9wy8yvpwfffb9z9szwivqabr8yigdbhx0d"; 94266 94564 libraryHaskellDepends = [ 94267 94565 base constraints exinst serialise singletons 94268 94566 ]; 94269 94567 testHaskellDepends = [ 94270 - base binary exinst QuickCheck serialise tasty tasty-quickcheck 94568 + base binary exinst exinst-base QuickCheck serialise tasty 94569 + tasty-quickcheck 94271 94570 ]; 94272 94571 description = "Dependent pairs and their instances"; 94273 94572 license = lib.licenses.bsd3; ··· 102867 103166 license = lib.licenses.mpl20; 102868 103167 }) {}; 102869 103168 103169 + "free-applicative-t" = callPackage 103170 + ({ mkDerivation, base, free, hedgehog, transformers }: 103171 + mkDerivation { 103172 + pname = "free-applicative-t"; 103173 + version = "0.1.0.0"; 103174 + sha256 = "15bamiy453fl4a2vygjwfywyqwkd46ddxn2v7g4r0y1v7z3y56yn"; 103175 + libraryHaskellDepends = [ base free ]; 103176 + testHaskellDepends = [ base hedgehog transformers ]; 103177 + description = "Free Applicative Transformer"; 103178 + license = lib.licenses.bsd3; 103179 + }) {}; 103180 + 102870 103181 "free-categories" = callPackage 102871 103182 ({ mkDerivation, base }: 102872 103183 mkDerivation { ··· 106518 106829 }: 106519 106830 mkDerivation { 106520 106831 pname = "gemcap"; 106521 - version = "0.1.0"; 106522 - sha256 = "0173dhqdcfkkrlj3x3m0fml4rk3sfmiflwfp9bnpja7iq9br2vhf"; 106832 + version = "0.1.0.1"; 106833 + sha256 = "16ggh7axw9di8b9mwl4hjiqkhl2cqmr9lkd330gshwy8xrrc5ig0"; 106523 106834 libraryHaskellDepends = [ 106524 106835 base bytestring io-streams network tcp-streams text tls 106525 106836 transformers x509 ··· 108877 109188 mainProgram = "gh-pocket-knife"; 108878 109189 }) {}; 108879 109190 108880 - "ghc_9_4_2" = callPackage 109191 + "ghc_9_4_4" = callPackage 108881 109192 ({ mkDerivation, alex, array, base, binary, bytestring, Cabal 108882 109193 , containers, deepseq, deriveConstants, directory, exceptions 108883 109194 , filepath, genprimopcode, ghc-boot, ghc-heap, ghci, happy, hpc ··· 108886 109197 }: 108887 109198 mkDerivation { 108888 109199 pname = "ghc"; 108889 - version = "9.4.2"; 108890 - sha256 = "1xqcc807pdlm2108iz138dh90ppa3v9swb0nfd790va1xvqdvn4c"; 109200 + version = "9.4.4"; 109201 + sha256 = "0s97l24miwwi0i9c1jgf7rqlmlc13qfncvp56d8wax4jzjlaa99c"; 108891 109202 setupHaskellDepends = [ base Cabal directory filepath process ]; 108892 109203 libraryHaskellDepends = [ 108893 109204 array base binary bytestring containers deepseq directory ··· 111455 111766 ]; 111456 111767 libraryPkgconfigDepends = [ cairo ]; 111457 111768 preCompileBuildDriver = '' 111458 - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 111769 + PKG_CONFIG_PATH+=":${lib.getDev cairo}/lib/pkgconfig" 111459 111770 setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 111460 111771 ''; 111461 111772 description = "Cairo bindings"; ··· 112472 112783 ]; 112473 112784 libraryPkgconfigDepends = [ cairo pango ]; 112474 112785 preCompileBuildDriver = '' 112475 - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 112786 + PKG_CONFIG_PATH+=":${lib.getDev cairo}/lib/pkgconfig" 112476 112787 setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 112477 112788 ''; 112478 112789 description = "Pango bindings"; ··· 112499 112810 ]; 112500 112811 libraryPkgconfigDepends = [ cairo pango ]; 112501 112812 preCompileBuildDriver = '' 112502 - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 112813 + PKG_CONFIG_PATH+=":${lib.getDev cairo}/lib/pkgconfig" 112503 112814 setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 112504 112815 ''; 112505 112816 description = "PangoCairo bindings"; ··· 119691 120002 pname = "graphql-client"; 119692 120003 version = "1.2.1"; 119693 120004 sha256 = "02wrwb5vgj4px6m178wmfzzy1d2h6018wj106n0j4lzbxyh107iy"; 120005 + revision = "1"; 120006 + editedCabalFile = "0483nnw03ddv94w02ffr93p5h4aabyv738fbf4qp1v0lrzd54v5k"; 119694 120007 isLibrary = true; 119695 120008 isExecutable = true; 119696 120009 libraryHaskellDepends = [ ··· 121838 122151 }: 121839 122152 mkDerivation { 121840 122153 pname = "h-raylib"; 121841 - version = "4.5.0.9"; 121842 - sha256 = "0mlpdfvg8vqylkl64czzc4w397zi3fmm81jvax0l3chjg3bx5i02"; 122154 + version = "4.5.0.10"; 122155 + sha256 = "0qpr04gv0zjnpigmxzls5jsx3d98cl9127z8ljy743m5j0ff5z6f"; 122156 + isLibrary = true; 122157 + isExecutable = true; 121843 122158 libraryHaskellDepends = [ base ]; 121844 122159 librarySystemDepends = [ 121845 122160 c libGL libX11 libXcursor libXi libXinerama libXrandr ··· 126488 126803 126489 126804 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126490 126805 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126491 - sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126806 + , harfbuzz, parallel, text 126492 126807 }: 126493 126808 mkDerivation { 126494 126809 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126495 - version = "1.0.0.0"; 126496 - sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126810 + version = "1.0.0.1"; 126811 + sha256 = "1icdk19js4kqpw7krk0jl5yqilc52w7wchkylqr5p2zlrm92wp6k"; 126497 126812 isLibrary = true; 126498 126813 isExecutable = true; 126499 126814 libraryHaskellDepends = [ 126500 - sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126815 + base bytestring derive-storable freetype2 text 126501 126816 ]; 126502 126817 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 126503 126818 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; ··· 127015 127330 ]; 127016 127331 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 127017 127332 license = lib.licenses.bsd3; 127333 + }) {}; 127334 + 127335 + "hashable_1_4_2_0" = callPackage 127336 + ({ mkDerivation, base, bytestring, containers, data-array-byte 127337 + , deepseq, filepath, ghc-bignum, ghc-prim, HUnit, QuickCheck 127338 + , random, test-framework, test-framework-hunit 127339 + , test-framework-quickcheck2, text, unix 127340 + }: 127341 + mkDerivation { 127342 + sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 127343 + version = "1.4.2.0"; 127344 + sha256 = "1y73606pcrs7zi6f4f07a5rkhc6620n1bx0adpa6j7xqhbm00h0v"; 127345 + libraryHaskellDepends = [ 127346 + base bytestring containers data-array-byte deepseq filepath 127347 + ghc-bignum ghc-prim text 127348 + ]; 127349 + testHaskellDepends = [ 127350 + sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 127351 + sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 127352 + ]; 127353 + sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 127354 + license = lib.licenses.bsd3; 127355 + hydraPlatforms = lib.platforms.none; 127018 127356 }) {}; 127019 127357 127020 127358 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; ··· 128473 128811 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 128474 128812 version = "1.9.0.0"; 128475 128813 sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 128814 + revision = "1"; 128815 + editedCabalFile = "19y9wid97a2c6x8cx2zq2r0asr8x0wlnvxmrj9qhfpvmk05sqrpm"; 128476 128816 isLibrary = true; 128477 128817 isExecutable = true; 128478 128818 libraryHaskellDepends = [ ··· 136366 136706 ({ mkDerivation, abstract-par, aeson, ansi-wl-pprint, array, async 136367 136707 , base, base16-bytestring, binary, brick, bytestring, cereal 136368 136708 , containers, cryptonite, data-dword, Decimal, deepseq, directory 136369 - , fgl, filemanip, filepath, free, haskeline, here, HUnit, lens 136709 + , filemanip, filepath, free, haskeline, here, HUnit, lens 136370 136710 , lens-aeson, libff, megaparsec, memory, monad-par, mtl, multiset 136371 - , operational, optparse-generic, parsec, process, QuickCheck 136711 + , operational, optparse-generic, process, QuickCheck 136372 136712 , quickcheck-instances, quickcheck-text, regex, regex-tdfa 136373 - , restless-git, rosezipper, s-cargot, scientific, secp256k1 136374 - , semver-range, smt2-parser, spool, tasty, tasty-expected-failure 136375 - , tasty-hunit, tasty-quickcheck, temporary, text, time 136376 - , transformers, tree-view, tuple, unordered-containers, vector, vty 136377 - , witherable, word-wrap, wreq 136713 + , restless-git, rosezipper, scientific, secp256k1, smt2-parser 136714 + , spool, tasty, tasty-expected-failure, tasty-hunit 136715 + , tasty-quickcheck, temporary, text, time, transformers, tree-view 136716 + , tuple, unordered-containers, vector, vty, witherable, word-wrap 136717 + , wreq 136378 136718 }: 136379 136719 mkDerivation { 136380 136720 pname = "hevm"; 136381 - version = "0.50.1"; 136382 - sha256 = "07s6p22j8cagwyni8f362c0z9cmd7l0xhh6cm0xv1g7kphnla2qp"; 136721 + version = "0.50.2"; 136722 + sha256 = "1yhz8f175z1qypbdfcnbq47bjri3lv0mc2bcfkw0zza9g09mfcaz"; 136383 136723 isLibrary = true; 136384 136724 isExecutable = true; 136385 136725 libraryHaskellDepends = [ 136386 136726 abstract-par aeson ansi-wl-pprint array async base 136387 136727 base16-bytestring binary brick bytestring cereal containers 136388 - cryptonite data-dword Decimal deepseq directory fgl filemanip 136389 - filepath free haskeline here HUnit lens lens-aeson megaparsec 136390 - memory monad-par mtl multiset operational optparse-generic parsec 136391 - process QuickCheck quickcheck-instances quickcheck-text regex 136392 - regex-tdfa restless-git rosezipper s-cargot scientific semver-range 136393 - smt2-parser spool tasty tasty-expected-failure tasty-hunit 136394 - tasty-quickcheck temporary text time transformers tree-view tuple 136395 - unordered-containers vector vty witherable word-wrap wreq 136728 + cryptonite data-dword Decimal deepseq directory filemanip filepath 136729 + free haskeline here HUnit lens lens-aeson megaparsec memory 136730 + monad-par mtl multiset operational optparse-generic process 136731 + QuickCheck quickcheck-instances quickcheck-text regex regex-tdfa 136732 + restless-git rosezipper scientific smt2-parser spool tasty 136733 + tasty-expected-failure tasty-hunit tasty-quickcheck temporary text 136734 + time transformers tree-view tuple unordered-containers vector vty 136735 + witherable word-wrap wreq 136396 136736 ]; 136397 136737 librarySystemDepends = [ libff secp256k1 ]; 136398 136738 executableHaskellDepends = [ ··· 136476 136816 testHaskellDepends = [ base base16-bytestring bytestring text ]; 136477 136817 description = "ByteString-Text hexidecimal conversions"; 136478 136818 license = lib.licenses.mit; 136819 + }) {}; 136820 + 136821 + "hex-text_0_1_0_8" = callPackage 136822 + ({ mkDerivation, base, base16-bytestring, bytestring, hspec, text 136823 + }: 136824 + mkDerivation { 136825 + pname = "hex-text"; 136826 + version = "0.1.0.8"; 136827 + sha256 = "06zp9hwvds9fss2206c34q1zv80pklhbxcyrirz1xnwl3ml28fb5"; 136828 + libraryHaskellDepends = [ base base16-bytestring bytestring text ]; 136829 + testHaskellDepends = [ 136830 + base base16-bytestring bytestring hspec text 136831 + ]; 136832 + description = "ByteString-Text hexidecimal conversions"; 136833 + license = lib.licenses.mit; 136834 + hydraPlatforms = lib.platforms.none; 136479 136835 }) {}; 136480 136836 136481 136837 "hexchat" = callPackage ··· 137146 137502 hydraPlatforms = lib.platforms.none; 137147 137503 }) {}; 137148 137504 137505 + "hgdal" = callPackage 137506 + ({ mkDerivation, base, fficxx, fficxx-runtime, gdal, stdcxx 137507 + , template-haskell 137508 + }: 137509 + mkDerivation { 137510 + pname = "hgdal"; 137511 + version = "1.0.0.0"; 137512 + sha256 = "0zfqa1rgmkch0gj15w9gqavl1lyvyi2i7jsm3n7srnrrhfchxvfb"; 137513 + libraryHaskellDepends = [ 137514 + base fficxx fficxx-runtime stdcxx template-haskell 137515 + ]; 137516 + libraryPkgconfigDepends = [ gdal ]; 137517 + description = "Haskell binding to the GDAL library"; 137518 + license = lib.licenses.bsd2; 137519 + }) {inherit (pkgs) gdal;}; 137520 + 137149 137521 "hgdbmi" = callPackage 137150 137522 ({ mkDerivation, base, directory, HUnit, parsec, process, stm 137151 137523 , template-haskell, temporary, test-framework, test-framework-hunit ··· 140721 141093 }) {}; 140722 141094 140723 141095 "hls-call-hierarchy-plugin" = callPackage 140724 - ({ mkDerivation, aeson, base, bytestring, containers, extra 140725 - , filepath, ghc, ghcide, hiedb, hls-plugin-api, hls-test-utils 140726 - , lens, lsp, lsp-test, sqlite-simple, text, unordered-containers 141096 + ({ mkDerivation, aeson, base, containers, extra, filepath, ghcide 141097 + , ghcide-test-utils, hiedb, hls-plugin-api, hls-test-utils, lens 141098 + , lsp, lsp-test, sqlite-simple, text, unordered-containers 140727 141099 }: 140728 141100 mkDerivation { 140729 141101 pname = "hls-call-hierarchy-plugin"; 140730 - version = "1.1.0.0"; 140731 - sha256 = "1010lwrgp3qs3i9rpsphfiq72d8qisvz4jn9rn09h1wdc10bl7sg"; 141102 + version = "1.2.0.0"; 141103 + sha256 = "0x5568l5n8dr7vnk12msczcabpg5ffqbqs50rg5gfj1w6n673y41"; 140732 141104 libraryHaskellDepends = [ 140733 - aeson base bytestring containers extra ghc ghcide hiedb 140734 - hls-plugin-api lens lsp sqlite-simple text unordered-containers 141105 + aeson base containers extra ghcide hiedb hls-plugin-api lens lsp 141106 + sqlite-simple text unordered-containers 140735 141107 ]; 140736 141108 testHaskellDepends = [ 140737 - aeson base containers extra filepath hls-test-utils lens lsp 140738 - lsp-test text 141109 + aeson base containers extra filepath ghcide-test-utils 141110 + hls-test-utils lens lsp lsp-test text 140739 141111 ]; 140740 141112 description = "Call hierarchy plugin for Haskell Language Server"; 140741 141113 license = lib.licenses.asl20; 140742 - hydraPlatforms = lib.platforms.none; 140743 - broken = true; 140744 141114 }) {}; 140745 141115 140746 141116 "hls-change-type-signature-plugin" = callPackage ··· 141954 142324 }: 141955 142325 mkDerivation { 141956 142326 pname = "hmp3-ng"; 141957 - version = "2.12.1"; 141958 - sha256 = "15fm6kgdlhzz8y9mhfvmhh0dqzicifv6apsiwm964qbxhgv0ww4y"; 142327 + version = "2.14.2"; 142328 + sha256 = "1qx8gy63m0q2wb4q6aifrfqmdh0vnanvxxwa47jpwv641sxbp1ck"; 141959 142329 isLibrary = false; 141960 142330 isExecutable = true; 141961 142331 executableHaskellDepends = [ ··· 141964 142334 ]; 141965 142335 executableSystemDepends = [ ncurses ]; 141966 142336 description = "A 2019 fork of an ncurses mp3 player written in Haskell"; 141967 - license = "GPL"; 142337 + license = lib.licenses.gpl2Plus; 141968 142338 mainProgram = "hmp3"; 141969 142339 }) {inherit (pkgs) ncurses;}; 141970 142340 ··· 142182 142552 ]; 142183 142553 }) {}; 142184 142554 142185 - "hnix-store-core_0_6_0_0" = callPackage 142555 + "hnix-store-core_0_6_1_0" = callPackage 142186 142556 ({ mkDerivation, algebraic-graphs, attoparsec, base 142187 142557 , base16-bytestring, base64-bytestring, binary, bytestring, cereal 142188 142558 , containers, cryptonite, directory, filepath, hashable, hspec ··· 142193 142563 }: 142194 142564 mkDerivation { 142195 142565 pname = "hnix-store-core"; 142196 - version = "0.6.0.0"; 142197 - sha256 = "1ypwkwc21dx2716chv7qpq75qs7hshy45sdbgwk1h33maisnkn88"; 142566 + version = "0.6.1.0"; 142567 + sha256 = "1bziw2avcahqn2fpzw40s74kdw9wjvcplp6r2zrg83rbh2k1x73p"; 142198 142568 libraryHaskellDepends = [ 142199 142569 algebraic-graphs attoparsec base base16-bytestring 142200 142570 base64-bytestring bytestring cereal containers cryptonite directory ··· 144758 145128 pname = "hpc-lcov"; 144759 145129 version = "1.1.0"; 144760 145130 sha256 = "009z1i0ddjx7sazybirrpw99675p1fyl84ykg4dyypa7rz81vv3z"; 144761 - revision = "1"; 144762 - editedCabalFile = "0s1zx98fsa11kl4m34vrcs421pbp5f8za29xl59zp794632jng88"; 145131 + revision = "2"; 145132 + editedCabalFile = "11sbnn7rdfm7l7k3rcw4g4mvzrbgrw1jlyx726v47j3l39n54qsn"; 144763 145133 isLibrary = true; 144764 145134 isExecutable = true; 144765 145135 libraryHaskellDepends = [ base containers hpc ]; ··· 148958 149328 license = lib.licenses.mit; 148959 149329 }) {}; 148960 149330 149331 + "hslua-module-text_1_0_3" = callPackage 149332 + ({ mkDerivation, base, hslua-core, hslua-marshalling 149333 + , hslua-packaging, tasty, tasty-hunit, tasty-lua, text 149334 + }: 149335 + mkDerivation { 149336 + pname = "hslua-module-text"; 149337 + version = "1.0.3"; 149338 + sha256 = "0gbdsld1f1qwkb311ll7c9mrvnjf7mfqfcgc9n3cnc8l5264s6kv"; 149339 + libraryHaskellDepends = [ 149340 + base hslua-core hslua-marshalling hslua-packaging text 149341 + ]; 149342 + testHaskellDepends = [ 149343 + base hslua-core hslua-packaging tasty tasty-hunit tasty-lua text 149344 + ]; 149345 + description = "Lua module for text"; 149346 + license = lib.licenses.mit; 149347 + hydraPlatforms = lib.platforms.none; 149348 + }) {}; 149349 + 148961 149350 "hslua-module-version" = callPackage 148962 149351 ({ mkDerivation, base, filepath, hslua-core, hslua-marshalling 148963 149352 , hslua-packaging, tasty, tasty-hunit, tasty-lua, text ··· 157689 158078 ]; 157690 158079 description = "Functional Programming Language with Dependent Types"; 157691 158080 license = lib.licenses.bsd3; 157692 - hydraPlatforms = lib.platforms.none; 157693 - broken = true; 157694 158081 }) {inherit (pkgs) gmp;}; 157695 158082 157696 158083 "ieee" = callPackage ··· 162664 163051 }: 162665 163052 mkDerivation { 162666 163053 pname = "irc-client"; 162667 - version = "1.1.2.2"; 162668 - sha256 = "0hhaf7xhy3q48gkp2j01jjiiz0ww9mwwjh8brbqs8phlal03ks70"; 163054 + version = "1.1.2.3"; 163055 + sha256 = "0lrlq0dr9mahhda3yh2m6xly77kcpvcw3q0sz4s295vh0mmz0ac3"; 162669 163056 libraryHaskellDepends = [ 162670 163057 base bytestring conduit connection containers contravariant 162671 163058 exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale ··· 162695 163082 }: 162696 163083 mkDerivation { 162697 163084 pname = "irc-conduit"; 162698 - version = "0.3.0.5"; 162699 - sha256 = "02ziqjzqdyaizhrrzlbq4ddkfjfjf58jvwqfzrbf0mf0f5scv9cz"; 163085 + version = "0.3.0.6"; 163086 + sha256 = "0lr3csc9hp7g7m6x54vjbwdg3yxvl4lsr6818zf6n2r5s0x1vq42"; 162700 163087 libraryHaskellDepends = [ 162701 163088 async base bytestring conduit conduit-extra connection irc irc-ctcp 162702 163089 network-conduit-tls profunctors text time tls transformers ··· 166513 166900 pname = "json-sop"; 166514 166901 version = "0.2.1"; 166515 166902 sha256 = "0kzl21669wh9vdxspliflciwrkn5wamwwyg96aqrm4ybdqscpcn4"; 166516 - revision = "1"; 166517 - editedCabalFile = "04xr0bx28hnp32w8hcqn3bfn90ncgimx1izdwh856jwgmqwj3v7b"; 166903 + revision = "2"; 166904 + editedCabalFile = "1izlsx427d3c485hlfi1agb2c7gmbnp43736694ia72y1vkcfvh0"; 166518 166905 libraryHaskellDepends = [ 166519 166906 aeson base generics-sop lens-sop tagged text time transformers 166520 166907 unordered-containers vector ··· 169653 170040 testHaskellDepends = [ base stm tasty tasty-hunit ]; 169654 170041 description = "A lightweight structured concurrency library"; 169655 170042 license = lib.licenses.bsd3; 170043 + }) {}; 170044 + 170045 + "ki-effectful" = callPackage 170046 + ({ mkDerivation, base, effectful-core, ki, stm, tasty, tasty-hunit 170047 + }: 170048 + mkDerivation { 170049 + pname = "ki-effectful"; 170050 + version = "0.1.0.0"; 170051 + sha256 = "00r7f666kzjvx54hpvq3aiq09a9zqja0x22bff94l4pdzrpx8ch2"; 170052 + libraryHaskellDepends = [ base effectful-core ki stm ]; 170053 + testHaskellDepends = [ base effectful-core stm tasty tasty-hunit ]; 170054 + description = "Adaptation of the ki library for the effectful ecosystem"; 170055 + license = lib.licenses.mit; 169656 170056 }) {}; 169657 170057 169658 170058 "ki-unlifted" = callPackage ··· 174159 174559 license = lib.licenses.bsd3; 174160 174560 }) {}; 174161 174561 174562 + "lazy-cache" = callPackage 174563 + ({ mkDerivation, base, clock, hashable, hspec, hspec-discover 174564 + , HUnit, psqueues 174565 + }: 174566 + mkDerivation { 174567 + pname = "lazy-cache"; 174568 + version = "0.2.0.0"; 174569 + sha256 = "0645xv18m0l5pzwqfg974bwg92457na95i8hkfgvhnjrsbb3ijff"; 174570 + libraryHaskellDepends = [ base clock hashable psqueues ]; 174571 + testHaskellDepends = [ base clock hashable hspec HUnit ]; 174572 + testToolDepends = [ hspec-discover ]; 174573 + description = "Library for caching IO action that leverages on GHC RTS implementation"; 174574 + license = lib.licenses.mpl20; 174575 + }) {}; 174576 + 174162 174577 "lazy-csv" = callPackage 174163 174578 ({ mkDerivation, base, bytestring }: 174164 174579 mkDerivation { ··· 174511 174926 license = lib.licenses.bsd3; 174512 174927 hydraPlatforms = lib.platforms.none; 174513 174928 broken = true; 174929 + }) {}; 174930 + 174931 + "ldtk-types" = callPackage 174932 + ({ mkDerivation, aeson, base, text }: 174933 + mkDerivation { 174934 + pname = "ldtk-types"; 174935 + version = "0.1.0.0"; 174936 + sha256 = "0gf99imncx6b50jjv6nn6zf37xxq8kimhp14lxymbi86k6xl204z"; 174937 + libraryHaskellDepends = [ aeson base text ]; 174938 + testHaskellDepends = [ aeson base text ]; 174939 + description = "Datatypes and Aeson instances for parsing LDtk"; 174940 + license = lib.licenses.bsd3; 174514 174941 }) {}; 174515 174942 174516 174943 "leaf" = callPackage ··· 177120 177547 version = "0.1.1"; 177121 177548 sha256 = "01zvk86kg726lf2vnlr7dxiz7g3xwi5a4ak9gcfbwyhynkzjmsfi"; 177122 177549 configureFlags = [ 177123 - "--extra-include-dir=${libxml2.dev}/include/libxml2" 177550 + "--extra-include-dir=${lib.getDev libxml2}/include/libxml2" 177124 177551 ]; 177125 177552 libraryHaskellDepends = [ base bytestring mtl ]; 177126 177553 librarySystemDepends = [ libxml2 ]; ··· 183028 183455 }: 183029 183456 mkDerivation { 183030 183457 pname = "lumberjack"; 183031 - version = "1.0.1.0"; 183032 - sha256 = "0xyza6k73cnqldzqaaqrrx33lwk75gd6qkp85b7byckdkvyy8akh"; 183458 + version = "1.0.2.0"; 183459 + sha256 = "1yr1l1i5snmbc7h7aykc15mkynw5jcyzx9569hs4svcd92x0lf04"; 183033 183460 isLibrary = true; 183034 183461 isExecutable = true; 183035 183462 libraryHaskellDepends = [ ··· 185806 186233 ]; 185807 186234 description = "Fast and extensible bytestring builder"; 185808 186235 license = lib.licenses.bsd3; 186236 + }) {}; 186237 + 186238 + "mason_0_2_6" = callPackage 186239 + ({ mkDerivation, array, base, bytestring, ghc-prim, network, text 186240 + }: 186241 + mkDerivation { 186242 + pname = "mason"; 186243 + version = "0.2.6"; 186244 + sha256 = "10z98igmpswwdfak4b42p5c9rx14fj9zi2j5jb3b194ihi82dnd7"; 186245 + libraryHaskellDepends = [ 186246 + array base bytestring ghc-prim network text 186247 + ]; 186248 + description = "Fast and extensible bytestring builder"; 186249 + license = lib.licenses.bsd3; 186250 + hydraPlatforms = lib.platforms.none; 185809 186251 }) {}; 185810 186252 185811 186253 "massiv" = callPackage ··· 187959 188401 license = lib.licenses.asl20; 187960 188402 }) {}; 187961 188403 188404 + "memfd_1_0_1_1" = callPackage 188405 + ({ mkDerivation, base, transformers }: 188406 + mkDerivation { 188407 + pname = "memfd"; 188408 + version = "1.0.1.1"; 188409 + sha256 = "1ngd65ixj4ydjp6aqhs1md6vck6mwyf12j5jc425gxnpvmbzwvw8"; 188410 + libraryHaskellDepends = [ base transformers ]; 188411 + description = "Open temporary anonymous Linux file handles"; 188412 + license = lib.licenses.asl20; 188413 + hydraPlatforms = lib.platforms.none; 188414 + }) {}; 188415 + 187962 188416 "meminfo" = callPackage 187963 188417 ({ mkDerivation, attoparsec, base, bytestring, containers }: 187964 188418 mkDerivation { ··· 193607 194061 ({ mkDerivation, base }: 193608 194062 mkDerivation { 193609 194063 pname = "monadplus"; 193610 - version = "1.4.2"; 193611 - sha256 = "15b5320wdpmdp5slpphnc1x4rhjch3igw245dp2jxbqyvchdavin"; 193612 - revision = "1"; 193613 - editedCabalFile = "11v5zdsb9mp1rxvgcrxcr2xnc610xi16krwa9r4i5d6njmphfbdp"; 194064 + version = "1.4.3"; 194065 + sha256 = "1gwy7kkcp696plfsbry22nvvqnainyv1n1van8yzskilz26k2yc5"; 193614 194066 libraryHaskellDepends = [ base ]; 193615 194067 description = "Haskell98 partial maps and filters over MonadPlus"; 193616 194068 license = lib.licenses.bsd3; ··· 196540 196992 pname = "mu-persistent"; 196541 196993 version = "0.3.1.0"; 196542 196994 sha256 = "0xhqp2ljgh9vjga1crqvb2gk3al3v0mw26aivd1pyi6rq9ncwcca"; 196995 + revision = "1"; 196996 + editedCabalFile = "15yhvp3snhj8b8lba5p14lgka8vsfm61pdn9m9ks661yy18f17zi"; 196543 196997 libraryHaskellDepends = [ 196544 196998 base monad-logger mu-schema persistent resource-pool resourcet 196545 196999 transformers ··· 203142 203596 }) {}; 203143 203597 203144 203598 "nix-diff" = callPackage 203145 - ({ mkDerivation, attoparsec, base, bytestring, containers 203146 - , directory, filepath, mtl, nix-derivation, optparse-applicative 203147 - , patience, process, text, unix, vector 203599 + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 203600 + , directory, filepath, generic-arbitrary, mtl, nix-derivation 203601 + , optparse-applicative, patience, process, QuickCheck 203602 + , quickcheck-instances, tasty, tasty-quickcheck, tasty-silver, text 203603 + , typed-process, uniplate, unix, vector 203148 203604 }: 203149 203605 mkDerivation { 203150 203606 pname = "nix-diff"; 203151 - version = "1.0.18"; 203152 - sha256 = "0pqz207zywcs38w8yaq5qgbsps7vx0zf2wykaxq9zs43d74ygh64"; 203153 - revision = "2"; 203154 - editedCabalFile = "06zc80l50zaa7xp7svdfj5xvflim42g4j4jdkcbx1m5irr9384s1"; 203155 - isLibrary = false; 203607 + version = "1.0.19"; 203608 + sha256 = "0iscad4ydgg1365k64bzxn15pl4jnsv17jbzda4s0fs9ff4c5ias"; 203609 + isLibrary = true; 203156 203610 isExecutable = true; 203611 + libraryHaskellDepends = [ 203612 + aeson attoparsec base bytestring containers directory filepath 203613 + generic-arbitrary mtl nix-derivation optparse-applicative patience 203614 + process QuickCheck quickcheck-instances text uniplate vector 203615 + ]; 203157 203616 executableHaskellDepends = [ 203158 - attoparsec base bytestring containers directory filepath mtl 203159 - nix-derivation optparse-applicative patience process text unix 203160 - vector 203617 + aeson base bytestring containers mtl optparse-applicative text unix 203618 + ]; 203619 + testHaskellDepends = [ 203620 + aeson base bytestring containers mtl tasty tasty-quickcheck 203621 + tasty-silver text typed-process 203161 203622 ]; 203162 203623 description = "Explain why two Nix derivations differ"; 203163 203624 license = lib.licenses.bsd3; ··· 205717 206178 }: 205718 206179 mkDerivation { 205719 206180 pname = "nvfetcher"; 205720 - version = "0.5.0.0"; 205721 - sha256 = "0kglvniiqa3plxn973sl7dww75lxar5sf8ipjmgjryv9b0wxbv30"; 206181 + version = "0.6.0.0"; 206182 + sha256 = "0hhfnz5q076z92g1m4yx7y5qsxfimngkqx9r0781hkrcdmi1g2x8"; 205722 206183 isLibrary = true; 205723 206184 isExecutable = true; 205724 206185 libraryHaskellDepends = [ ··· 206075 206536 }: 206076 206537 mkDerivation { 206077 206538 pname = "oath"; 206078 - version = "0.0"; 206079 - sha256 = "1vrspqs9inhdwavz39z0fy05kjpbklz07qm4irx6h9w1552xwb77"; 206539 + version = "0.1.1"; 206540 + sha256 = "0n9zj2ygmjnkpi9viy97fz3qsyg2gryx0kkv5rvdh8bkimspvhm4"; 206080 206541 libraryHaskellDepends = [ base stm stm-delay ]; 206081 206542 testHaskellDepends = [ 206082 206543 async base futures promise streamly unsafe-promises ··· 207671 208132 license = lib.licenses.gpl2Only; 207672 208133 }) {}; 207673 208134 208135 + "oops" = callPackage 208136 + ({ mkDerivation, base, base-compat, doctest, doctest-discover, Glob 208137 + , hedgehog, hedgehog-quickcheck, hspec, hspec-discover 208138 + , hw-hspec-hedgehog, lens, mtl, QuickCheck, template-haskell 208139 + , transformers 208140 + }: 208141 + mkDerivation { 208142 + pname = "oops"; 208143 + version = "0.1.2.0"; 208144 + sha256 = "025vgnlnilja8sn66w34iy7vc83cpidg3vcvjl1vf1inmncsydrh"; 208145 + libraryHaskellDepends = [ base mtl QuickCheck transformers ]; 208146 + testHaskellDepends = [ 208147 + base base-compat doctest doctest-discover Glob hedgehog 208148 + hedgehog-quickcheck hspec hw-hspec-hedgehog lens QuickCheck 208149 + template-haskell 208150 + ]; 208151 + testToolDepends = [ doctest-discover hspec-discover ]; 208152 + description = "Combinators for handling errors of many types in a composable way"; 208153 + license = lib.licenses.mit; 208154 + }) {}; 208155 + 207674 208156 "op" = callPackage 207675 208157 ({ mkDerivation, base, containers, doctest }: 207676 208158 mkDerivation { ··· 209131 209613 }) {}; 209132 209614 209133 209615 "openweathermap" = callPackage 209134 - ({ mkDerivation, aeson, base, directory, http-api-data, http-client 209135 - , optparse-applicative, servant, servant-client 209136 - , servant-client-core, time, xdg-basedir 209616 + ({ mkDerivation, aeson, base, bytestring, directory, http-api-data 209617 + , http-client-tls, optparse-applicative, servant, servant-client 209618 + , servant-client-core, text, time, xdg-basedir 209137 209619 }: 209138 209620 mkDerivation { 209139 209621 pname = "openweathermap"; 209140 - version = "0.2.0"; 209141 - sha256 = "1sd8rflm3zakpgm5va9rwdw9si4cbqyvdmpysw55ly6mzgvfxad1"; 209622 + version = "0.3.0"; 209623 + sha256 = "0v6gq42jms12nmprcracarj9rbmqgbfx9sr3q87r230fbzjgq4hb"; 209142 209624 isLibrary = true; 209143 209625 isExecutable = true; 209144 209626 libraryHaskellDepends = [ 209145 - aeson base http-api-data http-client servant servant-client 209146 - servant-client-core 209627 + aeson base bytestring http-api-data http-client-tls servant 209628 + servant-client servant-client-core text 209147 209629 ]; 209148 209630 executableHaskellDepends = [ 209149 209631 base directory optparse-applicative time xdg-basedir ··· 210370 210852 mainProgram = "ormolu"; 210371 210853 }) {}; 210372 210854 210373 - "ormolu_0_5_1_0" = callPackage 210374 - ({ mkDerivation, aeson, ansi-terminal, array, base, bytestring 210375 - , Cabal-syntax, containers, Diff, directory, dlist, exceptions 210855 + "ormolu_0_5_2_0" = callPackage 210856 + ({ mkDerivation, ansi-terminal, array, base, binary, bytestring 210857 + , Cabal-syntax, containers, Diff, directory, dlist, file-embed 210376 210858 , filepath, ghc-lib-parser, gitrev, hspec, hspec-discover 210377 210859 , hspec-megaparsec, megaparsec, MemoTrie, mtl, optparse-applicative 210378 - , path, path-io, QuickCheck, syb, template-haskell, temporary, text 210379 - , th-lift-instances 210860 + , path, path-io, QuickCheck, syb, temporary, text 210380 210861 }: 210381 210862 mkDerivation { 210382 210863 pname = "ormolu"; 210383 - version = "0.5.1.0"; 210384 - sha256 = "186pa7wpsqipy1vwk1h5w3a5akjknsmmkc18x4i1fvrpigbrcbw9"; 210864 + version = "0.5.2.0"; 210865 + sha256 = "1ai2wza4drirvf9pb7qsf03kii5jiayqs49c19ir93jd0ak9pi96"; 210385 210866 isLibrary = true; 210386 210867 isExecutable = true; 210387 210868 libraryHaskellDepends = [ 210388 - aeson ansi-terminal array base bytestring Cabal-syntax containers 210389 - Diff directory dlist exceptions filepath ghc-lib-parser megaparsec 210390 - MemoTrie mtl syb template-haskell text th-lift-instances 210869 + ansi-terminal array base binary bytestring Cabal-syntax containers 210870 + Diff directory dlist file-embed filepath ghc-lib-parser megaparsec 210871 + MemoTrie mtl syb text 210391 210872 ]; 210392 210873 executableHaskellDepends = [ 210393 210874 base containers filepath ghc-lib-parser gitrev optparse-applicative ··· 210395 210876 ]; 210396 210877 testHaskellDepends = [ 210397 210878 base containers directory filepath ghc-lib-parser hspec 210398 - hspec-megaparsec megaparsec path path-io QuickCheck temporary text 210879 + hspec-megaparsec path path-io QuickCheck temporary text 210399 210880 ]; 210400 210881 testToolDepends = [ hspec-discover ]; 210401 210882 description = "A formatter for Haskell source code"; ··· 213904 214385 }: 213905 214386 mkDerivation { 213906 214387 pname = "parser-unbiased-choice-monad-embedding"; 213907 - version = "0.0.0.3"; 213908 - sha256 = "0p8w52f5bmf1y9b6zw5sc8dhhbm4lf8ld59j52a50piyyyl9y0xi"; 214388 + version = "0.0.0.4"; 214389 + sha256 = "1gp44c30xj37kym32j7vkl103ks0arb13xjrsar1zmlzzafa9fhz"; 213909 214390 libraryHaskellDepends = [ base containers Earley srcloc ]; 213910 214391 testHaskellDepends = [ 213911 214392 base doctest lexer-applicative regex-applicative ··· 214819 215300 license = lib.licenses.bsd3; 214820 215301 }) {}; 214821 215302 215303 + "path-io_1_8_0" = callPackage 215304 + ({ mkDerivation, base, containers, directory, dlist, exceptions 215305 + , filepath, hspec, path, temporary, time, transformers, unix-compat 215306 + }: 215307 + mkDerivation { 215308 + pname = "path-io"; 215309 + version = "1.8.0"; 215310 + sha256 = "1iq6yj5kj8i20sr4h8rabway76hk0xmy9mi499xv22php3vb79l3"; 215311 + libraryHaskellDepends = [ 215312 + base containers directory dlist exceptions filepath path temporary 215313 + time transformers unix-compat 215314 + ]; 215315 + testHaskellDepends = [ 215316 + base directory exceptions filepath hspec path transformers 215317 + unix-compat 215318 + ]; 215319 + description = "Interface to ‘directory’ package for users of ‘path’"; 215320 + license = lib.licenses.bsd3; 215321 + hydraPlatforms = lib.platforms.none; 215322 + }) {}; 215323 + 214822 215324 "path-like" = callPackage 214823 215325 ({ mkDerivation, base, path }: 214824 215326 mkDerivation { ··· 214932 215434 pname = "paths"; 214933 215435 version = "0.2.0.0"; 214934 215436 sha256 = "18pzjlnmx7w79riig7qzyhw13jla92lals9lwayl23qr02ndna4v"; 214935 - revision = "3"; 214936 - editedCabalFile = "15h5fqql4jj950lm5yddpxczcbslckq9sg2ygdgqlmahjw8mwnnf"; 215437 + revision = "4"; 215438 + editedCabalFile = "0zf4aij0jq4g77nzgr9b54f305h9gy8yjdzbp3cmpyschxbh16pd"; 214937 215439 libraryHaskellDepends = [ 214938 215440 base bytestring deepseq directory filepath template-haskell text 214939 215441 time ··· 216866 217368 maintainers = [ lib.maintainers.psibi ]; 216867 217369 }) {}; 216868 217370 216869 - "persistent_2_14_4_3" = callPackage 217371 + "persistent_2_14_4_4" = callPackage 216870 217372 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 216871 217373 , blaze-html, bytestring, conduit, containers, criterion, deepseq 216872 217374 , fast-logger, file-embed, hspec, http-api-data, lift-type ··· 216877 217379 }: 216878 217380 mkDerivation { 216879 217381 pname = "persistent"; 216880 - version = "2.14.4.3"; 216881 - sha256 = "057jsf32csrnvfavlz3zgk70ql6y5b8xx4zkmwfg4g6ghsh8gkcv"; 217382 + version = "2.14.4.4"; 217383 + sha256 = "10i75da5rd5ydg17x93i3jkfx51cywxn37l4km1lr9p35lzhyfa3"; 216882 217384 libraryHaskellDepends = [ 216883 217385 aeson attoparsec base base64-bytestring blaze-html bytestring 216884 217386 conduit containers deepseq fast-logger http-api-data lift-type ··· 217848 218350 }: 217849 218351 mkDerivation { 217850 218352 pname = "pg-entity"; 217851 - version = "0.0.4.0"; 217852 - sha256 = "0j3q31rsqv6pl86lcdl6hwbdnbjy00lv9v2nvi7vdd18wksy85bf"; 218353 + version = "0.0.4.1"; 218354 + sha256 = "0fr0lzr7l31ai134c87jgqabw619ggj478ynq9mp1fq37hd11rbp"; 218355 + isLibrary = true; 218356 + isExecutable = true; 217853 218357 libraryHaskellDepends = [ 217854 218358 base bytestring colourista exceptions monad-control parsec 217855 218359 pg-transact postgresql-simple resource-pool safe-exceptions ··· 219548 220052 }: 219549 220053 mkDerivation { 219550 220054 pname = "ping"; 219551 - version = "0.1.0.3"; 219552 - sha256 = "1h57p53vakjxm3g6inp9wvj5pp71qb0mpcrxbaa707w8v9lyvwwi"; 220055 + version = "0.1.0.4"; 220056 + sha256 = "0kj2fh6079xy20mk6ikjvmyb19zf21nglblhzazcmcbk921bmffm"; 219553 220057 isLibrary = true; 219554 220058 isExecutable = true; 219555 220059 libraryHaskellDepends = [ ··· 222627 223131 ]; 222628 223132 description = "Polynomials"; 222629 223133 license = lib.licenses.bsd3; 223134 + }) {}; 223135 + 223136 + "poly_0_5_1_0" = callPackage 223137 + ({ mkDerivation, base, deepseq, finite-typelits, mod, primitive 223138 + , QuickCheck, quickcheck-classes, quickcheck-classes-base 223139 + , semirings, tasty, tasty-bench, tasty-quickcheck, vector 223140 + , vector-algorithms, vector-sized 223141 + }: 223142 + mkDerivation { 223143 + pname = "poly"; 223144 + version = "0.5.1.0"; 223145 + sha256 = "0ycjdan9l92glnqr0lms2kdjfs5dg9c2ky2w2rdmrc6nzzxajd9k"; 223146 + libraryHaskellDepends = [ 223147 + base deepseq finite-typelits primitive semirings vector 223148 + vector-algorithms vector-sized 223149 + ]; 223150 + testHaskellDepends = [ 223151 + base finite-typelits mod QuickCheck quickcheck-classes 223152 + quickcheck-classes-base semirings tasty tasty-quickcheck vector 223153 + vector-sized 223154 + ]; 223155 + benchmarkHaskellDepends = [ 223156 + base deepseq mod semirings tasty-bench vector 223157 + ]; 223158 + description = "Polynomials"; 223159 + license = lib.licenses.bsd3; 223160 + hydraPlatforms = lib.platforms.none; 222630 223161 }) {}; 222631 223162 222632 223163 "poly-arity" = callPackage ··· 224918 225449 license = lib.licenses.bsd3; 224919 225450 }) {inherit (pkgs) postgresql;}; 224920 225451 225452 + "postgresql-libpq_0_9_5_0" = callPackage 225453 + ({ mkDerivation, base, bytestring, Cabal, postgresql, unix }: 225454 + mkDerivation { 225455 + pname = "postgresql-libpq"; 225456 + version = "0.9.5.0"; 225457 + sha256 = "0w2l687r9z92snvd0cjyv3dxghgr5alyw0vc2c6bp2600pc2nnfi"; 225458 + setupHaskellDepends = [ base Cabal ]; 225459 + libraryHaskellDepends = [ base bytestring unix ]; 225460 + librarySystemDepends = [ postgresql ]; 225461 + testHaskellDepends = [ base bytestring ]; 225462 + description = "low-level binding to libpq"; 225463 + license = lib.licenses.bsd3; 225464 + hydraPlatforms = lib.platforms.none; 225465 + }) {inherit (pkgs) postgresql;}; 225466 + 224921 225467 "postgresql-libpq-notify" = callPackage 224922 225468 ({ mkDerivation, async, base, hspec, postgres-options 224923 225469 , postgresql-libpq, stm, text, tmp-postgres ··· 229905 230451 }: 229906 230452 mkDerivation { 229907 230453 pname = "proto-lens-jsonpb"; 229908 - version = "0.2.1"; 229909 - sha256 = "0ax5zkg9qa7mh4x38nchahr1n1x2wyaasplknig4hgza7xkcmmas"; 230454 + version = "0.2.2"; 230455 + sha256 = "1vbaq2qzva5in2fq0nlka39pqgm0xwsqdfjxikhiw8sx7aj7biy3"; 229910 230456 libraryHaskellDepends = [ 229911 230457 aeson attoparsec base base64-bytestring bytestring 229912 230458 proto-lens-runtime text vector ··· 232214 232760 pname = "qbe"; 232215 232761 version = "1.1.0.0"; 232216 232762 sha256 = "0hjllz846a7dyfrvjgqhjlkbhzbwhqdrvn3x0hijly01allcypr2"; 232763 + revision = "1"; 232764 + editedCabalFile = "0sxss7jkdp2g01wsgwb3zyrbd5bc5lcjd6vg5ygfci8bx1ikhjkc"; 232217 232765 libraryHaskellDepends = [ 232218 232766 base bytestring deepseq hashable prettyprinter text text-short 232219 232767 ]; ··· 235912 236460 ({ mkDerivation, base, stm, time, time-units }: 235913 236461 mkDerivation { 235914 236462 pname = "rate-limit"; 235915 - version = "1.4.2"; 235916 - sha256 = "0zb19vwzyj1vg890776r3bprmjzhs9kr2r1vqa42nxv9nvwvnljm"; 236463 + version = "1.4.3"; 236464 + sha256 = "0xhksvhl0cr5kfvdfnlk78jrn4kvj2h54x19ixp356b4xxijdy9x"; 235917 236465 libraryHaskellDepends = [ base stm time time-units ]; 235918 236466 description = "A basic library for rate-limiting IO actions"; 235919 236467 license = lib.licenses.bsd3; ··· 236246 236794 libraryHaskellDepends = [ base h-raylib ]; 236247 236795 description = "Haskell bindings for rlImGui"; 236248 236796 license = lib.licenses.asl20; 236797 + hydraPlatforms = lib.platforms.none; 236798 + broken = true; 236249 236799 }) {}; 236250 236800 236251 236801 "raz" = callPackage ··· 237989 238539 }: 237990 238540 mkDerivation { 237991 238541 pname = "redis-glob"; 237992 - version = "0.1.0.2"; 237993 - sha256 = "0lm0bnl562bvxl3mdh0qkjl6jj10zglmyg4qwlylx3qicpdqf4lw"; 238542 + version = "0.1.0.3"; 238543 + sha256 = "11cq30hl284cqgbsy5n4nn9aq7y84cca4skkv0ib9b6ddn97gbkf"; 237994 238544 libraryHaskellDepends = [ 237995 238545 ascii-char ascii-superset base bytestring megaparsec 237996 238546 ]; ··· 244129 244679 }: 244130 244680 mkDerivation { 244131 244681 pname = "ridley"; 244132 - version = "0.3.4.0"; 244133 - sha256 = "0ml6hcngszn6jnk0qdilxzjzjsn4i36bvr98g61dai5589892j86"; 244682 + version = "0.3.4.1"; 244683 + sha256 = "03y25hcmh38psf5gs28aa21ibkcg16d3kk2xmv073v50b14dxysr"; 244134 244684 isLibrary = true; 244135 244685 isExecutable = true; 244136 - enableSeparateDataOutput = true; 244137 244686 libraryHaskellDepends = [ 244138 244687 async auto-update base containers ekg-core ekg-prometheus-adapter 244139 244688 exceptions inline-c katip microlens microlens-th mtl process ··· 245217 245766 ({ mkDerivation, base, optparse-applicative, rollbar-client }: 245218 245767 mkDerivation { 245219 245768 pname = "rollbar-cli"; 245220 - version = "0.1.0"; 245221 - sha256 = "1fspvwhgng251m5paps2nj3x73c1bms4s9y202nbdnil0wb1wdlf"; 245769 + version = "1.0.0"; 245770 + sha256 = "17lhvd4b4jfiy577jf00zw36y01xih792ylwrpw0ih1ljj90n14z"; 245222 245771 isLibrary = true; 245223 245772 isExecutable = true; 245224 245773 libraryHaskellDepends = [ ··· 245239 245788 }: 245240 245789 mkDerivation { 245241 245790 pname = "rollbar-client"; 245242 - version = "0.1.0"; 245243 - sha256 = "18ca2mrvl7kn226jnrv2yaqwanx6spf0sg034asp5bwnhn15fvb9"; 245791 + version = "1.0.0"; 245792 + sha256 = "0jpd2cizqm17f7645s5l3nbnjmc2qprww4hr5nwdi0z22kqvvqia"; 245244 245793 isLibrary = true; 245245 245794 isExecutable = true; 245246 245795 libraryHaskellDepends = [ ··· 245288 245837 }: 245289 245838 mkDerivation { 245290 245839 pname = "rollbar-wai"; 245291 - version = "0.1.0"; 245292 - sha256 = "19a1pngqprnmpl4547vssbha4nzjj9930ln4qyv8yk4skqkvny4j"; 245840 + version = "1.0.0"; 245841 + sha256 = "0s8lnm99af4n3496axvxl05sj5g79i9gfwpgk35h4dvjqdf6kvzb"; 245293 245842 isLibrary = true; 245294 245843 isExecutable = true; 245295 245844 libraryHaskellDepends = [ ··· 245312 245861 }: 245313 245862 mkDerivation { 245314 245863 pname = "rollbar-yesod"; 245315 - version = "0.1.0"; 245316 - sha256 = "1azz0braw91mcw3gibixgpa6bd6z76k8q742qzai3xz1pivdf09f"; 245864 + version = "1.0.0"; 245865 + sha256 = "1hiaiks0qw692932hpliddk56zrz984nq7bfqh9k5ia4ymik1zbn"; 245317 245866 isLibrary = true; 245318 245867 isExecutable = true; 245319 245868 libraryHaskellDepends = [ ··· 250633 251182 pname = "sdl2"; 250634 251183 version = "2.5.4.0"; 250635 251184 sha256 = "1g35phifz49kxk48s8jmgglxhxl79cbzc1cg2qlgk0vdpxpin8ym"; 250636 - revision = "1"; 250637 - editedCabalFile = "19kr714da3lp064h1ky1bxwgkcrjy2ks5qby6214fj99dg7rxipr"; 251185 + revision = "2"; 251186 + editedCabalFile = "1yxzq4gb6ig3d94lc76i5d50fa0j1fxr1wdlmgwhkvlfd4xnh6sg"; 250638 251187 isLibrary = true; 250639 251188 isExecutable = true; 250640 251189 enableSeparateDataOutput = true; ··· 256515 257064 }: 256516 257065 mkDerivation { 256517 257066 pname = "sexpresso"; 256518 - version = "1.2.1.0"; 256519 - sha256 = "18di6krrrclilp74fazwlsfcq3jym9mmya8q0x2vm2cdgbpjm8mi"; 257067 + version = "1.2.2.0"; 257068 + sha256 = "1lzh70zx5lnjbz0h95icdl06lmcig8d093frk46fdydgzl3z9mgw"; 256520 257069 libraryHaskellDepends = [ 256521 257070 base bifunctors containers megaparsec recursion-schemes text 256522 257071 ]; ··· 257931 258480 }) {}; 257932 258481 257933 258482 "shh" = callPackage 257934 - ({ mkDerivation, async, base, bytestring, containers, deepseq 257935 - , directory, doctest, filepath, markdown-unlit, mtl, process, split 257936 - , stringsearch, tasty, tasty-hunit, tasty-quickcheck 257937 - , template-haskell, temporary, unix, utf8-string 258483 + ({ mkDerivation, async, base, bytestring, Cabal, cabal-doctest 258484 + , containers, deepseq, directory, doctest, filepath, markdown-unlit 258485 + , mtl, process, PyF, split, stringsearch, tasty, tasty-hunit 258486 + , tasty-quickcheck, template-haskell, temporary, unix, utf8-string 257938 258487 }: 257939 258488 mkDerivation { 257940 258489 pname = "shh"; 257941 - version = "0.7.2.0"; 257942 - sha256 = "0rcjvkpxdwvhgn7i1dindhbskr8kwgm977kxgi2xcv398c71014y"; 257943 - revision = "1"; 257944 - editedCabalFile = "054bjhpkni3nr6zsilj77gdgb2yw5s1gzm257zz4kigpjjjndr0a"; 258490 + version = "0.7.2.1"; 258491 + sha256 = "1p46q07mdk9w6agm5ggy34r62fqw6zlx4d32pkby852piy7aknnv"; 257945 258492 isLibrary = true; 257946 258493 isExecutable = true; 258494 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 257947 258495 libraryHaskellDepends = [ 257948 258496 async base bytestring containers deepseq directory filepath mtl 257949 258497 process split stringsearch template-haskell unix utf8-string ··· 257952 258500 async base bytestring deepseq directory temporary unix 257953 258501 ]; 257954 258502 testHaskellDepends = [ 257955 - async base bytestring directory doctest filepath tasty tasty-hunit 257956 - tasty-quickcheck utf8-string 258503 + async base bytestring directory doctest filepath PyF tasty 258504 + tasty-hunit tasty-quickcheck utf8-string 257957 258505 ]; 257958 258506 testToolDepends = [ markdown-unlit ]; 257959 258507 description = "Simple shell scripting from Haskell"; ··· 257965 258513 ({ mkDerivation, base, hostname, shh, tasty, time }: 257966 258514 mkDerivation { 257967 258515 pname = "shh-extras"; 257968 - version = "0.1.0.1"; 257969 - sha256 = "0w4ddjszs0lrpr4zcggcwb80bg3yd8lr628jngmh4a05ypv3hxkk"; 257970 - revision = "2"; 257971 - editedCabalFile = "1sfj2li0p0bq1dmk85i74jmgcz28vb2q151d16rcjzx8x07kyrq4"; 258516 + version = "0.1.0.2"; 258517 + sha256 = "0yax761d0xgc8nqg8h7y69fb1mwf88w73sznh3kffhlaladavskx"; 257972 258518 libraryHaskellDepends = [ base hostname shh time ]; 257973 258519 testHaskellDepends = [ base tasty ]; 257974 258520 description = "Utility functions for using shh"; ··· 261111 261657 hydraPlatforms = lib.platforms.none; 261112 261658 }) {}; 261113 261659 261660 + "skew-list" = callPackage 261661 + ({ mkDerivation, base, containers, criterion, deepseq, hashable 261662 + , indexed-traversable, QuickCheck, ral, strict, tasty, tasty-hunit 261663 + , tasty-quickcheck, vector 261664 + }: 261665 + mkDerivation { 261666 + pname = "skew-list"; 261667 + version = "0.1"; 261668 + sha256 = "1j0rc1s3mpf933wl4fifik62d68hx1py8g8wwxz69ynfhjhf9fa2"; 261669 + libraryHaskellDepends = [ 261670 + base deepseq hashable indexed-traversable QuickCheck strict 261671 + ]; 261672 + testHaskellDepends = [ 261673 + base indexed-traversable QuickCheck tasty tasty-hunit 261674 + tasty-quickcheck 261675 + ]; 261676 + benchmarkHaskellDepends = [ base containers criterion ral vector ]; 261677 + description = "Random access lists: skew binary"; 261678 + license = lib.licenses.bsd3; 261679 + }) {}; 261680 + 261114 261681 "skews" = callPackage 261115 261682 ({ mkDerivation, async, base, bytestring, deque, envy, hspec 261116 261683 , network, websockets ··· 264802 265369 pname = "sockets-and-pipes"; 264803 265370 version = "0.3"; 264804 265371 sha256 = "0hlq64nh7iw7brn11j7xhy1zcmk0iczarg7ig7z2i7ny11czi73l"; 264805 - revision = "1"; 264806 - editedCabalFile = "15jp7k379madgg5rd3rzlnz3502114yzd1yiwcrvmcj6bdhcnrf9"; 265372 + revision = "2"; 265373 + editedCabalFile = "02vwkv8qvm270rybn68yb6n7z387g1bv2iwn4pa397l94225ny7l"; 264807 265374 libraryHaskellDepends = [ 264808 265375 aeson ascii async attoparsec base blaze-html bytestring containers 264809 265376 directory filepath list-transformer network network-simple relude ··· 268952 269519 }: 268953 269520 mkDerivation { 268954 269521 pname = "stackctl"; 268955 - version = "1.1.3.0"; 268956 - sha256 = "16skijv82199x4q2w563bk9xcmwd4i6mdavdr89p16cf8mwqrr7m"; 269522 + version = "1.1.3.1"; 269523 + sha256 = "0mzn546zjgqjiky4mv19ap1qa6xxdf280qkmq041d9sj5s4xp2vh"; 268957 269524 isLibrary = true; 268958 269525 isExecutable = true; 268959 269526 libraryHaskellDepends = [ ··· 268965 269532 uuid yaml 268966 269533 ]; 268967 269534 executableHaskellDepends = [ base ]; 268968 - testHaskellDepends = [ base bytestring hspec mtl QuickCheck yaml ]; 269535 + testHaskellDepends = [ 269536 + aeson base bytestring hspec mtl QuickCheck yaml 269537 + ]; 268969 269538 license = lib.licenses.mit; 268970 269539 hydraPlatforms = lib.platforms.none; 268971 269540 mainProgram = "stackctl"; ··· 273896 274465 pname = "successors"; 273897 274466 version = "0.1.0.3"; 273898 274467 sha256 = "15pydjb9f7ycjclv5qq0ll8iaf8vpb6241ja858vkkfpz4rsciyv"; 274468 + revision = "1"; 274469 + editedCabalFile = "10vsqfgpzrc1mr27956s0r84hy37vz2dvq7klskn74qisnhv52kz"; 273899 274470 libraryHaskellDepends = [ base ]; 273900 274471 description = "An applicative functor to manage successors"; 273901 274472 license = lib.licenses.mit; ··· 275254 275825 mainProgram = "Swish"; 275255 275826 }) {}; 275256 275827 275828 + "swish_0_10_3_0" = callPackage 275829 + ({ mkDerivation, base, containers, directory, filepath, hashable 275830 + , HUnit, intern, mtl, network-uri, polyparse, semigroups 275831 + , test-framework, test-framework-hunit, text, time 275832 + }: 275833 + mkDerivation { 275834 + pname = "swish"; 275835 + sha256 = "1mj516xn6an2pkygfzm2418hbvaf8yvgwgvmpgpwrxqss87m3c84"; 275836 + sha256 = "0qn3nmgxiyvvxv1hxdc6lgc5q8n53kj8lmdzvvjnq4q8s5mh5lhn"; 275837 + isLibrary = true; 275838 + isExecutable = true; 275839 + enableSeparateDataOutput = true; 275840 + libraryHaskellDepends = [ 275841 + base containers directory filepath hashable intern mtl network-uri 275842 + polyparse text time 275843 + ]; 275844 + executableHaskellDepends = [ base ]; 275845 + testHaskellDepends = [ 275846 + base containers hashable HUnit network-uri semigroups 275847 + test-framework test-framework-hunit text time 275848 + ]; 275849 + description = "A semantic web toolkit"; 275850 + license = lib.licenses.lgpl21Plus; 275851 + hydraPlatforms = lib.platforms.none; 275852 + mainProgram = "Swish"; 275853 + }) {}; 275854 + 275257 275855 "swiss" = callPackage 275258 275856 ({ mkDerivation, base, bytestring, parallel, time }: 275259 275857 mkDerivation { ··· 276801 277399 }: 276802 277400 mkDerivation { 276803 277401 pname = "synthesizer-dimensional"; 276804 - version = "0.8.1"; 276805 - sha256 = "0a8frn0k4dc0kh71arcqpc1z4dilr8c7yqpp6j80llh12lrcp6f4"; 277402 + version = "0.8.1.1"; 277403 + sha256 = "0giaa6v2yvb0amvdzdv5bq7dsns9pgbzv7sgjdi4a4zy0x4gmhc4"; 276806 277404 isLibrary = true; 276807 277405 isExecutable = true; 276808 277406 libraryHaskellDepends = [ ··· 283250 283848 }: 283251 283849 mkDerivation { 283252 283850 pname = "text-replace"; 283253 - version = "0.1.0.2"; 283254 - sha256 = "13c0iz17x0snfhv6nmwns79j601aqnc8pvxrbn3gz7sprxwf330j"; 283851 + version = "0.1.0.3"; 283852 + sha256 = "17pxhf42r5f2zm74jivkwljsz5vyjzvvdln00jlvhryrg7vb3dah"; 283255 283853 isLibrary = true; 283256 283854 isExecutable = true; 283257 283855 libraryHaskellDepends = [ base containers text ]; ··· 284133 284731 license = lib.licenses.mit; 284134 284732 }) {}; 284135 284733 284734 + "th-letrec" = callPackage 284735 + ({ mkDerivation, base, containers, some, template-haskell 284736 + , transformers 284737 + }: 284738 + mkDerivation { 284739 + pname = "th-letrec"; 284740 + version = "0.1"; 284741 + sha256 = "0z9j8a7p9m5kp3zzia593zbzfmqc6himrzzjfk7nplv6vfh36yah"; 284742 + libraryHaskellDepends = [ 284743 + base containers some template-haskell transformers 284744 + ]; 284745 + description = "Implicit (recursive) let insertion"; 284746 + license = lib.licenses.bsd3; 284747 + }) {}; 284748 + 284136 284749 "th-lift" = callPackage 284137 284750 ({ mkDerivation, base, ghc-prim, template-haskell, th-abstraction 284138 284751 }: ··· 291966 292579 }: 291967 292580 mkDerivation { 291968 292581 pname = "twirp"; 291969 - version = "0.2.0.1"; 291970 - sha256 = "05np0zvnvy8wrm9lirrkwhd0n8f44j4xwr6lrywxxy9r00mx8bbl"; 292582 + version = "0.2.2.0"; 292583 + sha256 = "1n69f1pwcw0ig7j92yi94hh50c5jyn03bc7y5gybw2ajz412iz2h"; 291971 292584 libraryHaskellDepends = [ 291972 292585 aeson base bytestring http-media http-types proto-lens 291973 292586 proto-lens-jsonpb proto-lens-runtime servant text wai ··· 294911 295524 license = lib.licenses.asl20; 294912 295525 }) {}; 294913 295526 295527 + "unfork_1_0_0_1" = callPackage 295528 + ({ mkDerivation, async, base, safe-exceptions, stm }: 295529 + mkDerivation { 295530 + pname = "unfork"; 295531 + version = "1.0.0.1"; 295532 + sha256 = "0rg2aklr77ba3k1kbd57p42jj0w23rc7rir1iczfskcdj7ki2rjm"; 295533 + libraryHaskellDepends = [ async base safe-exceptions stm ]; 295534 + description = "Make any action thread safe"; 295535 + license = lib.licenses.asl20; 295536 + hydraPlatforms = lib.platforms.none; 295537 + }) {}; 295538 + 294914 295539 "unfree" = callPackage 294915 295540 ({ mkDerivation, base, deepseq, hashable, recursion-schemes, tasty 294916 295541 , tasty-hunit ··· 295310 295935 }: 295311 295936 mkDerivation { 295312 295937 pname = "unicode-tricks"; 295313 - version = "0.11.0.0"; 295314 - sha256 = "0f1r8s69if5hjqy1p13b30f8wnbc52sya4zdcw3krwvmizwqq3dh"; 295938 + version = "0.12.1.0"; 295939 + sha256 = "139hrmxqw1f4gchv8wlyy3x1xfwcv5zzpdz0f3b6xm6v4zbwy101"; 295315 295940 libraryHaskellDepends = [ 295316 295941 base containers data-default deepseq hashable QuickCheck text 295317 295942 ]; 295318 - testHaskellDepends = [ base hashable hspec QuickCheck ]; 295943 + testHaskellDepends = [ base hashable hspec QuickCheck text ]; 295319 295944 testToolDepends = [ hspec-discover ]; 295320 295945 description = "Functions to work with unicode blocks more convenient"; 295321 295946 license = lib.licenses.bsd3; ··· 306360 306985 }: 306361 306986 mkDerivation { 306362 306987 pname = "weeder"; 306363 - version = "2.4.0"; 306364 - sha256 = "1lwg1a4i7gb0l58bsyn1sg2q31ns79ldw4nv6hbnh4rqq1rv7vx4"; 306988 + version = "2.4.1"; 306989 + sha256 = "1z17w8q0s1pgqrxx7f1zijy1j4fwl8x2f5r9y11i0vcsqlx12pi9"; 306365 306990 isLibrary = true; 306366 306991 isExecutable = true; 306367 306992 libraryHaskellDepends = [ ··· 306473 307098 }: 306474 307099 mkDerivation { 306475 307100 pname = "welford-online-mean-variance"; 306476 - version = "0.1.0.2"; 306477 - sha256 = "041z3vgbnv2q6a9w80rjws3y0lwb56z1ws2ic8pyx79dvjb0y55q"; 307101 + version = "0.1.0.4"; 307102 + sha256 = "0nzr6krkaa39h9v25hbagnw1f2g45dqrv8ifhvh16m4k7xf17xla"; 306478 307103 libraryHaskellDepends = [ base cereal deepseq vector ]; 306479 307104 testHaskellDepends = [ 306480 307105 base cereal deepseq QuickCheck tasty tasty-discover ··· 307262 307887 maintainers = [ lib.maintainers.maralorn ]; 307263 307888 }) {}; 307264 307889 307890 + "witch_1_1_6_0" = callPackage 307891 + ({ mkDerivation, base, bytestring, containers, HUnit, tagged 307892 + , template-haskell, text, time, transformers 307893 + }: 307894 + mkDerivation { 307895 + pname = "witch"; 307896 + version = "1.1.6.0"; 307897 + sha256 = "0bhrf3c3djchi2y0rcz015g34a4g8f1pfc8r89kpqbf2pfd8gw73"; 307898 + libraryHaskellDepends = [ 307899 + base bytestring containers tagged template-haskell text time 307900 + ]; 307901 + testHaskellDepends = [ 307902 + base bytestring containers HUnit tagged text time transformers 307903 + ]; 307904 + description = "Convert values from one type into another"; 307905 + license = lib.licenses.mit; 307906 + hydraPlatforms = lib.platforms.none; 307907 + maintainers = [ lib.maintainers.maralorn ]; 307908 + }) {}; 307909 + 307265 307910 "with-index" = callPackage 307266 307911 ({ mkDerivation, base }: 307267 307912 mkDerivation { ··· 308919 309564 }: 308920 309565 mkDerivation { 308921 309566 pname = "wstunnel"; 308922 - version = "0.4.1.0"; 308923 - sha256 = "022x4g1ya5676v7q0q3rzwn6rzlnz74f8xwwp3mnvyih025cx770"; 309567 + version = "0.5.0.0"; 309568 + sha256 = "0qm6n009p9lyb5iy5rbrlwvcfcqdnlpxvc5cy02f3xyf9h8ikwkp"; 308924 309569 isLibrary = true; 308925 309570 isExecutable = true; 308926 309571 libraryHaskellDepends = [ ··· 309603 310248 }) {}; 309604 310249 309605 310250 "xdg-basedir-compliant" = callPackage 309606 - ({ mkDerivation, aeson, base, bytestring, directory, filepath 309607 - , hspec, path, polysemy, polysemy-plugin, polysemy-zoo, QuickCheck 309608 - , split 310251 + ({ mkDerivation, aeson, base, bytestring, containers, directory 310252 + , filepath, hspec, path, polysemy, polysemy-plugin, polysemy-zoo 310253 + , QuickCheck, split 309609 310254 }: 309610 310255 mkDerivation { 309611 310256 pname = "xdg-basedir-compliant"; 309612 - version = "1.1.0"; 309613 - sha256 = "15m38hhfa5bx5nsp7xmwjv4xk3rzw0ci1mnx8hivi7j7yk8xwc5s"; 310257 + version = "1.2.0"; 310258 + sha256 = "1sqr202bi12acchvnj44n12bf4ay9k6w8yqysnzy35sfl373cch5"; 309614 310259 libraryHaskellDepends = [ 309615 - base bytestring directory filepath path polysemy polysemy-plugin 309616 - polysemy-zoo split 310260 + base bytestring containers directory filepath path polysemy 310261 + polysemy-plugin polysemy-zoo split 309617 310262 ]; 309618 310263 testHaskellDepends = [ 309619 - aeson base bytestring directory filepath hspec path polysemy 309620 - polysemy-plugin polysemy-zoo QuickCheck split 310264 + aeson base bytestring containers directory filepath hspec path 310265 + polysemy polysemy-plugin polysemy-zoo QuickCheck split 309621 310266 ]; 309622 310267 description = "XDG Basedir"; 309623 310268 license = lib.licenses.bsd3; ··· 311046 311691 }: 311047 311692 mkDerivation { 311048 311693 pname = "xmobar"; 311049 - version = "0.45"; 311050 - sha256 = "0p64z535lk338f247gvddc6c4326xs41ar817whdvzj2910pyn86"; 311694 + version = "0.46"; 311695 + sha256 = "0glpiq7c0qwfcxnc2flgzj7afm5m1a9ghzwwcq7f8q27m21kddrd"; 311051 311696 configureFlags = [ 311052 311697 "-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus" 311053 311698 "-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris"
+7 -4
pkgs/top-level/all-packages.nix
··· 14558 14558 haskell = callPackage ./haskell-packages.nix { }; 14559 14559 14560 14560 haskellPackages = dontRecurseIntoAttrs 14561 - # Prefer native-bignum to avoid linking issues with gmp 14562 - (if stdenv.hostPlatform.isStatic 14563 - then haskell.packages.native-bignum.ghc92 14564 - else haskell.packages.ghc92); 14561 + # JS backend is only available for GHC >= 9.6 14562 + (if stdenv.hostPlatform.isGhcjs 14563 + then haskell.packages.native-bignum.ghcHEAD 14564 + # Prefer native-bignum to avoid linking issues with gmp 14565 + else if stdenv.hostPlatform.isStatic 14566 + then haskell.packages.native-bignum.ghc92 14567 + else haskell.packages.ghc92); 14565 14568 14566 14569 # haskellPackages.ghc is build->host (it exposes the compiler used to build the 14567 14570 # set, similarly to stdenv.cc), but pkgs.ghc should be host->target to be more
+2
pkgs/top-level/release-cross.nix
··· 159 159 /* Javacript */ 160 160 ghcjs = mapTestOnCross lib.systems.examples.ghcjs { 161 161 haskell.packages.ghcjs.hello = nativePlatforms; 162 + haskell.packages.native-bignum.ghcHEAD.hello = nativePlatforms; 163 + haskellPackages.hello = nativePlatforms; 162 164 }; 163 165 164 166 /* Linux on Raspberrypi */
+7
pkgs/top-level/release-haskell.nix
··· 345 345 ; 346 346 }; 347 347 }; 348 + 349 + pkgsCross.ghcjs.haskellPackages = { 350 + inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskellPackages) 351 + ghc 352 + hello 353 + ; 354 + }; 348 355 }) 349 356 (versionedCompilerJobs { 350 357 # Packages which should be checked on more than the