Merge pull request #141286 from NixOS/haskell-updates

haskellPackages: update stackage and hackage

authored by

maralorn and committed by
GitHub
e435302d 10977a60

+1204 -230
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "ba457d86df5e8781485cf1b109f249ecf00ee4c6", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/ba457d86df5e8781485cf1b109f249ecf00ee4c6.tar.gz", 4 - "sha256": "1h1qnllhdfp6n71b36jw8kaw7kani76z3mmbigrvy8cmkbvj2mdc", 5 - "msg": "Update from Hackage at 2021-10-08T09:46:02Z" 6 }
··· 1 { 2 + "commit": "67f421ee170f4f161832c146be8ef87499ff0d37", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/67f421ee170f4f161832c146be8ef87499ff0d37.tar.gz", 4 + "sha256": "0rzwh0iff4xn499vvzv960gmrd85z6amjbbsyhb5qcldcap5jpjs", 5 + "msg": "Update from Hackage at 2021-10-11T20:00:11Z" 6 }
+2 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 - sha256 = "1022ff2x9jvi2a0820lbgmmh54cxh1vbn0qfdwr50w7ggvjp88i6"; 68 # delete android and Android directories which cause issues on 69 # darwin (case insensitive directory). Since we don't need them 70 # during the build process, we can delete it to prevent a hash ··· 1990 1991 # Needs Cabal >= 3.4 1992 chs-cabal = super.chs-cabal.override { 1993 - Cabal = self.Cabal_3_6_1_0; 1994 }; 1995 1996 # 2021-08-18: streamly-posix was released with hspec 2.8.2, but it works with older versions too.
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 + sha256 = "1yn84q0iy81b2sczbf4gx8b56f9ghb9kgwjc0n7l5xn5lb2wqlqa"; 68 # delete android and Android directories which cause issues on 69 # darwin (case insensitive directory). Since we don't need them 70 # during the build process, we can delete it to prevent a hash ··· 1990 1991 # Needs Cabal >= 3.4 1992 chs-cabal = super.chs-cabal.override { 1993 + Cabal = self.Cabal_3_6_2_0; 1994 }; 1995 1996 # 2021-08-18: streamly-posix was released with hspec 2.8.2, but it works with older versions too.
+3 -3
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 44 45 # cabal-install needs more recent versions of Cabal and base16-bytestring. 46 cabal-install = super.cabal-install.overrideScope (self: super: { 47 - Cabal = self.Cabal_3_6_1_0; 48 }); 49 50 # cabal-install-parsers is written for Cabal 3.6 51 - cabal-install-parsers = super.cabal-install-parsers.override { Cabal = super.Cabal_3_6_1_0; }; 52 53 # older version of cabal-install-parsers for reverse dependencies that use Cabal 3.4 54 cabal-install-parsers_0_4_2 = super.cabal-install-parsers_0_4_2.override { 55 - Cabal = self.Cabal_3_4_0_0; 56 }; 57 58 # Jailbreak to fix the build.
··· 44 45 # cabal-install needs more recent versions of Cabal and base16-bytestring. 46 cabal-install = super.cabal-install.overrideScope (self: super: { 47 + Cabal = self.Cabal_3_6_2_0; 48 }); 49 50 # cabal-install-parsers is written for Cabal 3.6 51 + cabal-install-parsers = super.cabal-install-parsers.override { Cabal = super.Cabal_3_6_2_0; }; 52 53 # older version of cabal-install-parsers for reverse dependencies that use Cabal 3.4 54 cabal-install-parsers_0_4_2 = super.cabal-install-parsers_0_4_2.override { 55 + Cabal = self.Cabal_3_4_1_0; 56 }; 57 58 # Jailbreak to fix the build.
+2 -2
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 51 # cabal-install needs more recent versions of Cabal and random, but an older 52 # version of base16-bytestring. 53 cabal-install = super.cabal-install.overrideScope (self: super: { 54 - Cabal = self.Cabal_3_6_1_0; 55 }); 56 57 # Ignore overly restrictive upper version bounds. ··· 98 darcs = dontDistribute super.darcs; 99 100 # The package needs the latest Cabal version. 101 - cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_6_1_0; }); 102 103 # cabal-fmt requires Cabal3 104 cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
··· 51 # cabal-install needs more recent versions of Cabal and random, but an older 52 # version of base16-bytestring. 53 cabal-install = super.cabal-install.overrideScope (self: super: { 54 + Cabal = self.Cabal_3_6_2_0; 55 }); 56 57 # Ignore overly restrictive upper version bounds. ··· 98 darcs = dontDistribute super.darcs; 99 100 # The package needs the latest Cabal version. 101 + cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_6_2_0; }); 102 103 # cabal-fmt requires Cabal3 104 cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
+12 -1
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 45 46 # cabal-install needs more recent versions of Cabal and base16-bytestring. 47 cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 48 - Cabal = self.Cabal_3_6_1_0; 49 }); 50 51 # Jailbreaks & Version Updates ··· 72 vector-binary-instances = doJailbreak super.vector-binary-instances; 73 vector-th-unbox = doJailbreak super.vector-th-unbox; 74 zlib = doJailbreak super.zlib; 75 76 # Apply patches from head.hackage. 77 alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
··· 45 46 # cabal-install needs more recent versions of Cabal and base16-bytestring. 47 cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 48 + Cabal = self.Cabal_3_6_2_0; 49 }); 50 51 # Jailbreaks & Version Updates ··· 72 vector-binary-instances = doJailbreak super.vector-binary-instances; 73 vector-th-unbox = doJailbreak super.vector-th-unbox; 74 zlib = doJailbreak super.zlib; 75 + weeder = self.weeder_2_3_0; 76 + generic-lens-core = self.generic-lens-core_2_2_0_0; 77 + generic-lens = self.generic-lens_2_2_0_0; 78 + 79 + # Doesn't allow Dhall 1.39.* 80 + weeder_2_3_0 = super.weeder_2_3_0.override { 81 + dhall = self.dhall_1_40_1; 82 + }; 83 + 84 + # Upstream also disables test for GHC 9: https://github.com/kcsongor/generic-lens/pull/130 85 + generic-lens_2_2_0_0 = dontCheck super.generic-lens_2_2_0_0; 86 87 # Apply patches from head.hackage. 88 alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
+5 -2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1284 - escape-artist 1285 - escoger 1286 - espial 1287 - ess 1288 - estimators 1289 - EstProgress ··· 1534 - funcons-values 1535 - function-instances-algebra 1536 - functor 1537 - - functor-combinators 1538 - functor-friends 1539 - functor-infix 1540 - functorm ··· 1676 - git-cuk 1677 - git-date 1678 - gitdo 1679 - github-backup 1680 - github-data 1681 - github-tools ··· 3847 - process-leksah 3848 - process-listlike 3849 - processmemory 3850 - - procex 3851 - procrastinating-variable 3852 - procstat 3853 - prof2pretty ··· 4384 - shopify 4385 - shortcut-links 4386 - shorten-strings 4387 - show-prettyprint 4388 - Shpadoinkle-backend-snabbdom 4389 - Shpadoinkle-isreal ··· 4716 - SVD2HS 4717 - svfactor 4718 - svg-builder-fork 4719 - svgutils 4720 - svm-light-utils 4721 - svm-simple ··· 5288 - warc 5289 - warp-dynamic 5290 - warp-grpc 5291 - warp-static 5292 - warp-systemd 5293 - wasm
··· 1284 - escape-artist 1285 - escoger 1286 - espial 1287 + - esqueleto-pgcrypto 1288 - ess 1289 - estimators 1290 - EstProgress ··· 1535 - funcons-values 1536 - function-instances-algebra 1537 - functor 1538 - functor-friends 1539 - functor-infix 1540 - functorm ··· 1676 - git-cuk 1677 - git-date 1678 - gitdo 1679 + - github 1680 - github-backup 1681 - github-data 1682 - github-tools ··· 3848 - process-leksah 3849 - process-listlike 3850 - processmemory 3851 - procrastinating-variable 3852 - procstat 3853 - prof2pretty ··· 4384 - shopify 4385 - shortcut-links 4386 - shorten-strings 4387 + - short-vec 4388 - show-prettyprint 4389 - Shpadoinkle-backend-snabbdom 4390 - Shpadoinkle-isreal ··· 4717 - SVD2HS 4718 - svfactor 4719 - svg-builder-fork 4720 + - svgcairo 4721 - svgutils 4722 - svm-light-utils 4723 - svm-simple ··· 5290 - warc 5291 - warp-dynamic 5292 - warp-grpc 5293 + - warp-quic 5294 - warp-static 5295 - warp-systemd 5296 - wasm
+2
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 98 - ghc-api-compat == 8.10.7 99 # 2021-09-14: Pin hiedb to version needed by ghcide 100 - hiedb == 0.4.0.* 101 102 extra-packages: 103 - base16-bytestring < 1 # required for cabal-install etc.
··· 98 - ghc-api-compat == 8.10.7 99 # 2021-09-14: Pin hiedb to version needed by ghcide 100 - hiedb == 0.4.0.* 101 + # 2021-10-13: weeder 2.3.0 require GHC == 9.0.*; remove pin when GHC version changes 102 + - weeder < 2.3.0 103 104 extra-packages: 105 - base16-bytestring < 1 # required for cabal-install etc.
+10 -1
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 534 - base64-bytes 535 - baserock-schema 536 - batchd 537 - battlenet-yesod 538 - battleships 539 - bayes-stack ··· 732 - claferwiki 733 - clash 734 - clash-ghc 735 - clash-lib 736 - clash-multisignal 737 - clash-prelude-quickcheck 738 - clash-shake ··· 935 - delta 936 - delta-h 937 - dep-t-advice 938 - dependent-state 939 - dephd 940 - deptrack-devops ··· 1117 - filesystem-enumerator 1118 - find-clumpiness 1119 - findhttp 1120 - firstify 1121 - fix-parser-simple 1122 - fixed-point-vector ··· 2426 - nomyx-language 2427 - nomyx-library 2428 - nomyx-server 2429 - notmuch-haskell 2430 - notmuch-web 2431 - numeric-ode ··· 2453 - one-liner_2_0 2454 - online 2455 - online-csv 2456 - open-adt-tutorial 2457 - open-union 2458 - openpgp-Crypto ··· 2559 - polh-lexicon 2560 - polydata 2561 - polysemy-RandomFu 2562 - polysemy-http 2563 - polysemy-log-co 2564 - polysemy-methodology-co-log ··· 2907 - servant-auth-token-persistent 2908 - servant-auth-token-rocksdb 2909 - servant-auth-wordpress 2910 - - servant-cli 2911 - servant-client-namedargs 2912 - servant-csharp 2913 - servant-db-postgresql 2914 - servant-ede 2915 - servant-event-stream 2916 - servant-examples 2917 - servant-http2-client 2918 - servant-matrix-param 2919 - servant-polysemy ··· 2941 - shelduck 2942 - shellmate-extras 2943 - shine-varying 2944 - showdown 2945 - shpider 2946 - shuffle
··· 534 - base64-bytes 535 - baserock-schema 536 - batchd 537 + - batching 538 - battlenet-yesod 539 - battleships 540 - bayes-stack ··· 733 - claferwiki 734 - clash 735 - clash-ghc 736 + - clash-ghc_1_4_4 737 - clash-lib 738 + - clash-lib_1_4_4 739 - clash-multisignal 740 - clash-prelude-quickcheck 741 - clash-shake ··· 938 - delta 939 - delta-h 940 - dep-t-advice 941 + - dependent-literals-plugin 942 - dependent-state 943 - dephd 944 - deptrack-devops ··· 1121 - filesystem-enumerator 1122 - find-clumpiness 1123 - findhttp 1124 + - finite-table 1125 - firstify 1126 - fix-parser-simple 1127 - fixed-point-vector ··· 2431 - nomyx-language 2432 - nomyx-library 2433 - nomyx-server 2434 + - notifications-tray-icon 2435 - notmuch-haskell 2436 - notmuch-web 2437 - numeric-ode ··· 2459 - one-liner_2_0 2460 - online 2461 - online-csv 2462 + - opc-xml-da-client 2463 - open-adt-tutorial 2464 - open-union 2465 - openpgp-Crypto ··· 2566 - polh-lexicon 2567 - polydata 2568 - polysemy-RandomFu 2569 + - polysemy-check 2570 - polysemy-http 2571 - polysemy-log-co 2572 - polysemy-methodology-co-log ··· 2915 - servant-auth-token-persistent 2916 - servant-auth-token-rocksdb 2917 - servant-auth-wordpress 2918 - servant-client-namedargs 2919 - servant-csharp 2920 - servant-db-postgresql 2921 - servant-ede 2922 - servant-event-stream 2923 - servant-examples 2924 + - servant-github-webhook 2925 - servant-http2-client 2926 - servant-matrix-param 2927 - servant-polysemy ··· 2949 - shelduck 2950 - shellmate-extras 2951 - shine-varying 2952 + - short-vec-lens 2953 - showdown 2954 - shpider 2955 - shuffle
+17
pkgs/development/haskell-modules/configuration-nix.nix
··· 978 doCheck = with pkgs.stdenv; hostPlatform == buildPlatform 979 && buildPlatform.isx86; 980 }; 981 }
··· 978 doCheck = with pkgs.stdenv; hostPlatform == buildPlatform 979 && buildPlatform.isx86; 980 }; 981 + 982 + # procex relies on close_range which has been introduced in Linux 5.9, 983 + # the test suite seems to force the use of this feature (or the fallback 984 + # mechanism is broken), so we can't run the test suite on machines with a 985 + # Kernel < 5.9. To check for this, we use uname -r to obtain the Kernel 986 + # version and sort -V to compare against our minimum version. If the 987 + # Kernel turns out to be older, we disable the test suite. 988 + procex = overrideCabal super.procex (drv: { 989 + postConfigure = '' 990 + minimumKernel=5.9 991 + higherVersion=`printf "%s\n%s\n" "$minimumKernel" "$(uname -r)" | sort -rV | head -n1` 992 + if [[ "$higherVersion" = "$minimumKernel" ]]; then 993 + echo "Used Kernel doesn't support close_range, disabling tests" 994 + unset doCheck 995 + fi 996 + '' + (drv.postConfigure or ""); 997 + }); 998 }
+1146 -214
pkgs/development/haskell-modules/hackage-packages.nix
··· 2745 hydraPlatforms = lib.platforms.none; 2746 }) {}; 2747 2748 - "Cabal_3_4_0_0" = callPackage 2749 ({ mkDerivation, array, async, base, base-compat, base-orphans 2750 , binary, bytestring, clock, containers, deepseq, Diff, directory 2751 , filepath, integer-logarithms, mtl, optparse-applicative, parsec ··· 2755 }: 2756 mkDerivation { 2757 pname = "Cabal"; 2758 - version = "3.4.0.0"; 2759 - sha256 = "1za1cl14fkw8y89hhw6sqirzmkixjaa4wpqsibyk0fvnjs59jydq"; 2760 setupHaskellDepends = [ mtl parsec ]; 2761 libraryHaskellDepends = [ 2762 array base binary bytestring containers deepseq directory filepath ··· 2775 hydraPlatforms = lib.platforms.none; 2776 }) {}; 2777 2778 - "Cabal_3_6_1_0" = callPackage 2779 ({ mkDerivation, array, base, binary, bytestring, containers 2780 , deepseq, directory, filepath, mtl, parsec, pretty, process, text 2781 , time, transformers, unix 2782 }: 2783 mkDerivation { 2784 pname = "Cabal"; 2785 - version = "3.6.1.0"; 2786 - sha256 = "0yjdp78775752k10q4j5dbvqj37xaa2b3anmfld53mgr17k182a7"; 2787 setupHaskellDepends = [ mtl parsec ]; 2788 libraryHaskellDepends = [ 2789 array base binary bytestring containers deepseq directory filepath ··· 3369 license = lib.licenses.bsd3; 3370 }) {}; 3371 3372 "Combinatorrent" = callPackage 3373 ({ mkDerivation, array, attoparsec, base, bytestring, cereal 3374 , containers, deepseq, directory, filepath, hopenssl, hslogger ··· 9439 pname = "HTTP"; 9440 version = "4000.3.16"; 9441 sha256 = "0bgyj3ahqlyg0jw6qsm2sncp8mklc4h0dj91s043vb3ig01iq2fn"; 9442 libraryHaskellDepends = [ 9443 array base bytestring mtl network network-uri parsec time 9444 ]; ··· 18082 pname = "SecureHash-SHA3"; 18083 version = "0.1.1.0"; 18084 sha256 = "0dva3bzfzyzh8kxljyipd041a2w1zhxjvxmhnw2mlv2jcywnk2hz"; 18085 - revision = "2"; 18086 - editedCabalFile = "0rvalvvjadb0i0rh9z5lgw2hca4a9yw3cg2f6gcx7h30f5dp8x1j"; 18087 libraryHaskellDepends = [ base bytestring ]; 18088 description = "simple static linked SHA3 using private symbols and the ref impl"; 18089 license = lib.licenses.bsd2; ··· 24450 license = lib.licenses.bsd3; 24451 }) {}; 24452 24453 "aeson-applicative" = callPackage 24454 ({ mkDerivation, aeson, base, text, unordered-containers }: 24455 mkDerivation { ··· 24604 license = lib.licenses.bsd3; 24605 }) {}; 24606 24607 "aeson-decode" = callPackage 24608 ({ mkDerivation, aeson, aeson-qq, base, containers, data-default 24609 , hedgehog, text, time, unordered-containers, vector ··· 24712 }: 24713 mkDerivation { 24714 pname = "aeson-extra"; 24715 - version = "0.5"; 24716 - sha256 = "0nlp6bwb8zynfncfzr05fi9acfs8n2fkz4anm2c0g97dk2ziq213"; 24717 - revision = "2"; 24718 - editedCabalFile = "02c6rjwm8dyijfcj2wvhx1s9pd3d37g9yqgih4x80na533naps31"; 24719 libraryHaskellDepends = [ 24720 aeson attoparsec attoparsec-iso8601 base base-compat-batteries 24721 bytestring containers deepseq exceptions hashable parsec ··· 24994 license = lib.licenses.mit; 24995 }) {}; 24996 24997 "aeson-options" = callPackage 24998 ({ mkDerivation, aeson, base }: 24999 mkDerivation { ··· 25062 pname = "aeson-pretty"; 25063 version = "0.8.8"; 25064 sha256 = "09n7gs91y1fbw6gjszrd2na3isnvk3y5rsi90lzjrwywnqfadkl1"; 25065 isLibrary = true; 25066 isExecutable = true; 25067 libraryHaskellDepends = [ ··· 25096 license = lib.licenses.mit; 25097 }) {}; 25098 25099 "aeson-quick" = callPackage 25100 ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion 25101 , deepseq, microlens, tasty, tasty-hunit, text ··· 25189 broken = true; 25190 }) {}; 25191 25192 "aeson-serialize" = callPackage 25193 ({ mkDerivation, aeson, base, cereal, hspec, HUnit }: 25194 mkDerivation { ··· 27924 pname = "amazonka-core"; 27925 version = "1.6.1"; 27926 sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621"; 27927 - revision = "1"; 27928 - editedCabalFile = "1656dyw6fk3gvph6v3xzvdp3p8xny3ji0gxg7qxvmvn60gj9ricv"; 27929 libraryHaskellDepends = [ 27930 aeson attoparsec base bifunctors bytestring case-insensitive 27931 conduit conduit-extra cryptonite deepseq exceptions hashable ··· 30453 }: 30454 mkDerivation { 30455 pname = "ansi-terminal-game"; 30456 - version = "1.1.1.0"; 30457 - sha256 = "07b4sxx36r604j2q3xyk1y962c6fgy091ly4gc27v49zhmfrmypr"; 30458 isLibrary = true; 30459 isExecutable = true; 30460 libraryHaskellDepends = [ ··· 35120 }) {}; 35121 35122 "attenuation" = callPackage 35123 - ({ mkDerivation, base, profunctors }: 35124 mkDerivation { 35125 pname = "attenuation"; 35126 - version = "0.1.0.0"; 35127 - sha256 = "0swiqnh34654rljydbd91nbkpgi1x816b7y3f57i4qnync29nsd0"; 35128 revision = "1"; 35129 - editedCabalFile = "1bh0ydj5fywx8zcgvfb40092jb09njj2kk09kg7gfvq2fvpz5whr"; 35130 - libraryHaskellDepends = [ base profunctors ]; 35131 - description = "Representational subtyping relations and variance roles"; 35132 license = lib.licenses.asl20; 35133 }) {}; 35134 ··· 35729 pname = "authenticate"; 35730 version = "1.3.5"; 35731 sha256 = "10df40ycd4r45p58xzdh0vcsa401909fa99nkgd18fx5alqh84sz"; 35732 libraryHaskellDepends = [ 35733 aeson attoparsec base blaze-builder bytestring case-insensitive 35734 conduit containers html-conduit http-conduit http-types network-uri ··· 36497 pname = "aws"; 36498 version = "0.22"; 36499 sha256 = "1l3f94mpih7slz37ikyjkyrwvlf110w87997d8sbnbd8glwlcb8r"; 36500 isLibrary = true; 36501 isExecutable = true; 36502 libraryHaskellDepends = [ ··· 38790 pname = "base64-bytestring-type"; 38791 version = "1.0.1"; 38792 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 38793 - revision = "9"; 38794 - editedCabalFile = "003vi0psr8s5whjy1qw43swiw1g1l1mxa962xqz9fdpxbmvlanfy"; 38795 libraryHaskellDepends = [ 38796 aeson base base-compat base64-bytestring binary bytestring cereal 38797 deepseq hashable http-api-data QuickCheck serialise text ··· 39136 ]; 39137 description = "An Applicative Functor deferring actions to run in a batch later"; 39138 license = lib.licenses.asl20; 39139 }) {}; 39140 39141 "battlenet" = callPackage ··· 40982 license = lib.licenses.bsd3; 40983 }) {}; 40984 40985 "binary-io" = callPackage 40986 ({ mkDerivation, async, base, binary, bytestring, concurrency 40987 , deque, exceptions, hspec, process, stm, transformers ··· 41256 license = lib.licenses.bsd3; 41257 }) {}; 41258 41259 "binary-tree" = callPackage 41260 ({ mkDerivation, base, ChasingBottoms, checkers, criterion, deepseq 41261 , doctest, ghc-prim, HUnit, QuickCheck, random, test-framework ··· 43815 pname = "blank-canvas"; 43816 version = "0.7.3"; 43817 sha256 = "1g10959ly5nv2xfhax4pamzxnxkqbniahplc5za8k5r4nq1vjrm2"; 43818 - revision = "3"; 43819 - editedCabalFile = "0bdl3xbxj2dpg5gv1h0561hhjjs6pp3bkgrg18gpl3pbksmr9q8j"; 43820 enableSeparateDataOutput = true; 43821 libraryHaskellDepends = [ 43822 aeson base base-compat-batteries base64-bytestring bytestring ··· 47127 license = lib.licenses.bsd3; 47128 }) {}; 47129 47130 "bugzilla" = callPackage 47131 ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection 47132 , containers, data-default, http-conduit, http-types, iso8601-time ··· 47991 }: 47992 mkDerivation { 47993 pname = "bytesmith"; 47994 - version = "0.3.7.0"; 47995 - sha256 = "13dc4cwiga63wmnw9hl332d8gvqjl4yl0p09z2pkmwl81br7ybrc"; 47996 - revision = "1"; 47997 - editedCabalFile = "0jwax6jdzfcy007dqwdza1r4q8s12ly2gpzpaqy8gi52ap6xc05x"; 47998 libraryHaskellDepends = [ 47999 base byteslice bytestring contiguous primitive run-st text-short 48000 wide-word ··· 49428 }: 49429 mkDerivation { 49430 pname = "cabal-install"; 49431 - version = "3.6.0.0"; 49432 - sha256 = "0ishq4n1jn0kll8257akrzm95lg9ryhyp9pzypcikgvqhl0sz741"; 49433 isLibrary = false; 49434 isExecutable = true; 49435 executableHaskellDepends = [ ··· 49552 pname = "cabal-install-parsers"; 49553 version = "0.4.3"; 49554 sha256 = "0gpnfv80rhrws12b1klyi5fkqvn8pgnl2hxh5fbnfp8fbrwklfjq"; 49555 libraryHaskellDepends = [ 49556 aeson base base16-bytestring binary binary-instances bytestring 49557 Cabal containers cryptohash-sha256 deepseq directory filepath lukko ··· 49699 ]; 49700 description = "Library and utility for processing cabal's plan.json file"; 49701 license = lib.licenses.gpl2Plus; 49702 }) {}; 49703 49704 "cabal-progdeps" = callPackage ··· 50990 }: 50991 mkDerivation { 50992 pname = "camfort"; 50993 - version = "1.1.1"; 50994 - sha256 = "173k5mf2w4ba553j8qh5biljw3xhrk0qipix72cx8xd0vadkh62f"; 50995 isLibrary = true; 50996 isExecutable = true; 50997 libraryHaskellDepends = [ ··· 56080 hydraPlatforms = lib.platforms.none; 56081 }) {}; 56082 56083 "clash-lib" = callPackage 56084 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56085 , attoparsec, base, base16-bytestring, binary, bytestring ··· 56123 hydraPlatforms = lib.platforms.none; 56124 }) {}; 56125 56126 "clash-multisignal" = callPackage 56127 ({ mkDerivation, base, clash-prelude, deepseq 56128 , ghc-typelits-knownnat, QuickCheck ··· 56155 pname = "clash-prelude"; 56156 version = "1.4.3"; 56157 sha256 = "07mdl3196yb971hpcbysyaj6vciyrm1p5m9prcymkhkqh7vw9igy"; 56158 setupHaskellDepends = [ base Cabal cabal-doctest ]; 56159 libraryHaskellDepends = [ 56160 array arrows base bifunctors binary bytestring constraints ··· 66442 pname = "criterion"; 66443 version = "1.5.10.0"; 66444 sha256 = "0akws27z3i9381xrb0p0h5qicz4w5nnxy8jq7gk68gi50gj0flxq"; 66445 - revision = "1"; 66446 - editedCabalFile = "0j5cmc0w5m4fy28531f79dmbv3la51zh7k14l3kq3ix835crmmbz"; 66447 isLibrary = true; 66448 isExecutable = true; 66449 enableSeparateDataOutput = true; ··· 66465 ]; 66466 description = "Robust, reliable performance measurement and analysis"; 66467 license = lib.licenses.bsd3; 66468 }) {}; 66469 66470 "criterion-cmp" = callPackage ··· 67362 broken = true; 67363 }) {cryptohash-sha256-pure = null;}; 67364 67365 "cryptohash-sha512" = callPackage 67366 ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67367 , SHA, tasty, tasty-hunit, tasty-quickcheck ··· 67689 }: 67690 mkDerivation { 67691 pname = "csound-expression"; 67692 - version = "5.4.1"; 67693 - sha256 = "0dyafw91ycsr71sxf7z3fbvfbp9vh8l260l9ygfxlrg37971l4pj"; 67694 libraryHaskellDepends = [ 67695 base Boolean colour containers csound-expression-dynamic 67696 csound-expression-opcodes csound-expression-typed data-default ··· 67707 }: 67708 mkDerivation { 67709 pname = "csound-expression-dynamic"; 67710 - version = "0.3.7"; 67711 - sha256 = "1qx9qig18y89k4sxpn333hvqz74c6f56nbvaf8dfbawx5asar0jm"; 67712 libraryHaskellDepends = [ 67713 array base Boolean containers data-default data-fix data-fix-cse 67714 deriving-compat hashable transformers wl-pprint ··· 67740 }: 67741 mkDerivation { 67742 pname = "csound-expression-typed"; 67743 - version = "0.2.5"; 67744 - sha256 = "1bid3wxg879l69w8c1vcana0xxrggxv30dw9bqi8zww2w23id54q"; 67745 enableSeparateDataOutput = true; 67746 libraryHaskellDepends = [ 67747 base Boolean colour containers csound-expression-dynamic ··· 73669 }: 73670 mkDerivation { 73671 pname = "dep-t"; 73672 - version = "0.4.4.0"; 73673 - sha256 = "1qknqh9j7nvyy15zfi3prx6bifp2nd72kgfd085p478z887i71r4"; 73674 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 73675 testHaskellDepends = [ 73676 base doctest mtl rank2classes sop-core tasty tasty-hunit ··· 73689 }: 73690 mkDerivation { 73691 pname = "dep-t-advice"; 73692 - version = "0.4.6.0"; 73693 - sha256 = "1v1nn0qbr3l7hh3f5aw6ril8ifzg6r8im7gpyj5plfbp272v4gs9"; 73694 libraryHaskellDepends = [ base dep-t sop-core transformers ]; 73695 testHaskellDepends = [ 73696 barbies base dep-t doctest mtl rank2classes sop-core tasty ··· 73751 pname = "dependent-literals"; 73752 version = "0.1.1.0"; 73753 sha256 = "0dw2xc5l8cmhsmr2akyyhyfj8m3qx02pz81fn52ii9mkhzs6rcjb"; 73754 libraryHaskellDepends = [ 73755 base fin-int numeric-kinds sint snumber tagged wrapped 73756 ]; 73757 - description = "Provides library support for pseudo-dependently-typed int literals"; 73758 license = lib.licenses.asl20; 73759 }) {}; 73760 ··· 73766 pname = "dependent-literals-plugin"; 73767 version = "0.1.0.1"; 73768 sha256 = "1rpjlcv3g150rcmxidn48n25xxv2ghdz4x9jnap1swkz0fb10i3a"; 73769 libraryHaskellDepends = [ base ghc syb ]; 73770 testHaskellDepends = [ 73771 base dependent-literals fin-int numeric-kinds short-vec sint 73772 snumber wrapped 73773 ]; 73774 - description = "Rewrites integer literals to a pseudo-dependently-typed form"; 73775 license = lib.licenses.asl20; 73776 }) {}; 73777 73778 "dependent-map_0_2_4_0" = callPackage ··· 79573 license = lib.licenses.bsd3; 79574 }) {}; 79575 79576 "docopt" = callPackage 79577 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers 79578 , HUnit, parsec, split, template-haskell, text ··· 79656 license = lib.licenses.bsd3; 79657 }) {}; 79658 79659 - "doctemplates_0_10" = callPackage 79660 ({ mkDerivation, aeson, base, bytestring, containers, criterion 79661 , doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific 79662 , tasty, tasty-golden, tasty-hunit, temporary, text 79663 - , text-conversions, unordered-containers, vector 79664 }: 79665 mkDerivation { 79666 pname = "doctemplates"; 79667 - version = "0.10"; 79668 - sha256 = "1nwav01dqxhbbmf4si8ks70lmhkldmy70m1dw89xrndvcgcynmrx"; 79669 enableSeparateDataOutput = true; 79670 libraryHaskellDepends = [ 79671 aeson base containers doclayout filepath HsYAML mtl parsec safe 79672 - scientific text text-conversions unordered-containers vector 79673 ]; 79674 testHaskellDepends = [ 79675 aeson base bytestring containers doclayout filepath Glob tasty ··· 85345 license = lib.licenses.bsd3; 85346 }) {}; 85347 85348 "empty" = callPackage 85349 ({ mkDerivation }: 85350 mkDerivation { ··· 87118 ]; 87119 description = "Esqueleto support for the pgcrypto PostgreSQL module"; 87120 license = lib.licenses.bsd3; 87121 }) {}; 87122 87123 "ess" = callPackage ··· 88855 pname = "exiftool"; 88856 version = "0.2.0.0"; 88857 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 88858 libraryHaskellDepends = [ 88859 aeson base base64 bytestring hashable process scientific 88860 string-conversions temporary text unordered-containers vector ··· 93172 }: 93173 mkDerivation { 93174 pname = "fin-int"; 93175 - version = "0.1.0.0"; 93176 - sha256 = "0ksjc8jz3l5jh6xd7aam424vpcq1ah7dcq2r5vmh4c7hcd48fakv"; 93177 - revision = "1"; 93178 - editedCabalFile = "0fq6cliihr0dhks62nim33f0sxqs2rwn4yd7gdd67h07acimcrzf"; 93179 libraryHaskellDepends = [ 93180 attenuation base data-default-class deepseq portray portray-diff 93181 QuickCheck sint 93182 ]; 93183 - description = "The type of finite sets with elements identified by the ordinals"; 93184 license = lib.licenses.asl20; 93185 }) {}; 93186 ··· 93482 pname = "finite-table"; 93483 version = "0.1.0.1"; 93484 sha256 = "17bn5wmv5sz89yh3lh39i1armi168wxxnz6l9smcfmw334lidlv6"; 93485 libraryHaskellDepends = [ 93486 adjunctions base cereal data-default-class deepseq distributive 93487 fin-int indexed-traversable lens portray portray-diff short-vec ··· 93495 ]; 93496 description = "Types isomorphic to Fin, and Tables indexed by them"; 93497 license = lib.licenses.asl20; 93498 }) {}; 93499 93500 "finite-typelits" = callPackage ··· 98849 ]; 98850 description = "Tools for functor combinator-based program design"; 98851 license = lib.licenses.bsd3; 98852 - hydraPlatforms = lib.platforms.none; 98853 - broken = true; 98854 }) {}; 98855 98856 "functor-combinators_0_4_1_0" = callPackage ··· 98880 description = "Tools for functor combinator-based program design"; 98881 license = lib.licenses.bsd3; 98882 hydraPlatforms = lib.platforms.none; 98883 - broken = true; 98884 }) {}; 98885 98886 "functor-combo" = callPackage ··· 106507 }: 106508 mkDerivation { 106509 pname = "git-annex"; 106510 - version = "8.20210903"; 106511 - sha256 = "1p6zgk98jmxvqdin5xsdxhgq276bjdr2spi0wabj8x0ziry97rvl"; 106512 configureFlags = [ 106513 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 106514 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 107036 }: 107037 mkDerivation { 107038 pname = "github"; 107039 - version = "0.26"; 107040 - sha256 = "1vbskrkhmz4d3fccn3w12zgz2dbl40b2gljsm7lyd5k8hz50kds8"; 107041 libraryHaskellDepends = [ 107042 aeson base base-compat base16-bytestring binary binary-instances 107043 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 107053 testToolDepends = [ hspec-discover ]; 107054 description = "Access to the GitHub API, v3"; 107055 license = lib.licenses.bsd3; 107056 }) {}; 107057 107058 "github-backup" = callPackage ··· 107170 license = lib.licenses.bsd3; 107171 }) {}; 107172 107173 - "github-rest_1_1_0" = callPackage 107174 ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 107175 , http-client-tls, http-types, jwt, mtl, scientific, tasty 107176 , tasty-golden, tasty-hunit, tasty-quickcheck, text, time ··· 107178 }: 107179 mkDerivation { 107180 pname = "github-rest"; 107181 - version = "1.1.0"; 107182 - sha256 = "0xyvmc8hj3rfglnhg6xcrdsd9gbii8yzh8qw5xjdyccmdsibckx3"; 107183 libraryHaskellDepends = [ 107184 aeson base bytestring http-client http-client-tls http-types jwt 107185 mtl scientific text time transformers unliftio unliftio-core ··· 107424 license = lib.licenses.bsd3; 107425 }) {}; 107426 107427 - "gitlab-haskell_0_3_1_1" = callPackage 107428 ({ mkDerivation, aeson, base, bytestring, connection, http-client 107429 , http-conduit, http-types, tasty, tasty-hunit, temporary, text 107430 , time, transformers, unix 107431 }: 107432 mkDerivation { 107433 pname = "gitlab-haskell"; 107434 - version = "0.3.1.1"; 107435 - sha256 = "146azh83v963njnkbcf6lacj95qx89wcvi294s3nc89bp72z8igz"; 107436 enableSeparateDataOutput = true; 107437 libraryHaskellDepends = [ 107438 aeson base bytestring connection http-client http-conduit ··· 111432 pname = "google-drive"; 111433 version = "0.4.1"; 111434 sha256 = "1whpifspbvqgw9hg367fjhp14ci61nnirskivawpv2airzn45xzk"; 111435 libraryHaskellDepends = [ 111436 aeson base bytestring conduit conduit-extra directory filepath 111437 http-conduit http-types mtl random resourcet text time ··· 124840 pname = "hastache"; 124841 version = "0.6.1"; 124842 sha256 = "0r5l8k157pgvz1ck4lfid5x05f2s0nlmwf33f4fj09b1kmk8k3wc"; 124843 - revision = "5"; 124844 - editedCabalFile = "0fwd1jd6sqkscmy2yq1w3dcl4va4w9n8mhs6ldrilh1cj6b54r3f"; 124845 isLibrary = true; 124846 isExecutable = true; 124847 libraryHaskellDepends = [ ··· 130898 }) {}; 130899 130900 "iotransaction" = callPackage 130901 - "iotransaction" = callPackage 130902 - "iotransaction" = callPackage 130903 }: 130904 mkDerivation { 130905 "iotransaction" = callPackage 130906 - version = "0.1.0.0"; 130907 - "iotransaction" = callPackage 130908 - revision = "2"; 130909 - "iotransaction" = callPackage 130910 libraryHaskellDepends = [ 130911 - "iotransaction" = callPackage 130912 - "iotransaction" = callPackage 130913 ]; 130914 testHaskellDepends = [ 130915 - "iotransaction" = callPackage 130916 - "iotransaction" = callPackage 130917 ]; 130918 "iotransaction" = callPackage 130919 license = lib.licenses.bsd3; ··· 132611 "iotransaction" = callPackage 132612 "iotransaction" = callPackage 132613 "iotransaction" = callPackage 132614 - revision = "1"; 132615 - "iotransaction" = callPackage 132616 isLibrary = true; 132617 isExecutable = true; 132618 enableSeparateDataOutput = true; ··· 132639 "iotransaction" = callPackage 132640 version = "3.3.4"; 132641 "iotransaction" = callPackage 132642 isLibrary = true; 132643 isExecutable = true; 132644 enableSeparateDataOutput = true; ··· 135130 pname = "hoogle"; 135131 version = "5.0.18.2"; 135132 sha256 = "1xacx2f33x1a4qlv25f8rlmb4wi0cjfzrj22nlnkrd0knghik3m7"; 135133 isLibrary = true; 135134 isExecutable = true; 135135 enableSeparateDataOutput = true; ··· 135951 pname = "hpack"; 135952 version = "0.34.4"; 135953 sha256 = "1xszy00al5zzga64gh7nvgqc93242f61kqy8lb09jkm98a8fs4bl"; 135954 isLibrary = true; 135955 isExecutable = true; 135956 libraryHaskellDepends = [ ··· 136565 pname = "hpqtypes-extras"; 136566 version = "1.12.0.0"; 136567 sha256 = "0pxidphf0qzfy5zv1q7qhp49bgglf3pqd6r91qq0iawnvgzcyi7z"; 136568 libraryHaskellDepends = [ 136569 base base16-bytestring bytestring containers cryptohash exceptions 136570 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 139768 pname = "hslogger"; 139769 version = "1.3.1.0"; 139770 sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; 139771 - revision = "3"; 139772 - editedCabalFile = "04mda3bwr2a00f5nbkqc84d46lmqfsk3gibzg3amdh74ngb451xq"; 139773 libraryHaskellDepends = [ 139774 base bytestring containers deepseq network network-bsd old-locale 139775 time unix ··· 143551 license = lib.licenses.publicDomain; 143552 }) {}; 143553 143554 "http-listen" = callPackage 143555 ({ mkDerivation, base, bytestring, exceptions, HTTP, network 143556 , transformers ··· 150484 150485 "inline-asm" = callPackage 150486 ({ mkDerivation, base, bytestring, containers, either, ghc-prim 150487 - , hspec, hspec-core, megaparsec, mtl, parser-combinators 150488 , QuickCheck, template-haskell, uniplate 150489 }: 150490 mkDerivation { 150491 pname = "inline-asm"; 150492 - version = "0.4.0.2"; 150493 - sha256 = "01npi02i8wf9b0pa18cgl78ma6r9xqz0i7dc3khkj1725w5wkhvp"; 150494 isLibrary = true; 150495 isExecutable = true; 150496 libraryHaskellDepends = [ 150497 base bytestring containers either ghc-prim megaparsec mtl 150498 - parser-combinators template-haskell uniplate 150499 - ]; 150500 - executableHaskellDepends = [ 150501 - base bytestring containers either ghc-prim megaparsec mtl 150502 - parser-combinators template-haskell uniplate 150503 ]; 150504 testHaskellDepends = [ 150505 base bytestring containers either ghc-prim hspec hspec-core 150506 - megaparsec mtl parser-combinators QuickCheck template-haskell 150507 - uniplate 150508 ]; 150509 description = "Inline some Assembly in ur Haskell!"; 150510 license = lib.licenses.bsd3; ··· 150695 pname = "insert-ordered-containers"; 150696 version = "0.2.5"; 150697 sha256 = "0bb3ggzic8z5zmvmzp1fsnb572c2v383740b0ddf1fwihpn52c1y"; 150698 - revision = "1"; 150699 - editedCabalFile = "12x4xi525ikbqvxh2kmnxsl7cqmbz2l8vqc5ym4lap0p21niiazr"; 150700 libraryHaskellDepends = [ 150701 aeson base base-compat deepseq hashable indexed-traversable lens 150702 optics-core optics-extra semigroupoids semigroups text transformers ··· 151644 }: 151645 mkDerivation { 151646 pname = "interval-algebra"; 151647 - version = "1.0.1"; 151648 - sha256 = "1pw4z3h1ihb82105v1i3809icp024a6cmlic2zfgdhdqf8wvfzv4"; 151649 libraryHaskellDepends = [ 151650 base containers foldl QuickCheck safe time witherable 151651 ]; ··· 151950 license = lib.licenses.bsd3; 151951 }) {}; 151952 151953 "invertible-hlist" = callPackage 151954 ({ mkDerivation, base, HList, invertible }: 151955 mkDerivation { ··· 152456 , doctest, envy, flow, Glob, http-media, lens, lens-aeson 152457 , monad-logger, network-ip, QuickCheck, regex-compat, rio, servant 152458 , servant-client, servant-multipart, servant-multipart-api 152459 - , servant-multipart-client, servant-server, swagger2, text, vector 152460 - , yaml 152461 }: 152462 mkDerivation { 152463 pname = "ipfs"; 152464 - version = "1.3.2"; 152465 - sha256 = "11gy8szp41l1y6mnvj6knb5lhlax859gri9j31w5lzhidj0045df"; 152466 libraryHaskellDepends = [ 152467 aeson base bytestring envy flow Glob http-media lens monad-logger 152468 network-ip regex-compat rio servant servant-client 152469 servant-multipart servant-multipart-api servant-multipart-client 152470 - servant-server swagger2 text vector 152471 ]; 152472 testHaskellDepends = [ 152473 aeson base bytestring directory directory-tree doctest envy flow 152474 Glob http-media lens lens-aeson monad-logger network-ip QuickCheck 152475 regex-compat rio servant servant-client servant-multipart 152476 - servant-multipart-api servant-multipart-client servant-server 152477 - swagger2 text vector yaml 152478 ]; 152479 description = "Access IPFS locally and remotely"; 152480 license = lib.licenses.asl20; ··· 156475 license = lib.licenses.mit; 156476 }) {}; 156477 156478 "jsonnet" = callPackage 156479 ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring 156480 , containers, data-fix, deriving-compat, directory, exceptions ··· 157390 }: 157391 mkDerivation { 157392 pname = "kansas-comet"; 157393 - version = "0.4"; 157394 - sha256 = "1q9rffh6589a5am8mvfzxzwws34vg08rdjxggfabhmg9y9jla6hz"; 157395 - revision = "22"; 157396 - editedCabalFile = "0ii81jv62cbrvj8dpj86m2rs75jjjwnp9kka63y8bvdbacchycvj"; 157397 enableSeparateDataOutput = true; 157398 libraryHaskellDepends = [ 157399 aeson base containers data-default-class scotty stm text time ··· 164071 license = lib.licenses.mit; 164072 }) {}; 164073 164074 "lens-core" = callPackage 164075 ({ mkDerivation, base }: 164076 mkDerivation { ··· 169621 }: 169622 mkDerivation { 169623 pname = "log-base"; 169624 - version = "0.10.0.1"; 169625 - sha256 = "0h4b7hjxcc75swj43wx0axcp5znsndkrnhn9c8fm7f7a2gmvb8l1"; 169626 libraryHaskellDepends = [ 169627 aeson aeson-pretty base bytestring deepseq exceptions mmorph 169628 monad-control mtl semigroups stm text time transformers-base ··· 169696 }: 169697 mkDerivation { 169698 pname = "log-elasticsearch"; 169699 - version = "0.12.1.0"; 169700 - sha256 = "07z0p5jcd5gjhk4dyf9ny74l68ja58ffa80mbfsyaz66ff6k4y6s"; 169701 libraryHaskellDepends = [ 169702 aeson aeson-pretty base base64-bytestring bytestring deepseq 169703 http-client http-client-tls http-types log-base network-uri ··· 169717 }: 169718 mkDerivation { 169719 pname = "log-postgres"; 169720 - version = "0.8.0.1"; 169721 - sha256 = "0bc63v9w023xw1fq0pkfnk4ac336hgliayy21ny0zaz9xf39a24l"; 169722 libraryHaskellDepends = [ 169723 aeson aeson-pretty base base64-bytestring bytestring deepseq 169724 hpqtypes http-client lifted-base log-base mtl semigroups split text ··· 174318 license = lib.licenses.bsd3; 174319 }) {}; 174320 174321 - "massiv_1_0_0_0" = callPackage 174322 ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 174323 - , mersenne-random-pure64, mwc-random, primitive, QuickCheck, random 174324 - , scheduler, splitmix, template-haskell, unliftio-core, vector 174325 }: 174326 mkDerivation { 174327 pname = "massiv"; 174328 - version = "1.0.0.0"; 174329 - sha256 = "0cb9riab486gz9xxx44sx5pagfjc8kv8936avywxpwpn3dhbxg6a"; 174330 libraryHaskellDepends = [ 174331 base bytestring deepseq exceptions primitive random scheduler 174332 unliftio-core vector 174333 ]; 174334 - testHaskellDepends = [ 174335 - base doctest mersenne-random-pure64 mwc-random QuickCheck random 174336 - splitmix template-haskell 174337 - ]; 174338 description = "Massiv (Массив) is an Array Library"; 174339 license = lib.licenses.bsd3; 174340 hydraPlatforms = lib.platforms.none; ··· 174412 broken = true; 174413 }) {}; 174414 174415 - "massiv-persist_1_0_0_0" = callPackage 174416 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 174417 , hspec-discover, massiv, massiv-test, persist, primitive 174418 , QuickCheck 174419 }: 174420 mkDerivation { 174421 pname = "massiv-persist"; 174422 - version = "1.0.0.0"; 174423 - sha256 = "0kgw4ac6ywgx44mqyfyhhxpaxzyph9pgz27nvr625j4hg84mx552"; 174424 libraryHaskellDepends = [ 174425 base bytestring deepseq massiv persist primitive 174426 ]; ··· 174475 broken = true; 174476 }) {}; 174477 174478 - "massiv-serialise_1_0_0_0" = callPackage 174479 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 174480 , massiv, massiv-test, QuickCheck, serialise, vector 174481 }: 174482 mkDerivation { 174483 pname = "massiv-serialise"; 174484 - version = "1.0.0.0"; 174485 - sha256 = "18ahbfq54mggar7wknghdjybd4pbqjzgfaghv5lp5daccbxahgyd"; 174486 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 174487 testHaskellDepends = [ 174488 base doctest hspec massiv massiv-test QuickCheck serialise ··· 177843 license = lib.licenses.bsd3; 177844 }) {}; 177845 177846 "microtimer" = callPackage 177847 ({ mkDerivation, base, time }: 177848 mkDerivation { ··· 182533 pname = "months"; 182534 version = "0.2"; 182535 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 182536 - revision = "2"; 182537 - editedCabalFile = "1fvpzhfjpf2j01p2rwds6m82d2q0j77ak5v467nxsc8f161rfz21"; 182538 libraryHaskellDepends = [ 182539 aeson attoparsec base base-compat deepseq hashable intervals 182540 QuickCheck text time-compat ··· 185849 pname = "mustache"; 185850 version = "2.3.1"; 185851 sha256 = "0j5kzlirirnj2lscxgc6r9j0if8s3pvxswjblma6yxpw6qyzk2xc"; 185852 isLibrary = true; 185853 isExecutable = true; 185854 libraryHaskellDepends = [ ··· 188346 license = lib.licenses.bsd3; 188347 }) {inherit (pkgs) libsodium;}; 188348 188349 "netcore" = callPackage 188350 ({ mkDerivation, ansi-wl-pprint, base, bimap, binary, binary-strict 188351 , bytestring, containers, fgl, HList, hslogger, HUnit, mtl ··· 192044 platforms = [ 192045 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 192046 ]; 192047 }) {}; 192048 192049 "notmuch" = callPackage ··· 192793 pname = "numeric-kinds"; 192794 version = "0.1.0.0"; 192795 sha256 = "0rdx39wa7kklx9a7i5rdwf541fxpz9v3n32rvy2fa6i7n4hr64s4"; 192796 libraryHaskellDepends = [ base ]; 192797 - description = "Type-level numeric types, classes, and instances"; 192798 license = lib.licenses.asl20; 192799 }) {}; 192800 ··· 192817 pname = "numeric-logarithms"; 192818 version = "0.1.0.0"; 192819 sha256 = "1izd7gc9xdrs7a1wbzmhhkv8s9rw2mcq77agvr351dc5jyzdnwiy"; 192820 - revision = "1"; 192821 - editedCabalFile = "0a37gmm0xgjzh05i7ix3nkgr5d2qa824nsh2wg78ikyksfq46vfv"; 192822 libraryHaskellDepends = [ base integer-gmp ]; 192823 testHaskellDepends = [ 192824 base integer-gmp QuickCheck test-framework 192825 test-framework-quickcheck2 192826 ]; 192827 - description = "Efficient rounded log2 algorithms on integral and rational types"; 192828 license = lib.licenses.asl20; 192829 }) {}; 192830 ··· 194916 license = lib.licenses.bsd3; 194917 }) {}; 194918 194919 "open-adt" = callPackage 194920 ({ mkDerivation, base, constraints, recursion-schemes, row-types 194921 , template-haskell ··· 196242 pname = "operational"; 196243 version = "0.2.4.0"; 196244 sha256 = "1hwmwbsxzwv68b39rv4gn3da6irv8zm89gqrkc3rdsgwi5ziyn3i"; 196245 isLibrary = true; 196246 isExecutable = true; 196247 libraryHaskellDepends = [ base mtl ]; ··· 196816 maintainers = with lib.maintainers; [ Gabriel439 ]; 196817 }) {}; 196818 196819 "optparse-helper" = callPackage 196820 ({ mkDerivation, base, optparse-applicative }: 196821 mkDerivation { ··· 197498 }: 197499 mkDerivation { 197500 pname = "os-release"; 197501 - version = "1.0.2"; 197502 - sha256 = "0wjf1z76pqfv091b88zc3w0hmqv8i2i6qsx21cfcgaym4r3zqpjf"; 197503 libraryHaskellDepends = [ 197504 aeson base megaparsec safe-exceptions text unordered-containers 197505 ]; ··· 203578 pname = "persistent"; 203579 version = "2.13.1.2"; 203580 sha256 = "09si4h64i9drqr80a2sxpxhmsinacqx9bvsc3jah5zlm915q092y"; 203581 libraryHaskellDepends = [ 203582 aeson attoparsec base base64-bytestring blaze-html bytestring 203583 conduit containers fast-logger http-api-data lift-type monad-logger ··· 205202 }: 205203 mkDerivation { 205204 pname = "phonetic-languages-simplified-examples-common"; 205205 - version = "0.1.4.0"; 205206 - sha256 = "1dsfnjjri15mhm31ny82j26djbsw6lgvvqpq9k7fzgj0inb5slns"; 205207 libraryHaskellDepends = [ 205208 base heaps mmsyn2-array phonetic-languages-constraints-array 205209 phonetic-languages-ukrainian-array ··· 205249 }: 205250 mkDerivation { 205251 pname = "phonetic-languages-simplified-generalized-examples-common"; 205252 - version = "0.2.1.0"; 205253 - sha256 = "1i05h0rd6svffwpwzsrryzf6yvjwxd0g3f4wasz8mkh1sdgj0r5g"; 205254 libraryHaskellDepends = [ 205255 base heaps phonetic-languages-phonetics-basics 205256 ]; ··· 209232 hydraPlatforms = lib.platforms.none; 209233 }) {}; 209234 209235 "polysemy-chronos" = callPackage 209236 ({ mkDerivation, aeson, base, chronos, containers, hedgehog 209237 , polysemy, polysemy-test, polysemy-time, relude, tasty ··· 210481 pname = "portray"; 210482 version = "0.2.0"; 210483 sha256 = "1kzzvwqphlg1dmd486ijkv6vsqmxnp8h05mwc8590yjxdln5vzdw"; 210484 libraryHaskellDepends = [ base containers text wrapped ]; 210485 testHaskellDepends = [ 210486 base containers HUnit test-framework test-framework-hunit text 210487 wrapped 210488 ]; 210489 - description = "A pseudo-Haskell syntax type and typeclass producing it"; 210490 license = lib.licenses.asl20; 210491 }) {}; 210492 ··· 210496 pname = "portray-diff"; 210497 version = "0.1.0.1"; 210498 sha256 = "1da884cj865q6g1bd1fhcazyl1nzxb0pk2nvhcpp4iqkjvhyd8hw"; 210499 libraryHaskellDepends = [ 210500 base containers dlist portray text wrapped 210501 ]; 210502 - description = "Visualize the structural differences between two values"; 210503 license = lib.licenses.asl20; 210504 }) {}; 210505 ··· 210510 pname = "portray-diff-hunit"; 210511 version = "0.1.0.0"; 210512 sha256 = "0gig1gvw0s7cl4jbffqh53r7lfs08clkcjpdypjjbpk0815pk34h"; 210513 libraryHaskellDepends = [ 210514 base HUnit portray-diff portray-pretty pretty 210515 ]; 210516 - description = "Equality assertion functions for HUnit based on portray-diff"; 210517 license = lib.licenses.asl20; 210518 }) {}; 210519 ··· 210523 pname = "portray-diff-quickcheck"; 210524 version = "0.1.0.0"; 210525 sha256 = "1kif82y8bapf5d3awkfv7wp3ih89q3p14djanyz6jfapryhccm12"; 210526 libraryHaskellDepends = [ 210527 base portray-diff portray-pretty QuickCheck 210528 ]; 210529 - description = "Equality assertion functions for QuickCheck based on portray-diff"; 210530 license = lib.licenses.asl20; 210531 }) {}; 210532 ··· 210538 pname = "portray-pretty"; 210539 version = "0.1.0.2"; 210540 sha256 = "1gh50r77yz1l8qkhdz96bds2l0d5zi75fkir27x3si406h7sdic9"; 210541 libraryHaskellDepends = [ base portray portray-diff pretty text ]; 210542 testHaskellDepends = [ 210543 base HUnit portray portray-diff pretty test-framework 210544 test-framework-hunit text 210545 ]; 210546 - description = "A portray backend using the pretty package"; 210547 license = lib.licenses.asl20; 210548 }) {}; 210549 ··· 210556 pname = "portray-prettyprinter"; 210557 version = "0.2.0"; 210558 sha256 = "16g55vjcfawx1jxmgy3zgl6bqv67h831z00912fbfh878s1s24ic"; 210559 libraryHaskellDepends = [ 210560 base portray portray-diff prettyprinter prettyprinter-ansi-terminal 210561 text ··· 210565 prettyprinter-ansi-terminal QuickCheck test-framework 210566 test-framework-hunit test-framework-quickcheck2 text 210567 ]; 210568 - description = "A portray backend using the prettyprinter package"; 210569 license = lib.licenses.asl20; 210570 }) {}; 210571 ··· 211006 license = lib.licenses.mit; 211007 }) {}; 211008 211009 "postgresql-common" = callPackage 211010 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 211011 mkDerivation { ··· 211364 pname = "postgresql-simple"; 211365 version = "0.6.4"; 211366 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 211367 - revision = "2"; 211368 - editedCabalFile = "1kwjlj0bsc1yd4dgfc0ydawq9acfjlf0bymwc830dryp16wpj9zv"; 211369 libraryHaskellDepends = [ 211370 aeson attoparsec base bytestring bytestring-builder 211371 case-insensitive containers hashable Only postgresql-libpq ··· 214504 testHaskellDepends = [ async base bytestring hspec unix ]; 214505 description = "Ergonomic process launching with extreme flexibility and speed"; 214506 license = lib.licenses.mit; 214507 - hydraPlatforms = lib.platforms.none; 214508 - broken = true; 214509 }) {}; 214510 214511 "procrastinating-structure" = callPackage ··· 215672 }: 215673 mkDerivation { 215674 pname = "proto-lens"; 215675 - version = "0.7.0.0"; 215676 - sha256 = "1dg73jwc9mis7igxdj3chkb8fz9a25wxw3d6nz11r98z3ambd8rs"; 215677 enableSeparateDataOutput = true; 215678 libraryHaskellDepends = [ 215679 base bytestring containers deepseq ghc-prim lens-family parsec ··· 215692 }: 215693 mkDerivation { 215694 pname = "proto-lens-arbitrary"; 215695 - version = "0.1.2.9"; 215696 - sha256 = "0ndh8jr9aybjpf1p6a6zs2qjci0z7h3c3v3i5hf28ls8w2g8zr4x"; 215697 libraryHaskellDepends = [ 215698 base bytestring containers lens-family proto-lens QuickCheck text 215699 ]; ··· 215763 ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 215764 mkDerivation { 215765 pname = "proto-lens-optparse"; 215766 - version = "0.1.1.7"; 215767 - sha256 = "0fskg0y66qp81z2x2r6jyvrisn7asmbynnq1zq2j97dn7003nqpa"; 215768 libraryHaskellDepends = [ 215769 base optparse-applicative proto-lens text 215770 ]; ··· 215781 }: 215782 mkDerivation { 215783 pname = "proto-lens-protobuf-types"; 215784 - version = "0.7.0.0"; 215785 - sha256 = "1db0z3394g1fzw80ilxldbvy7m3a4piks0fk2wmlaw5k6bza82c7"; 215786 setupHaskellDepends = [ base Cabal proto-lens-setup ]; 215787 libraryHaskellDepends = [ 215788 base lens-family proto-lens proto-lens-runtime text ··· 215799 }: 215800 mkDerivation { 215801 pname = "proto-lens-protoc"; 215802 - version = "0.7.0.0"; 215803 - sha256 = "1k060lr5d54mzj6c7d2k19vg2432mfnp66wr7gs1qcgpj19q9yvs"; 215804 isLibrary = true; 215805 isExecutable = true; 215806 libraryHaskellDepends = [ base filepath ]; ··· 215819 }: 215820 mkDerivation { 215821 pname = "proto-lens-runtime"; 215822 - version = "0.7.0.0"; 215823 - sha256 = "0qxangmbldzdvm9qdvhw1cnjakx0zrxrq0nbscqvih2m2yzaxhad"; 215824 libraryHaskellDepends = [ 215825 base bytestring containers deepseq filepath lens-family proto-lens 215826 text vector ··· 215835 }: 215836 mkDerivation { 215837 pname = "proto-lens-setup"; 215838 - version = "0.4.0.4"; 215839 - sha256 = "09ka0x4ril0lw3ppx2q26zw2r9g2cszsyqrbwy0amw78g1kxma8v"; 215840 libraryHaskellDepends = [ 215841 base bytestring Cabal containers deepseq directory filepath process 215842 proto-lens-protoc temporary text ··· 219877 }: 219878 mkDerivation { 219879 pname = "raaz"; 219880 - version = "0.3.4"; 219881 - sha256 = "1kqinh0vwbl5qh55ai41nmkbcfbhmjdwp5pp0xap03cd0nmn84xq"; 219882 isLibrary = true; 219883 isExecutable = true; 219884 enableSeparateDataOutput = true; ··· 220333 }: 220334 mkDerivation { 220335 pname = "ralist"; 220336 - version = "0.3.0.0"; 220337 - sha256 = "1qy6y7fcylbp6lym7y1k0bg28imhrfxrkvlfrm9mxg3lhvl71mrf"; 220338 libraryHaskellDepends = [ 220339 base deepseq indexed-traversable transformers 220340 ]; ··· 233640 license = lib.licenses.bsd3; 233641 }) {}; 233642 233643 - "scheduler_2_0_0" = callPackage 233644 - ({ mkDerivation, atomic-primops, base, deepseq, doctest, exceptions 233645 - , genvalidity-hspec, hspec, hspec-discover, mwc-random, primitive 233646 - , pvar, QuickCheck, template-haskell, unliftio, unliftio-core 233647 - , vector 233648 }: 233649 mkDerivation { 233650 pname = "scheduler"; 233651 - version = "2.0.0"; 233652 - sha256 = "1i0fz2gj2q12gfl1h8ar0ikkqksznr1rij7fsx1v0qi6qg9d7cc3"; 233653 libraryHaskellDepends = [ 233654 atomic-primops base deepseq exceptions primitive pvar unliftio-core 233655 ]; 233656 testHaskellDepends = [ 233657 - base deepseq doctest genvalidity-hspec hspec mwc-random QuickCheck 233658 - template-haskell unliftio vector 233659 ]; 233660 testToolDepends = [ hspec-discover ]; 233661 description = "Work stealing scheduler"; ··· 234148 pname = "scotty"; 234149 version = "0.12"; 234150 sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1"; 234151 - revision = "5"; 234152 - editedCabalFile = "0fvxkpggysz6wfpllqwzx5xywgb2fnfmknw9xhvmxgk765v60jrn"; 234153 libraryHaskellDepends = [ 234154 aeson base base-compat-batteries blaze-builder bytestring 234155 case-insensitive data-default-class exceptions fail http-types ··· 236187 pname = "semigroupoids"; 236188 version = "5.3.6"; 236189 sha256 = "0glhqc9x8i5z3bdg23xvl2lfns95msid3h3x0jksna7i6c8j869n"; 236190 libraryHaskellDepends = [ 236191 base base-orphans bifunctors comonad containers contravariant 236192 distributive hashable tagged template-haskell transformers ··· 237500 }: 237501 mkDerivation { 237502 pname = "servant-benchmark"; 237503 - version = "0.1.2.0"; 237504 - sha256 = "0lqqk410nx48g895pfxkbbk85b1ijs4bfl9zr2li2p7wwwc4gyi9"; 237505 - revision = "3"; 237506 - editedCabalFile = "17pj6n143lpk5nsr6j8j1a6fj45y1bv61jcm16m0fwsdmhv01866"; 237507 libraryHaskellDepends = [ 237508 aeson base base64-bytestring bytestring case-insensitive http-media 237509 http-types QuickCheck servant text yaml ··· 237621 ]; 237622 description = "Command line interface for Servant API clients"; 237623 license = lib.licenses.bsd3; 237624 - hydraPlatforms = lib.platforms.none; 237625 }) {}; 237626 237627 "servant-client" = callPackage ··· 238175 ]; 238176 description = "Servant combinators to facilitate writing GitHub webhooks"; 238177 license = lib.licenses.mit; 238178 }) {}; 238179 238180 "servant-haxl-client" = callPackage ··· 238693 }: 238694 mkDerivation { 238695 pname = "servant-pagination"; 238696 - version = "2.3.0"; 238697 - sha256 = "0kza7lr3akx3zviqbxlw74f1y66y8c6kys52n49brvrhqwnv4xwd"; 238698 isLibrary = true; 238699 isExecutable = true; 238700 libraryHaskellDepends = [ ··· 239565 }: 239566 mkDerivation { 239567 pname = "servant-to-elm"; 239568 - version = "0.4.2.0"; 239569 - sha256 = "1hbz6c9233wgpgmgnplg9qv5hrniynkn5n4zsmkyansw07gmaw05"; 239570 isLibrary = true; 239571 isExecutable = true; 239572 libraryHaskellDepends = [ ··· 240542 license = lib.licenses.bsd3; 240543 }) {}; 240544 240545 "sexp-show" = callPackage 240546 ({ mkDerivation, base, pretty-show }: 240547 mkDerivation { ··· 241364 pname = "shakespeare"; 241365 version = "2.0.25"; 241366 sha256 = "1fjv3yg425d87d3dih0l3ff95g5a5yp9w85m58sjara6xqivj9s4"; 241367 libraryHaskellDepends = [ 241368 aeson base blaze-html blaze-markup bytestring containers directory 241369 exceptions ghc-prim parsec process scientific template-haskell text ··· 242179 pname = "short-vec"; 242180 version = "0.1.0.0"; 242181 sha256 = "0w651jipwxh7k4ng5rvq507br4347hzy8x8c47c1g7haryj80gzq"; 242182 - revision = "2"; 242183 - editedCabalFile = "1w56zmw085509grvk5ddlrv12pqpzfpmdprjd44lv4sgzv09bzfk"; 242184 libraryHaskellDepends = [ 242185 adjunctions base data-default-class deepseq distributive fin-int 242186 indexed-traversable integer-gmp portray portray-diff QuickCheck ··· 242197 gauge indexed-traversable integer-gmp portray portray-diff 242198 QuickCheck semigroupoids sint 242199 ]; 242200 - description = "A length-indexed vector type build on 'SmallArray#'"; 242201 license = lib.licenses.asl20; 242202 }) {}; 242203 242204 "short-vec-lens" = callPackage ··· 242209 pname = "short-vec-lens"; 242210 version = "0.1.0.0"; 242211 sha256 = "1afz1izz19xrjy0cdhmpy7b667waa5v8jh1ps3jpjfpgbmysjz3g"; 242212 libraryHaskellDepends = [ 242213 base fin-int indexed-traversable lens short-vec sint 242214 ]; 242215 description = "Lenses and related functionality for the `short-vec` package"; 242216 license = lib.licenses.asl20; 242217 }) {}; 242218 242219 "shortbytestring" = callPackage ··· 248097 pname = "snumber"; 248098 version = "0.1.0.0"; 248099 sha256 = "0f340hzhhmiy342c5250m61f3gkcnfymjbd2a13alzdh7pmhb2mg"; 248100 libraryHaskellDepends = [ base numeric-kinds ]; 248101 - description = "Indexed numeric types linking type-level and value-level numbers"; 248102 license = lib.licenses.asl20; 248103 }) {}; 248104 ··· 252134 pname = "stackcollapse-ghc"; 252135 version = "0.0.1.4"; 252136 sha256 = "1scqjjp1cpz3zzvqa6wmfz11qrhsbqwgq7h8qjg0d8ri3r9z82lb"; 252137 isLibrary = false; 252138 isExecutable = true; 252139 executableHaskellDepends = [ ··· 255653 ({ mkDerivation, base }: 255654 mkDerivation { 255655 pname = "string-interpreter"; 255656 - version = "0.5.3.0"; 255657 - sha256 = "0ny0py7fhcbv1zkr96ngypb9mf241avds0i77lynnpig96j1ay14"; 255658 libraryHaskellDepends = [ base ]; 255659 description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; 255660 license = lib.licenses.mit; ··· 256311 license = lib.licenses.bsd3; 256312 }) {}; 256313 256314 "structured-cli" = callPackage 256315 ({ mkDerivation, base, data-default, exceptions, haskeline, mtl 256316 , split, transformers ··· 257715 libraryPkgconfigDepends = [ librsvg ]; 257716 description = "Binding to the libsvg-cairo library"; 257717 license = lib.licenses.bsd3; 257718 }) {inherit (pkgs) librsvg;}; 257719 257720 "svgone" = callPackage ··· 258226 license = "unknown"; 258227 }) {}; 258228 258229 - "sydtest_0_4_0_0" = callPackage 258230 ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 258231 , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 258232 , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle ··· 258235 }: 258236 mkDerivation { 258237 pname = "sydtest"; 258238 - version = "0.4.0.0"; 258239 - sha256 = "1r3isd8rjlzx7j1j5drgd1zjxdp8a1hvwsla513hpv32mkbqf0za"; 258240 libraryHaskellDepends = [ 258241 async base bytestring containers Diff dlist envparse filepath 258242 MonadRandom mtl optparse-applicative path path-io pretty-show ··· 261471 pname = "taskwarrior"; 261472 version = "0.3.0.0"; 261473 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 261474 - revision = "5"; 261475 - editedCabalFile = "1h7ybnxx5f0w1h13wzbx30ycf578dnv12wx4pqn3pfxqz1jz3gjg"; 261476 libraryHaskellDepends = [ 261477 aeson base bytestring containers process random text time 261478 unordered-containers uuid ··· 263549 pname = "ten"; 263550 version = "0.1.0.2"; 263551 sha256 = "0djvcb2l9dnnjbhivchi6yyaj5i96jmy7yhr9x3paiz1l54brrqx"; 263552 libraryHaskellDepends = [ 263553 adjunctions base data-default-class deepseq distributive hashable 263554 portray portray-diff some text transformers wrapped ··· 263558 HUnit portray portray-diff some test-framework test-framework-hunit 263559 text transformers wrapped 263560 ]; 263561 - description = "Typeclasses like Functor, etc. over arity-1 type constructors."; 263562 license = lib.licenses.asl20; 263563 }) {}; 263564 ··· 263583 pname = "ten-unordered-containers"; 263584 version = "0.1.0.2"; 263585 sha256 = "0y4aw77ix2ay43l8n17322hbmm1npcdr1bl7kdza377jd1ci20px"; 263586 libraryHaskellDepends = [ 263587 base hashable portray portray-diff some ten unordered-containers 263588 wrapped ··· 263592 portray-pretty some ten ten-lens test-framework 263593 test-framework-hunit text transformers unordered-containers wrapped 263594 ]; 263595 - description = "A package providing one unordered container"; 263596 license = lib.licenses.asl20; 263597 }) {}; 263598 ··· 265702 license = lib.licenses.bsd3; 265703 }) {}; 265704 265705 "text-show" = callPackage 265706 ({ mkDerivation, array, base, base-compat-batteries, base-orphans 265707 , bifunctors, bytestring, bytestring-builder, containers, criterion ··· 267329 pname = "threepenny-gui"; 267330 version = "0.9.1.0"; 267331 sha256 = "00sjkfa9qfnnwqfdw68yb8hq6nm1y5qv9896rzn5aachr7mlfpx2"; 267332 isLibrary = true; 267333 isExecutable = true; 267334 enableSeparateDataOutput = true; ··· 271979 license = lib.licenses.gpl2Plus; 271980 }) {}; 271981 271982 "tree-fun" = callPackage 271983 ({ mkDerivation, base, containers, mtl }: 271984 mkDerivation { ··· 283869 license = lib.licenses.bsd3; 283870 }) {}; 283871 283872 "wai-frontend-monadcgi" = callPackage 283873 ({ mkDerivation, base, bytestring, case-insensitive, cgi 283874 , containers, http-types, transformers, wai ··· 285684 ]; 285685 description = "Warp based on QUIC"; 285686 license = lib.licenses.bsd3; 285687 }) {}; 285688 285689 "warp-static" = callPackage ··· 287299 maintainers = with lib.maintainers; [ maralorn ]; 287300 }) {}; 287301 287302 "weekdaze" = callPackage 287303 ({ mkDerivation, array, base, bytestring, Cabal, containers 287304 , cryptohash, data-default, deepseq, directory, extra, factory ··· 288198 pname = "witherable"; 288199 version = "0.4.1"; 288200 sha256 = "1jj2dq0ddaa2v3hksnrv1z1ll19fa4npsqlp7fs4nn5g6833y58b"; 288201 libraryHaskellDepends = [ 288202 base base-orphans containers hashable indexed-traversable 288203 indexed-traversable-instances transformers unordered-containers ··· 289152 pname = "wrapped"; 289153 version = "0.1.0.1"; 289154 sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; 289155 libraryHaskellDepends = [ base ]; 289156 - description = "Provides a single standardized place to hang DerivingVia instances"; 289157 license = lib.licenses.asl20; 289158 }) {}; 289159 ··· 289163 pname = "wrapped-generic-default"; 289164 version = "0.1.0.1"; 289165 sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; 289166 libraryHaskellDepends = [ base data-default-class wrapped ]; 289167 - description = "Provides an orphan instance Default (Wrapped Generic a)"; 289168 license = lib.licenses.asl20; 289169 }) {}; 289170 ··· 291884 }) {}; 291885 291886 "xmonad-dbus" = callPackage 291887 - ({ mkDerivation, base, dbus, utf8-string }: 291888 mkDerivation { 291889 pname = "xmonad-dbus"; 291890 - version = "0.1.0.0"; 291891 - sha256 = "18phy3wxags8cmgs9bdkhwb4gy8fr72j25b18nk44q8956a3060p"; 291892 isLibrary = true; 291893 isExecutable = true; 291894 - libraryHaskellDepends = [ base dbus utf8-string ]; 291895 - executableHaskellDepends = [ base dbus utf8-string ]; 291896 - testHaskellDepends = [ base dbus utf8-string ]; 291897 license = lib.licenses.bsd3; 291898 hydraPlatforms = lib.platforms.none; 291899 broken = true; ··· 292955 pname = "yaml"; 292956 version = "0.11.6.0"; 292957 sha256 = "0hxg9mfi1dn9a7kp3imzfvnk7jj4sdjdxi6xyqz9ra7lqg14np3r"; 292958 configureFlags = [ "-fsystem-libyaml" ]; 292959 isLibrary = true; 292960 isExecutable = true; ··· 292971 ]; 292972 description = "Support for parsing and rendering YAML documents"; 292973 license = lib.licenses.bsd3; 292974 }) {}; 292975 292976 "yaml-combinators" = callPackage
··· 2745 hydraPlatforms = lib.platforms.none; 2746 }) {}; 2747 2748 + "Cabal_3_4_1_0" = callPackage 2749 ({ mkDerivation, array, async, base, base-compat, base-orphans 2750 , binary, bytestring, clock, containers, deepseq, Diff, directory 2751 , filepath, integer-logarithms, mtl, optparse-applicative, parsec ··· 2755 }: 2756 mkDerivation { 2757 pname = "Cabal"; 2758 + version = "3.4.1.0"; 2759 + sha256 = "1rqpq6l4b9990rmlgcyz44awps6r37ccyi6bgk7dhcsflad6prj4"; 2760 setupHaskellDepends = [ mtl parsec ]; 2761 libraryHaskellDepends = [ 2762 array base binary bytestring containers deepseq directory filepath ··· 2775 hydraPlatforms = lib.platforms.none; 2776 }) {}; 2777 2778 + "Cabal_3_6_2_0" = callPackage 2779 ({ mkDerivation, array, base, binary, bytestring, containers 2780 , deepseq, directory, filepath, mtl, parsec, pretty, process, text 2781 , time, transformers, unix 2782 }: 2783 mkDerivation { 2784 pname = "Cabal"; 2785 + version = "3.6.2.0"; 2786 + sha256 = "0hmw2wkypd42qyyfi6rhbsxmymbxg9rrw683yg39627vlw33v44y"; 2787 setupHaskellDepends = [ mtl parsec ]; 2788 libraryHaskellDepends = [ 2789 array base binary bytestring containers deepseq directory filepath ··· 3369 license = lib.licenses.bsd3; 3370 }) {}; 3371 3372 + "Color_0_3_3" = callPackage 3373 + ({ mkDerivation, base, colour, criterion, data-default-class 3374 + , deepseq, hspec, hspec-discover, HUnit, JuicyPixels, massiv 3375 + , massiv-test, QuickCheck, random, vector 3376 + }: 3377 + mkDerivation { 3378 + pname = "Color"; 3379 + version = "0.3.3"; 3380 + sha256 = "14sf71lhqc1w6s3p1k8a99xgzcwfnr3v5irvfkr09rvv7fd66nva"; 3381 + libraryHaskellDepends = [ base data-default-class deepseq vector ]; 3382 + testHaskellDepends = [ 3383 + base colour hspec HUnit JuicyPixels massiv massiv-test QuickCheck 3384 + random vector 3385 + ]; 3386 + testToolDepends = [ hspec-discover ]; 3387 + benchmarkHaskellDepends = [ base colour criterion deepseq random ]; 3388 + description = "Color spaces and conversions between them"; 3389 + license = lib.licenses.bsd3; 3390 + hydraPlatforms = lib.platforms.none; 3391 + }) {}; 3392 + 3393 "Combinatorrent" = callPackage 3394 ({ mkDerivation, array, attoparsec, base, bytestring, cereal 3395 , containers, deepseq, directory, filepath, hopenssl, hslogger ··· 9460 pname = "HTTP"; 9461 version = "4000.3.16"; 9462 sha256 = "0bgyj3ahqlyg0jw6qsm2sncp8mklc4h0dj91s043vb3ig01iq2fn"; 9463 + revision = "1"; 9464 + editedCabalFile = "0wagwgzfy2mqkha88fjl37ah0l7h4biz34v65993xd502ly68hk0"; 9465 libraryHaskellDepends = [ 9466 array base bytestring mtl network network-uri parsec time 9467 ]; ··· 18105 pname = "SecureHash-SHA3"; 18106 version = "0.1.1.0"; 18107 sha256 = "0dva3bzfzyzh8kxljyipd041a2w1zhxjvxmhnw2mlv2jcywnk2hz"; 18108 + revision = "3"; 18109 + editedCabalFile = "0jsx09bjk98nvfy0fvr5n2dyx8s22xnq66dvniyl572g5kfyknwm"; 18110 libraryHaskellDepends = [ base bytestring ]; 18111 description = "simple static linked SHA3 using private symbols and the ref impl"; 18112 license = lib.licenses.bsd2; ··· 24473 license = lib.licenses.bsd3; 24474 }) {}; 24475 24476 + "aeson_2_0_1_0" = callPackage 24477 + ({ mkDerivation, attoparsec, base, base-compat 24478 + , base-compat-batteries, base-orphans, base16-bytestring 24479 + , bytestring, containers, data-fix, deepseq, Diff, directory, dlist 24480 + , filepath, generic-deriving, ghc-prim, hashable 24481 + , indexed-traversable, integer-logarithms, primitive, QuickCheck 24482 + , quickcheck-instances, scientific, semialign, strict, tagged 24483 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck 24484 + , template-haskell, text, th-abstraction, these, time, time-compat 24485 + , unordered-containers, uuid-types, vector, witherable 24486 + }: 24487 + mkDerivation { 24488 + pname = "aeson"; 24489 + version = "2.0.1.0"; 24490 + sha256 = "0zlplkgsv1czp4rvi9k6pyyrfgd6vcdkj9vq84dr9zf7pzi8fl1s"; 24491 + libraryHaskellDepends = [ 24492 + attoparsec base base-compat-batteries bytestring containers 24493 + data-fix deepseq dlist ghc-prim hashable indexed-traversable 24494 + primitive scientific semialign strict tagged template-haskell text 24495 + th-abstraction these time time-compat unordered-containers 24496 + uuid-types vector witherable 24497 + ]; 24498 + testHaskellDepends = [ 24499 + attoparsec base base-compat base-orphans base16-bytestring 24500 + bytestring containers data-fix Diff directory dlist filepath 24501 + generic-deriving ghc-prim hashable integer-logarithms QuickCheck 24502 + quickcheck-instances scientific strict tagged tasty tasty-golden 24503 + tasty-hunit tasty-quickcheck template-haskell text these time 24504 + time-compat unordered-containers uuid-types vector 24505 + ]; 24506 + description = "Fast JSON parsing and encoding"; 24507 + license = lib.licenses.bsd3; 24508 + hydraPlatforms = lib.platforms.none; 24509 + }) {}; 24510 + 24511 "aeson-applicative" = callPackage 24512 ({ mkDerivation, aeson, base, text, unordered-containers }: 24513 mkDerivation { ··· 24662 license = lib.licenses.bsd3; 24663 }) {}; 24664 24665 + "aeson-compat_0_3_10" = callPackage 24666 + ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base 24667 + , base-compat, base-orphans, bytestring, containers, exceptions 24668 + , hashable, QuickCheck, quickcheck-instances, scientific, tagged 24669 + , tasty, tasty-hunit, tasty-quickcheck, text, time 24670 + , time-locale-compat, unordered-containers, vector 24671 + }: 24672 + mkDerivation { 24673 + pname = "aeson-compat"; 24674 + version = "0.3.10"; 24675 + sha256 = "0ia3qfdpbrzhwwg4ywpdwca0z1m85k081pcz6jh1sx8qjsvcr71w"; 24676 + libraryHaskellDepends = [ 24677 + aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24678 + containers exceptions hashable scientific tagged text time 24679 + time-locale-compat unordered-containers vector 24680 + ]; 24681 + testHaskellDepends = [ 24682 + aeson attoparsec base base-compat base-orphans bytestring 24683 + containers exceptions hashable QuickCheck quickcheck-instances 24684 + scientific tagged tasty tasty-hunit tasty-quickcheck text time 24685 + time-locale-compat unordered-containers vector 24686 + ]; 24687 + description = "Compatibility layer for aeson"; 24688 + license = lib.licenses.bsd3; 24689 + hydraPlatforms = lib.platforms.none; 24690 + }) {}; 24691 + 24692 "aeson-decode" = callPackage 24693 ({ mkDerivation, aeson, aeson-qq, base, containers, data-default 24694 , hedgehog, text, time, unordered-containers, vector ··· 24797 }: 24798 mkDerivation { 24799 pname = "aeson-extra"; 24800 + version = "0.5.1"; 24801 + sha256 = "13d01hppx71cm7f901n1bd0hxj69ikbp57i6ckfygc6da0mg49jc"; 24802 libraryHaskellDepends = [ 24803 aeson attoparsec attoparsec-iso8601 base base-compat-batteries 24804 bytestring containers deepseq exceptions hashable parsec ··· 25077 license = lib.licenses.mit; 25078 }) {}; 25079 25080 + "aeson-optics_1_1_1" = callPackage 25081 + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 25082 + , optics-core, optics-extra, scientific, text, unordered-containers 25083 + , vector 25084 + }: 25085 + mkDerivation { 25086 + pname = "aeson-optics"; 25087 + version = "1.1.1"; 25088 + sha256 = "1na5nsbp4sds8q289knzj4rgiwabbinxm0ihh66jfz0sjiia4wp7"; 25089 + libraryHaskellDepends = [ 25090 + aeson attoparsec base base-compat bytestring optics-core 25091 + optics-extra scientific text unordered-containers vector 25092 + ]; 25093 + description = "Law-abiding optics for aeson"; 25094 + license = lib.licenses.mit; 25095 + hydraPlatforms = lib.platforms.none; 25096 + }) {}; 25097 + 25098 "aeson-options" = callPackage 25099 ({ mkDerivation, aeson, base }: 25100 mkDerivation { ··· 25163 pname = "aeson-pretty"; 25164 version = "0.8.8"; 25165 sha256 = "09n7gs91y1fbw6gjszrd2na3isnvk3y5rsi90lzjrwywnqfadkl1"; 25166 + revision = "1"; 25167 + editedCabalFile = "0xr8f76vmcdvlg8wvw0jdrzpzqy73d4rvf633wfwhmslfr7f5jvg"; 25168 isLibrary = true; 25169 isExecutable = true; 25170 libraryHaskellDepends = [ ··· 25199 license = lib.licenses.mit; 25200 }) {}; 25201 25202 + "aeson-qq_0_8_4" = callPackage 25203 + ({ mkDerivation, aeson, attoparsec, base, base-compat, ghc-prim 25204 + , haskell-src-meta, hspec, hspec-discover, parsec, scientific 25205 + , template-haskell, text, vector 25206 + }: 25207 + mkDerivation { 25208 + pname = "aeson-qq"; 25209 + version = "0.8.4"; 25210 + sha256 = "0dpklq2xdhrkg1rdc7zfdjnzm6c3qxx2i1xskrqdxpqi84ffnlyh"; 25211 + libraryHaskellDepends = [ 25212 + aeson attoparsec base base-compat haskell-src-meta parsec 25213 + scientific template-haskell text vector 25214 + ]; 25215 + testHaskellDepends = [ 25216 + aeson attoparsec base base-compat ghc-prim haskell-src-meta hspec 25217 + parsec scientific template-haskell text vector 25218 + ]; 25219 + testToolDepends = [ hspec-discover ]; 25220 + description = "JSON quasiquoter for Haskell"; 25221 + license = lib.licenses.mit; 25222 + hydraPlatforms = lib.platforms.none; 25223 + }) {}; 25224 + 25225 "aeson-quick" = callPackage 25226 ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion 25227 , deepseq, microlens, tasty, tasty-hunit, text ··· 25315 broken = true; 25316 }) {}; 25317 25318 + "aeson-schemas_1_3_5" = callPackage 25319 + ({ mkDerivation, aeson, aeson-qq, base, criterion, deepseq 25320 + , first-class-families, hashable, hint, interpolate, megaparsec 25321 + , QuickCheck, raw-strings-qq, tasty, tasty-golden, tasty-hunit 25322 + , tasty-quickcheck, template-haskell, text, th-orphans 25323 + , th-test-utils, unordered-containers 25324 + }: 25325 + mkDerivation { 25326 + pname = "aeson-schemas"; 25327 + version = "1.3.5"; 25328 + sha256 = "1fdq109yjmvixri7hamj8z0iryxxdja8kkm6pk54mi0az0vx9743"; 25329 + libraryHaskellDepends = [ 25330 + aeson base first-class-families hashable megaparsec 25331 + template-haskell text unordered-containers 25332 + ]; 25333 + testHaskellDepends = [ 25334 + aeson aeson-qq base deepseq first-class-families hashable hint 25335 + interpolate megaparsec QuickCheck raw-strings-qq tasty tasty-golden 25336 + tasty-hunit tasty-quickcheck template-haskell text th-orphans 25337 + th-test-utils unordered-containers 25338 + ]; 25339 + benchmarkHaskellDepends = [ 25340 + aeson base criterion deepseq first-class-families hashable 25341 + megaparsec template-haskell text th-test-utils unordered-containers 25342 + ]; 25343 + description = "Easily consume JSON data on-demand with type-safety"; 25344 + license = lib.licenses.bsd3; 25345 + hydraPlatforms = lib.platforms.none; 25346 + broken = true; 25347 + }) {}; 25348 + 25349 "aeson-serialize" = callPackage 25350 ({ mkDerivation, aeson, base, cereal, hspec, HUnit }: 25351 mkDerivation { ··· 28081 pname = "amazonka-core"; 28082 version = "1.6.1"; 28083 sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621"; 28084 + revision = "2"; 28085 + editedCabalFile = "15mwn2cv4f99rb53wzk7hplb6ncpcl7crsvj8dx71ymm60cf2kxr"; 28086 libraryHaskellDepends = [ 28087 aeson attoparsec base bifunctors bytestring case-insensitive 28088 conduit conduit-extra cryptonite deepseq exceptions hashable ··· 30610 }: 30611 mkDerivation { 30612 pname = "ansi-terminal-game"; 30613 + version = "1.2.0.0"; 30614 + sha256 = "167zld2dwb1l81w1n8iiqdgxx8805sirr9lsacn1ni8cfzzl2gf6"; 30615 isLibrary = true; 30616 isExecutable = true; 30617 libraryHaskellDepends = [ ··· 35277 }) {}; 35278 35279 "attenuation" = callPackage 35280 + ({ mkDerivation, base, constraints }: 35281 mkDerivation { 35282 pname = "attenuation"; 35283 + version = "0.2.0"; 35284 + sha256 = "0qp203qchmllxsrcfz04lxnssrij203i5q8byy159vc8cspd03nq"; 35285 revision = "1"; 35286 + editedCabalFile = "11h8m92hb0spgzvbijkgfbhbhrnf76a8w2z6yw8zahk0bgdqxrzi"; 35287 + libraryHaskellDepends = [ base constraints ]; 35288 + description = "Subtyping relations and variance roles"; 35289 + license = lib.licenses.asl20; 35290 + }) {}; 35291 + 35292 + "attenuation-profunctors" = callPackage 35293 + ({ mkDerivation, attenuation, base, constraints, profunctors }: 35294 + mkDerivation { 35295 + pname = "attenuation-profunctors"; 35296 + version = "0.1.0"; 35297 + sha256 = "11zhh9iwb7r2jfp9bn8bqx1wzl4mln9v80gb2jijp0rryag25ili"; 35298 + libraryHaskellDepends = [ 35299 + attenuation base constraints profunctors 35300 + ]; 35301 + description = "Attenuation support for Profunctors"; 35302 license = lib.licenses.asl20; 35303 }) {}; 35304 ··· 35899 pname = "authenticate"; 35900 version = "1.3.5"; 35901 sha256 = "10df40ycd4r45p58xzdh0vcsa401909fa99nkgd18fx5alqh84sz"; 35902 + revision = "1"; 35903 + editedCabalFile = "0lmb1m5d1l2scnm2fqxfk348m8xqbc7f7kvk7zvpsvcdcpxinafz"; 35904 libraryHaskellDepends = [ 35905 aeson attoparsec base blaze-builder bytestring case-insensitive 35906 conduit containers html-conduit http-conduit http-types network-uri ··· 36669 pname = "aws"; 36670 version = "0.22"; 36671 sha256 = "1l3f94mpih7slz37ikyjkyrwvlf110w87997d8sbnbd8glwlcb8r"; 36672 + revision = "1"; 36673 + editedCabalFile = "1xj2chcn73v45wxb3lr0b3px6p3gbbzvwgx1mqrds4lp2yy7a1cr"; 36674 isLibrary = true; 36675 isExecutable = true; 36676 libraryHaskellDepends = [ ··· 38964 pname = "base64-bytestring-type"; 38965 version = "1.0.1"; 38966 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 38967 + revision = "10"; 38968 + editedCabalFile = "0d9nd34ga5xhgkvbysqzyn03w3zi42hgfjk6cza2ymiqxrl2yk9m"; 38969 libraryHaskellDepends = [ 38970 aeson base base-compat base64-bytestring binary bytestring cereal 38971 deepseq hashable http-api-data QuickCheck serialise text ··· 39310 ]; 39311 description = "An Applicative Functor deferring actions to run in a batch later"; 39312 license = lib.licenses.asl20; 39313 + hydraPlatforms = lib.platforms.none; 39314 }) {}; 39315 39316 "battlenet" = callPackage ··· 41157 license = lib.licenses.bsd3; 41158 }) {}; 41159 41160 + "binary-instances_1_0_2" = callPackage 41161 + ({ mkDerivation, aeson, base, binary, binary-orphans, bytestring 41162 + , case-insensitive, hashable, QuickCheck, quickcheck-instances 41163 + , scientific, tagged, tasty, tasty-quickcheck, text, text-binary 41164 + , time-compat, unordered-containers, vector 41165 + , vector-binary-instances 41166 + }: 41167 + mkDerivation { 41168 + pname = "binary-instances"; 41169 + version = "1.0.2"; 41170 + sha256 = "10z29k35clq74ma2f0yrkbyf14wdax1zzgb6mn26ja4vp9f5wc14"; 41171 + libraryHaskellDepends = [ 41172 + aeson base binary binary-orphans case-insensitive hashable 41173 + scientific tagged text text-binary time-compat unordered-containers 41174 + vector vector-binary-instances 41175 + ]; 41176 + testHaskellDepends = [ 41177 + aeson base binary bytestring case-insensitive hashable QuickCheck 41178 + quickcheck-instances scientific tagged tasty tasty-quickcheck text 41179 + time-compat unordered-containers vector 41180 + ]; 41181 + description = "Orphan instances for binary"; 41182 + license = lib.licenses.bsd3; 41183 + hydraPlatforms = lib.platforms.none; 41184 + }) {}; 41185 + 41186 "binary-io" = callPackage 41187 ({ mkDerivation, async, base, binary, bytestring, concurrency 41188 , deque, exceptions, hspec, process, stm, transformers ··· 41457 license = lib.licenses.bsd3; 41458 }) {}; 41459 41460 + "binary-tagged_0_3_1" = callPackage 41461 + ({ mkDerivation, array, base, base16-bytestring, binary 41462 + , binary-instances, bytestring, containers, criterion, deepseq 41463 + , QuickCheck, quickcheck-instances, singleton-bool, structured 41464 + , tagged, tasty, tasty-hunit, tasty-quickcheck, text, transformers 41465 + , unordered-containers 41466 + }: 41467 + mkDerivation { 41468 + pname = "binary-tagged"; 41469 + version = "0.3.1"; 41470 + sha256 = "01d1wb8h5mz76l09r2azphvhm1y3nar8pqrh2waxn797bd2dh6fp"; 41471 + libraryHaskellDepends = [ 41472 + array base base16-bytestring binary bytestring containers 41473 + structured tagged 41474 + ]; 41475 + testHaskellDepends = [ 41476 + base binary binary-instances bytestring QuickCheck 41477 + quickcheck-instances singleton-bool tagged tasty tasty-hunit 41478 + tasty-quickcheck transformers 41479 + ]; 41480 + benchmarkHaskellDepends = [ 41481 + base binary binary-instances bytestring criterion deepseq text 41482 + unordered-containers 41483 + ]; 41484 + description = "Tagged binary serialisation"; 41485 + license = lib.licenses.bsd3; 41486 + hydraPlatforms = lib.platforms.none; 41487 + }) {}; 41488 + 41489 "binary-tree" = callPackage 41490 ({ mkDerivation, base, ChasingBottoms, checkers, criterion, deepseq 41491 , doctest, ghc-prim, HUnit, QuickCheck, random, test-framework ··· 44045 pname = "blank-canvas"; 44046 version = "0.7.3"; 44047 sha256 = "1g10959ly5nv2xfhax4pamzxnxkqbniahplc5za8k5r4nq1vjrm2"; 44048 + revision = "4"; 44049 + editedCabalFile = "0lxslpm4s98ddh12py9810k2q872vizphfrszp8gxkkvfzflbb5b"; 44050 enableSeparateDataOutput = true; 44051 libraryHaskellDepends = [ 44052 aeson base base-compat-batteries base64-bytestring bytestring ··· 47357 license = lib.licenses.bsd3; 47358 }) {}; 47359 47360 + "bugsnag-hs_0_2_0_5" = callPackage 47361 + ({ mkDerivation, aeson, base, bytestring, hedgehog, http-client 47362 + , text, time, unordered-containers 47363 + }: 47364 + mkDerivation { 47365 + pname = "bugsnag-hs"; 47366 + version = "0.2.0.5"; 47367 + sha256 = "1gm38w8vjgxmn2a9a7xr364pcv7vsvd3brf90hwbwh7y88q6jdn2"; 47368 + enableSeparateDataOutput = true; 47369 + libraryHaskellDepends = [ 47370 + aeson base bytestring http-client text time unordered-containers 47371 + ]; 47372 + testHaskellDepends = [ aeson base bytestring hedgehog ]; 47373 + description = "A Bugsnag client for Haskell"; 47374 + license = lib.licenses.bsd3; 47375 + hydraPlatforms = lib.platforms.none; 47376 + }) {}; 47377 + 47378 "bugzilla" = callPackage 47379 ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection 47380 , containers, data-default, http-conduit, http-types, iso8601-time ··· 48239 }: 48240 mkDerivation { 48241 pname = "bytesmith"; 48242 + version = "0.3.8.0"; 48243 + sha256 = "0rfqpnc1awnpn50yfjxgwb65byhdcg5rivg3mbsd5clmq337cz12"; 48244 libraryHaskellDepends = [ 48245 base byteslice bytestring contiguous primitive run-st text-short 48246 wide-word ··· 49674 }: 49675 mkDerivation { 49676 pname = "cabal-install"; 49677 + version = "3.6.2.0"; 49678 + sha256 = "0dihpm4h3xh13vnpvwflnb7v614qdvljycc6ffg5cvhwbwfrxyfw"; 49679 isLibrary = false; 49680 isExecutable = true; 49681 executableHaskellDepends = [ ··· 49798 pname = "cabal-install-parsers"; 49799 version = "0.4.3"; 49800 sha256 = "0gpnfv80rhrws12b1klyi5fkqvn8pgnl2hxh5fbnfp8fbrwklfjq"; 49801 + revision = "1"; 49802 + editedCabalFile = "18ngagasjind29r0840rnsjzzki92q01yi1p0fw4i5p129mczc8n"; 49803 libraryHaskellDepends = [ 49804 aeson base base16-bytestring binary binary-instances bytestring 49805 Cabal containers cryptohash-sha256 deepseq directory filepath lukko ··· 49947 ]; 49948 description = "Library and utility for processing cabal's plan.json file"; 49949 license = lib.licenses.gpl2Plus; 49950 + }) {}; 49951 + 49952 + "cabal-plan_0_7_2_1" = callPackage 49953 + ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat 49954 + , base16-bytestring, bytestring, containers, directory, filepath 49955 + , mtl, optics-core, optparse-applicative, parsec, process 49956 + , semialign, singleton-bool, text, these, topograph, transformers 49957 + , vector 49958 + }: 49959 + mkDerivation { 49960 + pname = "cabal-plan"; 49961 + version = "0.7.2.1"; 49962 + sha256 = "0n45bakzf1r1nyvs76fmrj0cf74knqnpyb2i82baxia0falbp48r"; 49963 + configureFlags = [ "-fexe" ]; 49964 + isLibrary = true; 49965 + isExecutable = true; 49966 + libraryHaskellDepends = [ 49967 + aeson base base16-bytestring bytestring containers directory 49968 + filepath text 49969 + ]; 49970 + executableHaskellDepends = [ 49971 + ansi-terminal async base base-compat bytestring containers 49972 + directory mtl optics-core optparse-applicative parsec process 49973 + semialign singleton-bool text these topograph transformers vector 49974 + ]; 49975 + description = "Library and utility for processing cabal's plan.json file"; 49976 + license = lib.licenses.gpl2Plus; 49977 + hydraPlatforms = lib.platforms.none; 49978 }) {}; 49979 49980 "cabal-progdeps" = callPackage ··· 51266 }: 51267 mkDerivation { 51268 pname = "camfort"; 51269 + version = "1.1.2"; 51270 + sha256 = "13a6x4j4f95izwz7g5sykpb2pq4lzwcswi31986gkyl6nicn5cfj"; 51271 isLibrary = true; 51272 isExecutable = true; 51273 libraryHaskellDepends = [ ··· 56356 hydraPlatforms = lib.platforms.none; 56357 }) {}; 56358 56359 + "clash-ghc_1_4_4" = callPackage 56360 + ({ mkDerivation, array, base, bifunctors, bytestring, Cabal 56361 + , clash-lib, clash-prelude, concurrent-supply, containers, deepseq 56362 + , directory, exceptions, extra, filepath, ghc, ghc-boot, ghc-prim 56363 + , ghc-typelits-extra, ghc-typelits-knownnat 56364 + , ghc-typelits-natnormalise, ghci, hashable, haskeline, integer-gmp 56365 + , lens, mtl, primitive, process, reflection, split 56366 + , template-haskell, text, time, transformers, uniplate, unix 56367 + , unordered-containers, utf8-string, vector 56368 + }: 56369 + mkDerivation { 56370 + pname = "clash-ghc"; 56371 + version = "1.4.4"; 56372 + sha256 = "0dcyf8q5n37v1arq7dyxbgg80j1dnh3i444v9p1p9rs93l2vfnab"; 56373 + isLibrary = true; 56374 + isExecutable = true; 56375 + libraryHaskellDepends = [ 56376 + array base bifunctors bytestring Cabal clash-lib clash-prelude 56377 + concurrent-supply containers deepseq directory exceptions extra 56378 + filepath ghc ghc-boot ghc-prim ghc-typelits-extra 56379 + ghc-typelits-knownnat ghc-typelits-natnormalise ghci hashable 56380 + haskeline integer-gmp lens mtl primitive process reflection split 56381 + template-haskell text time transformers uniplate unix 56382 + unordered-containers utf8-string vector 56383 + ]; 56384 + executableHaskellDepends = [ base ]; 56385 + description = "Clash: a functional hardware description language - GHC frontend"; 56386 + license = lib.licenses.bsd2; 56387 + hydraPlatforms = lib.platforms.none; 56388 + }) {}; 56389 + 56390 "clash-lib" = callPackage 56391 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56392 , attoparsec, base, base16-bytestring, binary, bytestring ··· 56430 hydraPlatforms = lib.platforms.none; 56431 }) {}; 56432 56433 + "clash-lib_1_4_4" = callPackage 56434 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56435 + , attoparsec, base, base16-bytestring, binary, bytestring 56436 + , clash-prelude, concurrent-supply, containers, cryptohash-sha256 56437 + , data-binary-ieee754, data-default, deepseq, directory, dlist 56438 + , errors, exceptions, extra, filepath, ghc, ghc-boot-th 56439 + , ghc-typelits-knownnat, hashable, haskell-src-exts 56440 + , haskell-src-meta, hint, integer-gmp, interpolate, lens, mtl 56441 + , ordered-containers, parsers, pretty-show, prettyprinter 56442 + , primitive, process, quickcheck-text, reducers, tasty, tasty-hunit 56443 + , tasty-quickcheck, template-haskell, temporary, terminal-size 56444 + , text, text-show, time, transformers, trifecta 56445 + , unordered-containers, utf8-string, vector 56446 + , vector-binary-instances 56447 + }: 56448 + mkDerivation { 56449 + pname = "clash-lib"; 56450 + version = "1.4.4"; 56451 + sha256 = "1s04m806mdx12mbg30qrx8w75mavs5r8g7dmf5k1v9jn97jk4gvs"; 56452 + enableSeparateDataOutput = true; 56453 + libraryHaskellDepends = [ 56454 + aeson aeson-pretty ansi-terminal array attoparsec base 56455 + base16-bytestring binary bytestring clash-prelude concurrent-supply 56456 + containers cryptohash-sha256 data-binary-ieee754 data-default 56457 + deepseq directory dlist errors exceptions extra filepath ghc 56458 + ghc-boot-th hashable haskell-src-meta hint integer-gmp interpolate 56459 + lens mtl ordered-containers parsers pretty-show prettyprinter 56460 + primitive process reducers template-haskell temporary terminal-size 56461 + text text-show time transformers trifecta unordered-containers 56462 + utf8-string vector vector-binary-instances 56463 + ]; 56464 + testHaskellDepends = [ 56465 + aeson aeson-pretty base base16-bytestring bytestring clash-prelude 56466 + concurrent-supply containers data-default deepseq ghc 56467 + ghc-typelits-knownnat haskell-src-exts lens pretty-show 56468 + quickcheck-text tasty tasty-hunit tasty-quickcheck template-haskell 56469 + text transformers unordered-containers 56470 + ]; 56471 + description = "Clash: a functional hardware description language - As a library"; 56472 + license = lib.licenses.bsd2; 56473 + hydraPlatforms = lib.platforms.none; 56474 + }) {}; 56475 + 56476 "clash-multisignal" = callPackage 56477 ({ mkDerivation, base, clash-prelude, deepseq 56478 , ghc-typelits-knownnat, QuickCheck ··· 56505 pname = "clash-prelude"; 56506 version = "1.4.3"; 56507 sha256 = "07mdl3196yb971hpcbysyaj6vciyrm1p5m9prcymkhkqh7vw9igy"; 56508 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 56509 + libraryHaskellDepends = [ 56510 + array arrows base bifunctors binary bytestring constraints 56511 + containers data-binary-ieee754 data-default-class deepseq ghc-prim 56512 + ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 56513 + half hashable integer-gmp interpolate lens QuickCheck 56514 + recursion-schemes reflection singletons template-haskell text 56515 + text-show th-abstraction th-lift th-orphans time transformers 56516 + type-errors uniplate vector 56517 + ]; 56518 + testHaskellDepends = [ 56519 + base deepseq doctest ghc-typelits-extra ghc-typelits-knownnat 56520 + ghc-typelits-natnormalise hedgehog hint quickcheck-classes-base 56521 + tasty tasty-hedgehog tasty-hunit tasty-quickcheck tasty-th 56522 + template-haskell 56523 + ]; 56524 + benchmarkHaskellDepends = [ 56525 + base criterion deepseq template-haskell 56526 + ]; 56527 + description = "Clash: a functional hardware description language - Prelude library"; 56528 + license = lib.licenses.bsd2; 56529 + hydraPlatforms = lib.platforms.none; 56530 + broken = true; 56531 + }) {}; 56532 + 56533 + "clash-prelude_1_4_4" = callPackage 56534 + ({ mkDerivation, array, arrows, base, bifunctors, binary 56535 + , bytestring, Cabal, cabal-doctest, constraints, containers 56536 + , criterion, data-binary-ieee754, data-default-class, deepseq 56537 + , doctest, ghc-prim, ghc-typelits-extra, ghc-typelits-knownnat 56538 + , ghc-typelits-natnormalise, half, hashable, hedgehog, hint 56539 + , integer-gmp, interpolate, lens, QuickCheck 56540 + , quickcheck-classes-base, recursion-schemes, reflection 56541 + , singletons, tasty, tasty-hedgehog, tasty-hunit, tasty-quickcheck 56542 + , tasty-th, template-haskell, text, text-show, th-abstraction 56543 + , th-lift, th-orphans, time, transformers, type-errors, uniplate 56544 + , vector 56545 + }: 56546 + mkDerivation { 56547 + pname = "clash-prelude"; 56548 + version = "1.4.4"; 56549 + sha256 = "14304dc9s91blh8ljv8hd3h6gsz0nr83fzf83xkr6mxkdlhzknd4"; 56550 setupHaskellDepends = [ base Cabal cabal-doctest ]; 56551 libraryHaskellDepends = [ 56552 array arrows base bifunctors binary bytestring constraints ··· 66834 pname = "criterion"; 66835 version = "1.5.10.0"; 66836 sha256 = "0akws27z3i9381xrb0p0h5qicz4w5nnxy8jq7gk68gi50gj0flxq"; 66837 + revision = "2"; 66838 + editedCabalFile = "11jdxivx971fbwrg8g0pq365kg6zr6gs06zc5jcjhj34pyr6xpdr"; 66839 isLibrary = true; 66840 isExecutable = true; 66841 enableSeparateDataOutput = true; ··· 66857 ]; 66858 description = "Robust, reliable performance measurement and analysis"; 66859 license = lib.licenses.bsd3; 66860 + }) {}; 66861 + 66862 + "criterion_1_5_11_0" = callPackage 66863 + ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat 66864 + , base-compat-batteries, binary, binary-orphans, bytestring 66865 + , cassava, code-page, containers, criterion-measurement, deepseq 66866 + , directory, exceptions, filepath, Glob, HUnit, js-chart 66867 + , microstache, mtl, mwc-random, optparse-applicative, parsec 66868 + , QuickCheck, statistics, tasty, tasty-hunit, tasty-quickcheck 66869 + , text, time, transformers, transformers-compat, vector 66870 + , vector-algorithms 66871 + }: 66872 + mkDerivation { 66873 + pname = "criterion"; 66874 + version = "1.5.11.0"; 66875 + sha256 = "1lwawng4rmhmqqn8gsalfn4xj2n19gwz7pl4wjssicl5qgmnvp8s"; 66876 + isLibrary = true; 66877 + isExecutable = true; 66878 + enableSeparateDataOutput = true; 66879 + libraryHaskellDepends = [ 66880 + aeson ansi-wl-pprint base base-compat-batteries binary 66881 + binary-orphans bytestring cassava code-page containers 66882 + criterion-measurement deepseq directory exceptions filepath Glob 66883 + js-chart microstache mtl mwc-random optparse-applicative parsec 66884 + statistics text time transformers transformers-compat vector 66885 + vector-algorithms 66886 + ]; 66887 + executableHaskellDepends = [ 66888 + base base-compat-batteries optparse-applicative 66889 + ]; 66890 + testHaskellDepends = [ 66891 + aeson base base-compat base-compat-batteries bytestring deepseq 66892 + directory HUnit QuickCheck statistics tasty tasty-hunit 66893 + tasty-quickcheck vector 66894 + ]; 66895 + description = "Robust, reliable performance measurement and analysis"; 66896 + license = lib.licenses.bsd3; 66897 + hydraPlatforms = lib.platforms.none; 66898 }) {}; 66899 66900 "criterion-cmp" = callPackage ··· 67792 broken = true; 67793 }) {cryptohash-sha256-pure = null;}; 67794 67795 + "cryptohash-sha256_0_11_102_1" = callPackage 67796 + ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67797 + , SHA, tasty, tasty-hunit, tasty-quickcheck 67798 + }: 67799 + mkDerivation { 67800 + pname = "cryptohash-sha256"; 67801 + version = "0.11.102.1"; 67802 + sha256 = "1xkb7iqplbw4fy1122p79xf1zcb7k44rl0wmfj1q06l7cdqxr9vk"; 67803 + configureFlags = [ "-fuse-cbits" ]; 67804 + isLibrary = true; 67805 + isExecutable = true; 67806 + libraryHaskellDepends = [ base bytestring ]; 67807 + testHaskellDepends = [ 67808 + base base16-bytestring bytestring SHA tasty tasty-hunit 67809 + tasty-quickcheck 67810 + ]; 67811 + benchmarkHaskellDepends = [ base bytestring criterion SHA ]; 67812 + description = "Fast, pure and practical SHA-256 implementation"; 67813 + license = lib.licenses.bsd3; 67814 + hydraPlatforms = lib.platforms.none; 67815 + }) {}; 67816 + 67817 "cryptohash-sha512" = callPackage 67818 ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67819 , SHA, tasty, tasty-hunit, tasty-quickcheck ··· 68141 }: 68142 mkDerivation { 68143 pname = "csound-expression"; 68144 + version = "5.4.3"; 68145 + sha256 = "00hd0sb1787cx7yppg2f3zkd3y8d75fsmf460qnsxc77m4qw5388"; 68146 libraryHaskellDepends = [ 68147 base Boolean colour containers csound-expression-dynamic 68148 csound-expression-opcodes csound-expression-typed data-default ··· 68159 }: 68160 mkDerivation { 68161 pname = "csound-expression-dynamic"; 68162 + version = "0.3.8"; 68163 + sha256 = "0q94d228zsjrnjzl3w11i4cqdnx3w1mcvsrf3w6jrvysrn1zskbz"; 68164 libraryHaskellDepends = [ 68165 array base Boolean containers data-default data-fix data-fix-cse 68166 deriving-compat hashable transformers wl-pprint ··· 68192 }: 68193 mkDerivation { 68194 pname = "csound-expression-typed"; 68195 + version = "0.2.7"; 68196 + sha256 = "1mh1mfyi2vx8ykyc1ca8vpbi545fkp7f0ss5nw6dkykl6zm7pj6d"; 68197 enableSeparateDataOutput = true; 68198 libraryHaskellDepends = [ 68199 base Boolean colour containers csound-expression-dynamic ··· 74121 }: 74122 mkDerivation { 74123 pname = "dep-t"; 74124 + version = "0.4.5.0"; 74125 + sha256 = "0hmyfq7xkz3l7d2f3d9ax782b6h0vvq1cfcxxnj1dg29hrnpd1ja"; 74126 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 74127 testHaskellDepends = [ 74128 base doctest mtl rank2classes sop-core tasty tasty-hunit ··· 74141 }: 74142 mkDerivation { 74143 pname = "dep-t-advice"; 74144 + version = "0.4.6.1"; 74145 + sha256 = "1afr4qjzxvf4h56l0m1zjxy2m9vxs51wj1rcvxpqr3q9hvdg17vx"; 74146 libraryHaskellDepends = [ base dep-t sop-core transformers ]; 74147 testHaskellDepends = [ 74148 barbies base dep-t doctest mtl rank2classes sop-core tasty ··· 74203 pname = "dependent-literals"; 74204 version = "0.1.1.0"; 74205 sha256 = "0dw2xc5l8cmhsmr2akyyhyfj8m3qx02pz81fn52ii9mkhzs6rcjb"; 74206 + revision = "2"; 74207 + editedCabalFile = "1l3fns5gi8l5bav6z3ymvp93i1cq59f9b6p3dc496c0rmkh01kjq"; 74208 libraryHaskellDepends = [ 74209 base fin-int numeric-kinds sint snumber tagged wrapped 74210 ]; 74211 + description = "Library for dependent-literals-plugin"; 74212 license = lib.licenses.asl20; 74213 }) {}; 74214 ··· 74220 pname = "dependent-literals-plugin"; 74221 version = "0.1.0.1"; 74222 sha256 = "1rpjlcv3g150rcmxidn48n25xxv2ghdz4x9jnap1swkz0fb10i3a"; 74223 + revision = "2"; 74224 + editedCabalFile = "1bfsv402cxwhwz22gqj8p0grr4wb9ynsd2swnwy1m6xdsfi1wdy4"; 74225 libraryHaskellDepends = [ base ghc syb ]; 74226 testHaskellDepends = [ 74227 base dependent-literals fin-int numeric-kinds short-vec sint 74228 snumber wrapped 74229 ]; 74230 + description = "Dependent integer literals"; 74231 license = lib.licenses.asl20; 74232 + hydraPlatforms = lib.platforms.none; 74233 }) {}; 74234 74235 "dependent-map_0_2_4_0" = callPackage ··· 80030 license = lib.licenses.bsd3; 80031 }) {}; 80032 80033 + "doclayout_0_3_1" = callPackage 80034 + ({ mkDerivation, base, containers, criterion, emojis, mtl, safe 80035 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text 80036 + }: 80037 + mkDerivation { 80038 + pname = "doclayout"; 80039 + version = "0.3.1"; 80040 + sha256 = "0cbb8l1m7w1ycf0pv8y9cbly9qxw3w5ngqbghj6qd5kk02my9zwj"; 80041 + enableSeparateDataOutput = true; 80042 + libraryHaskellDepends = [ base containers emojis mtl safe text ]; 80043 + testHaskellDepends = [ 80044 + base emojis mtl tasty tasty-golden tasty-hunit tasty-quickcheck 80045 + text 80046 + ]; 80047 + benchmarkHaskellDepends = [ base criterion mtl text ]; 80048 + description = "A prettyprinting library for laying out text documents"; 80049 + license = lib.licenses.bsd3; 80050 + hydraPlatforms = lib.platforms.none; 80051 + }) {}; 80052 + 80053 "docopt" = callPackage 80054 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers 80055 , HUnit, parsec, split, template-haskell, text ··· 80133 license = lib.licenses.bsd3; 80134 }) {}; 80135 80136 + "doctemplates_0_10_0_1" = callPackage 80137 ({ mkDerivation, aeson, base, bytestring, containers, criterion 80138 , doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific 80139 , tasty, tasty-golden, tasty-hunit, temporary, text 80140 + , text-conversions, vector 80141 }: 80142 mkDerivation { 80143 pname = "doctemplates"; 80144 + version = "0.10.0.1"; 80145 + sha256 = "08l8lgmvn83xwbdlh4m2jljj5gcyxiq1vjd1ggysv36d81swsg1x"; 80146 enableSeparateDataOutput = true; 80147 libraryHaskellDepends = [ 80148 aeson base containers doclayout filepath HsYAML mtl parsec safe 80149 + scientific text text-conversions vector 80150 ]; 80151 testHaskellDepends = [ 80152 aeson base bytestring containers doclayout filepath Glob tasty ··· 85822 license = lib.licenses.bsd3; 85823 }) {}; 85824 85825 + "emojis_0_1_2" = callPackage 85826 + ({ mkDerivation, base, containers, HUnit, text }: 85827 + mkDerivation { 85828 + pname = "emojis"; 85829 + version = "0.1.2"; 85830 + sha256 = "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw"; 85831 + libraryHaskellDepends = [ base containers text ]; 85832 + testHaskellDepends = [ base HUnit text ]; 85833 + description = "Conversion between emoji characters and their names"; 85834 + license = lib.licenses.bsd3; 85835 + hydraPlatforms = lib.platforms.none; 85836 + }) {}; 85837 + 85838 "empty" = callPackage 85839 ({ mkDerivation }: 85840 mkDerivation { ··· 87608 ]; 87609 description = "Esqueleto support for the pgcrypto PostgreSQL module"; 87610 license = lib.licenses.bsd3; 87611 + hydraPlatforms = lib.platforms.none; 87612 + broken = true; 87613 }) {}; 87614 87615 "ess" = callPackage ··· 89347 pname = "exiftool"; 89348 version = "0.2.0.0"; 89349 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 89350 + revision = "1"; 89351 + editedCabalFile = "0sgi3w8x1zlch0v3zpxrjhisxd1s6wj1qznjlm0gz2r5d1pzc03z"; 89352 libraryHaskellDepends = [ 89353 aeson base base64 bytestring hashable process scientific 89354 string-conversions temporary text unordered-containers vector ··· 93666 }: 93667 mkDerivation { 93668 pname = "fin-int"; 93669 + version = "0.2.0"; 93670 + sha256 = "0ra5lcd3ybmv1a0l7bisjlgi7b8mywa6c6pj7n82ppyi6rqssdlh"; 93671 libraryHaskellDepends = [ 93672 attenuation base data-default-class deepseq portray portray-diff 93673 QuickCheck sint 93674 ]; 93675 + description = "Finite sets of static size"; 93676 license = lib.licenses.asl20; 93677 }) {}; 93678 ··· 93974 pname = "finite-table"; 93975 version = "0.1.0.1"; 93976 sha256 = "17bn5wmv5sz89yh3lh39i1armi168wxxnz6l9smcfmw334lidlv6"; 93977 + revision = "1"; 93978 + editedCabalFile = "17marqdap2mhlv90khnhygy78mn4gj9068gbz2ld4xv7q2kf3vlm"; 93979 libraryHaskellDepends = [ 93980 adjunctions base cereal data-default-class deepseq distributive 93981 fin-int indexed-traversable lens portray portray-diff short-vec ··· 93989 ]; 93990 description = "Types isomorphic to Fin, and Tables indexed by them"; 93991 license = lib.licenses.asl20; 93992 + hydraPlatforms = lib.platforms.none; 93993 }) {}; 93994 93995 "finite-typelits" = callPackage ··· 99344 ]; 99345 description = "Tools for functor combinator-based program design"; 99346 license = lib.licenses.bsd3; 99347 }) {}; 99348 99349 "functor-combinators_0_4_1_0" = callPackage ··· 99373 description = "Tools for functor combinator-based program design"; 99374 license = lib.licenses.bsd3; 99375 hydraPlatforms = lib.platforms.none; 99376 }) {}; 99377 99378 "functor-combo" = callPackage ··· 106999 }: 107000 mkDerivation { 107001 pname = "git-annex"; 107002 + version = "8.20211011"; 107003 + sha256 = "02s7921ihmbndp7lk1nhhiljky02ikq4qax4mhg609qjhbl6piwd"; 107004 configureFlags = [ 107005 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 107006 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 107528 }: 107529 mkDerivation { 107530 pname = "github"; 107531 + version = "0.27"; 107532 + sha256 = "0vlqsdhhjnfw9wk5vn1i8cmwa45vgczhz4nn46mwgs600xfn94am"; 107533 libraryHaskellDepends = [ 107534 aeson base base-compat base16-bytestring binary binary-instances 107535 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 107545 testToolDepends = [ hspec-discover ]; 107546 description = "Access to the GitHub API, v3"; 107547 license = lib.licenses.bsd3; 107548 + hydraPlatforms = lib.platforms.none; 107549 + broken = true; 107550 }) {}; 107551 107552 "github-backup" = callPackage ··· 107664 license = lib.licenses.bsd3; 107665 }) {}; 107666 107667 + "github-rest_1_1_1" = callPackage 107668 ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 107669 , http-client-tls, http-types, jwt, mtl, scientific, tasty 107670 , tasty-golden, tasty-hunit, tasty-quickcheck, text, time ··· 107672 }: 107673 mkDerivation { 107674 pname = "github-rest"; 107675 + version = "1.1.1"; 107676 + sha256 = "1wf4gs3324h4pfal5qcpb65lfpm4kpmxmv4fiv6asrvhas9cwglm"; 107677 libraryHaskellDepends = [ 107678 aeson base bytestring http-client http-client-tls http-types jwt 107679 mtl scientific text time transformers unliftio unliftio-core ··· 107918 license = lib.licenses.bsd3; 107919 }) {}; 107920 107921 + "gitlab-haskell_0_3_2_0" = callPackage 107922 ({ mkDerivation, aeson, base, bytestring, connection, http-client 107923 , http-conduit, http-types, tasty, tasty-hunit, temporary, text 107924 , time, transformers, unix 107925 }: 107926 mkDerivation { 107927 pname = "gitlab-haskell"; 107928 + version = "0.3.2.0"; 107929 + sha256 = "1ibsb4wyavyb6s64czy1pdbcskfwn96wcky4vlpr0r1f8gjpym5s"; 107930 enableSeparateDataOutput = true; 107931 libraryHaskellDepends = [ 107932 aeson base bytestring connection http-client http-conduit ··· 111926 pname = "google-drive"; 111927 version = "0.4.1"; 111928 sha256 = "1whpifspbvqgw9hg367fjhp14ci61nnirskivawpv2airzn45xzk"; 111929 + revision = "1"; 111930 + editedCabalFile = "02hpkgp1k5gsc6rrx6gzzskcrdjzqbcdcppxkmv36lq0r1sj5afw"; 111931 libraryHaskellDepends = [ 111932 aeson base bytestring conduit conduit-extra directory filepath 111933 http-conduit http-types mtl random resourcet text time ··· 125336 pname = "hastache"; 125337 version = "0.6.1"; 125338 sha256 = "0r5l8k157pgvz1ck4lfid5x05f2s0nlmwf33f4fj09b1kmk8k3wc"; 125339 + revision = "6"; 125340 + editedCabalFile = "1d9a6algvdyhjl94ikbz6ccnpbh0f68x8dp6bmx6lljq4b2srx51"; 125341 isLibrary = true; 125342 isExecutable = true; 125343 libraryHaskellDepends = [ ··· 131394 }) {}; 131395 131396 "iotransaction" = callPackage 131397 + ({ mkDerivation, async, base, bytestring, conduit, containers 131398 + , directory, filepath, filepath-bytestring, hinotify, hspec 131399 + , resourcet, stm, stm-chans, stm-conduit, temporary, unix 131400 }: 131401 mkDerivation { 131402 "iotransaction" = callPackage 131403 + version = "0.1.0.1"; 131404 + sha256 = "1377ws4rmafkjrnyn9x0a5wj98v5ysc85yzq6frg12aslc1bmvx9"; 131405 libraryHaskellDepends = [ 131406 + base bytestring conduit containers directory filepath 131407 + filepath-bytestring hinotify resourcet stm stm-chans stm-conduit 131408 ]; 131409 testHaskellDepends = [ 131410 + async base bytestring conduit containers directory filepath 131411 + filepath-bytestring hinotify hspec resourcet stm stm-chans 131412 + stm-conduit temporary unix 131413 ]; 131414 "iotransaction" = callPackage 131415 license = lib.licenses.bsd3; ··· 133107 "iotransaction" = callPackage 133108 "iotransaction" = callPackage 133109 "iotransaction" = callPackage 133110 + revision = "2"; 133111 + editedCabalFile = "0p2d3pi268jkb3hz750apjn917kr40hhamc2apgiv08chqyk82bj"; 133112 isLibrary = true; 133113 isExecutable = true; 133114 enableSeparateDataOutput = true; ··· 133135 "iotransaction" = callPackage 133136 version = "3.3.4"; 133137 "iotransaction" = callPackage 133138 + revision = "1"; 133139 + editedCabalFile = "10h1asqbk2qqmxac34amwjz9ybz2vahpa0dsrdljg3zw1r1yzkb8"; 133140 isLibrary = true; 133141 isExecutable = true; 133142 enableSeparateDataOutput = true; ··· 135628 pname = "hoogle"; 135629 version = "5.0.18.2"; 135630 sha256 = "1xacx2f33x1a4qlv25f8rlmb4wi0cjfzrj22nlnkrd0knghik3m7"; 135631 + revision = "1"; 135632 + editedCabalFile = "11ig5z81h27ify5sx2dyrx4kiv61gzd96k9qi8a11hvnk2w51a9y"; 135633 isLibrary = true; 135634 isExecutable = true; 135635 enableSeparateDataOutput = true; ··· 136451 pname = "hpack"; 136452 version = "0.34.4"; 136453 sha256 = "1xszy00al5zzga64gh7nvgqc93242f61kqy8lb09jkm98a8fs4bl"; 136454 + revision = "1"; 136455 + editedCabalFile = "0gq6ax8a7yc5lp0n24kd60kq0dgpgsgcgl970jrf1hqnzf53pspk"; 136456 isLibrary = true; 136457 isExecutable = true; 136458 libraryHaskellDepends = [ ··· 137067 pname = "hpqtypes-extras"; 137068 version = "1.12.0.0"; 137069 sha256 = "0pxidphf0qzfy5zv1q7qhp49bgglf3pqd6r91qq0iawnvgzcyi7z"; 137070 + revision = "2"; 137071 + editedCabalFile = "0gprlxfjdc6lxf2xazfr1wrna9whw6sh1jpv5rhp8bw0haslzl6j"; 137072 libraryHaskellDepends = [ 137073 base base16-bytestring bytestring containers cryptohash exceptions 137074 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 140272 pname = "hslogger"; 140273 version = "1.3.1.0"; 140274 sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; 140275 + revision = "4"; 140276 + editedCabalFile = "0249qf58s5dvqf98xqbqqigav055dgj5cx4dmz4ssl8ckk2dizdk"; 140277 libraryHaskellDepends = [ 140278 base bytestring containers deepseq network network-bsd old-locale 140279 time unix ··· 144055 license = lib.licenses.publicDomain; 144056 }) {}; 144057 144058 + "http-link-header_1_2_1" = callPackage 144059 + ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 144060 + , errors, hspec, hspec-attoparsec, http-api-data, network-uri 144061 + , QuickCheck, text, transformers 144062 + }: 144063 + mkDerivation { 144064 + pname = "http-link-header"; 144065 + version = "1.2.1"; 144066 + sha256 = "15pcav5k7j4pvqwkyyrqgcm7yxqippx4yiprsg9fpml4kywcr2ca"; 144067 + libraryHaskellDepends = [ 144068 + attoparsec base bytestring errors http-api-data network-uri text 144069 + ]; 144070 + testHaskellDepends = [ 144071 + attoparsec base bytestring errors hspec hspec-attoparsec 144072 + http-api-data network-uri QuickCheck text 144073 + ]; 144074 + benchmarkHaskellDepends = [ 144075 + attoparsec base bytestring criterion directory errors http-api-data 144076 + network-uri text transformers 144077 + ]; 144078 + description = "A parser and writer for the HTTP Link header per RFC 5988"; 144079 + license = lib.licenses.publicDomain; 144080 + hydraPlatforms = lib.platforms.none; 144081 + }) {}; 144082 + 144083 "http-listen" = callPackage 144084 ({ mkDerivation, base, bytestring, exceptions, HTTP, network 144085 , transformers ··· 151013 151014 "inline-asm" = callPackage 151015 ({ mkDerivation, base, bytestring, containers, either, ghc-prim 151016 + , hspec, hspec-core, megaparsec, mtl, parser-combinators, primitive 151017 , QuickCheck, template-haskell, uniplate 151018 }: 151019 mkDerivation { 151020 pname = "inline-asm"; 151021 + version = "0.5.0.0"; 151022 + sha256 = "02zxgkaa4wgacgj6si4158cxgk3cdf0gkvl5avmyrivbcc18xkdi"; 151023 isLibrary = true; 151024 isExecutable = true; 151025 libraryHaskellDepends = [ 151026 base bytestring containers either ghc-prim megaparsec mtl 151027 + parser-combinators primitive template-haskell uniplate 151028 ]; 151029 testHaskellDepends = [ 151030 base bytestring containers either ghc-prim hspec hspec-core 151031 + megaparsec mtl parser-combinators primitive QuickCheck 151032 + template-haskell uniplate 151033 ]; 151034 description = "Inline some Assembly in ur Haskell!"; 151035 license = lib.licenses.bsd3; ··· 151220 pname = "insert-ordered-containers"; 151221 version = "0.2.5"; 151222 sha256 = "0bb3ggzic8z5zmvmzp1fsnb572c2v383740b0ddf1fwihpn52c1y"; 151223 + revision = "2"; 151224 + editedCabalFile = "1xjrd1sn3wkhv8f40wi5p53y8n74lkj5pnr4psjlbpqqlr4hy2ya"; 151225 libraryHaskellDepends = [ 151226 aeson base base-compat deepseq hashable indexed-traversable lens 151227 optics-core optics-extra semigroupoids semigroups text transformers ··· 152169 }: 152170 mkDerivation { 152171 pname = "interval-algebra"; 152172 + version = "1.1.0"; 152173 + sha256 = "16xx8fw7xf8rrji9n34r3xchjpd6sh3wnlbz70a3mhbdl3yp55vq"; 152174 libraryHaskellDepends = [ 152175 base containers foldl QuickCheck safe time witherable 152176 ]; ··· 152475 license = lib.licenses.bsd3; 152476 }) {}; 152477 152478 + "invertible-grammar_0_1_3_2" = callPackage 152479 + ({ mkDerivation, base, bifunctors, containers, mtl, prettyprinter 152480 + , profunctors, semigroups, tagged, template-haskell, text 152481 + , transformers 152482 + }: 152483 + mkDerivation { 152484 + pname = "invertible-grammar"; 152485 + version = "0.1.3.2"; 152486 + sha256 = "14i0xf5j01j6ayvxix32qr2m0bz3818q26z3b4xyw41ikbhxmkp2"; 152487 + libraryHaskellDepends = [ 152488 + base bifunctors containers mtl prettyprinter profunctors semigroups 152489 + tagged template-haskell text transformers 152490 + ]; 152491 + description = "Invertible parsing combinators framework"; 152492 + license = lib.licenses.bsd3; 152493 + hydraPlatforms = lib.platforms.none; 152494 + }) {}; 152495 + 152496 "invertible-hlist" = callPackage 152497 ({ mkDerivation, base, HList, invertible }: 152498 mkDerivation { ··· 152999 , doctest, envy, flow, Glob, http-media, lens, lens-aeson 153000 , monad-logger, network-ip, QuickCheck, regex-compat, rio, servant 153001 , servant-client, servant-multipart, servant-multipart-api 153002 + , servant-multipart-client, swagger2, text, vector, yaml 153003 }: 153004 mkDerivation { 153005 pname = "ipfs"; 153006 + version = "1.4.0"; 153007 + sha256 = "1lz5wbjlxd053805cc0l51hj69rwj4a2i4b5y72gmajjqrcw4hcd"; 153008 libraryHaskellDepends = [ 153009 aeson base bytestring envy flow Glob http-media lens monad-logger 153010 network-ip regex-compat rio servant servant-client 153011 servant-multipart servant-multipart-api servant-multipart-client 153012 + swagger2 text vector 153013 ]; 153014 testHaskellDepends = [ 153015 aeson base bytestring directory directory-tree doctest envy flow 153016 Glob http-media lens lens-aeson monad-logger network-ip QuickCheck 153017 regex-compat rio servant servant-client servant-multipart 153018 + servant-multipart-api servant-multipart-client swagger2 text vector 153019 + yaml 153020 ]; 153021 description = "Access IPFS locally and remotely"; 153022 license = lib.licenses.asl20; ··· 157017 license = lib.licenses.mit; 157018 }) {}; 157019 157020 + "jsonifier_0_1_2" = callPackage 157021 + ({ mkDerivation, aeson, base, buffer-builder, bytestring, gauge 157022 + , hedgehog, numeric-limits, ptr-poker, rerebase, scientific, text 157023 + , text-builder 157024 + }: 157025 + mkDerivation { 157026 + pname = "jsonifier"; 157027 + version = "0.1.2"; 157028 + sha256 = "14cgk8h7lasnm0z9qlddkn166vk557msnkrpahdzqpl7arwdddid"; 157029 + libraryHaskellDepends = [ 157030 + base bytestring ptr-poker scientific text 157031 + ]; 157032 + testHaskellDepends = [ aeson hedgehog numeric-limits rerebase ]; 157033 + benchmarkHaskellDepends = [ 157034 + aeson buffer-builder gauge rerebase text-builder 157035 + ]; 157036 + description = "Fast and simple JSON encoding toolkit"; 157037 + license = lib.licenses.mit; 157038 + hydraPlatforms = lib.platforms.none; 157039 + }) {}; 157040 + 157041 "jsonnet" = callPackage 157042 ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring 157043 , containers, data-fix, deriving-compat, directory, exceptions ··· 157953 }: 157954 mkDerivation { 157955 pname = "kansas-comet"; 157956 + version = "0.4.1"; 157957 + sha256 = "1j54rsqna8xrw1si8i74v0c9k4jjv8a2q001aa8sx4rxb7d1qbzy"; 157958 enableSeparateDataOutput = true; 157959 libraryHaskellDepends = [ 157960 aeson base containers data-default-class scotty stm text time ··· 164632 license = lib.licenses.mit; 164633 }) {}; 164634 164635 + "lens-aeson_1_1_2" = callPackage 164636 + ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 164637 + , scientific, text, unordered-containers, vector 164638 + }: 164639 + mkDerivation { 164640 + pname = "lens-aeson"; 164641 + version = "1.1.2"; 164642 + sha256 = "0pdjjyjwlavcgm2wrv1fiz09l41hisl2xj6y67xbdix1h6h07hxz"; 164643 + libraryHaskellDepends = [ 164644 + aeson attoparsec base bytestring lens scientific text 164645 + unordered-containers vector 164646 + ]; 164647 + description = "Law-abiding lenses for aeson"; 164648 + license = lib.licenses.mit; 164649 + hydraPlatforms = lib.platforms.none; 164650 + }) {}; 164651 + 164652 "lens-core" = callPackage 164653 ({ mkDerivation, base }: 164654 mkDerivation { ··· 170199 }: 170200 mkDerivation { 170201 pname = "log-base"; 170202 + version = "0.11.0.0"; 170203 + sha256 = "155lzi9x33rhiymfy1271k0dz7c4qm1r48cz6kc7gcwxvrfh8dxi"; 170204 libraryHaskellDepends = [ 170205 aeson aeson-pretty base bytestring deepseq exceptions mmorph 170206 monad-control mtl semigroups stm text time transformers-base ··· 170274 }: 170275 mkDerivation { 170276 pname = "log-elasticsearch"; 170277 + version = "0.12.1.1"; 170278 + sha256 = "0jrfrqydbg549d7gh38mq852kzd0nsaaaq6l5bi4ldfpj443kz8a"; 170279 libraryHaskellDepends = [ 170280 aeson aeson-pretty base base64-bytestring bytestring deepseq 170281 http-client http-client-tls http-types log-base network-uri ··· 170295 }: 170296 mkDerivation { 170297 pname = "log-postgres"; 170298 + version = "0.8.0.2"; 170299 + sha256 = "167asvp7a5v8621sbr6r4j25byg18d125gqd2i4jrq57g5f2mivf"; 170300 libraryHaskellDepends = [ 170301 aeson aeson-pretty base base64-bytestring bytestring deepseq 170302 hpqtypes http-client lifted-base log-base mtl semigroups split text ··· 174896 license = lib.licenses.bsd3; 174897 }) {}; 174898 174899 + "massiv_1_0_1_0" = callPackage 174900 ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 174901 + , primitive, random, scheduler, unliftio-core, vector 174902 }: 174903 mkDerivation { 174904 pname = "massiv"; 174905 + version = "1.0.1.0"; 174906 + sha256 = "1s47x3cya73mp4gxqn271yp8z23pfgw170pnlxbka61ap4kykmkk"; 174907 libraryHaskellDepends = [ 174908 base bytestring deepseq exceptions primitive random scheduler 174909 unliftio-core vector 174910 ]; 174911 + testHaskellDepends = [ base doctest ]; 174912 description = "Massiv (Массив) is an Array Library"; 174913 license = lib.licenses.bsd3; 174914 hydraPlatforms = lib.platforms.none; ··· 174986 broken = true; 174987 }) {}; 174988 174989 + "massiv-persist_1_0_0_1" = callPackage 174990 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 174991 , hspec-discover, massiv, massiv-test, persist, primitive 174992 , QuickCheck 174993 }: 174994 mkDerivation { 174995 pname = "massiv-persist"; 174996 + version = "1.0.0.1"; 174997 + sha256 = "1j5vzk5m2r1cs5v5pzmf1i7p8zdlf29g0gdklf6snl9llk755pgy"; 174998 libraryHaskellDepends = [ 174999 base bytestring deepseq massiv persist primitive 175000 ]; ··· 175049 broken = true; 175050 }) {}; 175051 175052 + "massiv-serialise_1_0_0_1" = callPackage 175053 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 175054 , massiv, massiv-test, QuickCheck, serialise, vector 175055 }: 175056 mkDerivation { 175057 pname = "massiv-serialise"; 175058 + version = "1.0.0.1"; 175059 + sha256 = "0zmikmfjjshf9p0fawcg05832hxdzj04kqqh11bz1kqcc1yc7yk0"; 175060 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 175061 testHaskellDepends = [ 175062 base doctest hspec massiv massiv-test QuickCheck serialise ··· 178417 license = lib.licenses.bsd3; 178418 }) {}; 178419 178420 + "microstache_1_0_2" = callPackage 178421 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 178422 + , directory, filepath, hspec, parsec, text, transformers 178423 + , unordered-containers, vector 178424 + }: 178425 + mkDerivation { 178426 + pname = "microstache"; 178427 + version = "1.0.2"; 178428 + sha256 = "0pirywb9304j2ylasskwq20k6d2srk616sh41l4s37yajsjggx5i"; 178429 + libraryHaskellDepends = [ 178430 + aeson base containers deepseq directory filepath parsec text 178431 + transformers unordered-containers vector 178432 + ]; 178433 + testHaskellDepends = [ 178434 + aeson base bytestring containers hspec parsec text 178435 + ]; 178436 + description = "Mustache templates for Haskell"; 178437 + license = lib.licenses.bsd3; 178438 + hydraPlatforms = lib.platforms.none; 178439 + }) {}; 178440 + 178441 "microtimer" = callPackage 178442 ({ mkDerivation, base, time }: 178443 mkDerivation { ··· 183128 pname = "months"; 183129 version = "0.2"; 183130 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 183131 + revision = "3"; 183132 + editedCabalFile = "1j57vvb2vs0jd5jsq2dh0q5wpvxibwn43dwkg1l3ysl46k5sv58i"; 183133 libraryHaskellDepends = [ 183134 aeson attoparsec base base-compat deepseq hashable intervals 183135 QuickCheck text time-compat ··· 186444 pname = "mustache"; 186445 version = "2.3.1"; 186446 sha256 = "0j5kzlirirnj2lscxgc6r9j0if8s3pvxswjblma6yxpw6qyzk2xc"; 186447 + revision = "1"; 186448 + editedCabalFile = "05qsxxpbqacfbvdzmz2y2yh3rpf2f0n2rvhvmhn33gsvydxvadbv"; 186449 isLibrary = true; 186450 isExecutable = true; 186451 libraryHaskellDepends = [ ··· 188943 license = lib.licenses.bsd3; 188944 }) {inherit (pkgs) libsodium;}; 188945 188946 + "netcode-io_0_0_3" = callPackage 188947 + ({ mkDerivation, base, bindings-DSL, libsodium }: 188948 + mkDerivation { 188949 + pname = "netcode-io"; 188950 + version = "0.0.3"; 188951 + sha256 = "132rih1fd2qdshnpb8q3glhwgc8790pm8xpm3786hnrl3di1384z"; 188952 + isLibrary = true; 188953 + isExecutable = true; 188954 + libraryHaskellDepends = [ base bindings-DSL ]; 188955 + librarySystemDepends = [ libsodium ]; 188956 + description = "Bindings to the low-level netcode.io library."; 188957 + license = lib.licenses.bsd3; 188958 + hydraPlatforms = lib.platforms.none; 188959 + }) {inherit (pkgs) libsodium;}; 188960 + 188961 "netcore" = callPackage 188962 ({ mkDerivation, ansi-wl-pprint, base, bimap, binary, binary-strict 188963 , bytestring, containers, fgl, HList, hslogger, HUnit, mtl ··· 192656 platforms = [ 192657 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 192658 ]; 192659 + hydraPlatforms = lib.platforms.none; 192660 }) {}; 192661 192662 "notmuch" = callPackage ··· 193406 pname = "numeric-kinds"; 193407 version = "0.1.0.0"; 193408 sha256 = "0rdx39wa7kklx9a7i5rdwf541fxpz9v3n32rvy2fa6i7n4hr64s4"; 193409 + revision = "1"; 193410 + editedCabalFile = "0zbn5yxga0sknpa83a6v2gx3dhi1rgxlxh0p3d1gd37x2zyd8lxf"; 193411 libraryHaskellDepends = [ base ]; 193412 + description = "Type-level numeric types and classes"; 193413 license = lib.licenses.asl20; 193414 }) {}; 193415 ··· 193432 pname = "numeric-logarithms"; 193433 version = "0.1.0.0"; 193434 sha256 = "1izd7gc9xdrs7a1wbzmhhkv8s9rw2mcq77agvr351dc5jyzdnwiy"; 193435 + revision = "2"; 193436 + editedCabalFile = "11lxh2lz3adwdb1hgxgqh2p2igqzbclpwal072fhdk1hcz987acq"; 193437 libraryHaskellDepends = [ base integer-gmp ]; 193438 testHaskellDepends = [ 193439 base integer-gmp QuickCheck test-framework 193440 test-framework-quickcheck2 193441 ]; 193442 + description = "Integral and rational log2 algorithms"; 193443 license = lib.licenses.asl20; 193444 }) {}; 193445 ··· 195531 license = lib.licenses.bsd3; 195532 }) {}; 195533 195534 + "opc-xml-da-client" = callPackage 195535 + ({ mkDerivation, acc, attoparsec, attoparsec-data, base, base64 195536 + , binary, bytestring, caerbannog, containers, data-default, domain 195537 + , domain-optics, hashable, hashable-time, http-client, QuickCheck 195538 + , quickcheck-instances, rerebase, scientific, tasty, tasty-hunit 195539 + , tasty-quickcheck, text, text-builder, time, transformers 195540 + , unordered-containers, vector, vector-instances, xml-conduit 195541 + , xml-parser 195542 + }: 195543 + mkDerivation { 195544 + pname = "opc-xml-da-client"; 195545 + version = "0.1"; 195546 + sha256 = "0wi2qv4594fz3z6jqdmqnxv17w1yp5ds8xwflnxawb6lpadprskp"; 195547 + libraryHaskellDepends = [ 195548 + acc attoparsec attoparsec-data base base64 bytestring containers 195549 + data-default domain domain-optics hashable hashable-time 195550 + http-client QuickCheck rerebase scientific text text-builder time 195551 + transformers unordered-containers vector vector-instances 195552 + xml-conduit xml-parser 195553 + ]; 195554 + testHaskellDepends = [ 195555 + attoparsec binary caerbannog data-default http-client QuickCheck 195556 + quickcheck-instances rerebase tasty tasty-hunit tasty-quickcheck 195557 + text-builder xml-conduit xml-parser 195558 + ]; 195559 + doHaddock = false; 195560 + description = "OPC XML-DA Client"; 195561 + license = lib.licenses.mit; 195562 + hydraPlatforms = lib.platforms.none; 195563 + }) {}; 195564 + 195565 "open-adt" = callPackage 195566 ({ mkDerivation, base, constraints, recursion-schemes, row-types 195567 , template-haskell ··· 196888 pname = "operational"; 196889 version = "0.2.4.0"; 196890 sha256 = "1hwmwbsxzwv68b39rv4gn3da6irv8zm89gqrkc3rdsgwi5ziyn3i"; 196891 + revision = "1"; 196892 + editedCabalFile = "1b5vjp87lh34lpp9i4mrwcmr6rs45r6azdamwinlhrxynn91n8ri"; 196893 isLibrary = true; 196894 isExecutable = true; 196895 libraryHaskellDepends = [ base mtl ]; ··· 197464 maintainers = with lib.maintainers; [ Gabriel439 ]; 197465 }) {}; 197466 197467 + "optparse-generic_1_4_6" = callPackage 197468 + ({ mkDerivation, base, bytestring, Only, optparse-applicative 197469 + , system-filepath, text, time, transformers, transformers-compat 197470 + , void 197471 + }: 197472 + mkDerivation { 197473 + pname = "optparse-generic"; 197474 + version = "1.4.6"; 197475 + sha256 = "1ihr5ly5xkhhds7frifgy1djay1d7yvdc617qqb7h61h4930kl3k"; 197476 + libraryHaskellDepends = [ 197477 + base bytestring Only optparse-applicative system-filepath text time 197478 + transformers transformers-compat void 197479 + ]; 197480 + description = "Auto-generate a command-line parser for your datatype"; 197481 + license = lib.licenses.bsd3; 197482 + hydraPlatforms = lib.platforms.none; 197483 + maintainers = with lib.maintainers; [ Gabriel439 ]; 197484 + }) {}; 197485 + 197486 "optparse-helper" = callPackage 197487 ({ mkDerivation, base, optparse-applicative }: 197488 mkDerivation { ··· 198165 }: 198166 mkDerivation { 198167 pname = "os-release"; 198168 + version = "1.0.2.1"; 198169 + sha256 = "0fyf6mjk4lmxvjgkvsz7ypx2ir67ry816wa6j7s27a1754cz6cw3"; 198170 libraryHaskellDepends = [ 198171 aeson base megaparsec safe-exceptions text unordered-containers 198172 ]; ··· 204245 pname = "persistent"; 204246 version = "2.13.1.2"; 204247 sha256 = "09si4h64i9drqr80a2sxpxhmsinacqx9bvsc3jah5zlm915q092y"; 204248 + revision = "1"; 204249 + editedCabalFile = "0xasbm1m5az7anp1wqfr69j0b7jycg82qdcq4kd97lqdn7rqvhsp"; 204250 libraryHaskellDepends = [ 204251 aeson attoparsec base base64-bytestring blaze-html bytestring 204252 conduit containers fast-logger http-api-data lift-type monad-logger ··· 205871 }: 205872 mkDerivation { 205873 pname = "phonetic-languages-simplified-examples-common"; 205874 + version = "0.2.0.0"; 205875 + sha256 = "1v2v571rjmfxqzdnm7z2v3dygknlk5nyvfyv7dkgzf7apmlmnpd2"; 205876 libraryHaskellDepends = [ 205877 base heaps mmsyn2-array phonetic-languages-constraints-array 205878 phonetic-languages-ukrainian-array ··· 205918 }: 205919 mkDerivation { 205920 pname = "phonetic-languages-simplified-generalized-examples-common"; 205921 + version = "0.3.0.0"; 205922 + sha256 = "1ajgp4wyfdzvvnj5272r0cpl9jykps5bwzn93asmfbilzfdjaynz"; 205923 libraryHaskellDepends = [ 205924 base heaps phonetic-languages-phonetics-basics 205925 ]; ··· 209901 hydraPlatforms = lib.platforms.none; 209902 }) {}; 209903 209904 + "polysemy-check" = callPackage 209905 + ({ mkDerivation, base, containers, hspec, hspec-discover 209906 + , kind-generics, kind-generics-th, polysemy, polysemy-plugin 209907 + , QuickCheck 209908 + }: 209909 + mkDerivation { 209910 + pname = "polysemy-check"; 209911 + version = "0.3.0.0"; 209912 + sha256 = "1m7m1mi7fbf1nj98c91qxhbnhyqxgb8y7ryj7bk1llinmp2lmwaz"; 209913 + libraryHaskellDepends = [ 209914 + base containers kind-generics kind-generics-th polysemy QuickCheck 209915 + ]; 209916 + testHaskellDepends = [ 209917 + base containers hspec kind-generics kind-generics-th polysemy 209918 + polysemy-plugin QuickCheck 209919 + ]; 209920 + testToolDepends = [ hspec-discover ]; 209921 + description = "QuickCheck for Polysemy"; 209922 + license = lib.licenses.bsd3; 209923 + hydraPlatforms = lib.platforms.none; 209924 + }) {}; 209925 + 209926 "polysemy-chronos" = callPackage 209927 ({ mkDerivation, aeson, base, chronos, containers, hedgehog 209928 , polysemy, polysemy-test, polysemy-time, relude, tasty ··· 211172 pname = "portray"; 211173 version = "0.2.0"; 211174 sha256 = "1kzzvwqphlg1dmd486ijkv6vsqmxnp8h05mwc8590yjxdln5vzdw"; 211175 + revision = "1"; 211176 + editedCabalFile = "0bl0kagjn1k58pq6zbdj2zyzhpdpzs7ra1vrr8a1qdkb11gmp4n2"; 211177 libraryHaskellDepends = [ base containers text wrapped ]; 211178 testHaskellDepends = [ 211179 base containers HUnit test-framework test-framework-hunit text 211180 wrapped 211181 ]; 211182 + description = "Rendering to pseudo-Haskell syntax"; 211183 license = lib.licenses.asl20; 211184 }) {}; 211185 ··· 211189 pname = "portray-diff"; 211190 version = "0.1.0.1"; 211191 sha256 = "1da884cj865q6g1bd1fhcazyl1nzxb0pk2nvhcpp4iqkjvhyd8hw"; 211192 + revision = "1"; 211193 + editedCabalFile = "1dfl488jq79l0k8d8s2q1wxdibvnrrl64sz8gdy9mp0nkd6vaszl"; 211194 libraryHaskellDepends = [ 211195 base containers dlist portray text wrapped 211196 ]; 211197 + description = "Pretty structural diffs between two values"; 211198 license = lib.licenses.asl20; 211199 }) {}; 211200 ··· 211205 pname = "portray-diff-hunit"; 211206 version = "0.1.0.0"; 211207 sha256 = "0gig1gvw0s7cl4jbffqh53r7lfs08clkcjpdypjjbpk0815pk34h"; 211208 + revision = "1"; 211209 + editedCabalFile = "023p7j386zbcmzsbdk7xk85ygi8qq4llh6zp6811grsyq3hfnsa1"; 211210 libraryHaskellDepends = [ 211211 base HUnit portray-diff portray-pretty pretty 211212 ]; 211213 + description = "HUnit assertions based on portray-diff"; 211214 license = lib.licenses.asl20; 211215 }) {}; 211216 ··· 211220 pname = "portray-diff-quickcheck"; 211221 version = "0.1.0.0"; 211222 sha256 = "1kif82y8bapf5d3awkfv7wp3ih89q3p14djanyz6jfapryhccm12"; 211223 + revision = "1"; 211224 + editedCabalFile = "0nf5wxwvs9sad3bphb8dci5d3nr982nr05y99fmsy3vdifi366l2"; 211225 libraryHaskellDepends = [ 211226 base portray-diff portray-pretty QuickCheck 211227 ]; 211228 + description = "QuickCheck tests with portray-diff"; 211229 license = lib.licenses.asl20; 211230 }) {}; 211231 ··· 211237 pname = "portray-pretty"; 211238 version = "0.1.0.2"; 211239 sha256 = "1gh50r77yz1l8qkhdz96bds2l0d5zi75fkir27x3si406h7sdic9"; 211240 + revision = "1"; 211241 + editedCabalFile = "0v30gdwjb0339q5phkbnwxj687w33rgivy772j37vp51zpiylnak"; 211242 libraryHaskellDepends = [ base portray portray-diff pretty text ]; 211243 testHaskellDepends = [ 211244 base HUnit portray portray-diff pretty test-framework 211245 test-framework-hunit text 211246 ]; 211247 + description = "Portray backend for pretty"; 211248 license = lib.licenses.asl20; 211249 }) {}; 211250 ··· 211257 pname = "portray-prettyprinter"; 211258 version = "0.2.0"; 211259 sha256 = "16g55vjcfawx1jxmgy3zgl6bqv67h831z00912fbfh878s1s24ic"; 211260 + revision = "1"; 211261 + editedCabalFile = "1w7y8j2sx9wjyv5iknxjyq3r02l1kym85k1gq6carr49lf05s567"; 211262 libraryHaskellDepends = [ 211263 base portray portray-diff prettyprinter prettyprinter-ansi-terminal 211264 text ··· 211268 prettyprinter-ansi-terminal QuickCheck test-framework 211269 test-framework-hunit test-framework-quickcheck2 text 211270 ]; 211271 + description = "Portray backend for prettyprinter"; 211272 license = lib.licenses.asl20; 211273 }) {}; 211274 ··· 211709 license = lib.licenses.mit; 211710 }) {}; 211711 211712 + "postgresql-binary_0_12_4_2" = callPackage 211713 + ({ mkDerivation, aeson, base, binary-parser, bytestring 211714 + , bytestring-strict-builder, containers, conversion 211715 + , conversion-bytestring, conversion-text, criterion, json-ast 211716 + , network-ip, postgresql-libpq, QuickCheck, quickcheck-instances 211717 + , rerebase, scientific, tasty, tasty-hunit, tasty-quickcheck, text 211718 + , time, transformers, unordered-containers, uuid, vector 211719 + }: 211720 + mkDerivation { 211721 + pname = "postgresql-binary"; 211722 + version = "0.12.4.2"; 211723 + sha256 = "1bklkkf0r5dimdxgmgcviircv87ahv0g4nmkl34kc13pwn6l7xjm"; 211724 + libraryHaskellDepends = [ 211725 + aeson base binary-parser bytestring bytestring-strict-builder 211726 + containers network-ip scientific text time transformers 211727 + unordered-containers uuid vector 211728 + ]; 211729 + testHaskellDepends = [ 211730 + aeson conversion conversion-bytestring conversion-text json-ast 211731 + network-ip postgresql-libpq QuickCheck quickcheck-instances 211732 + rerebase tasty tasty-hunit tasty-quickcheck 211733 + ]; 211734 + benchmarkHaskellDepends = [ criterion rerebase ]; 211735 + description = "Encoders and decoders for the PostgreSQL's binary format"; 211736 + license = lib.licenses.mit; 211737 + hydraPlatforms = lib.platforms.none; 211738 + }) {}; 211739 + 211740 "postgresql-common" = callPackage 211741 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 211742 mkDerivation { ··· 212095 pname = "postgresql-simple"; 212096 version = "0.6.4"; 212097 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 212098 + revision = "3"; 212099 + editedCabalFile = "1gx4vjk99lr10bcvdismr84i6rpl5ny0j08f7f7rq9j8hivj0frp"; 212100 libraryHaskellDepends = [ 212101 aeson attoparsec base bytestring bytestring-builder 212102 case-insensitive containers hashable Only postgresql-libpq ··· 215235 testHaskellDepends = [ async base bytestring hspec unix ]; 215236 description = "Ergonomic process launching with extreme flexibility and speed"; 215237 license = lib.licenses.mit; 215238 }) {}; 215239 215240 "procrastinating-structure" = callPackage ··· 216401 }: 216402 mkDerivation { 216403 pname = "proto-lens"; 216404 + version = "0.7.1.0"; 216405 + sha256 = "0b5wn89d23p87swjbafndrbmklix360amcq5jsl73zaqlh3vy4sy"; 216406 enableSeparateDataOutput = true; 216407 libraryHaskellDepends = [ 216408 base bytestring containers deepseq ghc-prim lens-family parsec ··· 216421 }: 216422 mkDerivation { 216423 pname = "proto-lens-arbitrary"; 216424 + version = "0.1.2.10"; 216425 + sha256 = "1dx82fx4q2q58xavkw62ws34vikpg5g6p0w3mpvn0pigwykjnzda"; 216426 libraryHaskellDepends = [ 216427 base bytestring containers lens-family proto-lens QuickCheck text 216428 ]; ··· 216492 ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 216493 mkDerivation { 216494 pname = "proto-lens-optparse"; 216495 + version = "0.1.1.8"; 216496 + sha256 = "1y5ygqzwyvphxyj6qr5cnknjk06rs6h0xlbwa864p6hjwlayapcn"; 216497 libraryHaskellDepends = [ 216498 base optparse-applicative proto-lens text 216499 ]; ··· 216510 }: 216511 mkDerivation { 216512 pname = "proto-lens-protobuf-types"; 216513 + version = "0.7.1.0"; 216514 + sha256 = "0yrwif600lr2pmqfninwap348k4xg5mvzx9cqp99gdgkknfb88hn"; 216515 setupHaskellDepends = [ base Cabal proto-lens-setup ]; 216516 libraryHaskellDepends = [ 216517 base lens-family proto-lens proto-lens-runtime text ··· 216528 }: 216529 mkDerivation { 216530 pname = "proto-lens-protoc"; 216531 + version = "0.7.1.0"; 216532 + sha256 = "14lbal80mrwla51h3yax8v1hsd05mh5xyipc051n0jkxdifs1cv5"; 216533 isLibrary = true; 216534 isExecutable = true; 216535 libraryHaskellDepends = [ base filepath ]; ··· 216548 }: 216549 mkDerivation { 216550 pname = "proto-lens-runtime"; 216551 + version = "0.7.0.1"; 216552 + sha256 = "03dxnawrsz22s52qzfwgnzs18r7mdb1jvirsck2g62bh5incg80a"; 216553 libraryHaskellDepends = [ 216554 base bytestring containers deepseq filepath lens-family proto-lens 216555 text vector ··· 216564 }: 216565 mkDerivation { 216566 pname = "proto-lens-setup"; 216567 + version = "0.4.0.5"; 216568 + sha256 = "1zl6srfsa4nizrrrbm7b69200w42rfmxmyzdzgb3cl0675ks2r28"; 216569 libraryHaskellDepends = [ 216570 base bytestring Cabal containers deepseq directory filepath process 216571 proto-lens-protoc temporary text ··· 220606 }: 220607 mkDerivation { 220608 pname = "raaz"; 220609 + version = "0.3.5"; 220610 + sha256 = "1b1xwsh01d5p685r85w0mlnf6ldqzy57vrbcsnr9lgdn6bjhvlih"; 220611 isLibrary = true; 220612 isExecutable = true; 220613 enableSeparateDataOutput = true; ··· 221062 }: 221063 mkDerivation { 221064 pname = "ralist"; 221065 + version = "0.4.0.0"; 221066 + sha256 = "1axn2mh1jiz5d39ygf0hg7a0bkywnld4j8jjkflycks1yr7mxha1"; 221067 libraryHaskellDepends = [ 221068 base deepseq indexed-traversable transformers 221069 ]; ··· 234369 license = lib.licenses.bsd3; 234370 }) {}; 234371 234372 + "scheduler_2_0_0_1" = callPackage 234373 + ({ mkDerivation, atomic-primops, base, deepseq, exceptions 234374 + , genvalidity-hspec, hspec, hspec-discover, primitive, pvar 234375 + , QuickCheck, unliftio, unliftio-core 234376 }: 234377 mkDerivation { 234378 pname = "scheduler"; 234379 + version = "2.0.0.1"; 234380 + sha256 = "1hdqm04m3n5y3xrhilj0hykrmqdsjz5p6k2p9y1005khkj5dag9f"; 234381 libraryHaskellDepends = [ 234382 atomic-primops base deepseq exceptions primitive pvar unliftio-core 234383 ]; 234384 testHaskellDepends = [ 234385 + base deepseq genvalidity-hspec hspec QuickCheck unliftio 234386 ]; 234387 testToolDepends = [ hspec-discover ]; 234388 description = "Work stealing scheduler"; ··· 234875 pname = "scotty"; 234876 version = "0.12"; 234877 sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1"; 234878 + revision = "6"; 234879 + editedCabalFile = "15gwvx9gdk4vxh1x2n5xvnrix8m0wl96a4aqbdmdfrka43sywfma"; 234880 libraryHaskellDepends = [ 234881 aeson base base-compat-batteries blaze-builder bytestring 234882 case-insensitive data-default-class exceptions fail http-types ··· 236914 pname = "semigroupoids"; 236915 version = "5.3.6"; 236916 sha256 = "0glhqc9x8i5z3bdg23xvl2lfns95msid3h3x0jksna7i6c8j869n"; 236917 + revision = "1"; 236918 + editedCabalFile = "0inbks8x588bpcw7kyap69iy0zrkygycp8hwgrd9yhbxlvj9hmh9"; 236919 libraryHaskellDepends = [ 236920 base base-orphans bifunctors comonad containers contravariant 236921 distributive hashable tagged template-haskell transformers ··· 238229 }: 238230 mkDerivation { 238231 pname = "servant-benchmark"; 238232 + version = "0.2.0.0"; 238233 + sha256 = "0dxyq9n0v09287nz1nqb2m0bdyabdzqig9avpmx4viyf9xzyh6bd"; 238234 libraryHaskellDepends = [ 238235 aeson base base64-bytestring bytestring case-insensitive http-media 238236 http-types QuickCheck servant text yaml ··· 238348 ]; 238349 description = "Command line interface for Servant API clients"; 238350 license = lib.licenses.bsd3; 238351 }) {}; 238352 238353 "servant-client" = callPackage ··· 238901 ]; 238902 description = "Servant combinators to facilitate writing GitHub webhooks"; 238903 license = lib.licenses.mit; 238904 + hydraPlatforms = lib.platforms.none; 238905 }) {}; 238906 238907 "servant-haxl-client" = callPackage ··· 239420 }: 239421 mkDerivation { 239422 pname = "servant-pagination"; 239423 + version = "2.4.1"; 239424 + sha256 = "181an5p0qfzbv3cirnaq8bw778iib4qhv53y60z1ssn16v2vxhq5"; 239425 isLibrary = true; 239426 isExecutable = true; 239427 libraryHaskellDepends = [ ··· 240292 }: 240293 mkDerivation { 240294 pname = "servant-to-elm"; 240295 + version = "0.4.3.0"; 240296 + sha256 = "1s63x270bci7nyz595azff1ny868jjpqbilmy01rzbspjrfhwi7d"; 240297 isLibrary = true; 240298 isExecutable = true; 240299 libraryHaskellDepends = [ ··· 241269 license = lib.licenses.bsd3; 241270 }) {}; 241271 241272 + "sexp-grammar_2_3_3_1" = callPackage 241273 + ({ mkDerivation, alex, array, base, bytestring, containers 241274 + , criterion, data-fix, deepseq, happy, invertible-grammar 241275 + , prettyprinter, QuickCheck, recursion-schemes, scientific 241276 + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text 241277 + , utf8-string 241278 + }: 241279 + mkDerivation { 241280 + pname = "sexp-grammar"; 241281 + version = "2.3.3.1"; 241282 + sha256 = "08sqpk5qgq3mqlxvz24sw43m52khynpf41cnd4yif4b4ri583mb9"; 241283 + libraryHaskellDepends = [ 241284 + array base bytestring containers data-fix deepseq 241285 + invertible-grammar prettyprinter recursion-schemes scientific 241286 + semigroups text utf8-string 241287 + ]; 241288 + libraryToolDepends = [ alex happy ]; 241289 + testHaskellDepends = [ 241290 + base bytestring containers invertible-grammar prettyprinter 241291 + QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck 241292 + text 241293 + ]; 241294 + benchmarkHaskellDepends = [ 241295 + base bytestring criterion deepseq text 241296 + ]; 241297 + description = "Invertible grammar combinators for S-expressions"; 241298 + license = lib.licenses.bsd3; 241299 + hydraPlatforms = lib.platforms.none; 241300 + }) {}; 241301 + 241302 "sexp-show" = callPackage 241303 ({ mkDerivation, base, pretty-show }: 241304 mkDerivation { ··· 242121 pname = "shakespeare"; 242122 version = "2.0.25"; 242123 sha256 = "1fjv3yg425d87d3dih0l3ff95g5a5yp9w85m58sjara6xqivj9s4"; 242124 + revision = "1"; 242125 + editedCabalFile = "0na31a7h3sq8ndrx79waywsfj5667pm0masy10gxzhzwmf6i3s1l"; 242126 libraryHaskellDepends = [ 242127 aeson base blaze-html blaze-markup bytestring containers directory 242128 exceptions ghc-prim parsec process scientific template-haskell text ··· 242938 pname = "short-vec"; 242939 version = "0.1.0.0"; 242940 sha256 = "0w651jipwxh7k4ng5rvq507br4347hzy8x8c47c1g7haryj80gzq"; 242941 + revision = "4"; 242942 + editedCabalFile = "1rwzaxdpkrn1v7p8jph4m91vyphdzm9h2yppnmanp636p0sjxzf4"; 242943 libraryHaskellDepends = [ 242944 adjunctions base data-default-class deepseq distributive fin-int 242945 indexed-traversable integer-gmp portray portray-diff QuickCheck ··· 242956 gauge indexed-traversable integer-gmp portray portray-diff 242957 QuickCheck semigroupoids sint 242958 ]; 242959 + description = "Length-indexed vectors using SmallArray#"; 242960 license = lib.licenses.asl20; 242961 + hydraPlatforms = lib.platforms.none; 242962 + broken = true; 242963 }) {}; 242964 242965 "short-vec-lens" = callPackage ··· 242970 pname = "short-vec-lens"; 242971 version = "0.1.0.0"; 242972 sha256 = "1afz1izz19xrjy0cdhmpy7b667waa5v8jh1ps3jpjfpgbmysjz3g"; 242973 + revision = "1"; 242974 + editedCabalFile = "1bkvx7csgqdn16kamih5h797pcg3ppcf6gln7lf01bw9pd5hpkkb"; 242975 libraryHaskellDepends = [ 242976 base fin-int indexed-traversable lens short-vec sint 242977 ]; 242978 description = "Lenses and related functionality for the `short-vec` package"; 242979 license = lib.licenses.asl20; 242980 + hydraPlatforms = lib.platforms.none; 242981 }) {}; 242982 242983 "shortbytestring" = callPackage ··· 248861 pname = "snumber"; 248862 version = "0.1.0.0"; 248863 sha256 = "0f340hzhhmiy342c5250m61f3gkcnfymjbd2a13alzdh7pmhb2mg"; 248864 + revision = "1"; 248865 + editedCabalFile = "0cc7chg4qhqlrkdv2m7y514gs9lm1hixwaw543dv47vqb12063im"; 248866 libraryHaskellDepends = [ base numeric-kinds ]; 248867 + description = "Integer singletons with flexible representation"; 248868 license = lib.licenses.asl20; 248869 }) {}; 248870 ··· 252900 pname = "stackcollapse-ghc"; 252901 version = "0.0.1.4"; 252902 sha256 = "1scqjjp1cpz3zzvqa6wmfz11qrhsbqwgq7h8qjg0d8ri3r9z82lb"; 252903 + revision = "1"; 252904 + editedCabalFile = "0k4gayvmjdfvfbyxjcmw1hk9vi90l0f9p3npi4rv2wwn1pl00vgm"; 252905 isLibrary = false; 252906 isExecutable = true; 252907 executableHaskellDepends = [ ··· 256421 ({ mkDerivation, base }: 256422 mkDerivation { 256423 pname = "string-interpreter"; 256424 + version = "0.5.4.1"; 256425 + sha256 = "1dgmqircw5gz62crxzx3d7gk2xyvmcwqdy15rpjgy2q7q5brcv7h"; 256426 libraryHaskellDepends = [ base ]; 256427 description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; 256428 license = lib.licenses.mit; ··· 257079 license = lib.licenses.bsd3; 257080 }) {}; 257081 257082 + "structured_0_1_1" = callPackage 257083 + ({ mkDerivation, aeson, array, base, base16-bytestring, binary 257084 + , bytestring, containers, hashable, scientific, tagged, text 257085 + , time-compat, transformers, unordered-containers, uuid-types 257086 + , vector 257087 + }: 257088 + mkDerivation { 257089 + pname = "structured"; 257090 + version = "0.1.1"; 257091 + sha256 = "1mz02ys85z79nj24ylsmgh8v2m7zv2rixf7w0iqnwc49lax52w4q"; 257092 + libraryHaskellDepends = [ 257093 + aeson array base base16-bytestring binary bytestring containers 257094 + hashable scientific tagged text time-compat transformers 257095 + unordered-containers uuid-types vector 257096 + ]; 257097 + description = "Structure (hash) of your data types"; 257098 + license = lib.licenses.bsd3; 257099 + hydraPlatforms = lib.platforms.none; 257100 + }) {}; 257101 + 257102 "structured-cli" = callPackage 257103 ({ mkDerivation, base, data-default, exceptions, haskeline, mtl 257104 , split, transformers ··· 258503 libraryPkgconfigDepends = [ librsvg ]; 258504 description = "Binding to the libsvg-cairo library"; 258505 license = lib.licenses.bsd3; 258506 + hydraPlatforms = lib.platforms.none; 258507 + broken = true; 258508 }) {inherit (pkgs) librsvg;}; 258509 258510 "svgone" = callPackage ··· 259016 license = "unknown"; 259017 }) {}; 259018 259019 + "sydtest_0_4_1_0" = callPackage 259020 ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 259021 , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 259022 , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle ··· 259025 }: 259026 mkDerivation { 259027 pname = "sydtest"; 259028 + version = "0.4.1.0"; 259029 + sha256 = "1g63qq1hisfpnic9sl2a8bry1wyr6ccdcq0l2dagdnggripjgdl1"; 259030 libraryHaskellDepends = [ 259031 async base bytestring containers Diff dlist envparse filepath 259032 MonadRandom mtl optparse-applicative path path-io pretty-show ··· 262261 pname = "taskwarrior"; 262262 version = "0.3.0.0"; 262263 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 262264 + revision = "6"; 262265 + editedCabalFile = "02jag4yib1fqf2fp9p323hb3vsbkrqm1k9zp2wag6ysl5kvvq1x6"; 262266 libraryHaskellDepends = [ 262267 aeson base bytestring containers process random text time 262268 unordered-containers uuid ··· 264339 pname = "ten"; 264340 version = "0.1.0.2"; 264341 sha256 = "0djvcb2l9dnnjbhivchi6yyaj5i96jmy7yhr9x3paiz1l54brrqx"; 264342 + revision = "1"; 264343 + editedCabalFile = "1dcr49q8g3wr1glhlawvg4bbz3mykvwnx7z9pw1ssvk9w7839z6r"; 264344 libraryHaskellDepends = [ 264345 adjunctions base data-default-class deepseq distributive hashable 264346 portray portray-diff some text transformers wrapped ··· 264350 HUnit portray portray-diff some test-framework test-framework-hunit 264351 text transformers wrapped 264352 ]; 264353 + description = "Functors et al. over arity-1 type constructors"; 264354 license = lib.licenses.asl20; 264355 }) {}; 264356 ··· 264375 pname = "ten-unordered-containers"; 264376 version = "0.1.0.2"; 264377 sha256 = "0y4aw77ix2ay43l8n17322hbmm1npcdr1bl7kdza377jd1ci20px"; 264378 + revision = "1"; 264379 + editedCabalFile = "196gjc39c0x4p444byh7mwnhf9ci7dxhmxl602ha52fr554cdh0j"; 264380 libraryHaskellDepends = [ 264381 base hashable portray portray-diff some ten unordered-containers 264382 wrapped ··· 264386 portray-pretty some ten ten-lens test-framework 264387 test-framework-hunit text transformers unordered-containers wrapped 264388 ]; 264389 + description = "Higher-kinded hash containers"; 264390 license = lib.licenses.asl20; 264391 }) {}; 264392 ··· 266496 license = lib.licenses.bsd3; 266497 }) {}; 266498 266499 + "text-short_0_1_4" = callPackage 266500 + ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim 266501 + , hashable, quickcheck-instances, tasty, tasty-hunit 266502 + , tasty-quickcheck, template-haskell, text 266503 + }: 266504 + mkDerivation { 266505 + pname = "text-short"; 266506 + version = "0.1.4"; 266507 + sha256 = "1p56cjm6f883ajb54y8hmrl01sqda6a36xvbmgjv3mb9gxv953v4"; 266508 + libraryHaskellDepends = [ 266509 + base binary bytestring deepseq ghc-prim hashable template-haskell 266510 + text 266511 + ]; 266512 + testHaskellDepends = [ 266513 + base binary bytestring quickcheck-instances tasty tasty-hunit 266514 + tasty-quickcheck template-haskell text 266515 + ]; 266516 + description = "Memory-efficient representation of Unicode text strings"; 266517 + license = lib.licenses.bsd3; 266518 + hydraPlatforms = lib.platforms.none; 266519 + }) {}; 266520 + 266521 "text-show" = callPackage 266522 ({ mkDerivation, array, base, base-compat-batteries, base-orphans 266523 , bifunctors, bytestring, bytestring-builder, containers, criterion ··· 268145 pname = "threepenny-gui"; 268146 version = "0.9.1.0"; 268147 sha256 = "00sjkfa9qfnnwqfdw68yb8hq6nm1y5qv9896rzn5aachr7mlfpx2"; 268148 + revision = "1"; 268149 + editedCabalFile = "0zdpkp0pl6z4aabikbq30md392gk988fxwcqw10khv1icm143pcc"; 268150 isLibrary = true; 268151 isExecutable = true; 268152 enableSeparateDataOutput = true; ··· 272797 license = lib.licenses.gpl2Plus; 272798 }) {}; 272799 272800 + "tree-diff_0_2_1" = callPackage 272801 + ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base 272802 + , base-compat, bytestring, bytestring-builder, containers 272803 + , criterion, deepseq, Diff, hashable, parsec, parsers, pretty 272804 + , primitive, QuickCheck, scientific, semialign, strict, tagged 272805 + , tasty, tasty-golden, tasty-quickcheck, text, these, time 272806 + , trifecta, unordered-containers, uuid-types, vector 272807 + }: 272808 + mkDerivation { 272809 + pname = "tree-diff"; 272810 + version = "0.2.1"; 272811 + sha256 = "0bybi4qp7nj9117yza5qqgw2f7s6rk3i7q642jqd7sdn3bx5cnap"; 272812 + libraryHaskellDepends = [ 272813 + aeson ansi-terminal ansi-wl-pprint base base-compat bytestring 272814 + bytestring-builder containers deepseq hashable parsec parsers 272815 + pretty primitive QuickCheck scientific semialign strict tagged text 272816 + these time unordered-containers uuid-types vector 272817 + ]; 272818 + testHaskellDepends = [ 272819 + ansi-terminal ansi-wl-pprint base base-compat parsec primitive 272820 + QuickCheck tagged tasty tasty-golden tasty-quickcheck trifecta 272821 + ]; 272822 + benchmarkHaskellDepends = [ base criterion deepseq Diff ]; 272823 + description = "Diffing of (expression) trees"; 272824 + license = lib.licenses.gpl2Plus; 272825 + hydraPlatforms = lib.platforms.none; 272826 + }) {}; 272827 + 272828 "tree-fun" = callPackage 272829 ({ mkDerivation, base, containers, mtl }: 272830 mkDerivation { ··· 284715 license = lib.licenses.bsd3; 284716 }) {}; 284717 284718 + "wai-feature-flags_0_1_0_2" = callPackage 284719 + ({ mkDerivation, aeson, base, bytestring, splitmix, text 284720 + , unordered-containers, wai, warp 284721 + }: 284722 + mkDerivation { 284723 + pname = "wai-feature-flags"; 284724 + version = "0.1.0.2"; 284725 + sha256 = "03w8hskgajvkhjsrj7ynxcx92qghqfd9rfxb5v4wm7wb6lag8qvh"; 284726 + isLibrary = true; 284727 + isExecutable = true; 284728 + enableSeparateDataOutput = true; 284729 + libraryHaskellDepends = [ 284730 + aeson base bytestring splitmix text unordered-containers wai 284731 + ]; 284732 + executableHaskellDepends = [ base wai warp ]; 284733 + description = "Feature flag support for WAI applications"; 284734 + license = lib.licenses.bsd3; 284735 + hydraPlatforms = lib.platforms.none; 284736 + }) {}; 284737 + 284738 "wai-frontend-monadcgi" = callPackage 284739 ({ mkDerivation, base, bytestring, case-insensitive, cgi 284740 , containers, http-types, transformers, wai ··· 286550 ]; 286551 description = "Warp based on QUIC"; 286552 license = lib.licenses.bsd3; 286553 + hydraPlatforms = lib.platforms.none; 286554 + broken = true; 286555 }) {}; 286556 286557 "warp-static" = callPackage ··· 288167 maintainers = with lib.maintainers; [ maralorn ]; 288168 }) {}; 288169 288170 + "weeder_2_3_0" = callPackage 288171 + ({ mkDerivation, algebraic-graphs, base, bytestring, containers 288172 + , dhall, directory, filepath, generic-lens, ghc, lens, mtl 288173 + , optparse-applicative, regex-tdfa, text, transformers 288174 + }: 288175 + mkDerivation { 288176 + pname = "weeder"; 288177 + version = "2.3.0"; 288178 + sha256 = "1l3g0afb0k91qb64kpj18nb53njbv3s5w06rkjf58p7qk6ynk9ig"; 288179 + isLibrary = true; 288180 + isExecutable = true; 288181 + libraryHaskellDepends = [ 288182 + algebraic-graphs base bytestring containers dhall directory 288183 + filepath generic-lens ghc lens mtl optparse-applicative regex-tdfa 288184 + text transformers 288185 + ]; 288186 + executableHaskellDepends = [ 288187 + base bytestring containers directory filepath ghc 288188 + optparse-applicative transformers 288189 + ]; 288190 + description = "Detect dead code"; 288191 + license = lib.licenses.bsd3; 288192 + hydraPlatforms = lib.platforms.none; 288193 + maintainers = with lib.maintainers; [ maralorn ]; 288194 + }) {}; 288195 + 288196 "weekdaze" = callPackage 288197 ({ mkDerivation, array, base, bytestring, Cabal, containers 288198 , cryptohash, data-default, deepseq, directory, extra, factory ··· 289092 pname = "witherable"; 289093 version = "0.4.1"; 289094 sha256 = "1jj2dq0ddaa2v3hksnrv1z1ll19fa4npsqlp7fs4nn5g6833y58b"; 289095 + revision = "1"; 289096 + editedCabalFile = "02l2gbcab7w72hqlbs1ikylgb1970a0iyrikn847nncivbzrc3gj"; 289097 libraryHaskellDepends = [ 289098 base base-orphans containers hashable indexed-traversable 289099 indexed-traversable-instances transformers unordered-containers ··· 290048 pname = "wrapped"; 290049 version = "0.1.0.1"; 290050 sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; 290051 + revision = "1"; 290052 + editedCabalFile = "0qfl0k0bsxhf5zibfdfm08jn82j1nm8pdnmv23znmhv77hpm4li8"; 290053 libraryHaskellDepends = [ base ]; 290054 + description = "Newtypes to carry DerivingVia instances"; 290055 license = lib.licenses.asl20; 290056 }) {}; 290057 ··· 290061 pname = "wrapped-generic-default"; 290062 version = "0.1.0.1"; 290063 sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; 290064 + revision = "1"; 290065 + editedCabalFile = "0i75biqz6qml17yzg3k4q0ms5vzvwph37da1wl3l5v8cjnw2yrs7"; 290066 libraryHaskellDepends = [ base data-default-class wrapped ]; 290067 + description = "A Generic instance of Default"; 290068 license = lib.licenses.asl20; 290069 }) {}; 290070 ··· 292784 }) {}; 292785 292786 "xmonad-dbus" = callPackage 292787 + ({ mkDerivation, base, dbus }: 292788 mkDerivation { 292789 pname = "xmonad-dbus"; 292790 + version = "0.1.0.1"; 292791 + sha256 = "15sqfk4y4arrv0bjzkrw49z1p7k3fqkn4w8pak2j7rki3915iyd4"; 292792 isLibrary = true; 292793 isExecutable = true; 292794 + libraryHaskellDepends = [ base dbus ]; 292795 + executableHaskellDepends = [ base dbus ]; 292796 + testHaskellDepends = [ base dbus ]; 292797 license = lib.licenses.bsd3; 292798 hydraPlatforms = lib.platforms.none; 292799 broken = true; ··· 293855 pname = "yaml"; 293856 version = "0.11.6.0"; 293857 sha256 = "0hxg9mfi1dn9a7kp3imzfvnk7jj4sdjdxi6xyqz9ra7lqg14np3r"; 293858 + revision = "1"; 293859 + editedCabalFile = "1yydwna0x7fj1zw0zkz3n1cfvnwdykblk19wz5bw9rcwp0i0mzkb"; 293860 configureFlags = [ "-fsystem-libyaml" ]; 293861 isLibrary = true; 293862 isExecutable = true; ··· 293873 ]; 293874 description = "Support for parsing and rendering YAML documents"; 293875 license = lib.licenses.bsd3; 293876 + }) {}; 293877 + 293878 + "yaml_0_11_7_0" = callPackage 293879 + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 293880 + , conduit, containers, directory, filepath, hspec, HUnit, libyaml 293881 + , mockery, mtl, raw-strings-qq, resourcet, scientific 293882 + , template-haskell, temporary, text, transformers 293883 + , unordered-containers, vector 293884 + }: 293885 + mkDerivation { 293886 + pname = "yaml"; 293887 + version = "0.11.7.0"; 293888 + sha256 = "0s08kw0hqxixxripwjmz7b4yh9130dws3jaj460x8ds8q4b6khbx"; 293889 + configureFlags = [ "-fsystem-libyaml" ]; 293890 + isLibrary = true; 293891 + isExecutable = true; 293892 + libraryHaskellDepends = [ 293893 + aeson attoparsec base bytestring conduit containers directory 293894 + filepath libyaml mtl resourcet scientific template-haskell text 293895 + transformers unordered-containers vector 293896 + ]; 293897 + testHaskellDepends = [ 293898 + aeson attoparsec base base-compat bytestring conduit containers 293899 + directory filepath hspec HUnit libyaml mockery mtl raw-strings-qq 293900 + resourcet scientific template-haskell temporary text transformers 293901 + unordered-containers vector 293902 + ]; 293903 + description = "Support for parsing and rendering YAML documents"; 293904 + license = lib.licenses.bsd3; 293905 + hydraPlatforms = lib.platforms.none; 293906 }) {}; 293907 293908 "yaml-combinators" = callPackage
+1 -1
pkgs/top-level/release-haskell.nix
··· 305 # package sets (like Cabal, jailbreak-cabal) are 306 # working as expected. 307 cabal-install = all; 308 - Cabal_3_6_1_0 = with compilerNames; [ ghc884 ghc8107 ghc901 ghc921 ]; 309 cabal2nix-unstable = all; 310 funcmp = all; 311 haskell-language-server = all;
··· 305 # package sets (like Cabal, jailbreak-cabal) are 306 # working as expected. 307 cabal-install = all; 308 + Cabal_3_6_2_0 = with compilerNames; [ ghc884 ghc8107 ghc901 ghc921 ]; 309 cabal2nix-unstable = all; 310 funcmp = all; 311 haskell-language-server = all;