lol

Merge pull request #96272 from NixOS/haskell-updates

Update Haskell package set to LTS 16.11 (plus other fixes)

authored by

Peter Simons and committed by
GitHub
082fbfd2 ce8207fc

+1473 -749
+3 -3
pkgs/development/compilers/ghc/head.nix
··· 38 38 , # Whether to build terminfo. 39 39 enableTerminfo ? !stdenv.targetPlatform.isWindows 40 40 41 - , version ? "8.11.20200731" 41 + , version ? "8.11.20200824" 42 42 , # What flavour to build. An empty string indicates no 43 43 # specific flavour and falls back to ghc default values. 44 44 ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) ··· 110 110 111 111 src = fetchgit { 112 112 url = "https://gitlab.haskell.org/ghc/ghc.git/"; 113 - rev = "380638a33691ba43fdcd2e18bca636750e5f66f1"; 114 - sha256 = "029cgiyhddvwnx5zx31i0vgj13zsvzb8fna99zr6ifscz6x7rid1"; 113 + rev = "3f50154591ada9064351ccec4adfe6df53ca2439"; 114 + sha256 = "1w2p5bc74aswspzvgvrhcb95hvj5ky38rgqqjvrri19z2qyiky6d"; 115 115 }; 116 116 117 117 enableParallelBuilding = true;
+5 -2
pkgs/development/compilers/ghcjs-ng/8.6/dep-overrides.nix
··· 1 1 { haskellLib }: 2 2 3 - let inherit (haskellLib) doJailbreak dontHaddock; 3 + let inherit (haskellLib) doJailbreak dontHaddock dontCheck; 4 4 in self: super: { 5 + ghcjs = super.ghcjs.override { 6 + shelly = super.shelly_1_8_1; 7 + }; 5 8 ghc-api-ghcjs = super.ghc-api-ghcjs.override 6 9 { 7 10 happy = self.happy_1_19_5; 8 11 }; 9 - haddock-library-ghcjs = doJailbreak super.haddock-library-ghcjs; 12 + haddock-library-ghcjs = doJailbreak (dontCheck super.haddock-library-ghcjs); 10 13 haddock-api-ghcjs = doJailbreak (dontHaddock super.haddock-api-ghcjs); 11 14 }
+1 -2
pkgs/development/compilers/ghcjs-ng/default.nix
··· 102 102 103 103 inherit passthru; 104 104 105 - meta.broken = true; # build does not succeed 106 - meta.platforms = lib.platforms.none; # passthru.bootPkgs.ghc.meta.platforms; 105 + meta.platforms = passthru.bootPkgs.ghc.meta.platforms; 107 106 meta.maintainers = [lib.maintainers.elvishjerricco]; 108 107 }
+29 -15
pkgs/development/haskell-modules/configuration-common.nix
··· 375 375 tickle = dontCheck super.tickle; 376 376 tpdb = dontCheck super.tpdb; 377 377 translatable-intset = dontCheck super.translatable-intset; 378 + trifecta = if pkgs.stdenv.hostPlatform.isAarch64 then dontCheck super.trifecta else super.trifecta; # affected by this bug https://gitlab.haskell.org/ghc/ghc/-/issues/15275#note_295461 378 379 ua-parser = dontCheck super.ua-parser; 379 380 unagi-chan = dontCheck super.unagi-chan; 380 381 wai-logger = dontCheck super.wai-logger; ··· 920 921 # Generate cli completions for dhall. 921 922 dhall = generateOptparseApplicativeCompletion "dhall" super.dhall; 922 923 dhall-json = generateOptparseApplicativeCompletions ["dhall-to-json" "dhall-to-yaml"] super.dhall-json; 923 - dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" (super.dhall-nix); 924 + dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" ( 925 + super.dhall-nix.overrideScope (self: super: { 926 + dhall = super.dhall_1_34_0; 927 + repline = self.repline_0_4_0_0; 928 + haskeline = self.haskeline_0_8_1_0; 929 + })); 924 930 925 931 # https://github.com/haskell-hvr/netrc/pull/2#issuecomment-469526558 926 932 netrc = doJailbreak super.netrc; ··· 1155 1161 # 2020-06-22: NOTE: QuickCheck upstreamed https://github.com/phadej/binary-instances/issues/7 1156 1162 binary-instances = dontCheck super.binary-instances; 1157 1163 1158 - # Disabling the test suite lets the build succeed on older CPUs 1159 - # that are unable to run the generated library because they 1160 - # lack support for AES-NI, like some of our Hydra build slaves 1161 - # do. See https://github.com/NixOS/nixpkgs/issues/81915 for 1162 - # details. 1163 - cryptonite = dontCheck super.cryptonite; 1164 - 1165 1164 # The test suite depends on an impure cabal-install installation in 1166 1165 # $HOME, which we don't have in our build sandbox. 1167 1166 cabal-install-parsers = dontCheck super.cabal-install-parsers; ··· 1333 1332 # https://github.com/ennocramer/monad-dijkstra/issues/4 1334 1333 monad-dijkstra = dontCheck (doJailbreak super.monad-dijkstra); 1335 1334 1335 + # Fixed upstream but not released to Hackage yet: 1336 + # https://github.com/k0001/hs-libsodium/issues/2 1337 + libsodium = overrideCabal super.libsodium (drv: { 1338 + libraryToolDepends = (drv.libraryToolDepends or []) ++ [self.c2hs]; 1339 + }); 1340 + 1336 1341 # https://github.com/kowainik/policeman/issues/57 1337 1342 policeman = doJailbreak super.policeman; 1338 1343 ··· 1415 1420 }); 1416 1421 1417 1422 # Testsuite trying to run `which haskeline-examples-Test` 1418 - haskeline_0_8_0_0 = dontCheck super.haskeline_0_8_0_0; 1423 + haskeline_0_8_1_0 = dontCheck super.haskeline_0_8_1_0; 1419 1424 1420 1425 # Requires repline 0.4 which is the default only for ghc8101, override for the rest 1421 1426 zre = super.zre.override { 1422 1427 repline = self.repline_0_4_0_0.override { 1423 - haskeline = self.haskeline_0_8_0_0; 1428 + haskeline = self.haskeline_0_8_1_0; 1424 1429 }; 1425 1430 }; 1426 1431 ··· 1441 1446 1442 1447 # Tests rely on `Int` being 64-bit: https://github.com/hspec/hspec/issues/431. 1443 1448 # Also, we need QuickCheck-2.14.x to build the test suite, which isn't easy in LTS-16.x. 1444 - # So let's not go there any just disable the tests altogether. 1449 + # So let's not go there and just disable the tests altogether. 1445 1450 hspec-core = dontCheck super.hspec-core; 1446 1451 1452 + # github.com/ucsd-progsys/liquidhaskell/issues/1729 1453 + liquidhaskell = super.liquidhaskell.override { Diff = self.Diff_0_3_4; }; 1454 + Diff_0_3_4 = dontCheck super.Diff_0_3_4; 1455 + 1456 + # We want the latest version of cryptonite. This is a first step towards 1457 + # resolving https://github.com/NixOS/nixpkgs/issues/81915. 1458 + cryptonite = self.cryptonite_0_27; 1459 + 1447 1460 # INSERT NEW OVERRIDES ABOVE THIS LINE 1448 1461 1449 1462 } // (let 1450 1463 hlsScopeOverride = self: super: { 1451 1464 # haskell-language-server uses its own fork of ghcide 1452 1465 # Test disabled: it seems to freeze (is it just that it takes a long time ?) 1453 - ghcide = dontCheck self.hls-ghcide; 1466 + ghcide = dontCheck super.hls-ghcide; 1454 1467 # we are faster than stack here 1455 - hie-bios = dontCheck self.hie-bios_0_6_2; 1456 - lsp-test = dontCheck self.lsp-test_0_11_0_4; 1468 + hie-bios = dontCheck super.hie-bios_0_7_0; 1469 + lsp-test = dontCheck super.lsp-test_0_11_0_4; 1457 1470 # fourmolu can‘t compile with an older aeson 1458 1471 aeson = dontCheck super.aeson_1_5_2_0; 1459 1472 # brittany has an aeson upper bound of 1.5 1460 1473 brittany = doJailbreak super.brittany; 1461 1474 }; 1462 1475 in { 1463 - haskell-language-server = dontCheck (super.haskell-language-server.overrideScope hlsScopeOverride); 1476 + # jailbreaking for hie-bios 0.7.0 (upstream PR: https://github.com/haskell/haskell-language-server/pull/357) 1477 + haskell-language-server = dontCheck (doJailbreak (super.haskell-language-server.overrideScope hlsScopeOverride)); 1464 1478 hls-ghcide = dontCheck (super.hls-ghcide.overrideScope hlsScopeOverride); 1465 1479 fourmolu = super.fourmolu.overrideScope hlsScopeOverride; 1466 1480 }
+9 -1
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 62 62 63 63 # Jailbreak to fix the build. 64 64 base-noprelude = doJailbreak super.base-noprelude; 65 - pandoc = doJailbreak super.pandoc; 66 65 system-fileio = doJailbreak super.system-fileio; 67 66 unliftio-core = doJailbreak super.unliftio-core; 68 67 69 68 # Use the latest version to fix the build. 70 69 dhall = self.dhall_1_34_0; 71 70 lens = self.lens_4_19_2; 71 + optics = self.optics_0_3; 72 72 optics-core = self.optics-core_0_3_0_1; 73 + optics-extra = self.optics-extra_0_3; 74 + optics-th = self.optics-th_0_3_0_2; 73 75 repline = self.repline_0_4_0_0; 74 76 singletons = self.singletons_2_7; 75 77 th-desugar = self.th-desugar_1_11; ··· 116 118 # executable is allowed for ghc >= 8.10 and needs repline 117 119 executableHaskellDepends = drv.executableToolDepends or [] ++ [ self.repline ]; 118 120 })); 121 + 122 + # We want the latest version of Pandoc. 123 + pandoc = self.pandoc_2_10_1; 124 + pandoc-citeproc = self.pandoc-citeproc_0_17_0_2; 125 + pandoc-plot = self.pandoc-plot_0_9_2_0; 126 + pandoc-types = self.pandoc-types_1_21; 119 127 120 128 }
+75 -37
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 64 64 # 65 65 # WARNING: This list is generated semiautomatically based on the most recent 66 66 # LTS package set. If you want to add entries to it, you must do so before the 67 - # comment saying "# LTS Haskell x.y". Any changes after that commend will be 67 + # comment saying "# LTS Haskell x.y". Any changes after that comment will be 68 68 # lost the next time `update-stackage.sh` runs. 69 69 default-package-overrides: 70 70 # This was only intended for ghc-7.0.4, and has very old deps, one hidden behind a flag ··· 72 72 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 73 73 # not yet available in Nixpkgs 74 74 - gi-gdkx11 < 4 75 - # LTS Haskell 16.10 75 + # LTS Haskell 16.11 76 76 - abstract-deque ==0.3 77 77 - abstract-par ==0.3.3 78 78 - AC-Angle ==1.0 ··· 207 207 - amazonka-workspaces ==1.6.1 208 208 - amazonka-xray ==1.6.1 209 209 - amqp ==0.20.0 210 - - amqp-utils ==0.4.4.0 210 + - amqp-utils ==0.4.4.1 211 211 - annotated-wl-pprint ==0.7.0 212 212 - ansi-terminal ==0.10.3 213 213 - ansi-wl-pprint ==0.6.9 ··· 262 262 - attoparsec-path ==0.0.0.1 263 263 - audacity ==0.0.2 264 264 - aur ==7.0.3 265 - - aura ==3.1.7 265 + - aura ==3.1.8 266 266 - authenticate ==1.3.5 267 267 - authenticate-oauth ==1.6.0.1 268 268 - auto ==0.4.3.1 ··· 366 366 - bv ==0.5 367 367 - bv-little ==1.1.1 368 368 - byteable ==0.1.1 369 - - byte-count-reader ==0.10.0.1 369 + - byte-count-reader ==0.10.1.1 370 370 - bytedump ==1.0 371 371 - byte-order ==0.1.2.0 372 372 - byteorder ==1.0.4 ··· 760 760 - extended-reals ==0.2.4.0 761 761 - extensible-effects ==5.0.0.1 762 762 - extensible-exceptions ==0.1.1.4 763 - - extra ==1.7.5 763 + - extra ==1.7.6 764 764 - extractable-singleton ==0.0.1 765 765 - extrapolate ==0.4.2 766 766 - fail ==4.9.0.0 ··· 808 808 - floatshow ==0.2.4 809 809 - flow ==1.0.21 810 810 - flush-queue ==1.0.0 811 - - fmlist ==0.9.3 811 + - fmlist ==0.9.4 812 812 - fmt ==0.6.1.2 813 813 - fn ==0.3.0.2 814 814 - focus ==1.0.1.3 ··· 1277 1277 - jwt ==0.10.0 1278 1278 - kan-extensions ==5.2 1279 1279 - kanji ==3.4.1 1280 - - katip ==0.8.4.0 1280 + - katip ==0.8.5.0 1281 1281 - kawhi ==0.3.0 1282 1282 - kazura-queue ==0.1.0.4 1283 1283 - kdt ==0.2.4 ··· 1348 1348 - linux-file-extents ==0.2.0.0 1349 1349 - linux-namespaces ==0.1.3.0 1350 1350 - List ==0.6.2 1351 - - ListLike ==4.7.1 1351 + - ListLike ==4.7.2 1352 1352 - list-predicate ==0.1.0.1 1353 1353 - listsafe ==0.1.0.1 1354 1354 - list-singleton ==1.0.0.4 ··· 1433 1433 - midi ==0.2.2.2 1434 1434 - mighty-metropolis ==2.0.0 1435 1435 - mime-mail ==0.5.0 1436 - - mime-mail-ses ==0.4.1 1436 + - mime-mail-ses ==0.4.2 1437 1437 - mime-types ==0.1.0.9 1438 1438 - mini-egison ==1.0.0 1439 1439 - minimal-configuration ==0.1.4 ··· 1558 1558 - nonce ==1.0.7 1559 1559 - nondeterminism ==1.4 1560 1560 - non-empty ==0.3.2 1561 - - nonempty-containers ==0.3.4.0 1561 + - nonempty-containers ==0.3.4.1 1562 1562 - nonemptymap ==0.0.6.0 1563 1563 - non-empty-sequence ==0.2.0.4 1564 1564 - nonempty-vector ==0.2.0.2 ··· 1613 1613 - options ==1.2.1.1 1614 1614 - optparse-applicative ==0.15.1.0 1615 1615 - optparse-generic ==1.3.1 1616 - - optparse-simple ==0.1.1.2 1616 + - optparse-simple ==0.1.1.3 1617 1617 - optparse-text ==0.1.1.0 1618 1618 - ordered-containers ==0.2.2 1619 1619 - ormolu ==0.1.2.0 ··· 1859 1859 - regex-posix ==0.96.0.0 1860 1860 - regex-tdfa ==1.3.1.0 1861 1861 - regex-with-pcre ==1.1.0.0 1862 - - registry ==0.1.9.1 1862 + - registry ==0.1.9.3 1863 1863 - reinterpret-cast ==0.1.0 1864 1864 - relapse ==1.0.0.0 1865 1865 - relational-query ==0.12.2.3 ··· 1902 1902 - safe ==0.3.19 1903 1903 - safecopy ==0.10.3 1904 1904 - safe-decimal ==0.2.0.0 1905 - - safe-exceptions ==0.1.7.0 1905 + - safe-exceptions ==0.1.7.1 1906 1906 - safe-exceptions-checked ==0.1.0 1907 1907 - safe-foldable ==0.1.0.0 1908 1908 - safeio ==0.0.5.0 ··· 1978 1978 - servant-purescript ==0.10.0.0 1979 1979 - servant-rawm ==0.3.2.0 1980 1980 - servant-server ==0.16.2 1981 - - servant-static-th ==0.2.3.0 1981 + - servant-static-th ==0.2.4.0 1982 1982 - servant-subscriber ==0.7.0.0 1983 1983 - servant-swagger ==1.1.7.1 1984 1984 - servant-swagger-ui ==0.3.4.3.23.11 ··· 2328 2328 - unexceptionalio-trans ==0.5.1 2329 2329 - unicode ==0.0.1.1 2330 2330 - unicode-show ==0.1.0.4 2331 - - unicode-transforms ==0.3.6 2331 + - unicode-transforms ==0.3.7 2332 2332 - unification-fd ==0.10.0.1 2333 2333 - union-find ==0.2 2334 2334 - uniplate ==1.6.12 ··· 2395 2395 - vector-instances ==3.4 2396 2396 - vector-mmap ==0.0.3 2397 2397 - vector-rotcev ==0.1.0.0 2398 - - vector-sized ==1.4.1.0 2398 + - vector-sized ==1.4.2 2399 2399 - vector-space ==0.16 2400 2400 - vector-split ==1.0.0.2 2401 2401 - vector-th-unbox ==0.2.1.7 ··· 2498 2498 - xss-sanitize ==0.3.6 2499 2499 - xturtle ==0.2.0.0 2500 2500 - xxhash-ffi ==0.2.0.0 2501 - - yaml ==0.11.4.0 2501 + - yaml ==0.11.5.0 2502 2502 - yamlparse-applicative ==0.1.0.1 2503 2503 - yesod ==1.6.1.0 2504 2504 - yesod-auth ==1.6.10 ··· 2560 2560 - dbus <1 # for xmonad-0.26 2561 2561 - deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3 2562 2562 - dhall == 1.29.0 # required for spago 0.14.0. 2563 + - Diff < 0.4 # required by liquidhaskell-0.8.10.2: https://github.com/ucsd-progsys/liquidhaskell/issues/1729 2563 2564 - doctemplates == 0.8 # required by pandoc-2.9.x 2564 - - gi-gdk == 3.0.23 # required for gi-pango 1.0.23 2565 - - gi-gtk == 3.0.35 # required for gi-pango 1.0.23 2566 2565 - generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x 2567 2566 - ghc-check == 0.3.0.1 # only version compatible with ghcide 0.2.0 2568 2567 - ghc-tcplugins-extra ==0.3.2 # required for polysemy-plugin 0.2.5.0 2568 + - gi-gdk == 3.0.23 # required for gi-pango 1.0.23 2569 + - gi-gtk == 3.0.35 # required for gi-pango 1.0.23 2569 2570 - gloss < 1.9.3 # new versions don't compile with GHC 7.8.x 2570 2571 - haddock == 2.22.* # required on GHC 8.0.x 2571 2572 - haddock == 2.23.* # required on GHC < 8.10.x ··· 2579 2580 - haskell-src-exts == 1.19.* # required by hindent and structured-haskell-mode 2580 2581 - hinotify == 0.3.9 # for xmonad-0.26: https://github.com/kolmodin/hinotify/issues/29 2581 2582 - hoogle == 5.0.14 # required by hie-hoogle 2583 + - hslua == 1.1.2 # required for pandoc 2.10 2582 2584 - html-conduit ^>= 1.2 # pre-lts-11.x versions neeed by git-annex 6.20180227 2583 2585 - http-conduit ^>= 2.2 # pre-lts-11.x versions neeed by git-annex 6.20180227 2584 - - hslua == 1.1.2 # required for pandoc 2.10 2585 2586 - inline-c < 0.6 # required on GHC 8.0.x 2586 2587 - inline-c-cpp < 0.2 # required on GHC 8.0.x 2587 2588 - lens-labels == 0.1.* # required for proto-lens-descriptors ··· 2604 2605 - resourcet ==1.1.* # pre-lts-11.x versions neeed by git-annex 6.20180227 2605 2606 - seqid < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x 2606 2607 - seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x 2608 + - shelly ==1.8.1 # ghcjs depends on shelly < 1.9 2607 2609 - split < 0.2 # newer versions don't work with GHC 6.12.3 2608 2610 - tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x 2609 2611 - transformers == 0.4.3.* # the latest version isn't supported by mtl yet ··· 2756 2758 - accelerate-examples 2757 2759 - accelerate-fft 2758 2760 - accelerate-fourier-benchmark 2761 + - accelerate-io-array 2762 + - accelerate-io-bmp 2763 + - accelerate-io-bytestring 2764 + - accelerate-io-cereal 2765 + - accelerate-io-JuicyPixels 2766 + - accelerate-io-repa 2767 + - accelerate-io-vector 2759 2768 - accelerate-llvm-ptx 2760 2769 - bindings-yices 2761 2770 - boolector 2762 2771 - ccelerate-cuda 2772 + - containers-accelerate 2763 2773 - cplex-hs 2774 + - cublas 2764 2775 - cuda # 2020-08-18 because of dependency nvidia-x11 2765 - - cublas 2766 2776 - cufft 2767 2777 - cusolver 2768 2778 - cusparse 2769 2779 - gloss-raster-accelerate 2780 + - hashable-accelerate 2770 2781 - libnvvm 2771 2782 - matlab 2772 2783 - nvvm ··· 3670 3681 - cap 3671 3682 - Capabilities 3672 3683 - capability 3684 + - capataz 3673 3685 - capnp 3674 3686 - capped-list 3675 3687 - capri ··· 3959 3971 - complexity 3960 3972 - compose-trans 3961 3973 - composite-aeson 3974 + - composite-aeson-path 3962 3975 - composite-aeson-refined 3963 - - composite-base 3976 + - composite-binary 3964 3977 - composite-ekg 3965 3978 - composite-opaleye 3966 3979 - composite-swagger ··· 4292 4305 - data-transform 4293 4306 - data-type 4294 4307 - data-util 4308 + - data-validation 4295 4309 - data-variant 4296 4310 - database-id-groundhog 4297 4311 - database-study ··· 4415 4429 - dhall-check 4416 4430 - dhall-docs 4417 4431 - dhall-fly 4418 - - dhall-nix 4419 4432 - dhall-text 4420 4433 - dhall-to-cabal 4421 4434 - dhall-yaml ··· 4763 4776 - EsounD 4764 4777 - espial 4765 4778 - ess 4779 + - essence-of-live-coding-gloss-example 4780 + - essence-of-live-coding-pulse-example 4781 + - essence-of-live-coding-warp 4766 4782 - estimators 4767 4783 - EstProgress 4768 4784 - estreps ··· 5322 5338 - ghcprofview 5323 5339 - ght 5324 5340 - gi-cairo-again 5341 + - gi-cairo-connector 5342 + - gi-cairo-render 5343 + - gi-dbusmenu 5344 + - gi-dbusmenugtk3 5345 + - gi-gdkx11 5346 + - gi-graphene 5347 + - gi-gsk 5348 + - gi-gstpbutils 5349 + - gi-gsttag 5350 + - gi-gtk-declarative 5351 + - gi-gtk-declarative-app-simple 5352 + - gi-gtk-hs 5353 + - gi-gtkosxapplication 5354 + - gi-handy 5355 + - gi-poppler 5356 + - gi-wnck 5357 + - gi-xlib 5325 5358 - giak 5326 5359 - Gifcurry 5327 5360 - ginsu ··· 5402 5435 - gloss-sodium 5403 5436 - glpk-headers 5404 5437 - glpk-hs 5438 + - gltf-codec 5405 5439 - glue 5406 5440 - GLUtil 5407 5441 - gmap ··· 5793 5827 - haskell-src-exts-prisms 5794 5828 - haskell-src-exts-qq 5795 5829 - haskell-src-exts-sc 5830 + - haskell-src-match 5796 5831 - haskell-src-meta-mwotton 5797 5832 - haskell-stack-trace-plugin 5798 5833 - haskell-token-utils ··· 5876 5911 - haskore-supercollider 5877 5912 - haskore-synthesizer 5878 5913 - HaskRel 5914 + - haskseg 5879 5915 - hasktorch 5880 5916 - hasktorch-codegen 5881 5917 - hasktorch-ffi-th ··· 6959 6995 - jsonsql 6960 6996 - jsontsv 6961 6997 - jsonxlsx 6998 + - jsop 6962 6999 - jspath 6963 7000 - juandelacosa 6964 7001 - judge ··· 7060 7097 - ks-test 7061 7098 - KSP 7062 7099 - ktx 7100 + - ktx-codec 7063 7101 - kubernetes-client 7064 7102 - kubernetes-client-core 7065 7103 - kuifje ··· 7248 7286 - libconfig 7249 7287 - libcspm 7250 7288 - libexpect 7289 + - libfuse3 7251 7290 - libGenI 7252 7291 - libhbb 7253 7292 - libinfluxdb ··· 7265 7304 - libraft 7266 7305 - librandomorg 7267 7306 - librato 7268 - - libsodium 7269 7307 - libssh2 7270 7308 - libssh2-conduit 7271 7309 - libsystemd-daemon ··· 7324 7362 - lio-fs 7325 7363 - lio-simple 7326 7364 - lipsum-gen 7327 - - liquid 7328 - - liquid-base 7329 - - liquid-bytestring 7330 - - liquid-containers 7331 - - liquid-fixpoint 7332 - - liquid-ghc-prim 7333 - - liquid-parallel 7334 - - liquid-platform 7335 - - liquid-prelude 7336 - - liquid-vector 7337 - - liquidhaskell 7338 7365 - liquidhaskell-cabal 7339 7366 - Liquorice 7340 7367 - list-fusion-probe ··· 7403 7430 - log4hs 7404 7431 - logentries 7405 7432 - logger 7433 + - logging-effect 7406 7434 - logging-effect-extra 7407 7435 - logging-effect-extra-file 7408 7436 - logging-effect-extra-handler ··· 7475 7503 - lye 7476 7504 - Lykah 7477 7505 - lz4-conduit 7506 + - lz4-frame-conduit 7478 7507 - lzma-enumerator 7479 7508 - lzma-streams 7480 7509 - lzo ··· 7691 7720 - ministg 7692 7721 - minst-idx 7693 7722 - mios 7723 + - MIP 7694 7724 - mirror-tweet 7695 7725 - misfortune 7696 7726 - miso-action-logger ··· 7733 7763 - monad-atom 7734 7764 - monad-atom-simple 7735 7765 - monad-branch 7766 + - monad-classes-logging 7736 7767 - monad-exception 7737 7768 - monad-finally 7738 7769 - monad-fork ··· 7922 7953 - mvc 7923 7954 - mvc-updates 7924 7955 - mvclient 7956 + - mwc-probability-transition 7925 7957 - mwc-random-accelerate 7926 7958 - mxnet 7927 7959 - mxnet-dataiter ··· 8605 8637 - polydata 8606 8638 - polydata-core 8607 8639 - polynomial 8640 + - polysemy-http 8608 8641 - polysemy-optics 8609 8642 - polysemy-RandomFu 8610 8643 - polysemy-webserver ··· 8702 8735 - pretty-ghci 8703 8736 - pretty-ncols 8704 8737 - prettyprinter-graphviz 8738 + - prettyprinter-lucid 8705 8739 - prettyprinter-vty 8706 8740 - preview 8707 8741 - prim ··· 9257 9291 - ruler 9258 9292 - ruler-core 9259 9293 - rungekutta 9294 + - runhs 9260 9295 - runmany 9261 9296 - runtime-arbitrary 9262 9297 - rvar ··· 9530 9565 - shadower 9531 9566 - shake-bindist 9532 9567 - shake-cabal-build 9568 + - shake-dhall 9533 9569 - shake-extras 9534 9570 - shake-minify 9535 9571 - shake-pack ··· 9805 9841 - spanout 9806 9842 - sparkle 9807 9843 - sparrow 9844 + - spars 9808 9845 - sparse 9809 9846 - sparse-lin-alg 9810 9847 - sparsebit ··· 10045 10082 - superconstraints 10046 10083 - superevent 10047 10084 - supermonad 10085 + - supernova 10048 10086 - supero 10049 10087 - supervisor 10050 10088 - supervisors ··· 10218 10256 - termbox-bindings 10219 10257 - terminal-text 10220 10258 - termination-combinators 10221 - - termonad 10222 10259 - termplot 10223 10260 - terntup 10224 10261 - terrahs ··· 10656 10693 - uri-parse 10657 10694 - uri-template 10658 10695 - uri-templater 10696 + - url-bytes 10659 10697 - url-decoders 10660 10698 - url-generic 10661 10699 - URLb
+1349 -687
pkgs/development/haskell-modules/hackage-packages.nix
··· 4559 4559 broken = true; 4560 4560 }) {}; 4561 4561 4562 + "Diff_0_3_4" = callPackage 4563 + ({ mkDerivation, array, base, directory, pretty, process 4564 + , QuickCheck, test-framework, test-framework-quickcheck2 4565 + }: 4566 + mkDerivation { 4567 + pname = "Diff"; 4568 + version = "0.3.4"; 4569 + sha256 = "0bqcdvhxx8dmqc3793m6axg813wv9ldz2j37f1wygbbrbbndmdvp"; 4570 + libraryHaskellDepends = [ array base pretty ]; 4571 + testHaskellDepends = [ 4572 + array base directory pretty process QuickCheck test-framework 4573 + test-framework-quickcheck2 4574 + ]; 4575 + description = "O(ND) diff algorithm in haskell"; 4576 + license = stdenv.lib.licenses.bsd3; 4577 + hydraPlatforms = stdenv.lib.platforms.none; 4578 + }) {}; 4579 + 4562 4580 "Diff" = callPackage 4563 4581 ({ mkDerivation, array, base, directory, pretty, process 4564 4582 , QuickCheck, test-framework, test-framework-quickcheck2 ··· 10767 10785 ({ mkDerivation, base, bytestring, HsOpenSSL, unix }: 10768 10786 mkDerivation { 10769 10787 pname = "HsOpenSSL-x509-system"; 10770 - version = "0.1.0.3"; 10771 - sha256 = "14hzjdpv8ld3nw5fcx451w49vq0s8fhs1zh984vpm85b5ypbgp2v"; 10788 + version = "0.1.0.4"; 10789 + sha256 = "15mp70bqg1lzp971bzp6wym3bwzvxb76hzbgckygbfa722xyymhr"; 10772 10790 libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; 10773 10791 description = "Use the system's native CA certificate store with HsOpenSSL"; 10774 10792 license = stdenv.lib.licenses.bsd3; ··· 12678 12696 }: 12679 12697 mkDerivation { 12680 12698 pname = "ListLike"; 12681 - version = "4.7.1"; 12682 - sha256 = "1gccb84fma0plkwjdz8hgqa70a5lr6d9gnw6pfky993555ig29mp"; 12683 - libraryHaskellDepends = [ 12684 - array base bytestring containers deepseq dlist fmlist text 12685 - utf8-string vector 12686 - ]; 12687 - testHaskellDepends = [ 12688 - array base bytestring containers dlist fmlist HUnit QuickCheck 12689 - random text utf8-string vector 12690 - ]; 12691 - description = "Generalized support for list-like structures"; 12692 - license = stdenv.lib.licenses.bsd3; 12693 - }) {}; 12694 - 12695 - "ListLike_4_7_2" = callPackage 12696 - ({ mkDerivation, array, base, bytestring, containers, deepseq 12697 - , dlist, fmlist, HUnit, QuickCheck, random, text, utf8-string 12698 - , vector 12699 - }: 12700 - mkDerivation { 12701 - pname = "ListLike"; 12702 12699 version = "4.7.2"; 12703 12700 sha256 = "15c1q4rl4kwpgpsdf4x7k17m2fgzimm9915k71cpjiv0sq9b2rn2"; 12704 12701 libraryHaskellDepends = [ ··· 12711 12708 ]; 12712 12709 description = "Generalized support for list-like structures"; 12713 12710 license = stdenv.lib.licenses.bsd3; 12714 - hydraPlatforms = stdenv.lib.platforms.none; 12715 12711 }) {}; 12716 12712 12717 12713 "ListT" = callPackage ··· 13101 13097 ]; 13102 13098 description = "Library for using Mixed Integer Programming (MIP)"; 13103 13099 license = stdenv.lib.licenses.bsd3; 13100 + hydraPlatforms = stdenv.lib.platforms.none; 13101 + broken = true; 13104 13102 }) {}; 13105 13103 13106 13104 "MSQueue" = callPackage ··· 13202 13200 ({ mkDerivation, base }: 13203 13201 mkDerivation { 13204 13202 pname = "MapWith"; 13205 - version = "0.1.0.0"; 13206 - sha256 = "1dk5b9bi29917sf3mk3q85iqjkfc7vczwb8x8cg6w6gxfqn0444v"; 13207 - revision = "1"; 13208 - editedCabalFile = "1zkpqgxh2d1zg087766vixw5j9xh9i9z4vdp5gv87xzhc4ig9qbs"; 13203 + version = "0.2.0.0"; 13204 + sha256 = "1xkyaj83yblf42qawv4nyi8miaynydd8b3ysx62f9y10bqxk7dja"; 13209 13205 libraryHaskellDepends = [ base ]; 13210 13206 testHaskellDepends = [ base ]; 13211 13207 benchmarkHaskellDepends = [ base ]; 13212 - description = "mapWith: like fmap, but with additional arguments (isFirst, isLast, etc)"; 13208 + description = "mapWith: like fmap, but with additional parameters (isFirst, isLast, etc)"; 13213 13209 license = stdenv.lib.licenses.bsd3; 13214 13210 }) {}; 13215 13211 ··· 20637 20633 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20638 20634 mkDerivation { 20639 20635 pname = "VulkanMemoryAllocator"; 20640 - version = "0.3.6"; 20641 - sha256 = "1zclpawaa1cx1p58asn7lla4lakkr869qnkdvrypxxqki3406hsz"; 20636 + version = "0.3.7"; 20637 + sha256 = "1y2dmk60dvk8d9n16in98cmin5ckvdx3knwlfzcs0jl6vyh8n51n"; 20642 20638 libraryHaskellDepends = [ 20643 20639 base bytestring transformers vector vulkan 20644 20640 ]; ··· 21325 21321 inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXinerama; 21326 21322 inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXrender;}; 21327 21323 21324 + "X11_1_9_2" = callPackage 21325 + ({ mkDerivation, base, data-default, libX11, libXext, libXinerama 21326 + , libXrandr, libXrender, libXScrnSaver 21327 + }: 21328 + mkDerivation { 21329 + pname = "X11"; 21330 + version = "1.9.2"; 21331 + sha256 = "013yny4dwbs98kp7245j8dv81h4p1cdwn2rsf2hvhsplg6ixkc05"; 21332 + libraryHaskellDepends = [ base data-default ]; 21333 + librarySystemDepends = [ 21334 + libX11 libXext libXinerama libXrandr libXrender libXScrnSaver 21335 + ]; 21336 + description = "A binding to the X11 graphics library"; 21337 + license = stdenv.lib.licenses.bsd3; 21338 + hydraPlatforms = stdenv.lib.platforms.none; 21339 + }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXScrnSaver; 21340 + inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXinerama; 21341 + inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXrender;}; 21342 + 21328 21343 "X11-extras" = callPackage 21329 21344 ({ mkDerivation, base, libX11, X11 }: 21330 21345 mkDerivation { ··· 22125 22140 }) {}; 22126 22141 22127 22142 "accelerate" = callPackage 22128 - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, base-orphans 22129 - , bytestring, Cabal, cabal-doctest, constraints, containers 22130 - , cryptonite, deepseq, directory, doctest, exceptions, filepath 22131 - , ghc-prim, half, hashable, hashtables, hedgehog, lens, mtl, tasty 22132 - , tasty-expected-failure, tasty-hedgehog, tasty-hunit 22133 - , template-haskell, terminal-size, transformers, unique, unix 22143 + ({ mkDerivation, ansi-terminal, base, base-orphans, bytestring 22144 + , Cabal, cabal-doctest, containers, cryptonite, deepseq, directory 22145 + , doctest, exceptions, filepath, ghc-prim, half, hashable 22146 + , hashtables, hedgehog, lens, mtl, prettyprinter 22147 + , prettyprinter-ansi-terminal, primitive, tasty, template-haskell 22148 + , terminal-size, text, transformers, unique, unix 22134 22149 , unordered-containers, vector 22135 22150 }: 22136 22151 mkDerivation { 22137 22152 pname = "accelerate"; 22138 - version = "1.2.0.1"; 22139 - sha256 = "0vglmasqgq0h8fvm9z8l2b3sygqvix8vr6c3n357gkr2mpz6gq8h"; 22153 + version = "1.3.0.0"; 22154 + sha256 = "14md9fbxckgwpbkm7hdj95ny11w5b5cj103r8razg0aw2hgid5sb"; 22140 22155 setupHaskellDepends = [ base Cabal cabal-doctest ]; 22141 22156 libraryHaskellDepends = [ 22142 - ansi-terminal ansi-wl-pprint base base-orphans bytestring 22143 - constraints containers cryptonite deepseq directory exceptions 22144 - filepath ghc-prim half hashable hashtables hedgehog lens mtl tasty 22145 - tasty-expected-failure tasty-hedgehog tasty-hunit template-haskell 22146 - terminal-size transformers unique unix unordered-containers vector 22157 + ansi-terminal base base-orphans bytestring containers cryptonite 22158 + deepseq directory exceptions filepath ghc-prim half hashable 22159 + hashtables hedgehog lens mtl prettyprinter 22160 + prettyprinter-ansi-terminal primitive tasty template-haskell 22161 + terminal-size text transformers unique unix unordered-containers 22162 + vector 22147 22163 ]; 22148 22164 testHaskellDepends = [ base doctest ]; 22149 22165 description = "An embedded language for accelerated array processing"; ··· 22173 22189 }) {}; 22174 22190 22175 22191 "accelerate-bignum" = callPackage 22176 - ({ mkDerivation, accelerate, accelerate-io, accelerate-llvm 22192 + ({ mkDerivation, accelerate, accelerate-io-vector, accelerate-llvm 22177 22193 , accelerate-llvm-native, accelerate-llvm-ptx, base, criterion 22178 22194 , ghc-prim, hedgehog, llvm-hs-pure, mwc-random, tasty 22179 22195 , tasty-hedgehog, template-haskell, vector, vector-th-unbox ··· 22181 22197 }: 22182 22198 mkDerivation { 22183 22199 pname = "accelerate-bignum"; 22184 - version = "0.2.0.0"; 22185 - sha256 = "0xhnd39fb17kb7q5z9z8svn8zlv6j1wxrbkv3vij4f1q2hkqkl0p"; 22186 - revision = "1"; 22187 - editedCabalFile = "0lfsmhky8shyy9xhm0j2as91vrmqqrrn9r0fsv2ljc4xjklg723r"; 22200 + version = "0.3.0.0"; 22201 + sha256 = "1xwqg3d2qilkfx8wmmhp2qq5cas3pnsrpyli3a9z0yxqamibxh33"; 22188 22202 libraryHaskellDepends = [ 22189 22203 accelerate accelerate-llvm accelerate-llvm-native 22190 22204 accelerate-llvm-ptx base ghc-prim llvm-hs-pure template-haskell ··· 22194 22208 tasty tasty-hedgehog 22195 22209 ]; 22196 22210 benchmarkHaskellDepends = [ 22197 - accelerate accelerate-io accelerate-llvm-native accelerate-llvm-ptx 22198 - base criterion mwc-random vector vector-th-unbox wide-word 22211 + accelerate accelerate-io-vector accelerate-llvm-native 22212 + accelerate-llvm-ptx base criterion mwc-random vector 22213 + vector-th-unbox wide-word 22199 22214 ]; 22200 22215 description = "Fixed-length large integer arithmetic for Accelerate"; 22201 22216 license = stdenv.lib.licenses.bsd3; ··· 22211 22226 }: 22212 22227 mkDerivation { 22213 22228 pname = "accelerate-blas"; 22214 - version = "0.2.0.1"; 22215 - sha256 = "00869y2zrh43sl0rap8bbgnzqdvrrxpc2qhzz0zdfasr3440py6k"; 22229 + version = "0.3.0.0"; 22230 + sha256 = "1ydym6fxvg1b5vx49r8dnn80spsq42ssbg4v01s1djklks054g7y"; 22216 22231 libraryHaskellDepends = [ 22217 22232 accelerate accelerate-llvm accelerate-llvm-native 22218 22233 accelerate-llvm-ptx base blas-hs bytestring containers cublas cuda ··· 22305 22320 22306 22321 "accelerate-examples" = callPackage 22307 22322 ({ mkDerivation, accelerate, accelerate-fft, accelerate-io 22308 - , accelerate-llvm-native, accelerate-llvm-ptx, ansi-wl-pprint, base 22309 - , binary, bmp, bytestring, bytestring-lexing, cereal 22323 + , accelerate-io-bmp, accelerate-io-repa, accelerate-io-vector 22324 + , accelerate-llvm-native, accelerate-llvm-ptx, ansi-wl-pprint 22325 + , array, base, binary, bmp, bytestring, bytestring-lexing, cereal 22310 22326 , colour-accelerate, containers, criterion, criterion-measurement 22311 22327 , directory, fclabels, filepath, gloss, gloss-accelerate 22312 22328 , gloss-raster-accelerate, gloss-rendering, HUnit, lens-accelerate 22313 - , linear, linear-accelerate, matrix-market-attoparsec, mwc-random 22314 - , normaldistribution, QuickCheck, random, repa, repa-io, scientific 22315 - , test-framework, test-framework-hunit, test-framework-quickcheck2 22316 - , vector, vector-algorithms 22329 + , linear-accelerate, matrix-market-attoparsec, mwc-random 22330 + , mwc-random-accelerate, normaldistribution, QuickCheck, random 22331 + , repa, repa-io, scientific, test-framework, test-framework-hunit 22332 + , test-framework-quickcheck2, vector, vector-algorithms 22317 22333 }: 22318 22334 mkDerivation { 22319 22335 pname = "accelerate-examples"; 22320 - version = "1.2.0.1"; 22321 - sha256 = "0hzk6zas03yhh8xjjrh772knhbvisl0r6q10y4mcq552bcfd8yvj"; 22336 + version = "1.3.0.0"; 22337 + sha256 = "145m2bi8bini6z2jg6g99vnsc3m7pqz4dc9l34j8fg40fw65rwi0"; 22322 22338 configureFlags = [ "-f-opencl" ]; 22323 22339 isLibrary = true; 22324 22340 isExecutable = true; 22325 22341 libraryHaskellDepends = [ 22326 22342 accelerate accelerate-llvm-native accelerate-llvm-ptx 22327 22343 ansi-wl-pprint base containers criterion directory fclabels HUnit 22328 - linear mwc-random QuickCheck test-framework test-framework-hunit 22344 + QuickCheck test-framework test-framework-hunit 22329 22345 test-framework-quickcheck2 22330 22346 ]; 22331 22347 executableHaskellDepends = [ 22332 - accelerate accelerate-fft accelerate-io base binary bmp bytestring 22333 - bytestring-lexing cereal colour-accelerate containers criterion 22334 - criterion-measurement directory fclabels filepath gloss 22348 + accelerate accelerate-fft accelerate-io accelerate-io-bmp 22349 + accelerate-io-repa accelerate-io-vector array base binary bmp 22350 + bytestring bytestring-lexing cereal colour-accelerate containers 22351 + criterion criterion-measurement directory fclabels filepath gloss 22335 22352 gloss-accelerate gloss-raster-accelerate gloss-rendering 22336 22353 lens-accelerate linear-accelerate matrix-market-attoparsec 22337 - mwc-random normaldistribution random repa repa-io scientific vector 22338 - vector-algorithms 22354 + mwc-random mwc-random-accelerate normaldistribution random repa 22355 + repa-io scientific vector vector-algorithms 22339 22356 ]; 22340 22357 description = "Examples using the Accelerate library"; 22341 22358 license = stdenv.lib.licenses.bsd3; ··· 22351 22368 }: 22352 22369 mkDerivation { 22353 22370 pname = "accelerate-fft"; 22354 - version = "1.2.0.0"; 22355 - sha256 = "19p9d59vdd3nq97xjprlb6fz2ajlk6gl37cdyvrm9inag4nnk6lp"; 22356 - revision = "2"; 22357 - editedCabalFile = "096vhbwbkyvjx8znjqnb3lz43kzqq0x7kcfv1gmmbjjrcmwaj2y5"; 22371 + version = "1.3.0.0"; 22372 + sha256 = "1a7cwzbs8r3rvaymrq2kfx83lqb3i7wz0gmz3ppz59f40rxn974x"; 22358 22373 libraryHaskellDepends = [ 22359 22374 accelerate accelerate-llvm accelerate-llvm-native 22360 22375 accelerate-llvm-ptx base bytestring carray containers cuda cufft ··· 22433 22448 }) {}; 22434 22449 22435 22450 "accelerate-io" = callPackage 22436 - ({ mkDerivation, accelerate, array, base, bmp, bytestring, hedgehog 22437 - , primitive, repa, tasty, tasty-hedgehog, vector 22451 + ({ mkDerivation, accelerate, base }: 22452 + mkDerivation { 22453 + pname = "accelerate-io"; 22454 + version = "1.3.0.0"; 22455 + sha256 = "048md40pfacxa1mbzncybxzwp9fzmsaq8i94pd8ai677n2zyw5cg"; 22456 + libraryHaskellDepends = [ accelerate base ]; 22457 + description = "Convert between Accelerate arrays and raw pointers"; 22458 + license = stdenv.lib.licenses.bsd3; 22459 + hydraPlatforms = stdenv.lib.platforms.none; 22460 + broken = true; 22461 + }) {}; 22462 + 22463 + "accelerate-io-JuicyPixels" = callPackage 22464 + ({ mkDerivation, accelerate, accelerate-io-vector, base 22465 + , JuicyPixels, vector 22438 22466 }: 22439 22467 mkDerivation { 22440 - pname = "accelerate-io"; 22441 - version = "1.2.0.0"; 22442 - sha256 = "13pqqsd5pbxmgsxnp9w141mnwscnlmbhxaz6f5jx4ssipnma2pwf"; 22443 - revision = "2"; 22444 - editedCabalFile = "0w8y40p71c6c7cj49n4kanwmsa53s2nydigiiidqp93yxhw0virq"; 22468 + pname = "accelerate-io-JuicyPixels"; 22469 + version = "0.1.0.0"; 22470 + sha256 = "0rr43lwmc16r99si1s4nimxxydlsxb6ck45absrxy6vnkln7x185"; 22445 22471 libraryHaskellDepends = [ 22446 - accelerate array base bmp bytestring primitive repa vector 22472 + accelerate accelerate-io-vector base JuicyPixels vector 22447 22473 ]; 22474 + description = "Convert between Accelerate arrays and JuicyPixels images"; 22475 + license = stdenv.lib.licenses.bsd3; 22476 + hydraPlatforms = stdenv.lib.platforms.none; 22477 + }) {}; 22478 + 22479 + "accelerate-io-array" = callPackage 22480 + ({ mkDerivation, accelerate, array, base, hedgehog, primitive 22481 + , tasty, tasty-hedgehog 22482 + }: 22483 + mkDerivation { 22484 + pname = "accelerate-io-array"; 22485 + version = "0.1.0.0"; 22486 + sha256 = "1gcxd4m3h1xr8ia8z7c8sxznm90h2q3mzwhi5vsv8s1gh7sdym9m"; 22487 + libraryHaskellDepends = [ accelerate array base primitive ]; 22448 22488 testHaskellDepends = [ 22449 - accelerate array base hedgehog tasty tasty-hedgehog vector 22489 + accelerate array base hedgehog tasty tasty-hedgehog 22490 + ]; 22491 + description = "Convert between Accelerate and array"; 22492 + license = stdenv.lib.licenses.bsd3; 22493 + hydraPlatforms = stdenv.lib.platforms.none; 22494 + }) {}; 22495 + 22496 + "accelerate-io-bmp" = callPackage 22497 + ({ mkDerivation, accelerate, accelerate-io-bytestring, base, bmp }: 22498 + mkDerivation { 22499 + pname = "accelerate-io-bmp"; 22500 + version = "0.1.0.0"; 22501 + sha256 = "0x7bkn4j7s9dzlfk4q1lh6fyd4bir1zkm4x37c65nl9g86154sc8"; 22502 + libraryHaskellDepends = [ 22503 + accelerate accelerate-io-bytestring base bmp 22504 + ]; 22505 + description = "Convert between Accelerate arrays and BMP images"; 22506 + license = stdenv.lib.licenses.bsd3; 22507 + hydraPlatforms = stdenv.lib.platforms.none; 22508 + }) {}; 22509 + 22510 + "accelerate-io-bytestring" = callPackage 22511 + ({ mkDerivation, accelerate, base, bytestring }: 22512 + mkDerivation { 22513 + pname = "accelerate-io-bytestring"; 22514 + version = "0.1.0.0"; 22515 + sha256 = "15j42ahdcqpy4xbpp1xibfbjcrijy0hpfxp4k53qkb9bcqaknyq1"; 22516 + libraryHaskellDepends = [ accelerate base bytestring ]; 22517 + description = "Convert between Accelerate and ByteString"; 22518 + license = stdenv.lib.licenses.bsd3; 22519 + hydraPlatforms = stdenv.lib.platforms.none; 22520 + }) {}; 22521 + 22522 + "accelerate-io-cereal" = callPackage 22523 + ({ mkDerivation, accelerate, accelerate-io-bytestring, base, cereal 22524 + }: 22525 + mkDerivation { 22526 + pname = "accelerate-io-cereal"; 22527 + version = "0.1.0.0"; 22528 + sha256 = "13im1kmrd2yjxxrmpzp2030jhhq9fm9xa76yl11xwpd82z10a2pl"; 22529 + libraryHaskellDepends = [ 22530 + accelerate accelerate-io-bytestring base cereal 22531 + ]; 22532 + description = "Binary serialisation of Accelerate arrays using cereal"; 22533 + license = stdenv.lib.licenses.bsd3; 22534 + hydraPlatforms = stdenv.lib.platforms.none; 22535 + }) {}; 22536 + 22537 + "accelerate-io-repa" = callPackage 22538 + ({ mkDerivation, accelerate, base, repa }: 22539 + mkDerivation { 22540 + pname = "accelerate-io-repa"; 22541 + version = "0.1.0.0"; 22542 + sha256 = "084gzvfwz6prwra5393lfm5hgvssxwij0cdf24fq5nahzn7x2wrp"; 22543 + libraryHaskellDepends = [ accelerate base repa ]; 22544 + description = "Convert between Accelerate and Repa arrays"; 22545 + license = stdenv.lib.licenses.bsd3; 22546 + hydraPlatforms = stdenv.lib.platforms.none; 22547 + }) {}; 22548 + 22549 + "accelerate-io-vector" = callPackage 22550 + ({ mkDerivation, accelerate, base, hedgehog, primitive, tasty 22551 + , tasty-hedgehog, vector 22552 + }: 22553 + mkDerivation { 22554 + pname = "accelerate-io-vector"; 22555 + version = "0.1.0.0"; 22556 + sha256 = "1nh7n3qj4csxyzvkhkvfr9bii2vmqky51f32pz3bphrwfvhzdrri"; 22557 + libraryHaskellDepends = [ accelerate base primitive vector ]; 22558 + testHaskellDepends = [ 22559 + accelerate base hedgehog tasty tasty-hedgehog vector 22450 22560 ]; 22451 - description = "Read and write Accelerate arrays in various formats"; 22561 + description = "Convert between Accelerate and vector"; 22452 22562 license = stdenv.lib.licenses.bsd3; 22453 22563 hydraPlatforms = stdenv.lib.platforms.none; 22454 - broken = true; 22455 22564 }) {}; 22456 22565 22457 22566 "accelerate-kullback-liebler" = callPackage ··· 22481 22590 }) {}; 22482 22591 22483 22592 "accelerate-llvm" = callPackage 22484 - ({ mkDerivation, abstract-deque, accelerate, base, bytestring 22485 - , chaselev-deque, containers, data-default-class, deepseq 22486 - , directory, dlist, exceptions, filepath, llvm-hs, llvm-hs-pure 22487 - , mtl, mwc-random, primitive, template-haskell 22488 - , unordered-containers, vector 22593 + ({ mkDerivation, accelerate, base, bytestring, constraints 22594 + , containers, data-default-class, deepseq, directory, dlist 22595 + , exceptions, filepath, llvm-hs, llvm-hs-pure, mtl, primitive 22596 + , template-haskell, unordered-containers, vector 22489 22597 }: 22490 22598 mkDerivation { 22491 22599 pname = "accelerate-llvm"; 22492 - version = "1.2.0.1"; 22493 - sha256 = "1cv5s7fgkdd3m95vy2rrq2kvzyzxx6vwgsc5nqcmfdp00z8znjhk"; 22600 + version = "1.3.0.0"; 22601 + sha256 = "1fjjfjav11s6grwl6ihqdrzx738bwki0l25qlp4zzz2hi2440qbp"; 22494 22602 libraryHaskellDepends = [ 22495 - abstract-deque accelerate base bytestring chaselev-deque containers 22603 + accelerate base bytestring constraints containers 22496 22604 data-default-class deepseq directory dlist exceptions filepath 22497 - llvm-hs llvm-hs-pure mtl mwc-random primitive template-haskell 22605 + llvm-hs llvm-hs-pure mtl primitive template-haskell 22498 22606 unordered-containers vector 22499 22607 ]; 22500 22608 description = "Accelerate backend component generating LLVM IR"; ··· 22505 22613 22506 22614 "accelerate-llvm-native" = callPackage 22507 22615 ({ mkDerivation, accelerate, accelerate-llvm, base, bytestring 22508 - , c2hs, Cabal, cereal, containers, directory, dlist, filepath, ghc 22509 - , ghc-prim, hashable, libffi, llvm-hs, llvm-hs-pure, lockfree-queue 22510 - , mtl, template-haskell, time, unique, unix, vector 22616 + , c2hs, cereal, containers, deepseq, directory, dlist, filepath 22617 + , ghc, ghc-prim, hashable, libffi, llvm-hs, llvm-hs-pure 22618 + , lockfree-queue, mtl, template-haskell, unique, unix, vector 22511 22619 }: 22512 22620 mkDerivation { 22513 22621 pname = "accelerate-llvm-native"; 22514 - version = "1.2.0.1"; 22515 - sha256 = "0sml5rj3dnxlv14i4xbs1sadnprjga1iws7fl7sxkyjzxqc04vrj"; 22622 + version = "1.3.0.0"; 22623 + sha256 = "1x4wfbp83ppzknd98k2ad160a8kdqh96qqmyfzdqyvy44iskxcn6"; 22516 22624 libraryHaskellDepends = [ 22517 - accelerate accelerate-llvm base bytestring Cabal cereal containers 22518 - directory dlist filepath ghc ghc-prim hashable libffi llvm-hs 22519 - llvm-hs-pure lockfree-queue mtl template-haskell time unique unix 22520 - vector 22625 + accelerate accelerate-llvm base bytestring cereal containers 22626 + deepseq directory dlist filepath ghc ghc-prim hashable libffi 22627 + llvm-hs llvm-hs-pure lockfree-queue mtl template-haskell unique 22628 + unix vector 22521 22629 ]; 22522 22630 libraryToolDepends = [ c2hs ]; 22523 22631 testHaskellDepends = [ accelerate base ]; ··· 22530 22638 "accelerate-llvm-ptx" = callPackage 22531 22639 ({ mkDerivation, accelerate, accelerate-llvm, base, bytestring 22532 22640 , containers, cuda, deepseq, directory, dlist, file-embed, filepath 22533 - , hashable, llvm-hs, llvm-hs-pure, mtl, nvvm, pretty, process 22534 - , template-haskell, time, unordered-containers 22641 + , ghc-heap, hashable, llvm-hs, llvm-hs-pure, mtl, nvvm, pretty 22642 + , process, template-haskell, unordered-containers 22535 22643 }: 22536 22644 mkDerivation { 22537 22645 pname = "accelerate-llvm-ptx"; 22538 - version = "1.2.0.1"; 22539 - sha256 = "0c9hl19v4si0lnah4l63kqhpxz16zy0wi3cg28gz00mxzgqilivs"; 22646 + version = "1.3.0.0"; 22647 + sha256 = "0bb7p67dv5csbblnaxbm7hkq8y2qknz0yd1f0rav29igsv3a9rfx"; 22540 22648 libraryHaskellDepends = [ 22541 22649 accelerate accelerate-llvm base bytestring containers cuda deepseq 22542 - directory dlist file-embed filepath hashable llvm-hs llvm-hs-pure 22543 - mtl nvvm pretty process template-haskell time unordered-containers 22650 + directory dlist file-embed filepath ghc-heap hashable llvm-hs 22651 + llvm-hs-pure mtl nvvm pretty process template-haskell 22652 + unordered-containers 22544 22653 ]; 22545 22654 testHaskellDepends = [ accelerate base ]; 22546 22655 description = "Accelerate backend for NVIDIA GPUs"; ··· 29137 29246 }: 29138 29247 mkDerivation { 29139 29248 pname = "amqp-utils"; 29140 - version = "0.4.4.0"; 29141 - sha256 = "07zpmq9sx6lmnma4dxxph0jficghrlfbb568frh3d6fbdiqgmfgl"; 29142 - isLibrary = false; 29143 - isExecutable = true; 29144 - executableHaskellDepends = [ 29145 - amqp base bytestring connection containers data-default-class 29146 - directory hinotify magic network process text time tls unix 29147 - utf8-string x509-system 29148 - ]; 29149 - description = "Generic Haskell AMQP tools"; 29150 - license = stdenv.lib.licenses.gpl3; 29151 - }) {}; 29152 - 29153 - "amqp-utils_0_4_4_1" = callPackage 29154 - ({ mkDerivation, amqp, base, bytestring, connection, containers 29155 - , data-default-class, directory, hinotify, magic, network, process 29156 - , text, time, tls, unix, utf8-string, x509-system 29157 - }: 29158 - mkDerivation { 29159 - pname = "amqp-utils"; 29160 29249 version = "0.4.4.1"; 29161 29250 sha256 = "1vs0p7pc6z9mfjd2vns66wnhl8v1n9rbgabyjw0v832m2pwizzmj"; 29162 29251 isLibrary = false; ··· 29168 29257 ]; 29169 29258 description = "AMQP toolset for the command line"; 29170 29259 license = stdenv.lib.licenses.gpl3; 29171 - hydraPlatforms = stdenv.lib.platforms.none; 29172 29260 }) {}; 29173 29261 29174 29262 "amqp-worker" = callPackage ··· 31827 31915 }: 31828 31916 mkDerivation { 31829 31917 pname = "archive-libarchive"; 31830 - version = "1.0.0.0"; 31831 - sha256 = "0pqq76gnk6y71c5wwjhq99y2695v6bfyzjb8gakp6h3jivcpd2gb"; 31832 - revision = "1"; 31833 - editedCabalFile = "12wq8nisyr2i1861v2377llha63nqpiys9vk6dvg9rfz7f6qqdch"; 31918 + version = "1.0.0.1"; 31919 + sha256 = "079wm4c9bahvi693g6655ag9rz9l5g7i4b82q7zm0hz383f94zsl"; 31834 31920 libraryHaskellDepends = [ 31835 31921 base bytestring composition-prelude libarchive 31836 31922 ]; ··· 34888 34974 }: 34889 34975 mkDerivation { 34890 34976 pname = "aura"; 34891 - version = "3.1.7"; 34892 - sha256 = "0w7m65bh38gdq186b16pcnq7k2nakiy749m7z092cv4k5w72gal5"; 34893 - revision = "1"; 34894 - editedCabalFile = "1g8hm1bd4yssmy1qkarnwd8w2wz8c2m02gk1agh3pyv60f9q66s7"; 34977 + version = "3.1.8"; 34978 + sha256 = "19zm9bwpixqdg4a5mcrv2c8fyhygjzawjrwv1jwwhcczqsrjwvrw"; 34895 34979 isLibrary = true; 34896 34980 isExecutable = true; 34897 34981 libraryHaskellDepends = [ ··· 35047 35131 }: 35048 35132 mkDerivation { 35049 35133 pname = "autoapply"; 35050 - version = "0.4"; 35051 - sha256 = "0b7la51399kcj9a4z9j49xd9v2zs172vygs3djz5qid7fsl37pgm"; 35134 + version = "0.4.1"; 35135 + sha256 = "1jgzfdi5p0pns6w7543yp2ljglnmym9qplyb4vafynzg3bjhzvz0"; 35052 35136 setupHaskellDepends = [ base Cabal cabal-doctest ]; 35053 35137 libraryHaskellDepends = [ 35054 35138 base logict mtl template-haskell th-desugar transformers ··· 37803 37887 pname = "base64-bytestring-type"; 37804 37888 version = "1.0.1"; 37805 37889 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 37806 - revision = "6"; 37807 - editedCabalFile = "05z53pc1gi62lzl262mc1qx12qqrds6ab6rflwpfcxbp0a67c825"; 37890 + revision = "7"; 37891 + editedCabalFile = "1vry5qh9w1adwyfrlx8x2772knwmdvxgq2nfzng7vybll2cqph4c"; 37808 37892 libraryHaskellDepends = [ 37809 37893 aeson base base-compat base64-bytestring binary bytestring cereal 37810 37894 deepseq hashable http-api-data QuickCheck serialise text ··· 46419 46503 }: 46420 46504 mkDerivation { 46421 46505 pname = "byte-count-reader"; 46422 - version = "0.10.0.1"; 46423 - sha256 = "0ibckpy0wz2f8590z92lvkmwcf29lv6sby1y3cz3cihxvp3bw3il"; 46424 - libraryHaskellDepends = [ base extra parsec parsec-numbers text ]; 46425 - testHaskellDepends = [ 46426 - base extra hspec parsec parsec-numbers text 46427 - ]; 46428 - description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; 46429 - license = stdenv.lib.licenses.gpl3; 46430 - }) {}; 46431 - 46432 - "byte-count-reader_0_10_1_1" = callPackage 46433 - ({ mkDerivation, base, extra, hspec, parsec, parsec-numbers, text 46434 - }: 46435 - mkDerivation { 46436 - pname = "byte-count-reader"; 46437 46506 version = "0.10.1.1"; 46438 46507 sha256 = "0amzhcy60rmiyfp7cgdg7g1xcf7z5zz43kg18i1bwwj565ipb6p8"; 46439 46508 libraryHaskellDepends = [ base extra parsec parsec-numbers text ]; ··· 46442 46511 ]; 46443 46512 description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; 46444 46513 license = stdenv.lib.licenses.gpl3; 46445 - hydraPlatforms = stdenv.lib.platforms.none; 46446 46514 }) {}; 46447 46515 46448 46516 "byte-order" = callPackage ··· 48297 48365 pname = "cabal-plan"; 48298 48366 version = "0.7.0.0"; 48299 48367 sha256 = "1wv375dq50fibzg6xa9vrr8q4lhaqcl254b9a2vc42rrjvhxxmzc"; 48300 - revision = "1"; 48301 - editedCabalFile = "0gc64mgk11nszilkbid351zxh5cpy85kqcc3mrkrw2fsbcga08as"; 48368 + revision = "2"; 48369 + editedCabalFile = "1c3w9d75kqxhyafjyl8fyzbrp80idvhd693rsd08gws8blkk1vzr"; 48302 48370 configureFlags = [ "-fexe" ]; 48303 48371 isLibrary = true; 48304 48372 isExecutable = true; ··· 49871 49939 ]; 49872 49940 description = "OTP-like supervision trees in Haskell"; 49873 49941 license = stdenv.lib.licenses.mit; 49942 + hydraPlatforms = stdenv.lib.platforms.none; 49943 + broken = true; 49874 49944 }) {}; 49875 49945 49876 49946 "capnp" = callPackage ··· 57317 57387 ({ mkDerivation, accelerate, base }: 57318 57388 mkDerivation { 57319 57389 pname = "colour-accelerate"; 57320 - version = "0.3.0.0"; 57321 - sha256 = "0zvzra2w0sajw0hzg2k25khv8c5j1i17g8dnga70w73f3mmh3gbz"; 57322 - revision = "1"; 57323 - editedCabalFile = "1mbz9wdx396q8gdy6yqsc5vsxrkky9zkxczjblvc9zy542v252cn"; 57390 + version = "0.4.0.0"; 57391 + sha256 = "1j7ff2wb58yf346z2abr1v1yq498fxm498rdf1g62ppf6vkdplw8"; 57324 57392 libraryHaskellDepends = [ accelerate base ]; 57325 57393 description = "Working with colours in Accelerate"; 57326 57394 license = stdenv.lib.licenses.bsd3; ··· 58541 58609 }: 58542 58610 mkDerivation { 58543 58611 pname = "composite-aeson"; 58544 - version = "0.7.3.0"; 58545 - sha256 = "0wb15vq95kf6jigfy0n3jampnx8xmkxmh2lnxgfsc8zac9hwls55"; 58612 + version = "0.7.4.0"; 58613 + sha256 = "1k8m89cff8b3yc1af0l9vd13pav2hjy51gcadahn07zpwv1bszfj"; 58546 58614 libraryHaskellDepends = [ 58547 58615 aeson aeson-better-errors base composite-base containers 58548 58616 contravariant generic-deriving hashable lens mmorph mtl profunctors ··· 58561 58629 broken = true; 58562 58630 }) {}; 58563 58631 58632 + "composite-aeson-path" = callPackage 58633 + ({ mkDerivation, base, composite-aeson, path }: 58634 + mkDerivation { 58635 + pname = "composite-aeson-path"; 58636 + version = "0.7.4.0"; 58637 + sha256 = "08p988iq7y76px61dlj5jq35drmnrf4khi27wpqgh3pg9d96yihx"; 58638 + libraryHaskellDepends = [ base composite-aeson path ]; 58639 + description = "Formatting data for the path library"; 58640 + license = stdenv.lib.licenses.bsd3; 58641 + hydraPlatforms = stdenv.lib.platforms.none; 58642 + broken = true; 58643 + }) {}; 58644 + 58564 58645 "composite-aeson-refined" = callPackage 58565 58646 ({ mkDerivation, aeson-better-errors, base, composite-aeson, mtl 58566 58647 , refined 58567 58648 }: 58568 58649 mkDerivation { 58569 58650 pname = "composite-aeson-refined"; 58570 - version = "0.7.3.0"; 58571 - sha256 = "0g0i8zwky1ygniyxpvgl1r78b4qak1mx1wpy2pj815zrd43x1y60"; 58651 + version = "0.7.4.0"; 58652 + sha256 = "049lrm5iip5y3c9m9x4sjangaigdprj1553sw2vrcvnvn8xfq57s"; 58572 58653 libraryHaskellDepends = [ 58573 58654 aeson-better-errors base composite-aeson mtl refined 58574 58655 ]; ··· 58579 58660 }) {}; 58580 58661 58581 58662 "composite-base" = callPackage 58582 - ({ mkDerivation, base, exceptions, hspec, lens, monad-control, mtl 58583 - , profunctors, QuickCheck, template-haskell, text, transformers 58584 - , transformers-base, unliftio-core, vinyl 58663 + ({ mkDerivation, base, deepseq, exceptions, hspec, lens 58664 + , monad-control, mtl, profunctors, QuickCheck, template-haskell 58665 + , text, transformers, transformers-base, unliftio-core, vinyl 58585 58666 }: 58586 58667 mkDerivation { 58587 58668 pname = "composite-base"; 58588 - version = "0.7.3.0"; 58589 - sha256 = "07zbs89cqm7b78jfh2lwma3spsklc6wq0f58g14p27wgm253xkwp"; 58669 + version = "0.7.4.0"; 58670 + sha256 = "1ml1y1zh8znvaqydwcnv8n69rzmx7zy2bpzr65gy79xbczz3dxwz"; 58590 58671 libraryHaskellDepends = [ 58591 - base exceptions lens monad-control mtl profunctors template-haskell 58592 - text transformers transformers-base unliftio-core vinyl 58593 - ]; 58594 - testHaskellDepends = [ 58595 - base exceptions hspec lens monad-control mtl profunctors QuickCheck 58672 + base deepseq exceptions lens monad-control mtl profunctors 58596 58673 template-haskell text transformers transformers-base unliftio-core 58597 58674 vinyl 58675 + ]; 58676 + testHaskellDepends = [ 58677 + base deepseq exceptions hspec lens monad-control mtl profunctors 58678 + QuickCheck template-haskell text transformers transformers-base 58679 + unliftio-core vinyl 58598 58680 ]; 58599 58681 description = "Shared utilities for composite-* packages"; 58600 58682 license = stdenv.lib.licenses.bsd3; 58683 + }) {}; 58684 + 58685 + "composite-binary" = callPackage 58686 + ({ mkDerivation, base, binary, composite-base }: 58687 + mkDerivation { 58688 + pname = "composite-binary"; 58689 + version = "0.7.4.0"; 58690 + sha256 = "07d88krkpplprnw57j4bqi71p8bmj0wz28yw41wgl2p5g2h7zccp"; 58691 + libraryHaskellDepends = [ base binary composite-base ]; 58692 + description = "Orphan binary instances"; 58693 + license = stdenv.lib.licenses.bsd3; 58601 58694 hydraPlatforms = stdenv.lib.platforms.none; 58602 58695 broken = true; 58603 58696 }) {}; ··· 58607 58700 }: 58608 58701 mkDerivation { 58609 58702 pname = "composite-ekg"; 58610 - version = "0.7.3.0"; 58611 - sha256 = "1402ay8gxqp1fh2ija9ry5g366p5vx64ikmfal9hr2c42c2kmcf9"; 58703 + version = "0.7.4.0"; 58704 + sha256 = "0y8wnp6n1fvqfrkm1lqv8pdfq7a4k7gaxl3i9dh6xfzyamlghg82"; 58612 58705 libraryHaskellDepends = [ 58613 58706 base composite-base ekg-core lens text vinyl 58614 58707 ]; ··· 58618 58711 broken = true; 58619 58712 }) {}; 58620 58713 58714 + "composite-hashable" = callPackage 58715 + ({ mkDerivation, base, composite-base, hashable }: 58716 + mkDerivation { 58717 + pname = "composite-hashable"; 58718 + version = "0.7.4.0"; 58719 + sha256 = "0zwv6m9nzz0g3ngmfznxh6wmprhcgdbfxrsgylnr6990ppk0bmg1"; 58720 + libraryHaskellDepends = [ base composite-base hashable ]; 58721 + description = "Orphan hashable instances"; 58722 + license = stdenv.lib.licenses.bsd3; 58723 + }) {}; 58724 + 58621 58725 "composite-opaleye" = callPackage 58622 58726 ({ mkDerivation, base, bytestring, composite-base, hspec, lens 58623 58727 , opaleye, postgresql-simple, product-profunctors, profunctors ··· 58625 58729 }: 58626 58730 mkDerivation { 58627 58731 pname = "composite-opaleye"; 58628 - version = "0.7.3.0"; 58629 - sha256 = "0b9h0z4v0268qgcwq53p59nkwbbg77dqm9snr4zif71xhmlfscpx"; 58732 + version = "0.7.4.0"; 58733 + sha256 = "0nzyslqgh7m9ryqw4rajq2m4kfknqzdq0aqnygyz0sblmgixn4hm"; 58630 58734 libraryHaskellDepends = [ 58631 58735 base bytestring composite-base lens opaleye postgresql-simple 58632 58736 product-profunctors profunctors template-haskell text vinyl ··· 58649 58753 }: 58650 58754 mkDerivation { 58651 58755 pname = "composite-swagger"; 58652 - version = "0.7.3.0"; 58653 - sha256 = "1gzmksq2dfywird7gyjc95v3spgxsab3jbakg5il2fmkx35cc1za"; 58756 + version = "0.7.4.0"; 58757 + sha256 = "0a7pcs06m0w0mq60y3hhgn4a36gx5daypc1nh1ndsm6x3q3d99q8"; 58654 58758 libraryHaskellDepends = [ 58655 58759 base composite-base insert-ordered-containers lens swagger2 58656 58760 template-haskell text vinyl ··· 61407 61511 hydraPlatforms = stdenv.lib.platforms.none; 61408 61512 }) {}; 61409 61513 61514 + "containers-accelerate" = callPackage 61515 + ({ mkDerivation, accelerate, accelerate-llvm-native, base 61516 + , containers, half, hashable-accelerate, hedgehog, tasty 61517 + , tasty-hedgehog 61518 + }: 61519 + mkDerivation { 61520 + pname = "containers-accelerate"; 61521 + version = "0.1.0.0"; 61522 + sha256 = "1bfw5k6nq15szgwjkzd17inmlk0ii0pd6a4lrixi8gyjf6ksm6n1"; 61523 + libraryHaskellDepends = [ accelerate base hashable-accelerate ]; 61524 + testHaskellDepends = [ 61525 + accelerate accelerate-llvm-native base containers half 61526 + hashable-accelerate hedgehog tasty tasty-hedgehog 61527 + ]; 61528 + description = "Hashing-based container types"; 61529 + license = stdenv.lib.licenses.bsd3; 61530 + hydraPlatforms = stdenv.lib.platforms.none; 61531 + }) {}; 61532 + 61410 61533 "containers-benchmark" = callPackage 61411 61534 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 61412 61535 , ghc-prim, random ··· 61780 61903 ]; 61781 61904 description = "Extras for the \"contravariant\" package"; 61782 61905 license = stdenv.lib.licenses.mit; 61906 + }) {}; 61907 + 61908 + "contravariant-extras_0_3_5_2" = callPackage 61909 + ({ mkDerivation, base, contravariant, template-haskell 61910 + , template-haskell-compat-v0208 61911 + }: 61912 + mkDerivation { 61913 + pname = "contravariant-extras"; 61914 + version = "0.3.5.2"; 61915 + sha256 = "0ikwzg0992j870yp0x2ssf4mv2hw2nml979apg493m72xnvr1jz9"; 61916 + libraryHaskellDepends = [ 61917 + base contravariant template-haskell template-haskell-compat-v0208 61918 + ]; 61919 + description = "Extras for the \"contravariant\" package"; 61920 + license = stdenv.lib.licenses.mit; 61921 + hydraPlatforms = stdenv.lib.platforms.none; 61783 61922 }) {}; 61784 61923 61785 61924 "control" = callPackage ··· 65622 65761 }: 65623 65762 mkDerivation { 65624 65763 pname = "cublas"; 65625 - version = "0.5.0.0"; 65626 - sha256 = "0s47wrmlb35dpym4dz3688qx8m166i2a9d8pqnfdzxy67zv98g1f"; 65764 + version = "0.6.0.0"; 65765 + sha256 = "0yxyynvf9zlkc8yhra5j1sk1d8hbiqvzbsh02mc1y8hcf8nzyp61"; 65627 65766 setupHaskellDepends = [ base Cabal cuda directory filepath ]; 65628 65767 libraryHaskellDepends = [ 65629 65768 base cuda half storable-complex template-haskell ··· 65705 65844 }: 65706 65845 mkDerivation { 65707 65846 pname = "cuda"; 65708 - version = "0.10.1.0"; 65709 - sha256 = "10lyyc652ic3m4r5agszpv2r99y9fnsdwahb5pd4qiga770v45vp"; 65710 - revision = "2"; 65711 - editedCabalFile = "1nw135pd2ab3mmyq3xmkxynzfb54qr7a8xssq5ivrk83yzvs87im"; 65847 + version = "0.10.2.0"; 65848 + sha256 = "0fkjibnnxradhsbasx1mw0c088cfwypnk6a5002rxpzxid5qrp9l"; 65712 65849 isLibrary = true; 65713 65850 isExecutable = true; 65714 65851 setupHaskellDepends = [ base Cabal directory filepath ]; ··· 65768 65905 }: 65769 65906 mkDerivation { 65770 65907 pname = "cufft"; 65771 - version = "0.9.0.1"; 65772 - sha256 = "1cf11ia4i19bpbs0wzkz2hqzc22hh2dvbn8m5frnwild83zal4n3"; 65908 + version = "0.10.0.0"; 65909 + sha256 = "1prma5srgfnhjvf1rvxd1kznv42k4svhk05j93mx1pcx7jd1cmvz"; 65773 65910 setupHaskellDepends = [ 65774 65911 base Cabal cuda directory filepath template-haskell 65775 65912 ]; ··· 66187 66324 }: 66188 66325 mkDerivation { 66189 66326 pname = "cusolver"; 66190 - version = "0.2.0.0"; 66191 - sha256 = "0v30wm32jcz7jy940y26zcqvjy1058bqf0v44xf73v53dlwkd07a"; 66327 + version = "0.3.0.0"; 66328 + sha256 = "0xskvpjqlckpfrfvnb2afj29p2gnzafq2v98pbvwsprmn60np9mq"; 66192 66329 setupHaskellDepends = [ base Cabal cuda directory filepath ]; 66193 66330 libraryHaskellDepends = [ 66194 66331 base cublas cuda cusparse half storable-complex template-haskell ··· 66205 66342 }: 66206 66343 mkDerivation { 66207 66344 pname = "cusparse"; 66208 - version = "0.2.0.0"; 66209 - sha256 = "1y6qnxfdcw3ik3mjp4410846pq1l628d02bdasll1xd4r4r87vh6"; 66345 + version = "0.3.0.0"; 66346 + sha256 = "0x2ab7sd7j1mmjns8332mm2nzikprq3w6fbrnbcfk5lz2x0bgir2"; 66210 66347 setupHaskellDepends = [ base Cabal cuda directory filepath ]; 66211 66348 libraryHaskellDepends = [ base cuda half storable-complex ]; 66212 66349 libraryToolDepends = [ c2hs ]; ··· 68766 68903 broken = true; 68767 68904 }) {}; 68768 68905 68906 + "data-validation" = callPackage 68907 + ({ mkDerivation, base, containers, hspec, template-haskell }: 68908 + mkDerivation { 68909 + pname = "data-validation"; 68910 + version = "0.1.0.1"; 68911 + sha256 = "0bc3i4pnz1v516cmsnay1hpmh9r7zglwyv2ai1ncxy2k4l78pih0"; 68912 + libraryHaskellDepends = [ base containers template-haskell ]; 68913 + testHaskellDepends = [ base containers hspec template-haskell ]; 68914 + description = "A library for creating type safe validations"; 68915 + license = stdenv.lib.licenses.asl20; 68916 + hydraPlatforms = stdenv.lib.platforms.none; 68917 + broken = true; 68918 + }) {}; 68919 + 68769 68920 "data-variant" = callPackage 68770 68921 ({ mkDerivation, base, safe }: 68771 68922 mkDerivation { ··· 68981 69132 }: 68982 69133 mkDerivation { 68983 69134 pname = "dataflower"; 68984 - version = "0.2.2.0"; 68985 - sha256 = "169m0yngaslc2pysdpf65pmf9zr037ij7y95rqi6bp3dxcxfcwlg"; 69135 + version = "0.3.0.0"; 69136 + sha256 = "0nxir4syhbw5spqks3pxj71w781vn8mqxdiig9dqnrv5ks02bqp6"; 68986 69137 libraryHaskellDepends = [ 68987 69138 base hashable mtl pretty-show stm time transformers vector 68988 69139 ]; ··· 72441 72592 ]; 72442 72593 description = "Dhall to Nix compiler"; 72443 72594 license = stdenv.lib.licenses.bsd3; 72444 - hydraPlatforms = stdenv.lib.platforms.none; 72445 - broken = true; 72446 72595 }) {}; 72447 72596 72448 72597 "dhall-nixpkgs" = callPackage ··· 76179 76328 }) {}; 76180 76329 76181 76330 "dobutokO-poetry" = callPackage 76182 - ({ mkDerivation, base, dobutokO-poetry-general, mmsyn3, mmsyn6ukr 76183 - , mmsyn7s, uniqueness-periods, vector 76331 + ({ mkDerivation, base, dobutokO-poetry-general, mmsyn2, mmsyn3 76332 + , mmsyn5, mmsyn6ukr, mmsyn7s, uniqueness-periods, vector 76184 76333 }: 76185 76334 mkDerivation { 76186 76335 pname = "dobutokO-poetry"; 76187 - version = "0.15.0.0"; 76188 - sha256 = "1091wqxzg138bc8kk55fkgv5ripq48zyvm3in2b2g54zjy6l4f1p"; 76336 + version = "0.16.3.0"; 76337 + sha256 = "151ncvk2jz2nlgr52485p6mdqix7qlld96kzi9y3hxag2kpb0723"; 76189 76338 isLibrary = true; 76190 76339 isExecutable = true; 76191 76340 libraryHaskellDepends = [ 76192 - base dobutokO-poetry-general mmsyn3 mmsyn6ukr mmsyn7s 76341 + base dobutokO-poetry-general mmsyn2 mmsyn3 mmsyn5 mmsyn6ukr mmsyn7s 76193 76342 uniqueness-periods vector 76194 76343 ]; 76195 76344 executableHaskellDepends = [ 76196 - base dobutokO-poetry-general mmsyn3 mmsyn6ukr mmsyn7s 76345 + base dobutokO-poetry-general mmsyn2 mmsyn3 mmsyn5 mmsyn6ukr mmsyn7s 76197 76346 uniqueness-periods vector 76198 76347 ]; 76199 76348 description = "Helps to order the 7 or less Ukrainian words to obtain somewhat suitable for poetry or music text"; ··· 76915 77064 }: 76916 77065 mkDerivation { 76917 77066 pname = "dom-lt"; 76918 - version = "0.2.1"; 76919 - sha256 = "16pf0lzzg0wwk5q44ybbc2hbrjs5hzsai0ssm836xiywsqwp61a7"; 77067 + version = "0.2.2"; 77068 + sha256 = "0hf0wf4fl671awf87f0r7r4a57cgm88x666081c0wy16qchahffw"; 76920 77069 libraryHaskellDepends = [ array base containers ]; 76921 77070 testHaskellDepends = [ base containers HUnit ]; 76922 77071 benchmarkHaskellDepends = [ base containers criterion deepseq ]; ··· 83348 83497 license = stdenv.lib.licenses.bsd3; 83349 83498 }) {}; 83350 83499 83351 - "essence-of-live-coding_0_2_2" = callPackage 83500 + "essence-of-live-coding_0_2_3" = callPackage 83352 83501 ({ mkDerivation, base, containers, foreign-store, mtl, QuickCheck 83353 - , syb, test-framework, test-framework-quickcheck2, transformers 83354 - , vector-sized 83502 + , syb, test-framework, test-framework-quickcheck2, time 83503 + , transformers, vector-sized 83355 83504 }: 83356 83505 mkDerivation { 83357 83506 pname = "essence-of-live-coding"; 83358 - version = "0.2.2"; 83359 - sha256 = "1hczvr1byk8qjkb45w9nvjmbqfmxl15dgn7kvp0rby0dkrn85275"; 83507 + version = "0.2.3"; 83508 + sha256 = "19sc5wgby356bm5rh7sr41ydhw3v1pqbz76xyf7081kg77qcbc0m"; 83360 83509 isLibrary = true; 83361 83510 isExecutable = true; 83362 83511 libraryHaskellDepends = [ 83363 - base containers foreign-store syb transformers vector-sized 83512 + base containers foreign-store syb time transformers vector-sized 83364 83513 ]; 83365 83514 executableHaskellDepends = [ base transformers ]; 83366 83515 testHaskellDepends = [ ··· 83387 83536 license = stdenv.lib.licenses.bsd3; 83388 83537 }) {}; 83389 83538 83390 - "essence-of-live-coding-gloss_0_2_2" = callPackage 83539 + "essence-of-live-coding-gloss_0_2_3" = callPackage 83391 83540 ({ mkDerivation, base, essence-of-live-coding, foreign-store, gloss 83392 83541 , syb, transformers 83393 83542 }: 83394 83543 mkDerivation { 83395 83544 pname = "essence-of-live-coding-gloss"; 83396 - version = "0.2.2"; 83397 - sha256 = "19kxrjyhikgb49qdb7rlap8bbjsvkyi2ni6a1m1hjyxjziypsw0y"; 83545 + version = "0.2.3"; 83546 + sha256 = "0msc2pfg7096azk4ggb267cfm2vh02kcksgdmzl46rc5if98xmi7"; 83398 83547 libraryHaskellDepends = [ 83399 83548 base essence-of-live-coding foreign-store gloss syb transformers 83400 83549 ]; ··· 83409 83558 }: 83410 83559 mkDerivation { 83411 83560 pname = "essence-of-live-coding-gloss-example"; 83412 - version = "0.2.2"; 83413 - sha256 = "07kgmbwm9swdavsypxnqf64fh9b2c2h9rmkm38hcl6lahdb2rb44"; 83561 + version = "0.2.3"; 83562 + sha256 = "08hzfi3mspxlkbhh8mr1q330yp94s6s9w55pla7x10qj8vda4shc"; 83414 83563 isLibrary = false; 83415 83564 isExecutable = true; 83416 83565 executableHaskellDepends = [ ··· 83419 83568 ]; 83420 83569 description = "General purpose live coding framework - Gloss example"; 83421 83570 license = stdenv.lib.licenses.bsd3; 83571 + hydraPlatforms = stdenv.lib.platforms.none; 83572 + broken = true; 83422 83573 }) {}; 83423 83574 83424 83575 "essence-of-live-coding-pulse" = callPackage ··· 83436 83587 license = stdenv.lib.licenses.bsd3; 83437 83588 }) {}; 83438 83589 83439 - "essence-of-live-coding-pulse_0_2_2" = callPackage 83590 + "essence-of-live-coding-pulse_0_2_3" = callPackage 83440 83591 ({ mkDerivation, base, essence-of-live-coding, foreign-store 83441 83592 , pulse-simple, transformers 83442 83593 }: 83443 83594 mkDerivation { 83444 83595 pname = "essence-of-live-coding-pulse"; 83445 - version = "0.2.2"; 83446 - sha256 = "15v4bzkx4j6mvprk1d215ywamjjvmf6g13cppd109aj4h40zcxbi"; 83596 + version = "0.2.3"; 83597 + sha256 = "1mxgicmy5xmmad0r0b3dn18ab9dn8r3rqglqxa6v75kl8lswm0c8"; 83447 83598 libraryHaskellDepends = [ 83448 83599 base essence-of-live-coding foreign-store pulse-simple transformers 83449 83600 ]; ··· 83458 83609 }: 83459 83610 mkDerivation { 83460 83611 pname = "essence-of-live-coding-pulse-example"; 83461 - version = "0.2.2"; 83462 - sha256 = "1476wxny2yhq2f2cn2bqrcm4dri39mql509pf9yq2kyd76lkrcgx"; 83612 + version = "0.2.3"; 83613 + sha256 = "0da3l6z0lnjlq62vx18s2jyvrydffxvcjhv2ydlwczrcy0wggdln"; 83463 83614 isLibrary = false; 83464 83615 isExecutable = true; 83465 83616 executableHaskellDepends = [ ··· 83468 83619 ]; 83469 83620 description = "General purpose live coding framework - pulse backend example"; 83470 83621 license = stdenv.lib.licenses.bsd3; 83622 + hydraPlatforms = stdenv.lib.platforms.none; 83623 + broken = true; 83471 83624 }) {}; 83472 83625 83473 83626 "essence-of-live-coding-quickcheck" = callPackage ··· 83486 83639 license = stdenv.lib.licenses.bsd3; 83487 83640 }) {}; 83488 83641 83489 - "essence-of-live-coding-quickcheck_0_2_2" = callPackage 83642 + "essence-of-live-coding-quickcheck_0_2_3" = callPackage 83490 83643 ({ mkDerivation, base, boltzmann-samplers, essence-of-live-coding 83491 83644 , QuickCheck, syb, transformers 83492 83645 }: 83493 83646 mkDerivation { 83494 83647 pname = "essence-of-live-coding-quickcheck"; 83495 - version = "0.2.2"; 83496 - sha256 = "1v7ijzs64bqn8nyp1msrrvk6kfkzx5a87ib74fmcasiww1y4lwgl"; 83648 + version = "0.2.3"; 83649 + sha256 = "0shbpc1ivqr3m9p76kf1vj7g1rqy3magxyh58w1mxymf4c61a9gr"; 83497 83650 libraryHaskellDepends = [ 83498 83651 base boltzmann-samplers essence-of-live-coding QuickCheck syb 83499 83652 transformers ··· 83509 83662 }: 83510 83663 mkDerivation { 83511 83664 pname = "essence-of-live-coding-warp"; 83512 - version = "0.2.2"; 83513 - sha256 = "14ygm62ak6gprx0r545xmv5nk544p0gsip3017p7ziy3k01mwhgh"; 83665 + version = "0.2.3"; 83666 + sha256 = "1rpp6xm3s3fji1pcdajc06iw0zhk3mbd245h6a0z6ygf8id7sh50"; 83514 83667 libraryHaskellDepends = [ 83515 83668 base essence-of-live-coding http-types wai warp 83516 83669 ]; 83517 83670 testHaskellDepends = [ base essence-of-live-coding http-client ]; 83518 83671 description = "General purpose live coding framework"; 83519 83672 license = stdenv.lib.licenses.bsd3; 83673 + hydraPlatforms = stdenv.lib.platforms.none; 83674 + broken = true; 83520 83675 }) {}; 83521 83676 83522 83677 "estimator" = callPackage ··· 85968 86123 }: 85969 86124 mkDerivation { 85970 86125 pname = "extra"; 85971 - version = "1.7.5"; 85972 - sha256 = "1cickrjvg4i25yn3qg4f0id0bmq115siysyqnh0yk9rwjlnrxyn9"; 86126 + version = "1.7.6"; 86127 + sha256 = "1mdqw88crblabxz4sg803ww6pkl5prnjnpjwh11n32y2npky5ask"; 85973 86128 libraryHaskellDepends = [ 85974 86129 base clock directory filepath process time unix 85975 86130 ]; ··· 85980 86135 license = stdenv.lib.licenses.bsd3; 85981 86136 }) {}; 85982 86137 86138 + "extra_1_7_7" = callPackage 86139 + ({ mkDerivation, base, clock, directory, filepath, process 86140 + , QuickCheck, quickcheck-instances, time, unix 86141 + }: 86142 + mkDerivation { 86143 + pname = "extra"; 86144 + semigroups tfp transformers unique-logic-tf utility-ht 86145 + sha256 = "1ark7b6xknc44v8jg5aymxffj5d0qr81frjpg2ffqrkwnhva0w5s"; 86146 + libraryHaskellDepends = [ 86147 + base clock directory filepath process time unix 86148 + ]; 86149 + testHaskellDepends = [ 86150 + base directory filepath QuickCheck quickcheck-instances unix 86151 + ]; 86152 + description = "Extra functions I use"; 86153 + license = stdenv.lib.licenses.bsd3; 86154 + hydraPlatforms = stdenv.lib.platforms.none; 86155 + }) {}; 86156 + 85983 86157 "extract-dependencies" = callPackage 85984 86158 ({ mkDerivation, async, base, Cabal, containers 85985 86159 , package-description-remote ··· 88878 89052 }: 88879 89053 mkDerivation { 88880 89054 pname = "filestore"; 88881 - version = "0.6.4"; 88882 - sha256 = "1z967kviqsy3ma8xdfffx864f7ji6nsrbd5riis0nasm1bbwm8rr"; 88883 - enableSeparateDataOutput = true; 89055 + version = "0.6.5"; 89056 + sha256 = "0z29273vdqjsrj4vby0gp7d12wg9nkzq9zgqg18db0p5948jw1dh"; 88884 89057 libraryHaskellDepends = [ 88885 89058 base bytestring containers Diff directory filepath old-locale 88886 89059 parsec process split time utf8-string xml ··· 91122 91295 ({ mkDerivation, base }: 91123 91296 mkDerivation { 91124 91297 pname = "fmlist"; 91125 - version = "0.9.3"; 91126 - sha256 = "1w9nhm2zybdx4c1lalkajwqr8wcs731lfjld2r8gknd7y96x8pwf"; 91127 - libraryHaskellDepends = [ base ]; 91128 - description = "FoldMap lists"; 91129 - license = stdenv.lib.licenses.bsd3; 91130 - }) {}; 91131 - 91132 - "fmlist_0_9_4" = callPackage 91133 - ({ mkDerivation, base }: 91134 - mkDerivation { 91135 - pname = "fmlist"; 91136 91298 version = "0.9.4"; 91137 91299 sha256 = "19h95ph7lh7llw6j1v1rssrdi5k7xw8x0iac9rgzss371s2w3g9d"; 91138 91300 libraryHaskellDepends = [ base ]; 91139 91301 description = "FoldMap lists"; 91140 91302 license = stdenv.lib.licenses.bsd3; 91141 - hydraPlatforms = stdenv.lib.platforms.none; 91142 91303 }) {}; 91143 91304 91144 91305 "fmt" = callPackage ··· 94406 94567 }: 94407 94568 mkDerivation { 94408 94569 pname = "functor-combinators"; 94409 - version = "0.3.5.1"; 94410 - sha256 = "07hwsy8nly4sps3fsyfmq54cwfb850j1i1darwsyw24ignbd60j4"; 94570 + version = "0.3.6.0"; 94571 + sha256 = "0idf896xadp5v5k4m0s087xvvs9008sxw61djqb9v0x08rs5zy8f"; 94411 94572 libraryHaskellDepends = [ 94412 94573 assoc base bifunctors comonad constraints containers contravariant 94413 94574 deriving-compat free invariant kan-extensions mmorph mtl ··· 94917 95078 }: 94918 95079 mkDerivation { 94919 95080 pname = "futhark"; 94920 - version = "0.16.3"; 94921 - sha256 = "0y9g7nldcx2y7h3gb652i5r3lfvbriaqfqs2gnxym1r9w9kki0si"; 95081 + version = "0.16.4"; 95082 + sha256 = "14k682phqdp2scmv064i6jyymf3j2f3bs25yw1qff76bkymv02vd"; 94922 95083 isLibrary = true; 94923 95084 isExecutable = true; 94924 95085 libraryHaskellDepends = [ ··· 96563 96724 license = stdenv.lib.licenses.mit; 96564 96725 }) {}; 96565 96726 96727 + "generic-functor" = callPackage 96728 + ({ mkDerivation, base }: 96729 + mkDerivation { 96730 + pname = "generic-functor"; 96731 + version = "0.1.0.0"; 96732 + sha256 = "02anlx3l0zn4hx9pckpdpp93yp1xyqcafpy6rk7s1zpv7nqk12z2"; 96733 + libraryHaskellDepends = [ base ]; 96734 + testHaskellDepends = [ base ]; 96735 + description = "Deriving generalized functors with GHC.Generics"; 96736 + license = stdenv.lib.licenses.mit; 96737 + }) {}; 96738 + 96566 96739 "generic-lens" = callPackage 96567 96740 ({ mkDerivation, base, doctest, generic-lens-core, HUnit 96568 96741 , inspection-testing, lens, profunctors, text ··· 96632 96805 broken = true; 96633 96806 }) {}; 96634 96807 96808 + "generic-match" = callPackage 96809 + ({ mkDerivation, base }: 96810 + mkDerivation { 96811 + pname = "generic-match"; 96812 + version = "0.2.0.2"; 96813 + sha256 = "16r43gzl3a8ycxbhggqk09mrm63r9db85nk1j2x4j4lzcwap7bid"; 96814 + libraryHaskellDepends = [ base ]; 96815 + description = "First class pattern matching"; 96816 + license = stdenv.lib.licenses.mit; 96817 + }) {}; 96818 + 96635 96819 "generic-maybe" = callPackage 96636 96820 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 96637 96821 , directory, doctest, filepath, generic-deriving, ghc-prim, hlint ··· 100041 100225 ]; 100042 100226 description = "GI friendly Binding to the Cairo library"; 100043 100227 license = stdenv.lib.licenses.lgpl21; 100228 + hydraPlatforms = stdenv.lib.platforms.none; 100229 + broken = true; 100044 100230 }) {}; 100045 100231 100046 100232 "gi-cairo-render" = callPackage ··· 100060 100246 libraryToolDepends = [ c2hs ]; 100061 100247 description = "GI friendly Binding to the Cairo library"; 100062 100248 license = stdenv.lib.licenses.bsd3; 100249 + hydraPlatforms = stdenv.lib.platforms.none; 100250 + broken = true; 100063 100251 }) {inherit (pkgs) cairo;}; 100064 100252 100065 100253 "gi-dbusmenu" = callPackage ··· 100079 100267 libraryPkgconfigDepends = [ libdbusmenu ]; 100080 100268 description = "Dbusmenu bindings"; 100081 100269 license = stdenv.lib.licenses.lgpl21; 100270 + hydraPlatforms = stdenv.lib.platforms.none; 100271 + broken = true; 100082 100272 }) {inherit (pkgs) libdbusmenu;}; 100083 100273 100084 100274 "gi-dbusmenu_0_4_8" = callPackage ··· 100099 100289 description = "Dbusmenu bindings"; 100100 100290 license = stdenv.lib.licenses.lgpl21; 100101 100291 hydraPlatforms = stdenv.lib.platforms.none; 100292 + broken = true; 100102 100293 }) {inherit (pkgs) libdbusmenu;}; 100103 100294 100104 100295 "gi-dbusmenugtk3" = callPackage ··· 100123 100314 libraryPkgconfigDepends = [ gtk3 libdbusmenu-gtk3 ]; 100124 100315 description = "DbusmenuGtk bindings"; 100125 100316 license = stdenv.lib.licenses.lgpl21; 100317 + hydraPlatforms = stdenv.lib.platforms.none; 100318 + broken = true; 100126 100319 }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;}; 100127 100320 100128 100321 "gi-dbusmenugtk3_0_4_9" = callPackage ··· 100148 100341 description = "DbusmenuGtk bindings"; 100149 100342 license = stdenv.lib.licenses.lgpl21; 100150 100343 hydraPlatforms = stdenv.lib.platforms.none; 100344 + broken = true; 100151 100345 }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;}; 100152 100346 100153 100347 "gi-gdk" = callPackage ··· 100287 100481 libraryPkgconfigDepends = [ gtk3 ]; 100288 100482 description = "GdkX11 bindings"; 100289 100483 license = stdenv.lib.licenses.lgpl21; 100484 + hydraPlatforms = stdenv.lib.platforms.none; 100485 + broken = true; 100290 100486 }) {inherit (pkgs) gtk3;}; 100291 100487 100292 100488 "gi-gdkx11_4_0_2" = callPackage ··· 100310 100506 description = "GdkX11 bindings"; 100311 100507 license = stdenv.lib.licenses.lgpl21; 100312 100508 hydraPlatforms = stdenv.lib.platforms.none; 100509 + broken = true; 100313 100510 }) {gtk4-x11 = null;}; 100314 100511 100315 100512 "gi-ggit" = callPackage ··· 100486 100683 libraryPkgconfigDepends = [ graphene-gobject ]; 100487 100684 description = "Graphene bindings"; 100488 100685 license = stdenv.lib.licenses.lgpl21; 100686 + hydraPlatforms = stdenv.lib.platforms.none; 100687 + broken = true; 100489 100688 }) {graphene-gobject = null;}; 100490 100689 100491 100690 "gi-graphene_1_0_2" = callPackage ··· 100506 100705 description = "Graphene bindings"; 100507 100706 license = stdenv.lib.licenses.lgpl21; 100508 100707 hydraPlatforms = stdenv.lib.platforms.none; 100708 + broken = true; 100509 100709 }) {graphene-gobject = null;}; 100510 100710 100511 100711 "gi-gsk" = callPackage ··· 100530 100730 libraryPkgconfigDepends = [ gtk4 ]; 100531 100731 description = "Gsk bindings"; 100532 100732 license = stdenv.lib.licenses.lgpl21; 100733 + hydraPlatforms = stdenv.lib.platforms.none; 100734 + broken = true; 100533 100735 }) {gtk4 = null;}; 100534 100736 100535 100737 "gi-gst" = callPackage ··· 100615 100817 libraryPkgconfigDepends = [ gstreamer-pbutils ]; 100616 100818 description = "GStreamer Plugins Base Utils bindings"; 100617 100819 license = stdenv.lib.licenses.lgpl21; 100820 + hydraPlatforms = stdenv.lib.platforms.none; 100821 + broken = true; 100618 100822 }) {gstreamer-pbutils = null;}; 100619 100823 100620 100824 "gi-gsttag" = callPackage ··· 100636 100840 libraryPkgconfigDepends = [ gstreamer-tag ]; 100637 100841 description = "GStreamer Tag bindings"; 100638 100842 license = stdenv.lib.licenses.lgpl21; 100843 + hydraPlatforms = stdenv.lib.platforms.none; 100844 + broken = true; 100639 100845 }) {gstreamer-tag = null;}; 100640 100846 100641 100847 "gi-gstvideo" = callPackage ··· 100755 100961 ]; 100756 100962 description = "Declarative GTK+ programming in Haskell"; 100757 100963 license = stdenv.lib.licenses.mpl20; 100964 + hydraPlatforms = stdenv.lib.platforms.none; 100965 + broken = true; 100758 100966 }) {}; 100759 100967 100760 100968 "gi-gtk-declarative-app-simple" = callPackage ··· 100773 100981 ]; 100774 100982 description = "Declarative GTK+ programming in Haskell in the style of Pux"; 100775 100983 license = stdenv.lib.licenses.mpl20; 100984 + hydraPlatforms = stdenv.lib.platforms.none; 100985 + broken = true; 100776 100986 }) {}; 100777 100987 100778 100988 "gi-gtk-hs" = callPackage ··· 100790 101000 ]; 100791 101001 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 100792 101002 license = stdenv.lib.licenses.lgpl21; 101003 + hydraPlatforms = stdenv.lib.platforms.none; 101004 + broken = true; 100793 101005 }) {}; 100794 101006 100795 101007 "gi-gtk-hs_0_3_9" = callPackage ··· 100808 101020 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 100809 101021 license = stdenv.lib.licenses.lgpl21; 100810 101022 hydraPlatforms = stdenv.lib.platforms.none; 101023 + broken = true; 100811 101024 }) {}; 100812 101025 100813 101026 "gi-gtkosxapplication" = callPackage ··· 100829 101042 libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; 100830 101043 description = "GtkosxApplication bindings"; 100831 101044 license = stdenv.lib.licenses.lgpl21; 101045 + hydraPlatforms = stdenv.lib.platforms.none; 101046 + broken = true; 100832 101047 }) {gtk-mac-integration-gtk3 = null;}; 100833 101048 100834 101049 "gi-gtksource" = callPackage ··· 100877 101092 libraryPkgconfigDepends = [ libhandy ]; 100878 101093 description = "libhandy bindings"; 100879 101094 license = stdenv.lib.licenses.lgpl21; 101095 + hydraPlatforms = stdenv.lib.platforms.none; 101096 + broken = true; 100880 101097 }) {inherit (pkgs) libhandy;}; 100881 101098 100882 101099 "gi-harfbuzz" = callPackage ··· 101076 101293 libraryPkgconfigDepends = [ poppler ]; 101077 101294 description = "Poppler bindings"; 101078 101295 license = stdenv.lib.licenses.lgpl21; 101296 + hydraPlatforms = stdenv.lib.platforms.none; 101297 + broken = true; 101079 101298 }) {inherit (pkgs) poppler;}; 101080 101299 101081 101300 "gi-secret" = callPackage ··· 101238 101457 libraryPkgconfigDepends = [ libwnck ]; 101239 101458 description = "Wnck bindings"; 101240 101459 license = stdenv.lib.licenses.lgpl21; 101460 + hydraPlatforms = stdenv.lib.platforms.none; 101461 + broken = true; 101241 101462 }) {inherit (pkgs) libwnck;}; 101242 101463 101243 101464 "gi-xlib" = callPackage ··· 101257 101478 libraryPkgconfigDepends = [ xlibsWrapper ]; 101258 101479 description = "xlib bindings"; 101259 101480 license = stdenv.lib.licenses.lgpl21; 101481 + hydraPlatforms = stdenv.lib.platforms.none; 101482 + broken = true; 101260 101483 }) {inherit (pkgs) xlibsWrapper;}; 101261 101484 101262 101485 "gi-xlib_2_0_9" = callPackage ··· 101277 101500 description = "xlib bindings"; 101278 101501 license = stdenv.lib.licenses.lgpl21; 101279 101502 hydraPlatforms = stdenv.lib.platforms.none; 101503 + broken = true; 101280 101504 }) {inherit (pkgs) xlibsWrapper;}; 101281 101505 101282 101506 "giak" = callPackage ··· 101341 101565 ]; 101342 101566 description = "An implementation of the Jinja2 template language in Haskell"; 101343 101567 license = stdenv.lib.licenses.mit; 101568 + }) {}; 101569 + 101570 + "ginger_0_10_1_0" = callPackage 101571 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring 101572 + , data-default, filepath, http-types, mtl, optparse-applicative 101573 + , parsec, process, regex-tdfa, safe, scientific, tasty, tasty-hunit 101574 + , tasty-quickcheck, text, time, transformers, unordered-containers 101575 + , utf8-string, vector, yaml 101576 + }: 101577 + mkDerivation { 101578 + pname = "ginger"; 101579 + version = "0.10.1.0"; 101580 + sha256 = "0579ajr1rng0bd0pml69f6yz4aykvk8zcni0p7ck628qx4jzxihx"; 101581 + isLibrary = true; 101582 + isExecutable = true; 101583 + enableSeparateDataOutput = true; 101584 + libraryHaskellDepends = [ 101585 + aeson aeson-pretty base bytestring data-default filepath http-types 101586 + mtl parsec regex-tdfa safe scientific text time transformers 101587 + unordered-containers utf8-string vector 101588 + ]; 101589 + executableHaskellDepends = [ 101590 + aeson base bytestring data-default optparse-applicative process 101591 + text transformers unordered-containers utf8-string yaml 101592 + ]; 101593 + testHaskellDepends = [ 101594 + aeson base bytestring data-default mtl tasty tasty-hunit 101595 + tasty-quickcheck text time transformers unordered-containers 101596 + utf8-string 101597 + ]; 101598 + description = "An implementation of the Jinja2 template language in Haskell"; 101599 + license = stdenv.lib.licenses.mit; 101600 + hydraPlatforms = stdenv.lib.platforms.none; 101344 101601 }) {}; 101345 101602 101346 101603 "gingersnap" = callPackage ··· 103295 103552 }) {}; 103296 103553 103297 103554 "gloss-accelerate" = callPackage 103298 - ({ mkDerivation, accelerate, base, gloss, gloss-rendering }: 103555 + ({ mkDerivation, accelerate, base, gloss, gloss-rendering 103556 + , linear-accelerate 103557 + }: 103299 103558 mkDerivation { 103300 103559 pname = "gloss-accelerate"; 103301 - version = "2.0.0.1"; 103302 - sha256 = "106z8kax0m3hzk0381l8m7gxdapl3wf0fdr1ljwb5fgcjc00pac2"; 103303 - revision = "1"; 103304 - editedCabalFile = "0349yyzxn7r82mz4vr71dibzp0sh45b4a06hm0c0z9d7vlxj0sjj"; 103305 - libraryHaskellDepends = [ accelerate base gloss gloss-rendering ]; 103560 + version = "2.1.0.0"; 103561 + sha256 = "1l09li68r04qij11p7rf9dwfv9cdncj7nm6crq6bm834il3zg4zx"; 103562 + libraryHaskellDepends = [ 103563 + accelerate base gloss gloss-rendering linear-accelerate 103564 + ]; 103306 103565 description = "Extras to interface Gloss and Accelerate"; 103307 103566 license = stdenv.lib.licenses.bsd3; 103308 103567 hydraPlatforms = stdenv.lib.platforms.none; ··· 103449 103708 }: 103450 103709 mkDerivation { 103451 103710 pname = "gloss-raster-accelerate"; 103452 - version = "2.0.0.0"; 103453 - sha256 = "1i0qx9wybr66i1x4n3p8ai2z6qx0k5lac422mhh4rvimcjx2bc9d"; 103454 - revision = "3"; 103455 - editedCabalFile = "0nk901zy01x7v7faa20j0yawqfw3nfl27xr19ip7bn3agmq4sqq2"; 103711 + version = "2.1.0.0"; 103712 + sha256 = "0yxlpz5wqfriijzkhqgjyv3g0wcmdy33ifbziqrdm9phvsjygvza"; 103456 103713 libraryHaskellDepends = [ 103457 103714 accelerate base colour-accelerate gloss gloss-accelerate 103458 103715 ]; ··· 103528 103785 hydraPlatforms = stdenv.lib.platforms.none; 103529 103786 broken = true; 103530 103787 }) {inherit (pkgs) glpk;}; 103788 + 103789 + "gltf-codec" = callPackage 103790 + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring 103791 + , directory, filepath, scientific, shower, text 103792 + , unordered-containers, vector 103793 + }: 103794 + mkDerivation { 103795 + pname = "gltf-codec"; 103796 + version = "0.1.0.1"; 103797 + sha256 = "0qdwk4ygvhdp4x8bkw101b50wc8zfb6bb54zpxaxkmva40hcv2c2"; 103798 + libraryHaskellDepends = [ 103799 + aeson base base64-bytestring binary bytestring scientific text 103800 + unordered-containers vector 103801 + ]; 103802 + testHaskellDepends = [ base bytestring directory filepath shower ]; 103803 + description = "glTF scene loader"; 103804 + license = stdenv.lib.licenses.bsd3; 103805 + hydraPlatforms = stdenv.lib.platforms.none; 103806 + broken = true; 103807 + }) {}; 103531 103808 103532 103809 "glue" = callPackage 103533 103810 ({ mkDerivation, async, base, ekg-core, hashable, hspec ··· 107903 108180 ]; 107904 108181 description = "GraphQL API"; 107905 108182 license = stdenv.lib.licenses.asl20; 108183 + }) {}; 108184 + 108185 + "graphql-client" = callPackage 108186 + ({ mkDerivation, aeson, aeson-schemas, base, bytestring, file-embed 108187 + , http-client, http-client-tls, http-types, mtl 108188 + , optparse-applicative, path, path-io, tasty, tasty-hunit 108189 + , template-haskell, text, transformers, typed-process 108190 + , unliftio-core 108191 + }: 108192 + mkDerivation { 108193 + pname = "graphql-client"; 108194 + version = "1.0.0"; 108195 + sha256 = "1qzrlk3vkvavi14zz7dkndz8qh449s6rpbrd5phqclgbrah1hj3a"; 108196 + isLibrary = true; 108197 + isExecutable = true; 108198 + libraryHaskellDepends = [ 108199 + aeson aeson-schemas base http-client http-client-tls http-types mtl 108200 + template-haskell text transformers unliftio-core 108201 + ]; 108202 + executableHaskellDepends = [ 108203 + aeson aeson-schemas base bytestring file-embed http-client 108204 + http-client-tls http-types mtl optparse-applicative path path-io 108205 + template-haskell text transformers typed-process unliftio-core 108206 + ]; 108207 + testHaskellDepends = [ 108208 + aeson aeson-schemas base http-client http-client-tls http-types mtl 108209 + tasty tasty-hunit template-haskell text transformers unliftio-core 108210 + ]; 108211 + description = "A client for Haskell programs to query a GraphQL API"; 108212 + license = stdenv.lib.licenses.bsd3; 107906 108213 }) {}; 107907 108214 107908 108215 "graphql-w-persistent" = callPackage ··· 114050 114357 license = stdenv.lib.licenses.bsd2; 114051 114358 }) {}; 114052 114359 114360 + "happy_1_20_0" = callPackage 114361 + ({ mkDerivation, array, base, containers, mtl, process }: 114362 + mkDerivation { 114363 + pname = "happy"; 114364 + version = "1.20.0"; 114365 + sha256 = "1346r2x5ravs5fqma65bzjragqbb2g6v41wz9maknwm2jf7kl79v"; 114366 + isLibrary = false; 114367 + isExecutable = true; 114368 + enableSeparateDataOutput = true; 114369 + executableHaskellDepends = [ array base containers mtl ]; 114370 + testHaskellDepends = [ base process ]; 114371 + description = "Happy is a parser generator for Haskell"; 114372 + license = stdenv.lib.licenses.bsd2; 114373 + hydraPlatforms = stdenv.lib.platforms.none; 114374 + }) {}; 114375 + 114053 114376 "happy-dot" = callPackage 114054 114377 ({ mkDerivation, array, base, clock, happy, HUnit, language-dot 114055 114378 , pretty, transformers, xml ··· 114754 115077 license = stdenv.lib.licenses.bsd3; 114755 115078 }) {}; 114756 115079 115080 + "hashable-accelerate" = callPackage 115081 + ({ mkDerivation, accelerate, base, template-haskell }: 115082 + mkDerivation { 115083 + pname = "hashable-accelerate"; 115084 + version = "0.1.0.0"; 115085 + sha256 = "04cfwd1vyz4xm87ah3x1avs2yzqi6ygcd3sl70v50g492dfl6738"; 115086 + libraryHaskellDepends = [ accelerate base template-haskell ]; 115087 + description = "A class for types which can be converted into a hash value"; 115088 + license = stdenv.lib.licenses.bsd3; 115089 + hydraPlatforms = stdenv.lib.platforms.none; 115090 + }) {}; 115091 + 114757 115092 "hashable-extras" = callPackage 114758 115093 ({ mkDerivation, base, bifunctors, bytestring, directory, doctest 114759 115094 , filepath, hashable, transformers, transformers-compat ··· 114922 115257 libraryHaskellDepends = [ base containers deepseq hashable ]; 114923 115258 description = "Persistent containers Map and Set based on hashing"; 114924 115259 license = stdenv.lib.licenses.bsd3; 115260 + }) {}; 115261 + 115262 + "hashmap-throw" = callPackage 115263 + ({ mkDerivation, base, exceptions, hashable, hashmap }: 115264 + mkDerivation { 115265 + pname = "hashmap-throw"; 115266 + version = "0.1.0.0"; 115267 + sha256 = "0dibdmpb6nyhn37xfdw8wgam4a2w8b3hl04ivg08d1ybq4a4m1k5"; 115268 + libraryHaskellDepends = [ base exceptions hashable hashmap ]; 115269 + description = "Throw behaviour for hashmap lookup"; 115270 + license = stdenv.lib.licenses.mit; 114925 115271 }) {}; 114926 115272 114927 115273 "hashrename" = callPackage ··· 115231 115577 broken = true; 115232 115578 }) {}; 115233 115579 115234 - "haskeline_0_8_0_0" = callPackage 115580 + "haskeline_0_8_1_0" = callPackage 115235 115581 ({ mkDerivation, base, bytestring, containers, directory 115236 115582 , exceptions, filepath, HUnit, process, stm, terminfo, text 115237 115583 , transformers, unix 115238 115584 }: 115239 115585 mkDerivation { 115240 115586 pname = "haskeline"; 115241 - version = "0.8.0.0"; 115242 - sha256 = "0gqsa5s0drim9m42hv4wrq61mnvcdylxysfxfw3acncwilfrn9pb"; 115587 + version = "0.8.1.0"; 115588 + sha256 = "0r6skxr45k0qq5vlh9dyl5g5ham994b8z0k3z3v56bi3npvyi6xw"; 115243 115589 configureFlags = [ "-fterminfo" ]; 115244 115590 isLibrary = true; 115245 115591 isExecutable = true; ··· 116567 116913 pname = "haskell-src"; 116568 116914 version = "1.0.3.1"; 116569 116915 sha256 = "0cjigvshk4b8wqdk0v0hz9ag1kyjjsmqsy4a1m3n28ac008cg746"; 116916 + revision = "1"; 116917 + editedCabalFile = "1li6czcs54wnij6qnvpx6f66iiw023pggb3zl3jvp74qqflcf5sg"; 116570 116918 libraryHaskellDepends = [ array base pretty syb ]; 116571 116919 libraryToolDepends = [ happy ]; 116572 116920 description = "Support for manipulating Haskell source code"; ··· 116704 117052 ]; 116705 117053 description = "Helper functions for working with haskell-src-exts trees"; 116706 117054 license = stdenv.lib.licenses.bsd3; 117055 + }) {}; 117056 + 117057 + "haskell-src-match" = callPackage 117058 + ({ mkDerivation, base, containers, filepath, haskell-src-exts 117059 + , hspec, interpolatedstring-perl6, pretty-simple, split 117060 + , template-haskell, text, transformers 117061 + }: 117062 + mkDerivation { 117063 + pname = "haskell-src-match"; 117064 + version = "0.0.0.1"; 117065 + sha256 = "0lhdnmzmwxsiw0if600apdvmkbqz44zwr7sypfclixl9c6h31wg0"; 117066 + libraryHaskellDepends = [ 117067 + base containers haskell-src-exts interpolatedstring-perl6 117068 + pretty-simple split template-haskell transformers 117069 + ]; 117070 + testHaskellDepends = [ 117071 + base filepath hspec interpolatedstring-perl6 template-haskell text 117072 + ]; 117073 + description = "Testing code generators piece by piece"; 117074 + license = stdenv.lib.licenses.bsd3; 117075 + hydraPlatforms = stdenv.lib.platforms.none; 117076 + broken = true; 116707 117077 }) {}; 116708 117078 116709 117079 "haskell-src-meta" = callPackage ··· 118586 118956 ]; 118587 118957 description = "Simple unsupervised segmentation model"; 118588 118958 license = stdenv.lib.licenses.bsd3; 118959 + hydraPlatforms = stdenv.lib.platforms.none; 118960 + broken = true; 118589 118961 }) {}; 118590 118962 118591 118963 "hasktags" = callPackage ··· 122670 123042 }: 122671 123043 mkDerivation { 122672 123044 pname = "hercules-ci-agent"; 122673 - version = "0.7.3"; 122674 - sha256 = "19mz8cqrk7v49h8k2bcpv31qnplx7r10k010gzcwmhhfyrlyrqyg"; 123045 + version = "0.7.4"; 123046 + sha256 = "0yj9njd168xpj4har99mbb9rr5dqsbnzqs1061s3czrzlp229z3l"; 122675 123047 isLibrary = true; 122676 123048 isExecutable = true; 122677 123049 libraryHaskellDepends = [ ··· 124545 124917 license = stdenv.lib.licenses.bsd3; 124546 124918 }) {}; 124547 124919 124548 - "hie-bios_0_6_2" = callPackage 124920 + "hie-bios_0_7_0" = callPackage 124549 124921 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 124550 124922 , conduit, conduit-extra, containers, cryptohash-sha1, deepseq 124551 124923 , directory, extra, file-embed, filepath, ghc, hslogger ··· 124555 124927 }: 124556 124928 mkDerivation { 124557 124929 pname = "hie-bios"; 124558 - version = "0.6.2"; 124559 - sha256 = "0x0lgrkbp4f9r96cf65d8qg55hp2qb14xd3zzap5yhybhlp54w8m"; 124930 + version = "0.7.0"; 124931 + sha256 = "17jfiyxq1m0n1i9a565niczivkkxdd36l9gxqbhfafxsykggliab"; 124560 124932 isLibrary = true; 124561 124933 isExecutable = true; 124562 124934 libraryHaskellDepends = [ ··· 136143 136515 license = stdenv.lib.licenses.bsd3; 136144 136516 }) {}; 136145 136517 136518 + "http-api-data_0_4_2" = callPackage 136519 + ({ mkDerivation, attoparsec, attoparsec-iso8601, base, base-compat 136520 + , bytestring, containers, cookie, hashable, hspec, hspec-discover 136521 + , http-types, HUnit, nats, QuickCheck, quickcheck-instances, tagged 136522 + , text, time-compat, transformers, unordered-containers, uuid-types 136523 + }: 136524 + mkDerivation { 136525 + pname = "http-api-data"; 136526 + version = "0.4.2"; 136527 + sha256 = "0xzfvxxh33ivlnrnzmm19cni3jgb5ph18n9hykkw3d6l3rhwzcnl"; 136528 + libraryHaskellDepends = [ 136529 + attoparsec attoparsec-iso8601 base base-compat bytestring 136530 + containers cookie hashable http-types tagged text time-compat 136531 + transformers unordered-containers uuid-types 136532 + ]; 136533 + testHaskellDepends = [ 136534 + base base-compat bytestring cookie hspec HUnit nats QuickCheck 136535 + quickcheck-instances text time-compat unordered-containers 136536 + uuid-types 136537 + ]; 136538 + testToolDepends = [ hspec-discover ]; 136539 + description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; 136540 + license = stdenv.lib.licenses.bsd3; 136541 + hydraPlatforms = stdenv.lib.platforms.none; 136542 + }) {}; 136543 + 136146 136544 "http-attoparsec" = callPackage 136147 136545 ({ mkDerivation, attoparsec, base, bytestring, http-types }: 136148 136546 mkDerivation { ··· 136183 136581 license = stdenv.lib.licenses.mit; 136184 136582 }) {}; 136185 136583 136186 - "http-client_0_7_2" = callPackage 136584 + "http-client_0_7_2_1" = callPackage 136187 136585 ({ mkDerivation, array, async, base, blaze-builder, bytestring 136188 136586 , case-insensitive, containers, cookie, deepseq, directory 136189 136587 , exceptions, filepath, ghc-prim, hspec, http-types, memory ··· 136192 136590 }: 136193 136591 mkDerivation { 136194 136592 pname = "http-client"; 136195 - version = "0.7.2"; 136196 - sha256 = "1ld8bx1bnf1gpvdy9wn14b31k94rjvl40zqrgd7nb20zd2l354vp"; 136593 + version = "0.7.2.1"; 136594 + sha256 = "0b699f07yqa525xqqcs4cn32fryjc2212sv8v83yfqlqwdwzr7jg"; 136197 136595 libraryHaskellDepends = [ 136198 136596 array base blaze-builder bytestring case-insensitive containers 136199 136597 cookie deepseq exceptions filepath ghc-prim http-types memory ··· 136776 137174 license = stdenv.lib.licenses.publicDomain; 136777 137175 }) {}; 136778 137176 137177 + "http-link-header_1_1_1" = callPackage 137178 + ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 137179 + , errors, hspec, hspec-attoparsec, http-api-data, network-uri 137180 + , QuickCheck, text, transformers 137181 + }: 137182 + mkDerivation { 137183 + pname = "http-link-header"; 137184 + version = "1.1.1"; 137185 + sha256 = "0bgffcmdswmpw3gl2yricz56y0cxb4x8l0j0qs60c6h16rcp5xwh"; 137186 + libraryHaskellDepends = [ 137187 + attoparsec base bytestring errors http-api-data network-uri text 137188 + ]; 137189 + testHaskellDepends = [ 137190 + attoparsec base bytestring errors hspec hspec-attoparsec 137191 + http-api-data network-uri QuickCheck text 137192 + ]; 137193 + benchmarkHaskellDepends = [ 137194 + attoparsec base bytestring criterion directory errors http-api-data 137195 + network-uri text transformers 137196 + ]; 137197 + description = "A parser and writer for the HTTP Link header per RFC 5988"; 137198 + license = stdenv.lib.licenses.publicDomain; 137199 + hydraPlatforms = stdenv.lib.platforms.none; 137200 + }) {}; 137201 + 136779 137202 "http-listen" = callPackage 136780 137203 ({ mkDerivation, base, bytestring, exceptions, HTTP, network 136781 137204 , transformers ··· 141518 141941 license = stdenv.lib.licenses.mit; 141519 141942 }) {}; 141520 141943 141944 + "ihaskell_0_10_1_2" = callPackage 141945 + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal 141946 + , cmdargs, containers, directory, filepath, ghc, ghc-boot 141947 + , ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint 141948 + , hspec, hspec-contrib, http-client, http-client-tls, HUnit 141949 + , ipython-kernel, mtl, parsec, process, random, raw-strings-qq 141950 + , setenv, shelly, split, stm, strict, text, time, transformers 141951 + , unix, unordered-containers, utf8-string, vector 141952 + }: 141953 + mkDerivation { 141954 + pname = "ihaskell"; 141955 + version = "0.10.1.2"; 141956 + sha256 = "1gs2j0qgxzf346nlnq0zx12yj528ykxia5r3rlldpf6f01zs89v8"; 141957 + isLibrary = true; 141958 + isExecutable = true; 141959 + enableSeparateDataOutput = true; 141960 + libraryHaskellDepends = [ 141961 + aeson base base64-bytestring bytestring cereal cmdargs containers 141962 + directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline 141963 + haskell-src-exts hlint http-client http-client-tls ipython-kernel 141964 + mtl parsec process random shelly split stm strict text time 141965 + transformers unix unordered-containers utf8-string vector 141966 + ]; 141967 + executableHaskellDepends = [ 141968 + aeson base bytestring containers directory ghc ipython-kernel 141969 + process strict text transformers unix unordered-containers 141970 + ]; 141971 + testHaskellDepends = [ 141972 + base directory ghc ghc-paths here hspec hspec-contrib HUnit 141973 + raw-strings-qq setenv shelly text transformers 141974 + ]; 141975 + description = "A Haskell backend kernel for the IPython project"; 141976 + license = stdenv.lib.licenses.mit; 141977 + hydraPlatforms = stdenv.lib.platforms.none; 141978 + }) {}; 141979 + 141521 141980 "ihaskell-aeson" = callPackage 141522 141981 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, here 141523 141982 , ihaskell, text ··· 143033 143492 }) {}; 143034 143493 143035 143494 "indigo" = callPackage 143036 - ({ mkDerivation, base, constraints, containers, fmt, hedgehog 143037 - , hspec-expectations, HUnit, lorentz, morley, morley-prelude 143038 - , reflection, singletons, tasty, tasty-discover, tasty-hedgehog 143039 - , tasty-hunit-compat, template-haskell, vinyl 143495 + ({ mkDerivation, base, cleveland, constraints, containers, fmt 143496 + , hedgehog, hspec-expectations, HUnit, lorentz, morley 143497 + , morley-prelude, reflection, singletons, tasty, tasty-discover 143498 + , tasty-hedgehog, tasty-hunit-compat, template-haskell, vinyl 143040 143499 }: 143041 143500 mkDerivation { 143042 143501 pname = "indigo"; 143043 - version = "0.1.0.0"; 143044 - sha256 = "03bspqbw8iz25d58xvy18qzk7wrm5k48k6bvnnslkikqy2bnkcr1"; 143502 + version = "0.2.0"; 143503 + sha256 = "070ha5s8yirci7zdnh8gy8hdh158zsj7z7blwsr7inw753fsh1jp"; 143045 143504 libraryHaskellDepends = [ 143046 143505 base constraints containers lorentz morley morley-prelude 143047 143506 reflection singletons template-haskell vinyl 143048 143507 ]; 143049 143508 testHaskellDepends = [ 143050 - base containers fmt hedgehog hspec-expectations HUnit lorentz 143051 - morley morley-prelude singletons tasty tasty-hedgehog 143509 + base cleveland containers fmt hedgehog hspec-expectations HUnit 143510 + lorentz morley morley-prelude singletons tasty tasty-hedgehog 143052 143511 tasty-hunit-compat 143053 143512 ]; 143054 143513 testToolDepends = [ tasty-discover ]; ··· 143056 143515 license = stdenv.lib.licenses.mit; 143057 143516 hydraPlatforms = stdenv.lib.platforms.none; 143058 143517 broken = true; 143059 - }) {}; 143518 + }) {cleveland = null;}; 143060 143519 143061 143520 "inf-interval" = callPackage 143062 143521 ({ mkDerivation, array, base, deepseq, QuickCheck, text, vector }: ··· 144665 145124 ({ mkDerivation, base, containers, text, vector, word8 }: 144666 145125 mkDerivation { 144667 145126 pname = "intmap-graph"; 144668 - version = "1.1.0.0"; 144669 - sha256 = "0yg88vvq53kbzw2r8i1w1g4am4bkp8qzgy9qsc7wknb3zwlzs89w"; 145127 + version = "1.3.0.0"; 145128 + sha256 = "0g4kf7d4yh29jlb5a2f8awjbmaan2f7m1ybkcihayp83lvjld4v0"; 144670 145129 libraryHaskellDepends = [ base containers text vector word8 ]; 144671 145130 description = "A graph library that allows to explore edges after their type"; 144672 145131 license = stdenv.lib.licenses.bsd3; ··· 144732 145191 license = stdenv.lib.licenses.mit; 144733 145192 }) {}; 144734 145193 144735 - "intro_0_8_0_0" = callPackage 145194 + "intro_0_9_0_0" = callPackage 144736 145195 ({ mkDerivation, base, bytestring, containers, extra, hashable 144737 145196 , lens, mtl, optics, QuickCheck, safe, text, transformers 144738 145197 , unordered-containers, writer-cps-mtl 144739 145198 }: 144740 145199 mkDerivation { 144741 145200 pname = "intro"; 144742 - version = "0.8.0.0"; 144743 - sha256 = "1vmhmpcikxlmad2c55bdlsa7j1x30irjb7dp69qii650qslh2rf3"; 145201 + version = "0.9.0.0"; 145202 + sha256 = "0x48bj9nri2zhsjpwx08nvjmpsjq6zd61npa02zsf357wylxir0x"; 144744 145203 libraryHaskellDepends = [ 144745 145204 base bytestring containers extra hashable mtl safe text 144746 145205 transformers unordered-containers writer-cps-mtl ··· 145597 146056 ]; 145598 146057 description = "A library for creating kernels for IPython frontends"; 145599 146058 license = stdenv.lib.licenses.mit; 146059 + }) {}; 146060 + 146061 + "ipython-kernel_0_10_2_1" = callPackage 146062 + ({ mkDerivation, aeson, base, bytestring, cereal, cereal-text 146063 + , containers, cryptonite, directory, filepath, memory, mtl, parsec 146064 + , process, temporary, text, transformers, unordered-containers 146065 + , uuid, zeromq4-haskell 146066 + }: 146067 + mkDerivation { 146068 + pname = "ipython-kernel"; 146069 + version = "0.10.2.1"; 146070 + sha256 = "016w7bmji3k1cnnl3vq35zq6fnqdvc2x762zfzv4ync2jz63rq38"; 146071 + isLibrary = true; 146072 + isExecutable = true; 146073 + enableSeparateDataOutput = true; 146074 + libraryHaskellDepends = [ 146075 + aeson base bytestring cereal cereal-text containers cryptonite 146076 + directory filepath memory mtl parsec process temporary text 146077 + transformers unordered-containers uuid zeromq4-haskell 146078 + ]; 146079 + description = "A library for creating kernels for IPython frontends"; 146080 + license = stdenv.lib.licenses.mit; 146081 + hydraPlatforms = stdenv.lib.platforms.none; 145600 146082 }) {}; 145601 146083 145602 146084 "irc" = callPackage ··· 146950 147432 ({ mkDerivation, base, binary, ixset-typed }: 146951 147433 mkDerivation { 146952 147434 pname = "ixset-typed-binary-instance"; 146953 - version = "0.1.0.0"; 146954 - sha256 = "1qa00y5cn3i2b66h87i6sfx6xx4yvgq7gk6maij5b9w4c821h4m4"; 147435 + version = "0.1.0.2"; 147436 + sha256 = "1jgqc1ys5pvfkha8pyddz5f01qsmv9a83xw0q75njk8zhqajlyvx"; 146955 147437 libraryHaskellDepends = [ base binary ixset-typed ]; 146956 147438 description = "Binary instance for ixset-typed"; 146957 147439 license = stdenv.lib.licenses.mit; ··· 146977 147459 ({ mkDerivation, base, hashable, ixset-typed }: 146978 147460 mkDerivation { 146979 147461 pname = "ixset-typed-hashable-instance"; 146980 - version = "0.1.0.1"; 146981 - sha256 = "14cd3kzhqv8w9f756drhjpmrr32i6n9sjmp9fk2gngsigaksnvnk"; 147462 + version = "0.1.0.2"; 147463 + sha256 = "0bwajqlj1kpis2616lrmcymmag66fkmdrsrj0r3kf8j6090zxmyv"; 146982 147464 libraryHaskellDepends = [ base hashable ixset-typed ]; 146983 147465 description = "Hashable instance for ixset-typed"; 146984 147466 license = stdenv.lib.licenses.mit; ··· 149432 149914 "jsop" = callPackage 149433 149915 ({ mkDerivation, aeson, base, containers, generics-sop, lens 149434 149916 , lens-aeson, monoidal-containers, protolude, string-interpolate 149435 - , tasty, tasty-discover, tasty-hspec, text 149917 + , tasty, tasty-discover, tasty-hspec, text, unordered-containers 149436 149918 }: 149437 149919 mkDerivation { 149438 149920 pname = "jsop"; 149439 - version = "0.1.0.0"; 149440 - sha256 = "0yaxcpxgn00jf3igvncg59ca6hz28sf791872n617v3vh7arv8y3"; 149921 + version = "0.2.0.1"; 149922 + sha256 = "05qacp69pk4fm1b1mrk2ax8f8mbfzsb71bkj2qraa116xym61j38"; 149441 149923 libraryHaskellDepends = [ 149442 149924 aeson base containers generics-sop lens lens-aeson 149443 149925 monoidal-containers protolude string-interpolate tasty 149444 - tasty-discover tasty-hspec text 149926 + tasty-discover tasty-hspec text unordered-containers 149445 149927 ]; 149446 149928 testHaskellDepends = [ 149447 149929 aeson base containers generics-sop lens lens-aeson 149448 149930 monoidal-containers protolude string-interpolate tasty 149449 - tasty-discover tasty-hspec text 149931 + tasty-discover tasty-hspec text unordered-containers 149450 149932 ]; 149451 149933 testToolDepends = [ tasty-discover ]; 149452 149934 description = "Cherry picking in JSON objects"; 149453 149935 license = stdenv.lib.licenses.bsd3; 149936 + hydraPlatforms = stdenv.lib.platforms.none; 149937 + broken = true; 149454 149938 }) {}; 149455 149939 149456 149940 "jspath" = callPackage ··· 149558 150042 }) {}; 149559 150043 149560 150044 "juicy-gcode" = callPackage 149561 - ({ mkDerivation, base, configurator, lens, linear, matrix 150045 + ({ mkDerivation, base, configurator, gitrev, lens, linear, matrix 149562 150046 , optparse-applicative, svg-tree, text 149563 150047 }: 149564 150048 mkDerivation { 149565 150049 pname = "juicy-gcode"; 149566 - version = "0.1.0.10"; 149567 - sha256 = "17ps1kkbjvlvyjzbqagwikw960nn8q4dzjvng0waknr2gaa125bj"; 150050 + version = "0.2.0.1"; 150051 + sha256 = "1jpdxxfg3wdj9kz41a1pklyshrxxakf2bahcc7y1l7p7jklb3lbi"; 149568 150052 isLibrary = false; 149569 150053 isExecutable = true; 149570 150054 executableHaskellDepends = [ 149571 - base configurator lens linear matrix optparse-applicative svg-tree 149572 - text 150055 + base configurator gitrev lens linear matrix optparse-applicative 150056 + svg-tree text 149573 150057 ]; 149574 150058 description = "SVG to G-Code converter"; 149575 150059 license = stdenv.lib.licenses.bsd3; ··· 150304 150788 }: 150305 150789 mkDerivation { 150306 150790 pname = "katip"; 150307 - version = "0.8.4.0"; 150308 - sha256 = "0hkhvkdyk4m5pdr0yj1lbdwqvrfr7sq49jw683mk0lxjlyc39xm6"; 150309 - libraryHaskellDepends = [ 150310 - aeson async auto-update base bytestring containers either hostname 150311 - microlens microlens-th monad-control mtl old-locale resourcet 150312 - safe-exceptions scientific semigroups stm string-conv 150313 - template-haskell text time transformers transformers-base 150314 - transformers-compat unix unliftio-core unordered-containers 150315 - ]; 150316 - testHaskellDepends = [ 150317 - aeson base bytestring containers directory microlens 150318 - quickcheck-instances regex-tdfa safe-exceptions stm tasty 150319 - tasty-golden tasty-hunit tasty-quickcheck template-haskell text 150320 - time time-locale-compat unordered-containers 150321 - ]; 150322 - benchmarkHaskellDepends = [ 150323 - aeson async base blaze-builder criterion deepseq directory filepath 150324 - safe-exceptions text time transformers unix 150325 - ]; 150326 - description = "A structured logging framework"; 150327 - license = stdenv.lib.licenses.bsd3; 150328 - }) {}; 150329 - 150330 - "katip_0_8_5_0" = callPackage 150331 - ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 150332 - , bytestring, containers, criterion, deepseq, directory, either 150333 - , filepath, hostname, microlens, microlens-th, monad-control, mtl 150334 - , old-locale, quickcheck-instances, regex-tdfa, resourcet 150335 - , safe-exceptions, scientific, semigroups, stm, string-conv, tasty 150336 - , tasty-golden, tasty-hunit, tasty-quickcheck, template-haskell 150337 - , text, time, time-locale-compat, transformers, transformers-base 150338 - , transformers-compat, unix, unliftio-core, unordered-containers 150339 - }: 150340 - mkDerivation { 150341 - pname = "katip"; 150342 150791 version = "0.8.5.0"; 150343 150792 sha256 = "1kjzsx4fqbknnv158ypg5jhmw7ww1rk1mf99g3dci09xg97wmgjk"; 150344 150793 libraryHaskellDepends = [ ··· 150360 150809 ]; 150361 150810 description = "A structured logging framework"; 150362 150811 license = stdenv.lib.licenses.bsd3; 150363 - hydraPlatforms = stdenv.lib.platforms.none; 150364 150812 }) {}; 150365 150813 150366 150814 "katip-datadog" = callPackage ··· 152191 152639 broken = true; 152192 152640 }) {egl = null; inherit (pkgs) glew;}; 152193 152641 152642 + "ktx-codec" = callPackage 152643 + ({ mkDerivation, base, binary, bytestring, containers, directory 152644 + , filepath, shower, text, vector 152645 + }: 152646 + mkDerivation { 152647 + pname = "ktx-codec"; 152648 + version = "0.0.1.1"; 152649 + sha256 = "1qvkcmxilvlwsbp5pidkh3njwsj6k19ybz8jw5mcm90zdhx3gya0"; 152650 + libraryHaskellDepends = [ 152651 + base binary bytestring containers text vector 152652 + ]; 152653 + testHaskellDepends = [ 152654 + base binary bytestring containers directory filepath shower text 152655 + vector 152656 + ]; 152657 + description = "Khronos texture format"; 152658 + license = stdenv.lib.licenses.bsd3; 152659 + hydraPlatforms = stdenv.lib.platforms.none; 152660 + broken = true; 152661 + }) {}; 152662 + 152194 152663 "kubernetes-client" = callPackage 152195 152664 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 152196 152665 , bytestring, connection, containers, data-default-class, either ··· 153786 154255 }: 153787 154256 mkDerivation { 153788 154257 pname = "language-dickinson"; 153789 - version = "1.3.0.0"; 153790 - sha256 = "0pi983l9s182c4xcqj7xq3idv8wnshx7zva5a5wfhws403y5yy7v"; 154258 + version = "1.3.0.1"; 154259 + sha256 = "0681w4rz547if52yk0k32drhllx0k906nir0gs6xv0pqxkjc07ri"; 153791 154260 isLibrary = true; 153792 154261 isExecutable = true; 153793 154262 enableSeparateDataOutput = true; ··· 156345 156814 ({ mkDerivation, accelerate, base, lens }: 156346 156815 mkDerivation { 156347 156816 pname = "lens-accelerate"; 156348 - version = "0.2.0.0"; 156349 - sha256 = "099vvakv7gq9sr9mh3hxj5byxxb4dw8lw7y1g3c4j1kz4gf2vxfk"; 156350 - revision = "1"; 156351 - editedCabalFile = "0ggm157i4bmgh7k0dv9zncgn4agwk7zn5wvsknxsnfqzy45qabi9"; 156817 + version = "0.3.0.0"; 156818 + sha256 = "1sk3iy5qv24mifx0gwd5z714lf3y3s4zpbff09mqk42whk2sdd0y"; 156352 156819 libraryHaskellDepends = [ accelerate base lens ]; 156353 - description = "Instances to mix lens with accelerate"; 156820 + description = "Instances to mix lens with Accelerate"; 156354 156821 license = stdenv.lib.licenses.bsd3; 156355 156822 hydraPlatforms = stdenv.lib.platforms.none; 156356 156823 broken = true; ··· 157296 157763 }: 157297 157764 mkDerivation { 157298 157765 pname = "libarchive"; 157299 - version = "2.2.5.2"; 157300 - sha256 = "1qydgw1c74c0xp2d5d85qbyyng9rgqgxgvj6fhh94wzgkxj99al6"; 157766 + version = "3.0.0.0"; 157767 + sha256 = "0qwnp5jzmlvi7bpbh1dhz3lp91qf5phr8hb7m3h5q0a50d72dqpp"; 157301 157768 setupHaskellDepends = [ base Cabal chs-cabal ]; 157302 157769 libraryHaskellDepends = [ 157303 157770 base bytestring composition-prelude deepseq dlist filepath mtl ··· 157418 157885 license = stdenv.lib.licenses.publicDomain; 157419 157886 }) {ffi = null;}; 157420 157887 157888 + "libfuse3" = callPackage 157889 + ({ mkDerivation, base, bytestring, clock, fuse3, resourcet, time 157890 + , unix 157891 + }: 157892 + mkDerivation { 157893 + pname = "libfuse3"; 157894 + version = "0.1.0.0"; 157895 + sha256 = "0qwlaqcpmi7dfsjk219z0hrqmayg46qx1cwj1vcz1nfv8jlm8yif"; 157896 + isLibrary = true; 157897 + isExecutable = true; 157898 + libraryHaskellDepends = [ 157899 + base bytestring clock resourcet time unix 157900 + ]; 157901 + libraryPkgconfigDepends = [ fuse3 ]; 157902 + description = "A Haskell binding for libfuse-3.x"; 157903 + license = stdenv.lib.licenses.mit; 157904 + hydraPlatforms = stdenv.lib.platforms.none; 157905 + broken = true; 157906 + }) {inherit (pkgs) fuse3;}; 157907 + 157421 157908 "libgit" = callPackage 157422 157909 ({ mkDerivation, base, mtl, process }: 157423 157910 mkDerivation { ··· 157968 158455 testPkgconfigDepends = [ libsodium ]; 157969 158456 description = "Low-level bindings to the libsodium C library"; 157970 158457 license = stdenv.lib.licenses.isc; 157971 - hydraPlatforms = stdenv.lib.platforms.none; 157972 - broken = true; 157973 158458 }) {inherit (pkgs) libsodium;}; 157974 158459 157975 158460 "libssh2" = callPackage ··· 158869 159354 }: 158870 159355 mkDerivation { 158871 159356 pname = "linear-accelerate"; 158872 - version = "0.6.0.0"; 158873 - sha256 = "1bwqbs4816xrrc0bcf3nllad1an7c8gv2n9d1qv3ybk7s4fw288s"; 158874 - revision = "1"; 158875 - editedCabalFile = "1sf1jqpymhkdl5xn1br13qkw3zyg7pqmmwcczcw19zpgwk4ai19v"; 159357 + version = "0.7.0.0"; 159358 + sha256 = "1rdbmchbvrg5g0ndfppswydn15qbp2k9dvx7wapfpy8971qqf2df"; 158876 159359 setupHaskellDepends = [ base Cabal cabal-doctest ]; 158877 159360 libraryHaskellDepends = [ 158878 159361 accelerate base distributive lens linear ··· 159706 160189 benchmarkHaskellDepends = [ aeson attoparsec base criterion text ]; 159707 160190 description = "Liquid template language library"; 159708 160191 license = stdenv.lib.licenses.bsd3; 159709 - hydraPlatforms = stdenv.lib.platforms.none; 159710 - broken = true; 159711 160192 }) {}; 159712 160193 159713 160194 "liquid-base" = callPackage 159714 160195 ({ mkDerivation, base, Cabal, liquid-ghc-prim, liquidhaskell }: 159715 160196 mkDerivation { 159716 160197 pname = "liquid-base"; 159717 - version = "4.14.0.0"; 159718 - sha256 = "07qy1xc04wbd46cd0zgw3znczang1h1sgllxswjjimaw1wp49xh3"; 160198 + version = "4.14.1.0"; 160199 + sha256 = "0w5pwksyf8fbr8v8j5mshcysxlbz4lxdvmayc3pj8cm8xcdrvzkm"; 159719 160200 enableSeparateDataOutput = true; 159720 160201 setupHaskellDepends = [ base Cabal liquidhaskell ]; 159721 160202 libraryHaskellDepends = [ base liquid-ghc-prim liquidhaskell ]; 159722 160203 description = "Drop-in base replacement for LiquidHaskell"; 159723 160204 license = stdenv.lib.licenses.bsd3; 159724 - hydraPlatforms = stdenv.lib.platforms.none; 159725 - broken = true; 159726 160205 }) {}; 159727 160206 159728 160207 "liquid-bytestring" = callPackage ··· 159738 160217 libraryHaskellDepends = [ bytestring liquid-base liquidhaskell ]; 159739 160218 description = "LiquidHaskell specs for the bytestring package"; 159740 160219 license = stdenv.lib.licenses.bsd3; 159741 - hydraPlatforms = stdenv.lib.platforms.none; 159742 - broken = true; 159743 160220 }) {}; 159744 160221 159745 160222 "liquid-containers" = callPackage ··· 159755 160232 libraryHaskellDepends = [ containers liquid-base liquidhaskell ]; 159756 160233 description = "LiquidHaskell specs for the containers package"; 159757 160234 license = stdenv.lib.licenses.bsd3; 159758 - hydraPlatforms = stdenv.lib.platforms.none; 159759 - broken = true; 159760 160235 }) {}; 159761 160236 159762 160237 "liquid-fixpoint" = callPackage ··· 159769 160244 }: 159770 160245 mkDerivation { 159771 160246 pname = "liquid-fixpoint"; 159772 - version = "0.8.10.1"; 159773 - sha256 = "0mavpfwsm3a6cnw2p75hvjch1j0nb8qm1rflq304iz6msg9zbhsv"; 160247 + version = "0.8.10.2"; 160248 + sha256 = "1sdd88p5mz9xfqk9pbn138ixxdrq089iy5imskvhx66dwwrmrr8l"; 159774 160249 configureFlags = [ "-fbuild-external" ]; 159775 160250 isLibrary = true; 159776 160251 isExecutable = true; ··· 159790 160265 doCheck = false; 159791 160266 description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; 159792 160267 license = stdenv.lib.licenses.bsd3; 159793 - hydraPlatforms = stdenv.lib.platforms.none; 159794 - broken = true; 159795 160268 }) {inherit (pkgs) git; inherit (pkgs) nettools; 159796 160269 inherit (pkgs) ocaml; inherit (pkgs) z3;}; 159797 160270 ··· 159806 160279 libraryHaskellDepends = [ ghc-prim liquidhaskell ]; 159807 160280 description = "Drop-in ghc-prim replacement for LiquidHaskell"; 159808 160281 license = stdenv.lib.licenses.bsd3; 159809 - hydraPlatforms = stdenv.lib.platforms.none; 159810 - broken = true; 159811 160282 }) {}; 159812 160283 159813 160284 "liquid-parallel" = callPackage ··· 159822 160293 libraryHaskellDepends = [ liquid-base liquidhaskell parallel ]; 159823 160294 description = "LiquidHaskell specs for the parallel package"; 159824 160295 license = stdenv.lib.licenses.bsd3; 159825 - hydraPlatforms = stdenv.lib.platforms.none; 159826 - broken = true; 159827 160296 }) {}; 159828 160297 159829 160298 "liquid-platform" = callPackage 159830 160299 ({ mkDerivation }: 159831 160300 mkDerivation { 159832 160301 pname = "liquid-platform"; 159833 - version = "0.8.10.1"; 159834 - sha256 = "1l1qpg08fhf2xbj7i3hy36idm2z4yggg7mlzyncjkjlqxdnmm44k"; 160302 + version = "0.8.10.2"; 160303 + sha256 = "1rhpq04nl9gcm9rwjd261ssn8q59pdcpfna0xwkcv3gmkgirwzgf"; 159835 160304 isLibrary = false; 159836 160305 isExecutable = true; 159837 160306 description = "A battery-included platform for LiquidHaskell"; 159838 160307 license = stdenv.lib.licenses.bsd3; 159839 - hydraPlatforms = stdenv.lib.platforms.none; 159840 - broken = true; 159841 160308 }) {}; 159842 160309 159843 160310 "liquid-prelude" = callPackage ··· 159846 160313 }: 159847 160314 mkDerivation { 159848 160315 pname = "liquid-prelude"; 159849 - version = "0.8.10.1"; 159850 - sha256 = "0pcz59spsg3x4c5553yksfqgdjlh2c33id10b6p8hnm6hyqcbjvn"; 160316 + version = "0.8.10.2"; 160317 + sha256 = "0s52kd2x4h24j6z7cjkrarnqr7kp198qal55y84740rllskv3ijh"; 159851 160318 setupHaskellDepends = [ base Cabal liquidhaskell ]; 159852 160319 libraryHaskellDepends = [ 159853 160320 bytestring containers liquid-base liquidhaskell 159854 160321 ]; 159855 160322 description = "General utility modules for LiquidHaskell"; 159856 160323 license = stdenv.lib.licenses.bsd3; 159857 - hydraPlatforms = stdenv.lib.platforms.none; 159858 - broken = true; 159859 160324 }) {}; 159860 160325 159861 160326 "liquid-vector" = callPackage ··· 159869 160334 libraryHaskellDepends = [ liquid-base liquidhaskell vector ]; 159870 160335 description = "LiquidHaskell specs for the vector package"; 159871 160336 license = stdenv.lib.licenses.bsd3; 159872 - hydraPlatforms = stdenv.lib.platforms.none; 159873 - broken = true; 159874 160337 }) {}; 159875 160338 159876 160339 "liquidhaskell" = callPackage ··· 159886 160349 }: 159887 160350 mkDerivation { 159888 160351 pname = "liquidhaskell"; 159889 - version = "0.8.10.1"; 159890 - sha256 = "0xyxb0sifqgp1hl6lcydf7svw6w968hd3dgmnlly8ddpdmhsw9jm"; 159891 - revision = "1"; 159892 - editedCabalFile = "0bg9660c5454jiimgwciimd114r81gfjdad6nzbgyhkvilfd0wad"; 160352 + version = "0.8.10.2"; 160353 + sha256 = "0byh5lia3kb44sgmilya881dp9il3n5qvrn16brnkvl9xhr9rdyi"; 159893 160354 isLibrary = true; 159894 160355 isExecutable = true; 159895 160356 enableSeparateDataOutput = true; ··· 159897 160358 aeson base binary bytestring Cabal cereal cmdargs containers 159898 160359 data-default deepseq Diff directory extra filepath fingertree ghc 159899 160360 ghc-boot ghc-paths ghc-prim githash gitrev hashable hscolour 159900 - liquid-fixpoint mtl optics optparse-simple parsec pretty split syb 159901 - template-haskell temporary text time transformers 159902 - unordered-containers vector 160361 + liquid-fixpoint mtl optics optparse-applicative optparse-simple 160362 + parsec pretty split syb template-haskell temporary text time 160363 + transformers unordered-containers vector 159903 160364 ]; 159904 160365 executableHaskellDepends = [ base ]; 159905 160366 testHaskellDepends = [ ··· 159911 160372 testSystemDepends = [ z3 ]; 159912 160373 description = "Liquid Types for Haskell"; 159913 160374 license = stdenv.lib.licenses.bsd3; 159914 - hydraPlatforms = stdenv.lib.platforms.none; 159915 - broken = true; 159916 160375 }) {inherit (pkgs) z3;}; 159917 160376 159918 160377 "liquidhaskell-cabal" = callPackage ··· 160983 161442 }) {}; 160984 161443 160985 161444 "llvm-pretty" = callPackage 160986 - ({ mkDerivation, base, containers, monadLib, parsec, pretty }: 161445 + ({ mkDerivation, base, containers, microlens, microlens-th 161446 + , monadLib, parsec, pretty, template-haskell, th-abstraction 161447 + }: 160987 161448 mkDerivation { 160988 161449 pname = "llvm-pretty"; 160989 - version = "0.7.1.1"; 160990 - sha256 = "17lb4jfkaxz2ahjfvq2mxnb82k209qg13rhdg76v3j8yahr5z0a2"; 160991 - libraryHaskellDepends = [ base containers monadLib parsec pretty ]; 161450 + version = "0.11.0"; 161451 + sha256 = "17jw5i68fz2vk40dcqf8k7j6j6h8acg4fhnyygb72jbk17md4q94"; 161452 + libraryHaskellDepends = [ 161453 + base containers microlens microlens-th monadLib parsec pretty 161454 + template-haskell th-abstraction 161455 + ]; 160992 161456 description = "A pretty printing library inspired by the llvm binding"; 160993 161457 license = stdenv.lib.licenses.bsd3; 160994 161458 hydraPlatforms = stdenv.lib.platforms.none; ··· 161579 162043 161580 162044 "log-elasticsearch" = callPackage 161581 162045 ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring 161582 - , bloodhound, bytestring, deepseq, http-client, http-client-tls 161583 - , log-base, semigroups, text, text-show, time, transformers 161584 - , unordered-containers, vector 162046 + , bytestring, deepseq, http-client, http-client-tls, http-types 162047 + , log-base, network-uri, semigroups, text, text-show, time 162048 + , transformers, unordered-containers, vector 161585 162049 }: 161586 162050 mkDerivation { 161587 162051 pname = "log-elasticsearch"; 161588 - version = "0.10.2.0"; 161589 - sha256 = "0kcixyklnak34v8vmmpw8vpm1mvf3wll6xpcdvfg1c75wc9n1hqy"; 162052 + version = "0.11.0.0"; 162053 + sha256 = "1l64mxk3zmlfsqwlhsq62jp8rawj3jbw9izihg7555q51pbqlg5w"; 161590 162054 libraryHaskellDepends = [ 161591 - aeson aeson-pretty base base64-bytestring bloodhound bytestring 161592 - deepseq http-client http-client-tls log-base semigroups text 161593 - text-show time transformers unordered-containers vector 162055 + aeson aeson-pretty base base64-bytestring bytestring deepseq 162056 + http-client http-client-tls http-types log-base network-uri 162057 + semigroups text text-show time transformers unordered-containers 162058 + vector 161594 162059 ]; 161595 162060 description = "Structured logging solution (Elasticsearch back end)"; 161596 162061 license = stdenv.lib.licenses.bsd3; ··· 161833 162298 ]; 161834 162299 description = "A mtl-style monad transformer for general purpose & compositional logging"; 161835 162300 license = stdenv.lib.licenses.bsd3; 162301 + hydraPlatforms = stdenv.lib.platforms.none; 162302 + broken = true; 161836 162303 }) {}; 161837 162304 161838 162305 "logging-effect-extra" = callPackage ··· 162011 162478 testHaskellDepends = [ base mtl tasty tasty-hunit ]; 162012 162479 description = "A backtracking logic-programming monad"; 162013 162480 license = stdenv.lib.licenses.bsd3; 162481 + }) {}; 162482 + 162483 + "logict_0_7_0_3" = callPackage 162484 + ({ mkDerivation, base, mtl, tasty, tasty-hunit }: 162485 + mkDerivation { 162486 + pname = "logict"; 162487 + version = "0.7.0.3"; 162488 + sha256 = "0psihirap7mrn3ly1h9dvgvgjsqbqwji8m13fm48zl205mpfh73r"; 162489 + libraryHaskellDepends = [ base mtl ]; 162490 + testHaskellDepends = [ base mtl tasty tasty-hunit ]; 162491 + description = "A backtracking logic-programming monad"; 162492 + license = stdenv.lib.licenses.bsd3; 162493 + hydraPlatforms = stdenv.lib.platforms.none; 162014 162494 }) {}; 162015 162495 162016 162496 "logict-state" = callPackage ··· 162560 163040 }: 162561 163041 mkDerivation { 162562 163042 pname = "lorentz"; 162563 - version = "0.5.0"; 162564 - sha256 = "0wvvxc49bc8cyfhhwzzhrdf3sia03d8hx2cxpjg3jab8bbxbqza1"; 163043 + version = "0.6.0"; 163044 + sha256 = "1mzw2m46g5gffhihjfwimrhwqlky3z420b5wifdvxybm5vfc0qm2"; 162565 163045 libraryHaskellDepends = [ 162566 163046 aeson-pretty base bimap bytestring constraints containers 162567 163047 data-default first-class-families fmt interpolate lens morley ··· 163093 163573 ({ mkDerivation, base, lucid }: 163094 163574 mkDerivation { 163095 163575 pname = "lucid-cdn"; 163096 - version = "0.1.1.1"; 163097 - sha256 = "1dl44rc5b3wrgfcllp6h1sw4w18jgglh1grh5w9g37rcxi2cxwll"; 163576 + version = "0.2.0.0"; 163577 + sha256 = "1b4s4yfhxnixc33kz0hnj2v5vrwag4vnssp8ma0vjgh17b9g4qzr"; 163098 163578 libraryHaskellDepends = [ base lucid ]; 163099 163579 description = "Curated list of CDN imports for lucid"; 163100 163580 license = stdenv.lib.licenses.mit; ··· 163553 164033 broken = true; 163554 164034 }) {}; 163555 164035 164036 + "lz4-frame-conduit" = callPackage 164037 + ({ mkDerivation, base, bytestring, conduit, conduit-extra 164038 + , containers, hspec, inline-c, optparse-applicative, QuickCheck 164039 + , raw-strings-qq, resourcet, template-haskell, text, unliftio 164040 + , unliftio-core 164041 + }: 164042 + mkDerivation { 164043 + pname = "lz4-frame-conduit"; 164044 + version = "0.1.0.0"; 164045 + sha256 = "0nvvf42m4vbadl869hgyqrzbzbxp9q7rlbrldi4y6zw48ig21r1d"; 164046 + isLibrary = true; 164047 + isExecutable = true; 164048 + libraryHaskellDepends = [ 164049 + base bytestring conduit conduit-extra containers inline-c 164050 + raw-strings-qq resourcet template-haskell unliftio unliftio-core 164051 + ]; 164052 + executableHaskellDepends = [ 164053 + base bytestring conduit conduit-extra optparse-applicative 164054 + resourcet text 164055 + ]; 164056 + testHaskellDepends = [ 164057 + base bytestring conduit conduit-extra hspec QuickCheck resourcet 164058 + unliftio-core 164059 + ]; 164060 + description = "Conduit implementing the official LZ4 frame streaming format"; 164061 + license = stdenv.lib.licenses.mit; 164062 + hydraPlatforms = stdenv.lib.platforms.none; 164063 + broken = true; 164064 + }) {}; 164065 + 163556 164066 "lz4-hs" = callPackage 163557 164067 ({ mkDerivation, base, bytestring, c2hs, criterion, filepath, tasty 163558 164068 , tasty-hunit, temporary 163559 164069 }: 163560 164070 mkDerivation { 163561 164071 pname = "lz4-hs"; 163562 - version = "0.1.4.1"; 163563 - sha256 = "15jm8lbwhgp29yvnwsxsmbixvgpxrnw7jc96zwmzbqx365r4dfqr"; 164072 + version = "0.1.5.0"; 164073 + sha256 = "0qqv6n7hjcjkc1pzhwkdr9l1kfb8rqndx2lfm6j4bhmvrwwrn8lw"; 163564 164074 libraryHaskellDepends = [ base bytestring ]; 163565 164075 libraryToolDepends = [ c2hs ]; 163566 164076 testHaskellDepends = [ base bytestring tasty tasty-hunit ]; ··· 169564 170074 }) {}; 169565 170075 169566 170076 "mime-mail-ses" = callPackage 169567 - ({ mkDerivation, base, base64-bytestring, byteable, bytestring 169568 - , conduit, cryptohash, http-client, http-client-tls, http-conduit 169569 - , http-types, mime-mail, old-locale, text, time, transformers 169570 - , xml-conduit, xml-types 169571 - }: 169572 - mkDerivation { 169573 - pname = "mime-mail-ses"; 169574 - version = "0.4.1"; 169575 - sha256 = "1w6k4cm5yab9dhg7yn6mp7jzk1zdwpnzc6c1xb3vz3rdwp8jjvx7"; 169576 - libraryHaskellDepends = [ 169577 - base base64-bytestring byteable bytestring conduit cryptohash 169578 - http-client http-client-tls http-conduit http-types mime-mail 169579 - old-locale text time transformers xml-conduit xml-types 169580 - ]; 169581 - description = "Send mime-mail messages via Amazon SES"; 169582 - license = stdenv.lib.licenses.mit; 169583 - }) {}; 169584 - 169585 - "mime-mail-ses_0_4_2" = callPackage 169586 170077 ({ mkDerivation, base, base16-bytestring, base64-bytestring 169587 170078 , byteable, bytestring, case-insensitive, conduit, cryptohash 169588 170079 , http-client, http-client-tls, http-conduit, http-types, mime-mail ··· 169609 170100 ]; 169610 170101 description = "Send mime-mail messages via Amazon SES"; 169611 170102 license = stdenv.lib.licenses.mit; 169612 - hydraPlatforms = stdenv.lib.platforms.none; 169613 170103 }) {}; 169614 170104 169615 170105 "mime-string" = callPackage ··· 171685 172175 ]; 171686 172176 description = "monad-classes based typeclass for Ollie's logging-effect LoggingT"; 171687 172177 license = stdenv.lib.licenses.bsd3; 172178 + hydraPlatforms = stdenv.lib.platforms.none; 172179 + broken = true; 171688 172180 }) {}; 171689 172181 171690 172182 "monad-codec" = callPackage ··· 173747 174239 }: 173748 174240 mkDerivation { 173749 174241 pname = "morley"; 173750 - version = "1.5.0"; 173751 - sha256 = "151idw4dhdlsw9ga8q0mp3vnv520ljmkr0wm2hhhd7k0xliy177a"; 174242 + version = "1.6.0"; 174243 + sha256 = "0i06yh7v2zz8lcjhc96k5wsfj9i401mgs05myg46ml04zz4pw408"; 173752 174244 isLibrary = true; 173753 174245 isExecutable = true; 173754 174246 libraryHaskellDepends = [ ··· 176956 177448 ]; 176957 177449 description = "A Markov stochastic transition operator with logging"; 176958 177450 license = stdenv.lib.licenses.bsd3; 177451 + hydraPlatforms = stdenv.lib.platforms.none; 177452 + broken = true; 176959 177453 }) {}; 176960 177454 176961 177455 "mwc-random" = callPackage ··· 177001 177495 ({ mkDerivation, accelerate, base, mwc-random }: 177002 177496 mkDerivation { 177003 177497 pname = "mwc-random-accelerate"; 177004 - version = "0.1.0.0"; 177005 - sha256 = "1qrji6b39zp5wrgz5c59xv06l3khhp4fv2ybdmx4ac5i28yx7yih"; 177006 - revision = "3"; 177007 - editedCabalFile = "1a7xx3mcli9fx5lqg1zxwqbrgzvgbssn3vprh4wp8zg58pqic6ic"; 177498 + version = "0.2.0.0"; 177499 + sha256 = "1a8b36l60p29461y0gacgjzarlyrncl54r7x4zh2rgvs2w7mjdc5"; 177008 177500 libraryHaskellDepends = [ accelerate base mwc-random ]; 177009 177501 description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; 177010 177502 license = stdenv.lib.licenses.bsd3; ··· 180687 181179 }: 180688 181180 mkDerivation { 180689 181181 pname = "network-uri-json"; 180690 - version = "0.3.1.1"; 180691 - sha256 = "0akyhgi79pzhvfq47risrqmr6hi409fnz1ivwpwwfc4laimf3mky"; 181182 + version = "0.4.0.0"; 181183 + sha256 = "1hnsk8xsa89p4ywvyb4xfdk3l16mlhmb73sy1vbgckc7mlv3mmb4"; 180692 181184 libraryHaskellDepends = [ aeson base network-uri text ]; 180693 181185 testHaskellDepends = [ 180694 181186 aeson base hspec network-arbitrary network-uri test-invariant text ··· 181757 182249 }: 181758 182250 mkDerivation { 181759 182251 pname = "nix-tree"; 181760 - version = "0.1.0.0"; 181761 - sha256 = "0agj882mfnr53jlpn1cnds31b78qw3a13md1ap6jj2rnxs2zjcai"; 182252 + version = "0.1.1.0"; 182253 + sha256 = "1dciwsw7cv1f73awrqr3gw3zj3mizaw53q3ibkawq9gbfsfg8yiz"; 181762 182254 isLibrary = false; 181763 182255 isExecutable = true; 181764 182256 executableHaskellDepends = [ ··· 182445 182937 }: 182446 182938 mkDerivation { 182447 182939 pname = "nonempty-containers"; 182448 - version = "0.3.4.0"; 182449 - sha256 = "1np8gypq49j90clavh17wzxp9y6z23lngal815jsg4p35qc0h01l"; 182940 + version = "0.3.4.1"; 182941 + sha256 = "0cpn0f0gnir9w366hw2906316qx5yc06rrrlv67xba1p66507m83"; 182450 182942 libraryHaskellDepends = [ 182451 182943 aeson base comonad containers deepseq nonempty-vector semigroupoids 182452 182944 these vector ··· 183778 184270 }: 183779 184271 mkDerivation { 183780 184272 pname = "nvvm"; 183781 - version = "0.9.0.0"; 183782 - sha256 = "00ggaycs5z2b617kgjv851ahrakd4v8w374qbym19r1ccrxkdhhb"; 184273 + version = "0.10.0.0"; 184274 + sha256 = "188zf4hlqgjj5xgsfvrkynhq8pc29qfkaz6rp61ij3adc30410al"; 183783 184275 setupHaskellDepends = [ 183784 184276 base Cabal cuda directory filepath template-haskell 183785 184277 ]; 183786 - libraryHaskellDepends = [ base bytestring cuda template-haskell ]; 184278 + libraryHaskellDepends = [ 184279 + base bytestring cuda directory filepath template-haskell 184280 + ]; 183787 184281 libraryToolDepends = [ c2hs ]; 183788 184282 description = "FFI bindings to NVVM"; 183789 184283 license = stdenv.lib.licenses.bsd3; ··· 185190 185684 license = stdenv.lib.licenses.bsd3; 185191 185685 }) {}; 185192 185686 185687 + "opaleye_0_7_0_0" = callPackage 185688 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 185689 + , case-insensitive, containers, contravariant, dotenv, hspec 185690 + , hspec-discover, multiset, postgresql-simple, pretty 185691 + , product-profunctors, profunctors, QuickCheck, scientific 185692 + , semigroups, text, time, time-locale-compat, transformers, uuid 185693 + , void 185694 + }: 185695 + mkDerivation { 185696 + pname = "opaleye"; 185697 + version = "0.7.0.0"; 185698 + sha256 = "1a4ymnfw7gdqf2b5lsrfhxf53ybjfcyx31fdxn52fv89jc2h2yiy"; 185699 + libraryHaskellDepends = [ 185700 + aeson base base16-bytestring bytestring case-insensitive 185701 + contravariant postgresql-simple pretty product-profunctors 185702 + profunctors scientific semigroups text time time-locale-compat 185703 + transformers uuid void 185704 + ]; 185705 + testHaskellDepends = [ 185706 + aeson base bytestring containers contravariant dotenv hspec 185707 + hspec-discover multiset postgresql-simple product-profunctors 185708 + profunctors QuickCheck semigroups text time transformers uuid 185709 + ]; 185710 + testToolDepends = [ hspec-discover ]; 185711 + description = "An SQL-generating DSL targeting PostgreSQL"; 185712 + license = stdenv.lib.licenses.bsd3; 185713 + hydraPlatforms = stdenv.lib.platforms.none; 185714 + }) {}; 185715 + 185193 185716 "opaleye-classy" = callPackage 185194 185717 ({ mkDerivation, base, bytestring, lens, mtl, opaleye 185195 185718 , postgresql-simple, product-profunctors, transformers ··· 185979 186502 license = stdenv.lib.licenses.asl20; 185980 186503 }) {}; 185981 186504 185982 - "opentelemetry_0_6_0" = callPackage 186505 + "opentelemetry_0_6_1" = callPackage 185983 186506 ({ mkDerivation, base, bytestring, exceptions, ghc-trace-events 185984 186507 , hashable 185985 186508 }: 185986 186509 mkDerivation { 185987 186510 pname = "opentelemetry"; 185988 - version = "0.6.0"; 185989 - sha256 = "0gl3xax7gz89fc12lyw468qhailgja06skj6siscq9pip03gj6ck"; 186511 + version = "0.6.1"; 186512 + sha256 = "0i88ciig40gil4gaj95qw28c2racdr2jb6rcpnsf60fzkqc8b3fk"; 185990 186513 libraryHaskellDepends = [ 185991 186514 base bytestring exceptions ghc-trace-events hashable 185992 186515 ]; ··· 186030 186553 broken = true; 186031 186554 }) {}; 186032 186555 186033 - "opentelemetry-extra_0_6_0" = callPackage 186556 + "opentelemetry-extra_0_6_1" = callPackage 186034 186557 ({ mkDerivation, aeson, async, base, binary, bytestring, clock 186035 186558 , containers, directory, exceptions, filepath, gauge 186036 186559 , generic-arbitrary, ghc-events, hashable, hashtables, http-client ··· 186041 186564 }: 186042 186565 mkDerivation { 186043 186566 pname = "opentelemetry-extra"; 186044 - version = "0.6.0"; 186045 - sha256 = "025fsryqzv0cfny1myrhs4bdrdg8sfp86rvxf671sbl8nli48x1a"; 186567 + version = "0.6.1"; 186568 + sha256 = "0ggxkhcrjj8sg6zf9jnp1j05wwlsay6k95c79j9j3dvw8qy2yjbx"; 186046 186569 isLibrary = true; 186047 186570 isExecutable = true; 186048 186571 libraryHaskellDepends = [ ··· 186111 186634 broken = true; 186112 186635 }) {}; 186113 186636 186114 - "opentelemetry-lightstep_0_6_0" = callPackage 186637 + "opentelemetry-lightstep_0_6_1" = callPackage 186115 186638 ({ mkDerivation, aeson, async, base, bytestring, clock, containers 186116 186639 , exceptions, filepath, ghc-events, http-client, http-client-tls 186117 186640 , http-types, network, opentelemetry, opentelemetry-extra ··· 186120 186643 }: 186121 186644 mkDerivation { 186122 186645 pname = "opentelemetry-lightstep"; 186123 - version = "0.6.0"; 186124 - sha256 = "09xqda7hxx4dn85hs2zh7y3jjxvi7xprcpv8mmam38hzyhjw2rv7"; 186646 + version = "0.6.1"; 186647 + sha256 = "1a7rrm5aahqh63j0rr7nvd4y3q64m8qr7is0r0a17fwkkpppmyln"; 186125 186648 isLibrary = true; 186126 186649 isExecutable = true; 186127 186650 libraryHaskellDepends = [ ··· 186155 186678 broken = true; 186156 186679 }) {}; 186157 186680 186158 - "opentelemetry-wai_0_6_0" = callPackage 186681 + "opentelemetry-wai_0_6_1" = callPackage 186159 186682 ({ mkDerivation, base, bytestring, http-types, opentelemetry, text 186160 186683 , wai 186161 186684 }: 186162 186685 mkDerivation { 186163 186686 pname = "opentelemetry-wai"; 186164 - version = "0.6.0"; 186165 - sha256 = "1bqq1fs7krckx43w2j4pvfncbyy60rrh6w8n1pcvb629dary5lwn"; 186687 + version = "0.6.1"; 186688 + sha256 = "0g1a044sphd35z9crc8wbxsk4hfh1gpfi4g8rr1k4f842hznj7nf"; 186166 186689 libraryHaskellDepends = [ 186167 186690 base bytestring http-types opentelemetry text wai 186168 186691 ]; ··· 187074 187597 }: 187075 187598 mkDerivation { 187076 187599 pname = "optparse-simple"; 187077 - version = "0.1.1.2"; 187078 - sha256 = "1r00hkri42vyx552l8hcd1779fxiyl9w4k0pql915zsprirn8w82"; 187079 - isLibrary = true; 187080 - isExecutable = true; 187081 - libraryHaskellDepends = [ 187082 - base githash optparse-applicative template-haskell transformers 187083 - ]; 187084 - testHaskellDepends = [ base bytestring directory ]; 187085 - description = "Simple interface to optparse-applicative"; 187086 - license = stdenv.lib.licenses.bsd3; 187087 - }) {}; 187088 - 187089 - "optparse-simple_0_1_1_3" = callPackage 187090 - ({ mkDerivation, base, bytestring, directory, githash 187091 - , optparse-applicative, template-haskell, transformers 187092 - }: 187093 - mkDerivation { 187094 - pname = "optparse-simple"; 187095 187600 version = "0.1.1.3"; 187096 187601 sha256 = "1wymqhac2sngkka8w880gq6y1kk3xs0flbv4mrhfgzrplhax8r9k"; 187097 187602 isLibrary = true; ··· 187102 187607 testHaskellDepends = [ base bytestring directory ]; 187103 187608 description = "Simple interface to optparse-applicative"; 187104 187609 license = stdenv.lib.licenses.bsd3; 187105 - hydraPlatforms = stdenv.lib.platforms.none; 187106 187610 }) {}; 187107 187611 187108 187612 "optparse-text" = callPackage ··· 189072 189576 broken = true; 189073 189577 }) {}; 189074 189578 189075 - "pandoc-plot_0_9_1_0" = callPackage 189579 + "pandoc-plot_0_9_2_0" = callPackage 189076 189580 ({ mkDerivation, base, bytestring, containers, criterion 189077 189581 , data-default, directory, filepath, githash, hashable, hspec 189078 189582 , hspec-expectations, lifted-async, mtl, optparse-applicative ··· 189081 189585 }: 189082 189586 mkDerivation { 189083 189587 pname = "pandoc-plot"; 189084 - version = "0.9.1.0"; 189085 - sha256 = "0vfcn0h5x9jsf3jjriqd6wfa9cpi7icz4k8pkqmhjz5sgs2yv7i4"; 189588 + version = "0.9.2.0"; 189589 + sha256 = "0fryriyqlmfc82nqbqw7a8n7325wwag29v3ag61s600jw66i9fsc"; 189086 189590 isLibrary = true; 189087 189591 isExecutable = true; 189088 189592 libraryHaskellDepends = [ ··· 189521 190025 license = stdenv.lib.licenses.bsd3; 189522 190026 }) {}; 189523 190027 189524 - "pantry_0_5_1_1" = callPackage 190028 + "pantry_0_5_1_2" = callPackage 189525 190029 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 189526 190030 , casa-client, casa-types, conduit, conduit-extra, containers 189527 190031 , cryptonite, cryptonite-conduit, digest, exceptions, filelock ··· 189535 190039 }: 189536 190040 mkDerivation { 189537 190041 pname = "pantry"; 189538 - version = "0.5.1.1"; 189539 - sha256 = "1q1q8jflhd5r70czsclkj27yqk4v8b1njdw8f4qb3xvf9c3gzl70"; 190042 + semigroups tfp transformers unique-logic-tf utility-ht 190043 + sha256 = "1ix1y334l4a7zcqm8i849g67mgvkqzikbhcbkqc1d6hg1lhc7xzr"; 189540 190044 libraryHaskellDepends = [ 189541 190045 aeson ansi-terminal base bytestring Cabal casa-client casa-types 189542 190046 conduit conduit-extra containers cryptonite cryptonite-conduit ··· 191533 192037 ({ mkDerivation, base, binary, path }: 191534 192038 mkDerivation { 191535 192039 pname = "path-binary-instance"; 191536 - version = "0.1.0.0"; 191537 - sha256 = "1mrmp58s7f88hyq493h39c1f19r92yh2qw1diml61iwhm765j7ir"; 192040 + version = "0.1.0.1"; 192041 + sha256 = "19ck3ja66vcgl90wyw6r9d2h50kdv9gjs7sxjgciam6v6867vb0y"; 191538 192042 libraryHaskellDepends = [ base binary path ]; 191539 192043 description = "Binary instance for Path"; 191540 192044 license = stdenv.lib.licenses.mit; ··· 191594 192098 ({ mkDerivation, base, path }: 191595 192099 mkDerivation { 191596 192100 pname = "path-like"; 191597 - version = "0.2.0.1"; 191598 - sha256 = "03d5kqs6xr22dl7gjydi1nlzy13wsc0dkmd93pwf37yp85y4bxrp"; 192101 + version = "0.2.0.2"; 192102 + sha256 = "1hr58zcgcybd34zzas5kf0jgcm5z2wdlbhskwj9233503nnlwkq9"; 191599 192103 libraryHaskellDepends = [ base path ]; 191600 192104 description = "PathLike, FileLike and DirLike type classes for the Path library"; 191601 192105 license = stdenv.lib.licenses.mit; ··· 193683 194187 }: 193684 194188 mkDerivation { 193685 194189 pname = "persistent-mongoDB"; 193686 - version = "2.10.0.0"; 193687 - sha256 = "1z895y21raak3x9qw05hgif5qyvr6c7pkc59wzg7irk8mxijyf4n"; 194190 + version = "2.10.0.1"; 194191 + sha256 = "194cxlxyaxwzgm7a7q8530bh842s5s1vmq33pclldp78nfy1dczm"; 193688 194192 libraryHaskellDepends = [ 193689 194193 aeson base bson bytestring cereal conduit http-api-data mongoDB 193690 194194 network path-pieces persistent resource-pool resourcet text time ··· 193896 194400 }) {}; 193897 194401 193898 194402 "persistent-redis" = callPackage 193899 - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring, hedis 193900 - , http-api-data, monad-control, mtl, path-pieces, persistent 193901 - , persistent-template, scientific, template-haskell, text, time 193902 - , transformers, utf8-string 194403 + ({ mkDerivation, aeson, base, binary, bytestring, hedis 194404 + , http-api-data, mtl, path-pieces, persistent, persistent-template 194405 + , scientific, template-haskell, text, time, transformers 194406 + , utf8-string 193903 194407 }: 193904 194408 mkDerivation { 193905 194409 pname = "persistent-redis"; 193906 - version = "2.5.2.2"; 193907 - sha256 = "1mkdc3s39h0zqzf86zzwyfxfpc4fasrhpfdypkj8mkljbh7v1i1l"; 194410 + version = "2.5.2.5"; 194411 + sha256 = "0h2bwr5svj36n3axnrgnrzkysg4ywf9d97x4fwwsjgn01gwr262k"; 193908 194412 libraryHaskellDepends = [ 193909 - aeson attoparsec base binary bytestring hedis http-api-data 193910 - monad-control mtl path-pieces persistent scientific text time 193911 - transformers utf8-string 194413 + aeson base binary bytestring hedis http-api-data mtl path-pieces 194414 + persistent scientific text time transformers utf8-string 193912 194415 ]; 193913 194416 testHaskellDepends = [ 193914 - aeson attoparsec base binary bytestring hedis http-api-data 193915 - monad-control mtl path-pieces persistent persistent-template 193916 - scientific template-haskell text time transformers utf8-string 194417 + aeson base binary bytestring hedis http-api-data mtl path-pieces 194418 + persistent persistent-template scientific template-haskell text 194419 + time transformers utf8-string 193917 194420 ]; 193918 194421 description = "Backend for persistent library using Redis"; 193919 194422 license = stdenv.lib.licenses.bsd3; ··· 194142 194645 ]; 194143 194646 description = "Tests for Persistent"; 194144 194647 license = stdenv.lib.licenses.mit; 194648 + }) {}; 194649 + 194650 + "persistent-test_2_0_3_2" = callPackage 194651 + ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit 194652 + , containers, exceptions, hspec, hspec-expectations, HUnit 194653 + , monad-control, monad-logger, mtl, path-pieces, persistent 194654 + , persistent-template, QuickCheck, quickcheck-instances, random 194655 + , resourcet, text, time, transformers, transformers-base, unliftio 194656 + , unliftio-core, unordered-containers 194657 + }: 194658 + mkDerivation { 194659 + pname = "persistent-test"; 194660 + version = "2.0.3.2"; 194661 + sha256 = "0d7a6m4qm6xzyv7h2fqn9hgv7r7q6dwh7x04ddsrygjxdgpwgqf3"; 194662 + libraryHaskellDepends = [ 194663 + aeson base blaze-html bytestring conduit containers exceptions 194664 + hspec hspec-expectations HUnit monad-control monad-logger mtl 194665 + path-pieces persistent persistent-template QuickCheck 194666 + quickcheck-instances random resourcet text time transformers 194667 + transformers-base unliftio unliftio-core unordered-containers 194668 + ]; 194669 + description = "Tests for Persistent"; 194670 + license = stdenv.lib.licenses.mit; 194671 + hydraPlatforms = stdenv.lib.platforms.none; 194145 194672 }) {}; 194146 194673 194147 194674 "persistent-typed-db" = callPackage ··· 198377 198904 broken = true; 198378 198905 }) {}; 198379 198906 198907 + "polysemy-http" = callPackage 198908 + ({ mkDerivation, aeson, ansi-terminal, base-noprelude, bytestring 198909 + , case-insensitive, co-log-core, co-log-polysemy, composition 198910 + , containers, data-default, either, hedgehog, http-client 198911 + , http-client-tls, http-conduit, http-types, lens, mono-traversable 198912 + , network, polysemy, polysemy-plugin, relude, servant 198913 + , servant-client, servant-server, string-interpolate, tasty 198914 + , tasty-hedgehog, template-haskell, text, warp 198915 + }: 198916 + mkDerivation { 198917 + pname = "polysemy-http"; 198918 + version = "0.1.0.0"; 198919 + sha256 = "025dch3cq8bgyy78yg4jrcxxmkdyl03y38zrgjhfv00rrwcffhm0"; 198920 + libraryHaskellDepends = [ 198921 + aeson ansi-terminal base-noprelude bytestring case-insensitive 198922 + co-log-core co-log-polysemy composition containers data-default 198923 + either http-client http-client-tls http-conduit http-types lens 198924 + mono-traversable polysemy polysemy-plugin relude string-interpolate 198925 + template-haskell text 198926 + ]; 198927 + testHaskellDepends = [ 198928 + aeson ansi-terminal base-noprelude bytestring case-insensitive 198929 + co-log-core co-log-polysemy composition containers data-default 198930 + either hedgehog http-client http-client-tls http-conduit http-types 198931 + lens mono-traversable network polysemy polysemy-plugin relude 198932 + servant servant-client servant-server string-interpolate tasty 198933 + tasty-hedgehog template-haskell text warp 198934 + ]; 198935 + description = "Polysemy effect for http-client"; 198936 + license = "BSD-2-Clause-Patent"; 198937 + hydraPlatforms = stdenv.lib.platforms.none; 198938 + broken = true; 198939 + }) {}; 198940 + 198380 198941 "polysemy-optics" = callPackage 198381 198942 ({ mkDerivation, base, optics, polysemy, polysemy-zoo }: 198382 198943 mkDerivation { ··· 201980 202541 libraryHaskellDepends = [ base lucid prettyprinter text ]; 201981 202542 description = "A prettyprinter backend for lucid"; 201982 202543 license = stdenv.lib.licenses.bsd3; 202544 + hydraPlatforms = stdenv.lib.platforms.none; 202545 + broken = true; 201983 202546 }) {}; 201984 202547 201985 202548 "prettyprinter-vty" = callPackage ··· 203532 204095 }: 203533 204096 mkDerivation { 203534 204097 pname = "prolog"; 203535 - version = "0.3"; 203536 - sha256 = "02i79irax13rny953k6fvswsgbif9nnvysnnbq3k4w37b3g5maiv"; 204098 + version = "0.3.2"; 204099 + sha256 = "1clh7gfqh2yf17jc453y8cc8qcga9h0j5a60nfr1sjd5byr8j8ab"; 203537 204100 libraryHaskellDepends = [ 203538 204101 base containers mtl parsec syb template-haskell th-lift 203539 204102 transformers ··· 204138 204701 }: 204139 204702 mkDerivation { 204140 204703 pname = "proto-lens-jsonpb"; 204141 - version = "0.2.0.1"; 204142 - sha256 = "0hsjn0iy0bbpb1sczk6vj2vah5f60w8cpm2gach5zlb9qpvkg4x4"; 204704 + version = "0.2.0.2"; 204705 + sha256 = "1r98841byxkg5941yjrw15n56i0x68qr3gk29bimwcfifdf0idm2"; 204143 204706 libraryHaskellDepends = [ 204144 204707 aeson attoparsec base base64-bytestring bytestring 204145 204708 proto-lens-runtime text vector ··· 204792 205355 license = stdenv.lib.licenses.mit; 204793 205356 }) {}; 204794 205357 205358 + "psql-utils" = callPackage 205359 + ({ mkDerivation, aeson, base, hashable, postgresql-simple 205360 + , resource-pool, time 205361 + }: 205362 + mkDerivation { 205363 + pname = "psql-utils"; 205364 + version = "0.1.0.0"; 205365 + sha256 = "09s26lqqdy2qah6i0yim9g2h61hramhij7r9kbcccbc3fgv4sd6s"; 205366 + libraryHaskellDepends = [ 205367 + aeson base hashable postgresql-simple resource-pool time 205368 + ]; 205369 + description = "PostgreSQL Simple util tools"; 205370 + license = stdenv.lib.licenses.bsd3; 205371 + }) {}; 205372 + 204795 205373 "psqueues" = callPackage 204796 205374 ({ mkDerivation, array, base, containers, criterion, deepseq 204797 205375 , fingertree-psqueue, ghc-prim, hashable, HUnit, mtl, PSQueue ··· 207453 208031 license = stdenv.lib.licenses.bsd3; 207454 208032 }) {}; 207455 208033 208034 + "quickjs-hs" = callPackage 208035 + ({ mkDerivation, aeson, base, bytestring, containers, exceptions 208036 + , HUnit, inline-c, mtl, QuickCheck, scientific, string-conv, tasty 208037 + , tasty-hunit, tasty-quickcheck, text, time, transformers 208038 + , unliftio-core, unordered-containers, vector 208039 + }: 208040 + mkDerivation { 208041 + pname = "quickjs-hs"; 208042 + version = "0.1.2.1"; 208043 + sha256 = "0dbypa7p3x5j2nmbw2qvs4aik74jfkfa9b0mmv2290p6sj9ag1hd"; 208044 + revision = "1"; 208045 + editedCabalFile = "0f18980s2sky2fnrdnadyhivjhbzxcq9m3isnji8q2gbzpbywca7"; 208046 + libraryHaskellDepends = [ 208047 + aeson base bytestring containers exceptions inline-c mtl scientific 208048 + string-conv text time transformers unliftio-core 208049 + unordered-containers vector 208050 + ]; 208051 + testHaskellDepends = [ 208052 + aeson base exceptions HUnit QuickCheck tasty tasty-hunit 208053 + tasty-quickcheck text unordered-containers vector 208054 + ]; 208055 + description = "Wrapper for the QuickJS Javascript Engine"; 208056 + license = stdenv.lib.licenses.mit; 208057 + }) {}; 208058 + 207456 208059 "quicklz" = callPackage 207457 208060 ({ mkDerivation, base, bytestring, QuickCheck, test-framework 207458 208061 , test-framework-quickcheck2 ··· 208686 209289 pname = "random"; 208687 209290 version = "1.2.0"; 208688 209291 sha256 = "1pmr7zbbqg58kihhhwj8figf5jdchhi7ik2apsyxbgsqq3vrqlg4"; 209292 + revision = "1"; 209293 + editedCabalFile = "11l9bcjy63qvcm4n7djp2l1l8668hbckkkdb2nj5g6iyy9pb2sa9"; 208689 209294 libraryHaskellDepends = [ base bytestring deepseq mtl splitmix ]; 208690 209295 testHaskellDepends = [ 208691 209296 base bytestring containers doctest mwc-random primitive smallcheck ··· 210786 211391 license = stdenv.lib.licenses.publicDomain; 210787 211392 }) {}; 210788 211393 210789 - "reanimate_0_4_1_0" = callPackage 211394 + "reanimate_0_4_2_0" = callPackage 210790 211395 ({ mkDerivation, aeson, ansi-terminal, array, attoparsec, base 210791 - , base64-bytestring, bytestring, cassava, cereal, chiphunk, colour 210792 - , containers, cubicbezier, directory, earcut, filepath, fsnotify 210793 - , geojson, hashable, hmatrix, JuicyPixels, lens, linear, matrix 210794 - , mtl, neat-interpolation, open-browser, optparse-applicative 210795 - , parallel, process, random, random-shuffle, reanimate-svg, split 210796 - , temporary, text, time, vector, vector-space, websockets, xml 211396 + , base64-bytestring, bytestring, cassava, cereal, colour 211397 + , containers, cubicbezier, directory, filelock, filepath, fsnotify 211398 + , geojson, ghcid, hashable, hgeometry, hgeometry-combinatorial 211399 + , JuicyPixels, lens, linear, matrix, mtl, neat-interpolation 211400 + , open-browser, optparse-applicative, parallel, process, QuickCheck 211401 + , random, random-shuffle, reanimate-svg, split, tasty, tasty-golden 211402 + , tasty-hunit, tasty-quickcheck, tasty-rerun, temporary, text, time 211403 + , vector, vector-space, websockets, xml 210797 211404 }: 210798 211405 mkDerivation { 210799 211406 pname = "reanimate"; 210800 - version = "0.4.1.0"; 210801 - sha256 = "12mql2i3433y3cj4x3rcilmvja4cnyk9y5cykw16sg30kbp1riki"; 211407 + version = "0.4.2.0"; 211408 + sha256 = "0dihh2k0cvh17qb37pfn1h6g620yzp923wrjqy22qbmlld896snk"; 210802 211409 enableSeparateDataOutput = true; 210803 211410 libraryHaskellDepends = [ 210804 211411 aeson ansi-terminal array attoparsec base base64-bytestring 210805 - bytestring cassava cereal chiphunk colour containers cubicbezier 210806 - directory earcut filepath fsnotify geojson hashable hmatrix 210807 - JuicyPixels lens linear matrix mtl neat-interpolation open-browser 210808 - optparse-applicative parallel process random random-shuffle 210809 - reanimate-svg split temporary text time vector vector-space 210810 - websockets xml 211412 + bytestring cassava cereal colour containers cubicbezier directory 211413 + filelock filepath fsnotify geojson ghcid hashable hgeometry 211414 + hgeometry-combinatorial JuicyPixels lens linear matrix mtl 211415 + neat-interpolation open-browser optparse-applicative parallel 211416 + process random random-shuffle reanimate-svg split temporary text 211417 + time vector vector-space websockets xml 211418 + ]; 211419 + testHaskellDepends = [ 211420 + base bytestring directory filepath linear process QuickCheck tasty 211421 + tasty-golden tasty-hunit tasty-quickcheck tasty-rerun temporary 211422 + text vector 210811 211423 ]; 210812 211424 description = "Animation library based on SVGs"; 210813 211425 license = stdenv.lib.licenses.publicDomain; ··· 210973 211585 }: 210974 211586 mkDerivation { 210975 211587 pname = "recommender-als"; 210976 - version = "0.2.0.0"; 210977 - sha256 = "14nw3ns52da4jlbwblbavchxzv1pjhc1zkjzcwfrqznxgsd5525p"; 211588 + version = "0.2.1.1"; 211589 + sha256 = "0qc91hn42mc2pmljb836chdas1jzsrqbg44cjylx31y0y72dmhdq"; 210978 211590 libraryHaskellDepends = [ 210979 211591 base containers data-default-class hmatrix parallel random vector 210980 211592 ]; ··· 213461 214073 }: 213462 214074 mkDerivation { 213463 214075 pname = "registry"; 213464 - version = "0.1.9.1"; 213465 - sha256 = "0vnx2sq3m6mqm1wcicknf7b8pfamx4pbn51hmzs6arwnvsq23vng"; 213466 - libraryHaskellDepends = [ 213467 - base containers exceptions hashable mmorph mtl protolude resourcet 213468 - semigroupoids semigroups template-haskell text transformers-base 213469 - ]; 213470 - testHaskellDepends = [ 213471 - async base bytestring containers directory exceptions generic-lens 213472 - hashable hedgehog io-memoize mmorph MonadRandom mtl multimap 213473 - protolude random resourcet semigroupoids semigroups tasty 213474 - tasty-discover tasty-hedgehog tasty-th template-haskell text 213475 - transformers-base universum 213476 - ]; 213477 - testToolDepends = [ tasty-discover ]; 213478 - description = "data structure for assembling components"; 213479 - license = stdenv.lib.licenses.mit; 213480 - hydraPlatforms = stdenv.lib.platforms.none; 213481 - broken = true; 213482 - }) {}; 213483 - 213484 - "registry_0_1_9_3" = callPackage 213485 - ({ mkDerivation, async, base, bytestring, containers, directory 213486 - , exceptions, generic-lens, hashable, hedgehog, io-memoize, mmorph 213487 - , MonadRandom, mtl, multimap, protolude, random, resourcet 213488 - , semigroupoids, semigroups, tasty, tasty-discover, tasty-hedgehog 213489 - , tasty-th, template-haskell, text, transformers-base, universum 213490 - }: 213491 - mkDerivation { 213492 - pname = "registry"; 213493 214076 version = "0.1.9.3"; 213494 214077 sha256 = "1x418lv2nnw5ryrinciq1dg7wgmz0zsvv8v3mfrp38rx5x88hbic"; 213495 214078 libraryHaskellDepends = [ ··· 214504 215087 pname = "repa-io"; 214505 215088 version = "3.4.1.1"; 214506 215089 sha256 = "1nm9kfin6fv016r02l74c9hf8pr1rz7s33i833cqpyw8m6bcmnxm"; 214507 - revision = "4"; 214508 - editedCabalFile = "1lswfxmfn31gm2ayqwns9q9kpbad69scxpq6ybyzxkb9jd0jx4bl"; 215090 + revision = "5"; 215091 + editedCabalFile = "1v9bza21a3h0pkaxs628jjfli157d44i757da250fxwwamk8sg88"; 214509 215092 libraryHaskellDepends = [ 214510 215093 base binary bmp bytestring old-time repa vector 214511 215094 ]; ··· 219009 219592 testHaskellDepends = [ base directory hspec process ]; 219010 219593 description = "Stack wrapper for single-file Haskell programs"; 219011 219594 license = stdenv.lib.licenses.bsd3; 219595 + hydraPlatforms = stdenv.lib.platforms.none; 219596 + broken = true; 219012 219597 }) {}; 219013 219598 219014 219599 "runmany" = callPackage ··· 219263 219848 }: 219264 219849 mkDerivation { 219265 219850 pname = "safe-exceptions"; 219266 - version = "0.1.7.0"; 219267 - sha256 = "0sd0zfsm9pcll5bzzj523rbn45adjrnavdkz52hgmdjjgdcdrk8q"; 219268 - revision = "6"; 219269 - editedCabalFile = "0x82m44qwf3fls3ypbdca958l9hhfqyfip6rzzxi7648f0sasv21"; 219851 + version = "0.1.7.1"; 219852 + sha256 = "0gkxacfiqp55xzbmpz5i5c4kqma8jal49q7c8gl9n9qq5c5dvxjb"; 219270 219853 libraryHaskellDepends = [ base deepseq exceptions transformers ]; 219271 219854 testHaskellDepends = [ base hspec void ]; 219272 219855 description = "Safe, consistent, and easy exception handling"; ··· 219364 219947 pname = "safe-json"; 219365 219948 version = "1.1.0"; 219366 219949 sha256 = "18zsf2dccgf755a8g4ar3zc7ilmampsrvqa6f9p27zrayl7j87hw"; 219367 - revision = "3"; 219368 - editedCabalFile = "12jjph25vffkj55ds468zv144qxwyrb6qmp2g1pb03732n6z9596"; 219950 + revision = "4"; 219951 + editedCabalFile = "12z5z68bfrzv3laagbssdcv7g97bpk2wf1bjirrivbhdbslf6l4q"; 219369 219952 libraryHaskellDepends = [ 219370 219953 aeson base bytestring containers dlist hashable scientific tasty 219371 219954 tasty-hunit tasty-quickcheck text time unordered-containers ··· 223130 223713 223131 223714 "semantic-source" = callPackage 223132 223715 ({ mkDerivation, aeson, base, bytestring, containers, deepseq 223133 - , doctest, generic-monoid, hashable, hedgehog, lingo, pathtype 223134 - , QuickCheck, semilattices, tasty, tasty-hedgehog, tasty-hunit 223135 - , text 223716 + , hashable, hedgehog, lingo, pathtype, semilattices, tasty 223717 + , tasty-hedgehog, tasty-hunit, text 223136 223718 }: 223137 223719 mkDerivation { 223138 223720 pname = "semantic-source"; 223139 - version = "0.1.0.0"; 223140 - sha256 = "179rxsn1cyh77yn7vzmii38ipgcjpavlyf5xbx4j8zzgh1jklmc5"; 223721 + version = "0.1.0.1"; 223722 + sha256 = "1v4q9yc91lrx02wdhxp1njzm8g9qlwr40593lwcn6bxlad5sk6yd"; 223141 223723 libraryHaskellDepends = [ 223142 - aeson base bytestring containers deepseq generic-monoid hashable 223143 - lingo pathtype semilattices text 223724 + aeson base bytestring containers deepseq hashable lingo pathtype 223725 + semilattices text 223144 223726 ]; 223145 223727 testHaskellDepends = [ 223146 - base doctest hedgehog QuickCheck tasty tasty-hedgehog tasty-hunit 223147 - text 223728 + base hedgehog tasty tasty-hedgehog tasty-hunit text 223148 223729 ]; 223149 223730 description = "Types and functionality for working with source code"; 223150 223731 license = stdenv.lib.licenses.mit; ··· 225661 226242 license = stdenv.lib.licenses.bsd3; 225662 226243 }) {}; 225663 226244 225664 - "servant-lucid_0_9_0_1" = callPackage 226245 + "servant-lucid_0_9_0_2" = callPackage 225665 226246 ({ mkDerivation, base, http-media, lucid, servant, servant-server 225666 226247 , text, wai, warp 225667 226248 }: 225668 226249 mkDerivation { 225669 226250 pname = "servant-lucid"; 225670 - version = "0.9.0.1"; 225671 - sha256 = "1jhs9qy36vccy90s24cd9bmhqs604xqd9m8a4fbkjxrcpgdzfjgq"; 226251 + version = "0.9.0.2"; 226252 + sha256 = "0l68dffx746j3p2l5x59cj5cdng2dw6vjq5x5h44m0ccbsmlckpz"; 225672 226253 libraryHaskellDepends = [ base http-media lucid servant text ]; 225673 226254 testHaskellDepends = [ base lucid servant-server wai warp ]; 225674 226255 description = "Servant support for lucid"; ··· 226225 226806 }: 226226 226807 mkDerivation { 226227 226808 pname = "servant-reflex"; 226228 - version = "0.3.4"; 226229 - sha256 = "1k7dkzs2lsdjj94ai7p225zm09l9sgbxpb4av14xgy9m54rih5kk"; 226809 + version = "0.3.5"; 226810 + sha256 = "0b4ppjnfas6pwypd16vkq98q1fs0l7cw32hhliv582xfvc0v3k8l"; 226230 226811 isLibrary = true; 226231 226812 isExecutable = true; 226232 226813 libraryHaskellDepends = [ ··· 226516 227097 }: 226517 227098 mkDerivation { 226518 227099 pname = "servant-static-th"; 226519 - version = "0.2.3.0"; 226520 - sha256 = "0gyfjrrq7anhn4b613gnaa0r2xm8rkminx1nrrbpn6bw47axadj4"; 227100 + version = "0.2.4.0"; 227101 + sha256 = "1xmikym19kq912apmh6zcdjzbz23mhn580pvsy5ll35ylqziaflk"; 226521 227102 isLibrary = true; 226522 227103 isExecutable = true; 226523 227104 libraryHaskellDepends = [ ··· 228248 228829 }: 228249 228830 mkDerivation { 228250 228831 pname = "shake-dhall"; 228251 - version = "0.1.1.2"; 228252 - sha256 = "0jlbq9d6sjrbywd0afgsqqw1ffjlh5k4mr5v2bn45js29hipkivk"; 228832 + version = "0.1.1.3"; 228833 + sha256 = "1crakjnib9hvqph8f0wn0ii0y4hp9vix40kd8fpz85mdqfsynf5q"; 228253 228834 libraryHaskellDepends = [ 228254 228835 base containers dhall directory filepath shake text 228255 228836 ]; 228256 228837 testHaskellDepends = [ base tasty tasty-hunit ]; 228257 228838 description = "Dhall dependencies"; 228258 228839 license = stdenv.lib.licenses.bsd3; 228840 + hydraPlatforms = stdenv.lib.platforms.none; 228841 + broken = true; 228259 228842 }) {}; 228260 228843 228261 228844 "shake-elm" = callPackage ··· 228439 229022 license = stdenv.lib.licenses.mit; 228440 229023 }) {}; 228441 229024 228442 - "shake-plus_0_3_2_0" = callPackage 229025 + "shake-plus_0_3_3_0" = callPackage 228443 229026 ({ mkDerivation, base, extra, path, rio, shake }: 228444 229027 mkDerivation { 228445 229028 pname = "shake-plus"; 228446 - version = "0.3.2.0"; 228447 - sha256 = "0cgn1hgxp3kly7yp4s8mx714p1gnf30jpp6vjl47l19vc21hfzj5"; 229029 + version = "0.3.3.0"; 229030 + sha256 = "13a5n6gh1msrygi671lk5y83shcd75yz64x3r2smxif5hsfazwqv"; 228448 229031 libraryHaskellDepends = [ base extra path rio shake ]; 228449 229032 description = "Re-export of Shake using well-typed paths and ReaderT"; 228450 229033 license = stdenv.lib.licenses.mit; ··· 228452 229035 }) {}; 228453 229036 228454 229037 "shake-plus-extended" = callPackage 228455 - ({ mkDerivation, base, comonad, extra, ixset-typed 228456 - , ixset-typed-binary-instance, ixset-typed-hashable-instance, path 228457 - , path-binary-instance, rio, shake, shake-plus, within 229038 + ({ mkDerivation, aeson, base, binary-instances, comonad, extra 229039 + , http-conduit, ixset-typed, ixset-typed-binary-instance 229040 + , ixset-typed-hashable-instance, path, path-binary-instance, rio 229041 + , shake, shake-plus, within 228458 229042 }: 228459 229043 mkDerivation { 228460 229044 pname = "shake-plus-extended"; 228461 - version = "0.3.0.0"; 228462 - sha256 = "040g0h0a03wmwhbqn06jxwf5h0lwsiqfa1x1x9wzyw8m52f5ngn4"; 229045 + version = "0.4.0.0"; 229046 + sha256 = "1y12hcsyp8slzacjz8dim64m9sr09z7ppv3s4l30wyha9r395x8i"; 228463 229047 libraryHaskellDepends = [ 228464 - base comonad extra ixset-typed ixset-typed-binary-instance 228465 - ixset-typed-hashable-instance path path-binary-instance rio shake 228466 - shake-plus within 229048 + aeson base binary-instances comonad extra http-conduit ixset-typed 229049 + ixset-typed-binary-instance ixset-typed-hashable-instance path 229050 + path-binary-instance rio shake shake-plus within 228467 229051 ]; 228468 229052 description = "Experimental extensions to shake-plus"; 228469 229053 license = stdenv.lib.licenses.mit; ··· 228575 229159 ]; 228576 229160 description = "A toolkit for making compile-time interpolated templates"; 228577 229161 license = stdenv.lib.licenses.mit; 229162 + maintainers = with stdenv.lib.maintainers; [ psibi ]; 229163 + }) {}; 229164 + 229165 + "shakespeare_2_0_25" = callPackage 229166 + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 229167 + , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec 229168 + , process, scientific, template-haskell, text, th-lift, time 229169 + , transformers, unordered-containers, vector 229170 + }: 229171 + mkDerivation { 229172 + pname = "shakespeare"; 229173 + version = "2.0.25"; 229174 + sha256 = "1fjv3yg425d87d3dih0l3ff95g5a5yp9w85m58sjara6xqivj9s4"; 229175 + libraryHaskellDepends = [ 229176 + aeson base blaze-html blaze-markup bytestring containers directory 229177 + exceptions ghc-prim parsec process scientific template-haskell text 229178 + th-lift time transformers unordered-containers vector 229179 + ]; 229180 + testHaskellDepends = [ 229181 + aeson base blaze-html blaze-markup bytestring containers directory 229182 + exceptions ghc-prim hspec HUnit parsec process template-haskell 229183 + text time transformers 229184 + ]; 229185 + description = "A toolkit for making compile-time interpolated templates"; 229186 + license = stdenv.lib.licenses.mit; 229187 + hydraPlatforms = stdenv.lib.platforms.none; 228578 229188 maintainers = with stdenv.lib.maintainers; [ psibi ]; 228579 229189 }) {}; 228580 229190 ··· 229132 229742 license = stdenv.lib.licenses.mit; 229133 229743 }) {}; 229134 229744 229745 + "shelly_1_8_1" = callPackage 229746 + ({ mkDerivation, async, base, bytestring, containers, directory 229747 + , enclosed-exceptions, exceptions, filepath, hspec, hspec-contrib 229748 + , HUnit, lifted-async, lifted-base, monad-control, mtl, process 229749 + , system-fileio, system-filepath, text, time, transformers 229750 + , transformers-base, unix, unix-compat 229751 + }: 229752 + mkDerivation { 229753 + pname = "shelly"; 229754 + version = "1.8.1"; 229755 + sha256 = "023fbvbqs5gdwm30j5517gbdcc7fvz0md70dgwgpypkskj3i926y"; 229756 + revision = "1"; 229757 + editedCabalFile = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0"; 229758 + isLibrary = true; 229759 + isExecutable = true; 229760 + libraryHaskellDepends = [ 229761 + async base bytestring containers directory enclosed-exceptions 229762 + exceptions lifted-async lifted-base monad-control mtl process 229763 + system-fileio system-filepath text time transformers 229764 + transformers-base unix unix-compat 229765 + ]; 229766 + testHaskellDepends = [ 229767 + async base bytestring containers directory enclosed-exceptions 229768 + exceptions filepath hspec hspec-contrib HUnit lifted-async 229769 + lifted-base monad-control mtl process system-fileio system-filepath 229770 + text time transformers transformers-base unix unix-compat 229771 + ]; 229772 + description = "shell-like (systems) programming in Haskell"; 229773 + license = stdenv.lib.licenses.bsd3; 229774 + hydraPlatforms = stdenv.lib.platforms.none; 229775 + }) {}; 229776 + 229135 229777 "shelly" = callPackage 229136 229778 ({ mkDerivation, async, base, bytestring, containers, directory 229137 229779 , enclosed-exceptions, exceptions, filepath, hspec, hspec-contrib ··· 235576 236218 "souffle-haskell" = callPackage 235577 236219 ({ mkDerivation, array, base, containers, deepseq, directory, extra 235578 236220 , filepath, hedgehog, hspec, hspec-hedgehog, megaparsec, mtl 235579 - , process, template-haskell, temporary, text, type-errors-pretty 235580 - , vector 236221 + , neat-interpolation, process, template-haskell, temporary, text 236222 + , type-errors-pretty, vector 235581 236223 }: 235582 236224 mkDerivation { 235583 236225 pname = "souffle-haskell"; 235584 - version = "1.1.0"; 235585 - sha256 = "0s8zl7f6v89m6a3yhlmji1lb8k3rfwzyyg307m3f35a9kms0988p"; 236226 + version = "2.0.0"; 236227 + sha256 = "0x6v1g5in762w1hhwcg5ipa0c491wp0mflqljjpl99da6kr1l93f"; 235586 236228 isLibrary = true; 235587 236229 isExecutable = true; 235588 236230 libraryHaskellDepends = [ 235589 - array base deepseq directory filepath mtl process template-haskell 235590 - temporary text type-errors-pretty vector 236231 + array base containers deepseq directory filepath mtl process 236232 + template-haskell temporary text type-errors-pretty vector 235591 236233 ]; 235592 236234 executableHaskellDepends = [ 235593 236235 array base containers deepseq directory extra filepath megaparsec ··· 235595 236237 vector 235596 236238 ]; 235597 236239 testHaskellDepends = [ 235598 - array base deepseq directory filepath hedgehog hspec hspec-hedgehog 235599 - mtl process template-haskell temporary text type-errors-pretty 235600 - vector 236240 + array base containers deepseq directory filepath hedgehog hspec 236241 + hspec-hedgehog mtl neat-interpolation process template-haskell 236242 + temporary text type-errors-pretty vector 235601 236243 ]; 235602 236244 description = "Souffle Datalog bindings for Haskell"; 235603 236245 license = stdenv.lib.licenses.mit; ··· 236005 236647 ]; 236006 236648 description = "Unified streaming data-dependency framework for web apps"; 236007 236649 license = stdenv.lib.licenses.bsd3; 236650 + hydraPlatforms = stdenv.lib.platforms.none; 236651 + broken = true; 236652 + }) {}; 236653 + 236654 + "spars" = callPackage 236655 + ({ mkDerivation, base, containers }: 236656 + mkDerivation { 236657 + pname = "spars"; 236658 + version = "0.1.0.0"; 236659 + sha256 = "1q1vpwrr96k41p9zj5x7mjd3817iq9a762q3jfqkwd0cb41iyka6"; 236660 + libraryHaskellDepends = [ base containers ]; 236661 + description = "A sparse set-based parsing library for Haskell"; 236662 + license = stdenv.lib.licenses.mit; 236008 236663 hydraPlatforms = stdenv.lib.platforms.none; 236009 236664 broken = true; 236010 236665 }) {}; ··· 243692 244347 broken = true; 243693 244348 }) {}; 243694 244349 244350 + "supernova" = callPackage 244351 + ({ mkDerivation, aeson, async, base, bifunctor, binary, bytestring 244352 + , Cabal, crc32c, exceptions, lens-family-core, logging, managed 244353 + , network, proto-lens, proto-lens-runtime, proto-lens-setup 244354 + , streamly, text, unliftio 244355 + }: 244356 + mkDerivation { 244357 + pname = "supernova"; 244358 + version = "0.0.1"; 244359 + sha256 = "0v0x1xk63kxrf2ihhdr24z7ami557d3w2zizd0g8xqp02pr5gs8z"; 244360 + setupHaskellDepends = [ base Cabal proto-lens-setup ]; 244361 + libraryHaskellDepends = [ 244362 + base bifunctor binary bytestring crc32c exceptions lens-family-core 244363 + logging managed network proto-lens proto-lens-runtime text unliftio 244364 + ]; 244365 + testHaskellDepends = [ aeson async base bytestring streamly text ]; 244366 + description = "Apache Pulsar client for Haskell"; 244367 + license = stdenv.lib.licenses.asl20; 244368 + hydraPlatforms = stdenv.lib.platforms.none; 244369 + broken = true; 244370 + }) {}; 244371 + 243695 244372 "supero" = callPackage 243696 244373 ({ mkDerivation, base, containers, cpphs, directory, filepath 243697 244374 , haskell-src-exts, mtl, process, time, uniplate ··· 248765 249442 license = stdenv.lib.licenses.mit; 248766 249443 }) {}; 248767 249444 249445 + "template-haskell-compat-v0208_0_1_4" = callPackage 249446 + ({ mkDerivation, base, template-haskell }: 249447 + mkDerivation { 249448 + pname = "template-haskell-compat-v0208"; 249449 + version = "0.1.4"; 249450 + sha256 = "0byc81m07v5a765vs4jpwgmgkf54c2n5yaqz8ava1sspmmf2p9fh"; 249451 + libraryHaskellDepends = [ base template-haskell ]; 249452 + description = "A backwards compatibility layer for Template Haskell newer than 2.8"; 249453 + license = stdenv.lib.licenses.mit; 249454 + hydraPlatforms = stdenv.lib.platforms.none; 249455 + }) {}; 249456 + 248768 249457 "template-haskell-util" = callPackage 248769 249458 ({ mkDerivation, base, GenericPretty, ghc-prim, template-haskell }: 248770 249459 mkDerivation { ··· 249605 250294 ]; 249606 250295 description = "Terminal emulator configurable in Haskell"; 249607 250296 license = stdenv.lib.licenses.bsd3; 249608 - hydraPlatforms = stdenv.lib.platforms.none; 249609 - broken = true; 249610 250297 }) {inherit (pkgs) gtk3; inherit (pkgs) pcre2; 249611 250298 vte_291 = pkgs.vte;}; 249612 250299 ··· 254913 255600 pname = "token-bucket"; 254914 255601 version = "0.1.0.1"; 254915 255602 sha256 = "1l3axqdkrjf28pxhrvdvlpf9wi79czsfvhi33w4v2wbj0g00j9ii"; 254916 - revision = "5"; 254917 - editedCabalFile = "049d9bk5f8qa6d7gjgg4nqd56xz1mrxr1rxcwxsrk4vkqcpmzs6q"; 255603 + revision = "6"; 255604 + editedCabalFile = "15p4iycphz4q58kgq00kmz0ik0hzv3vx47k2dkp93xavb0dny46v"; 254918 255605 libraryHaskellDepends = [ base ]; 254919 255606 testHaskellDepends = [ base time ]; 254920 255607 description = "Rate limiter using lazy bucket algorithm"; ··· 256959 257646 pname = "tree-diff"; 256960 257647 version = "0.1"; 256961 257648 sha256 = "1156nbqn0pn9lp4zjsy4vv5g5wmy4zxwmbqdgvq349rydynh3ng3"; 256962 - revision = "4"; 256963 - editedCabalFile = "0zl94ppd94szvmqa7vnpbcr2zfppbqm4k6isidzks2mz2ji9dc1i"; 257649 + revision = "5"; 257650 + editedCabalFile = "1b60x9cgp7hn42hc97q866ybhg5hx3sp45j6gngpbwryg29r2p4h"; 256964 257651 libraryHaskellDepends = [ 256965 257652 aeson ansi-terminal ansi-wl-pprint base base-compat bytestring 256966 257653 bytestring-builder containers hashable parsec parsers pretty ··· 258954 259641 }: 258955 259642 mkDerivation { 258956 259643 pname = "twirp"; 258957 - version = "0.2.0.0"; 258958 - sha256 = "00dc6bil998fdvb5p0r2782cy3nknw6s8k5a0cv4yqmha4iyn32m"; 259644 + version = "0.2.0.1"; 259645 + sha256 = "05np0zvnvy8wrm9lirrkwhd0n8f44j4xwr6lrywxxy9r00mx8bbl"; 258959 259646 libraryHaskellDepends = [ 258960 259647 aeson base bytestring http-media http-types proto-lens 258961 259648 proto-lens-jsonpb proto-lens-runtime servant text wai ··· 261725 262412 }) {}; 261726 262413 261727 262414 "unicode-transforms" = callPackage 261728 - ({ mkDerivation, base, bitarray, bytestring, deepseq, filepath 261729 - , gauge, getopt-generics, optparse-applicative, path, path-io 261730 - , QuickCheck, split, text 261731 - }: 261732 - mkDerivation { 261733 - pname = "unicode-transforms"; 261734 - version = "0.3.6"; 261735 - sha256 = "1akscvyssif4hki3g6hy0jmjyr8cqly1whzvzj0km2b3qh0x09l3"; 261736 - isLibrary = true; 261737 - isExecutable = true; 261738 - libraryHaskellDepends = [ base bitarray bytestring text ]; 261739 - testHaskellDepends = [ 261740 - base deepseq getopt-generics QuickCheck split text 261741 - ]; 261742 - benchmarkHaskellDepends = [ 261743 - base deepseq filepath gauge optparse-applicative path path-io text 261744 - ]; 261745 - description = "Unicode normalization"; 261746 - license = stdenv.lib.licenses.bsd3; 261747 - }) {}; 261748 - 261749 - "unicode-transforms_0_3_7" = callPackage 261750 262415 ({ mkDerivation, base, bytestring, deepseq, filepath, gauge 261751 262416 , getopt-generics, ghc-prim, hspec, path, path-io, QuickCheck 261752 262417 , split, text ··· 261766 262431 ]; 261767 262432 description = "Unicode normalization"; 261768 262433 license = stdenv.lib.licenses.bsd3; 261769 - hydraPlatforms = stdenv.lib.platforms.none; 261770 262434 }) {}; 261771 262435 261772 262436 "unicode-tricks" = callPackage ··· 262455 263119 license = stdenv.lib.licenses.mit; 262456 263120 }) {}; 262457 263121 262458 - "universum_1_7_0" = callPackage 263122 + "universum_1_7_1" = callPackage 262459 263123 ({ mkDerivation, base, bytestring, containers, deepseq, doctest 262460 263124 , gauge, ghc-prim, Glob, hashable, hedgehog, microlens 262461 263125 , microlens-mtl, mtl, safe-exceptions, stm, tasty, tasty-hedgehog ··· 262463 263127 }: 262464 263128 mkDerivation { 262465 263129 pname = "universum"; 262466 - version = "1.7.0"; 262467 - sha256 = "079sck4cfhvx4zda5qiz7vs3050l87ik9hx8yjc6bihrzlqvmgfb"; 263130 + version = "1.7.1"; 263131 + sha256 = "0jsdzhy0h5d6znnrdgzr29b6qkriidck5s6yp52pci30rfv1d29z"; 262468 263132 libraryHaskellDepends = [ 262469 263133 base bytestring containers deepseq ghc-prim hashable microlens 262470 263134 microlens-mtl mtl safe-exceptions stm text transformers ··· 263638 264302 license = stdenv.lib.licenses.bsd3; 263639 264303 }) {}; 263640 264304 264305 + "url-bytes" = callPackage 264306 + ({ mkDerivation, base, byteslice, bytesmith, bytestring, deepseq 264307 + , gauge, HUnit, primitive, tasty, tasty-hunit, template-haskell 264308 + , uri-bytestring, weigh 264309 + }: 264310 + mkDerivation { 264311 + pname = "url-bytes"; 264312 + version = "0.1.0.0"; 264313 + sha256 = "0nbxnmz1m2icg3vvdndr4zydwr8nbgxhb70ak2jzc6d92c3vhvqi"; 264314 + libraryHaskellDepends = [ 264315 + base byteslice bytesmith primitive template-haskell 264316 + ]; 264317 + testHaskellDepends = [ 264318 + base byteslice HUnit primitive tasty tasty-hunit 264319 + ]; 264320 + benchmarkHaskellDepends = [ 264321 + base byteslice bytestring deepseq gauge primitive uri-bytestring 264322 + weigh 264323 + ]; 264324 + description = "Memory efficient url type and parser"; 264325 + license = stdenv.lib.licenses.mit; 264326 + hydraPlatforms = stdenv.lib.platforms.none; 264327 + broken = true; 264328 + }) {}; 264329 + 263641 264330 "url-decoders" = callPackage 263642 264331 ({ mkDerivation, base, base-prelude, binary-parser, bytestring 263643 264332 , criterion, http-types, QuickCheck, quickcheck-instances, rerebase ··· 266133 266822 }: 266134 266823 mkDerivation { 266135 266824 pname = "vector-sized"; 266136 - version = "1.4.1.0"; 266137 - sha256 = "14l6c8l8l29f6kdffknd70kkccfjcf105i1zd0kchgsgjnr9p6l1"; 266138 - libraryHaskellDepends = [ 266139 - adjunctions base binary comonad deepseq distributive 266140 - finite-typelits hashable indexed-list-literals primitive vector 266141 - ]; 266142 - description = "Size tagged vectors"; 266143 - license = stdenv.lib.licenses.bsd3; 266144 - }) {}; 266145 - 266146 - "vector-sized_1_4_2" = callPackage 266147 - ({ mkDerivation, adjunctions, base, binary, comonad, deepseq 266148 - , distributive, finite-typelits, hashable, indexed-list-literals 266149 - , primitive, vector 266150 - }: 266151 - mkDerivation { 266152 - pname = "vector-sized"; 266153 266825 version = "1.4.2"; 266154 266826 sha256 = "02a7jzik6a6w1xb6bwpvl6hmii6jgi9wr0q7p48bfbq0mlqjv42h"; 266155 266827 libraryHaskellDepends = [ ··· 266158 266830 ]; 266159 266831 description = "Size tagged vectors"; 266160 266832 license = stdenv.lib.licenses.bsd3; 266161 - hydraPlatforms = stdenv.lib.platforms.none; 266162 266833 }) {}; 266163 266834 266164 266835 "vector-space" = callPackage ··· 267655 268326 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 267656 268327 mkDerivation { 267657 268328 pname = "vulkan"; 267658 - version = "3.6.5"; 267659 - sha256 = "17r0rn2xs5l5x9vwa5vyc4q11gyw2v29qs7vqicla0qb4hh140fj"; 268329 + version = "3.6.6"; 268330 + sha256 = "09mq11jqrd9sgx4xcy3xxji21yfhzl9a49mh5fp80y2mxsxdl0v9"; 267660 268331 libraryHaskellDepends = [ base bytestring transformers vector ]; 267661 268332 librarySystemDepends = [ vulkan ]; 267662 268333 description = "Bindings to the Vulkan graphics API"; ··· 272193 272864 license = stdenv.lib.licenses.mit; 272194 272865 }) {}; 272195 272866 272196 - "within_0_2_0_0" = callPackage 272867 + "within_0_2_0_1" = callPackage 272197 272868 ({ mkDerivation, base, comonad, exceptions, free, hashable, path 272198 272869 , path-like 272199 272870 }: 272200 272871 mkDerivation { 272201 272872 pname = "within"; 272202 - version = "0.2.0.0"; 272203 - sha256 = "1jvfxcxyavadcbslb50a6ad7bmnwz45d6zaxyc38y61kh0r82242"; 272873 + version = "0.2.0.1"; 272874 + sha256 = "1yzfzizx45ngvvbshgw9z8hxl8z7vcr1gann6wnxq4b9669h29ic"; 272204 272875 libraryHaskellDepends = [ 272205 272876 base comonad exceptions free hashable path path-like 272206 272877 ]; ··· 275657 276328 }: 275658 276329 mkDerivation { 275659 276330 pname = "xmobar"; 275660 - version = "0.35.1"; 275661 - sha256 = "1fizszhij2if9wxwzi728l93j9p5y9kfqnwnxk6nl66g64rsbp5x"; 276331 + version = "0.36"; 276332 + sha256 = "0kqnadgsqn7m3zw2vk22ssf4aw67rij9l1lpjfsnv2qw0m5apsdl"; 275662 276333 configureFlags = [ 275663 276334 "-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus" 275664 276335 "-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris" ··· 276813 277484 }: 276814 277485 mkDerivation { 276815 277486 pname = "yaml"; 276816 - version = "0.11.4.0"; 276817 - sha256 = "0v69d10ni6ydj4g63ajcmnx6a2j3kbl91vpz678l7k5mkd3chkns"; 276818 - configureFlags = [ "-fsystem-libyaml" ]; 276819 - isLibrary = true; 276820 - isExecutable = true; 276821 - libraryHaskellDepends = [ 276822 - aeson attoparsec base bytestring conduit containers directory 276823 - filepath libyaml mtl resourcet scientific template-haskell text 276824 - transformers unordered-containers vector 276825 - ]; 276826 - testHaskellDepends = [ 276827 - aeson attoparsec base base-compat bytestring conduit containers 276828 - directory filepath hspec HUnit libyaml mockery mtl raw-strings-qq 276829 - resourcet scientific template-haskell temporary text transformers 276830 - unordered-containers vector 276831 - ]; 276832 - description = "Support for parsing and rendering YAML documents"; 276833 - license = stdenv.lib.licenses.bsd3; 276834 - }) {}; 276835 - 276836 - "yaml_0_11_5_0" = callPackage 276837 - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 276838 - , conduit, containers, directory, filepath, hspec, HUnit, libyaml 276839 - , mockery, mtl, raw-strings-qq, resourcet, scientific 276840 - , template-haskell, temporary, text, transformers 276841 - , unordered-containers, vector 276842 - }: 276843 - mkDerivation { 276844 - pname = "yaml"; 276845 277487 version = "0.11.5.0"; 276846 277488 sha256 = "1bfdsqckzql50j6ni4fa1470cvkmfiy4skb98cdwnj4rss5p93mj"; 276847 277489 configureFlags = [ "-fsystem-libyaml" ]; ··· 276860 277502 ]; 276861 277503 description = "Support for parsing and rendering YAML documents"; 276862 277504 license = stdenv.lib.licenses.bsd3; 276863 - hydraPlatforms = stdenv.lib.platforms.none; 276864 277505 }) {}; 276865 277506 276866 277507 "yaml-combinators" = callPackage ··· 279935 280576 }) {}; 279936 280577 279937 280578 "yhseq" = callPackage 279938 - ({ mkDerivation, base, hspec, hspec-discover }: 280579 + ({ mkDerivation, base, containers, hspec, hspec-discover, vector }: 279939 280580 mkDerivation { 279940 280581 pname = "yhseq"; 279941 - version = "0.2.1.2"; 279942 - sha256 = "1mxjfbnic6pn4jnyc83afpmgq4wnb09f72d359pwx693mfi6vbiy"; 279943 - libraryHaskellDepends = [ base ]; 279944 - testHaskellDepends = [ base hspec hspec-discover ]; 280582 + version = "0.3.0.1"; 280583 + sha256 = "1daipppqia4ig7xa9wxy2g3gcxrcwhxm1g6j5l81v56vfh0smg9r"; 280584 + isLibrary = true; 280585 + isExecutable = true; 280586 + libraryHaskellDepends = [ base containers vector ]; 280587 + executableHaskellDepends = [ base containers vector ]; 280588 + testHaskellDepends = [ 280589 + base containers hspec hspec-discover vector 280590 + ]; 279945 280591 testToolDepends = [ hspec-discover ]; 279946 - description = "Calculation of Y-sequence Hexirp edition"; 280592 + description = "Calculation of YH sequence system"; 279947 280593 license = stdenv.lib.licenses.asl20; 279948 280594 }) {}; 279949 280595 ··· 280993 281639 }: 280994 281640 mkDerivation { 280995 281641 pname = "zenacy-html"; 280996 - version = "2.0.1"; 280997 - sha256 = "074iidhiwzajz207q4k7f8sdg6w4421qfwr2s905226jd2xm1680"; 281642 + version = "2.0.2"; 281643 + sha256 = "12m953skm4ms6y211ahjrr6gkmrh4p3h2snpcpg1fc039nxgkc9p"; 280998 281644 isLibrary = true; 280999 281645 isExecutable = true; 281000 281646 libraryHaskellDepends = [ ··· 281015 281661 raw-strings-qq text 281016 281662 ]; 281017 281663 description = "A standard compliant HTML parsing library"; 281664 + license = stdenv.lib.licenses.mit; 281665 + }) {}; 281666 + 281667 + "zenacy-unicode" = callPackage 281668 + ({ mkDerivation, base, bytestring, HUnit, test-framework 281669 + , test-framework-hunit, text, vector, word8 281670 + }: 281671 + mkDerivation { 281672 + pname = "zenacy-unicode"; 281673 + version = "1.0.0"; 281674 + sha256 = "03sksmmmn380nvh0f139g63b4yx42ziimv79xjja7yx6mhaa0pqf"; 281675 + libraryHaskellDepends = [ base bytestring vector word8 ]; 281676 + testHaskellDepends = [ 281677 + base bytestring HUnit test-framework test-framework-hunit text 281678 + ]; 281679 + description = "Unicode utilities for Haskell"; 281018 281680 license = stdenv.lib.licenses.mit; 281019 281681 }) {}; 281020 281682 ··· 281765 282427 }: 281766 282428 mkDerivation { 281767 282429 pname = "zipper-extra"; 281768 - version = "0.1.3.1"; 281769 - sha256 = "1n6amxaydfannxhgnbj5g315m96h5wvgrdw89n6761vii76csky4"; 282430 + version = "0.1.3.2"; 282431 + sha256 = "0cq21hf40qp025ir9kihsp6b09bsrlgiqd5cfq688w57c2vhcmci"; 281770 282432 libraryHaskellDepends = [ 281771 282433 base comonad comonad-extras exceptions split 281772 282434 ];
+2 -2
pkgs/development/tools/haskell/haskell-language-server/hls-ghcide.nix
··· 18 18 version = "0.2.0"; 19 19 src = fetchgit { 20 20 url = "https://github.com/wz1000/ghcide"; 21 - sha256 = "1zq7ngaak8il91a309rl51dghzasnk4m2sm3av6d93cyqyra1hfc"; 22 - rev = "078e3d3c0d319f83841ccbcdc60ff5f0e243f6be"; 21 + sha256 = "112bsk2660750n94gnsgrvd30rk0ccxb8dbhka606a11pcqv5cgx"; 22 + rev = "3f6cd4553279ec47d1599b502720791a4f4613cd"; 23 23 fetchSubmodules = true; 24 24 }; 25 25 isLibrary = true;