Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
f79dcf65 cd69ba56

+1275 -486
+2 -2
nixos/modules/services/x11/display-managers/default.nix
··· 122 122 done 123 123 124 124 if test -d ${pkg}/share/xsessions; then 125 - ${xorg.lndir}/bin/lndir ${pkg}/share/xsessions $out/share/xsessions 125 + ${pkgs.buildPackages.xorg.lndir}/bin/lndir ${pkg}/share/xsessions $out/share/xsessions 126 126 fi 127 127 if test -d ${pkg}/share/wayland-sessions; then 128 - ${xorg.lndir}/bin/lndir ${pkg}/share/wayland-sessions $out/share/wayland-sessions 128 + ${pkgs.buildPackages.xorg.lndir}/bin/lndir ${pkg}/share/wayland-sessions $out/share/wayland-sessions 129 129 fi 130 130 '') cfg.displayManager.sessionPackages} 131 131 '';
+1 -1
nixos/modules/system/boot/systemd-lib.nix
··· 4 4 5 5 let 6 6 cfg = config.systemd; 7 - lndir = "${pkgs.xorg.lndir}/bin/lndir"; 7 + lndir = "${pkgs.buildPackages.xorg.lndir}/bin/lndir"; 8 8 in rec { 9 9 10 10 shellEscape = s: (replaceChars [ "\\" ] [ "\\\\" ] s);
+2 -2
pkgs/data/fonts/recursive/default.nix
··· 1 1 { lib, fetchzip }: 2 2 3 3 let 4 - version = "1.079"; 4 + version = "1.082"; 5 5 in 6 6 fetchzip { 7 7 name = "recursive-${version}"; ··· 14 14 unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype 15 15 ''; 16 16 17 - sha256 = "sha256-nRFjfbbZG9wDHGbGfS+wzViKF/ogWs8i/6OG0rkDHDg="; 17 + sha256 = "1hjyjvzhfgqw58py4gk58fwyp5pxr3j8j76ppj6apg4dndfhs0lp"; 18 18 19 19 meta = with lib; { 20 20 homepage = "https://recursive.design/";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "73463ac080cd55650580d58fe80e5b2dcdfe5a7e", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/73463ac080cd55650580d58fe80e5b2dcdfe5a7e.tar.gz", 4 - "sha256": "1vwlpkrpfj6wdzlv4lwargyakyci81gri70z2jhkpvv3l6adc0gk", 5 - "msg": "Update from Hackage at 2021-10-15T10:42:20Z" 2 + "commit": "b60d5f4b773d16857c105718faad9699e145edcd", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/b60d5f4b773d16857c105718faad9699e145edcd.tar.gz", 4 + "sha256": "19avxynbjhkhvjy5kcxgd3fp0b2nczsk213s1za488r6kksj90f5", 5 + "msg": "Update from Hackage at 2021-10-18T14:27:09Z" 6 6 }
+33 -16
pkgs/development/haskell-modules/configuration-common.nix
··· 49 49 # These packages (and their reverse deps) cannot be built with profiling enabled. 50 50 ghc-heap-view = disableLibraryProfiling super.ghc-heap-view; 51 51 ghc-datasize = disableLibraryProfiling super.ghc-datasize; 52 + ghc-vis = disableLibraryProfiling super.ghc-vis; 52 53 53 54 # This test keeps being aborted because it runs too quietly for too long 54 55 Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2; ··· 1272 1273 gi-cairo-render = doJailbreak super.gi-cairo-render; 1273 1274 gi-cairo-connector = doJailbreak super.gi-cairo-connector; 1274 1275 1275 - svgcairo = overrideCabal super.svgcairo (drv: { 1276 - patches = [ 1277 - # Remove when https://github.com/gtk2hs/svgcairo/pull/10 gets merged. 1278 - (pkgs.fetchpatch { 1279 - url = "https://github.com/gtk2hs/svgcairo/commit/df6c6172b52ecbd32007529d86ba9913ba001306.patch"; 1280 - sha256 = "128qrns56y139vfzg1rbyqfi2xn8gxsmpnxv3zqf4v5spsnprxwh"; 1281 - }) 1282 - # The update here breaks svgcairo: 1283 - # https://github.com/NixOS/nixpkgs/commit/08fcd73d9dc9a28aa901210b259d9bfb3c228018 1284 - # and updating the call to the header with the correct name fixes it. 1285 - (pkgs.fetchpatch { 1286 - url = "https://github.com/dalpd/svgcairo/commit/4dc6d8d3a6c24be0b8c1fd73b282ff247e7b1e6f.patch"; 1287 - sha256 = "1pq9ld9z67zsxj8vqjf82qwckcp69lvvnrjb7wsyb5jc6jaj3q0a"; 1288 - }) 1289 - ]; 1290 - }); 1276 + svgcairo = appendPatches super.svgcairo [ 1277 + # Remove when https://github.com/gtk2hs/svgcairo/pull/12 goes in. 1278 + (pkgs.fetchpatch { 1279 + url = "https://github.com/gtk2hs/svgcairo/commit/348c60b99c284557a522baaf47db69322a0a8b67.patch"; 1280 + sha256 = "0akhq6klmykvqd5wsbdfnnl309f80ds19zgq06sh1mmggi54dnf3"; 1281 + }) 1282 + # Remove when https://github.com/gtk2hs/svgcairo/pull/13 goes in. 1283 + (pkgs.fetchpatch { 1284 + url = "https://github.com/dalpd/svgcairo/commit/d1e0d7ae04c1edca83d5b782e464524cdda6ae85.patch"; 1285 + sha256 = "1pq9ld9z67zsxj8vqjf82qwckcp69lvvnrjb7wsyb5jc6jaj3q0a"; 1286 + }) 1287 + ]; 1291 1288 1292 1289 # Missing -Iinclude parameter to doc-tests (pull has been accepted, so should be resolved when 0.5.3 released) 1293 1290 # https://github.com/lehins/massiv/pull/104 ··· 1827 1824 cabal-install-parsers = self.cabal-install-parsers_0_4_2; 1828 1825 }; 1829 1826 1827 + # Build haskell-ci from git repository, including some useful fixes, 1828 + # e. g. required for generating the workflows for the cabal2nix repository 1829 + haskell-ci-unstable = (overrideSrc super.haskell-ci { 1830 + version = "0.13.20211011"; 1831 + src = pkgs.fetchFromGitHub { 1832 + owner = "haskell-CI"; 1833 + repo = "haskell-ci"; 1834 + rev = "c88e67e675bc4a990da53863c7fb42e67bcf9847"; 1835 + sha256 = "1zhv1cg047lfyxfs3mvc73vv96pn240zaj7f2yl4lw5yj6y5rfk9"; 1836 + }; 1837 + }).overrideScope (self: super: { 1838 + attoparsec = self.attoparsec_0_14_1; 1839 + Cabal = self.Cabal_3_6_2_0; 1840 + }); 1841 + 1830 1842 Frames-streamly = overrideCabal (super.Frames-streamly.override { relude = super.relude_1_0_0_1; }) (drv: { 1831 1843 # https://github.com/adamConnerSax/Frames-streamly/issues/1 1832 1844 patchPhase = '' ··· 2053 2065 # Fixes https://github.com/NixOS/nixpkgs/issues/140613 2054 2066 # https://github.com/recursion-schemes/recursion-schemes/issues/128 2055 2067 recursion-schemes = appendPatch super.recursion-schemes ./patches/recursion-schemes-128.patch; 2068 + 2069 + # Fix from https://github.com/brendanhay/gogol/pull/144 which has seen no release 2070 + # Can't use fetchpatch as it required tweaking the line endings as the .cabal 2071 + # file revision on hackage was gifted CRLF line endings 2072 + gogol-core = appendPatch super.gogol-core ./patches/gogol-core-144.patch; 2056 2073 2057 2074 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+2
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 75 75 weeder = self.weeder_2_3_0; 76 76 generic-lens-core = self.generic-lens-core_2_2_0_0; 77 77 generic-lens = self.generic-lens_2_2_0_0; 78 + th-desugar = self.th-desugar_1_12; 79 + autoapply = self.autoapply_0_4_1_1; 78 80 79 81 # Doesn't allow Dhall 1.39.* 80 82 weeder_2_3_0 = super.weeder_2_3_0.override {
+1 -1
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 86 86 # Tests fail because of typechecking changes 87 87 conduit = dontCheck super.conduit; 88 88 89 - constraints = appendPatch super.constraints (pkgs.fetchpatch { 89 + constraints = appendPatch (doJailbreak super.constraints) (pkgs.fetchpatch { 90 90 url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/constraints-0.13.patch"; 91 91 sha256 = "0cr4qzw0fbwy97f3wx0v3mv8yc642ahpfa80kaqrq191232fzzf3"; 92 92 });
+19 -3
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1299 1299 - event-driven 1300 1300 - eventful-dynamodb 1301 1301 - eventful-sql-common 1302 - - eventlog2html 1303 1302 - eventloop 1304 1303 - eventstore 1305 1304 - ewe ··· 1341 1340 - ez-couch 1342 1341 - Facebook-Password-Hacker-Online-Latest-Version 1343 1342 - faceted 1343 + - factory 1344 1344 - facts 1345 1345 - fadno-braids 1346 1346 - failable-list ··· 1409 1409 - fingertree-tf 1410 1410 - finitary-derive 1411 1411 - firefly-example 1412 + - firestore 1412 1413 - first-and-last 1413 1414 - first-class-instances 1414 1415 - fit ··· 1655 1656 - ghc-tcplugin-api 1656 1657 - ghc-time-alloc-prof 1657 1658 - ghc-usage 1658 - - ghc-vis 1659 1659 - gh-labeler 1660 1660 - giak 1661 1661 - Gifcurry ··· 1717 1717 - gochan 1718 1718 - godot-haskell 1719 1719 - gofer-prelude 1720 - - gogol-core 1720 + - gogol-admin-emailmigration 1721 + - gogol-affiliates 1722 + - gogol-autoscaler 1723 + - gogol-bigtableadmin 1724 + - gogol-cloudmonitoring 1725 + - gogol-freebasesearch 1726 + - gogol-latencytest 1727 + - gogol-maps-coordinate 1728 + - gogol-maps-engine 1729 + - gogol-photoslibrary 1730 + - gogol-resourceviews 1731 + - gogol-servicemanagement 1732 + - gogol-taskqueue 1733 + - gogol-useraccounts 1721 1734 - gooey 1722 1735 - google-cloud 1723 1736 - GoogleCodeJam ··· 4388 4401 - shorten-strings 4389 4402 - short-vec 4390 4403 - show-prettyprint 4404 + - Shpadoinkle-backend-pardiff 4391 4405 - Shpadoinkle-backend-snabbdom 4392 4406 - Shpadoinkle-isreal 4393 4407 - Shpadoinkle-streaming 4408 + - Shpadoinkle-template 4409 + - Shpadoinkle-widgets 4394 4410 - shwifty 4395 4411 - sifflet 4396 4412 - sifflet-lib
+7
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 100 100 - hiedb == 0.4.0.* 101 101 # 2021-10-13: weeder 2.3.0 require GHC == 9.0.*; remove pin when GHC version changes 102 102 - weeder < 2.3.0 103 + # 2021-10-10: taskwarrior 0.4 requires aeson > 2.0.1.0 104 + - taskwarrior < 0.4.0.0 105 + # 2021-10-19: autoapply 0.4.1.1 requires th-desugar 1.12 106 + - autoapply < 0.4.1.1 107 + # 2021-10-22: 1.8 breaks shake-bench 108 + - SVGFonts < 1.8 103 109 104 110 extra-packages: 105 111 - base16-bytestring < 1 # required for cabal-install etc. ··· 150 156 - spago 151 157 - termonad 152 158 dalpd: 159 + - ghc-vis 153 160 - svgcairo 154 161 domenkozar: 155 162 - cachix
+3 -182
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 331 331 - Shellac-haskeline 332 332 - Shellac-readline 333 333 - ShortestPathProblems 334 + - Shpadoinkle-developer-tools 334 335 - Shpadoinkle-disembodied 335 336 - Shpadoinkle-examples 336 337 - Shpadoinkle-router ··· 1118 1119 - findhttp 1119 1120 - finite-table 1120 1121 - firstify 1122 + - fishfood 1121 1123 - fix-parser-simple 1122 1124 - fixed-point-vector 1123 1125 - fixed-point-vector-space ··· 1262 1264 - goal-probability 1263 1265 - goal-simulation 1264 1266 - goat 1265 - - gogol 1266 - - gogol-abusiveexperiencereport 1267 - - gogol-acceleratedmobilepageurl 1268 - - gogol-accessapproval 1269 - - gogol-accesscontextmanager 1270 - - gogol-adexchange-buyer 1271 - - gogol-adexchange-seller 1272 - - gogol-adexchangebuyer2 1273 - - gogol-adexperiencereport 1274 - - gogol-admin-datatransfer 1275 - - gogol-admin-directory 1276 - - gogol-admin-emailmigration 1277 - - gogol-admin-reports 1278 - - gogol-adsense 1279 - - gogol-adsense-host 1280 - - gogol-affiliates 1281 - - gogol-alertcenter 1282 - - gogol-analytics 1283 - - gogol-analyticsreporting 1284 - - gogol-android-enterprise 1285 - - gogol-android-publisher 1286 - - gogol-androiddeviceprovisioning 1287 - - gogol-androidmanagement 1288 - - gogol-appengine 1289 - - gogol-apps-activity 1290 - - gogol-apps-calendar 1291 - - gogol-apps-licensing 1292 - - gogol-apps-reseller 1293 - - gogol-apps-tasks 1294 - - gogol-appstate 1295 - - gogol-autoscaler 1296 - - gogol-bigquery 1297 - - gogol-bigquerydatatransfer 1298 - - gogol-bigtableadmin 1299 - - gogol-billing 1300 - - gogol-binaryauthorization 1301 - - gogol-blogger 1302 - - gogol-books 1303 - - gogol-chat 1304 - - gogol-civicinfo 1305 - - gogol-classroom 1306 - - gogol-cloudasset 1307 - - gogol-clouderrorreporting 1308 - - gogol-cloudfunctions 1309 - - gogol-cloudidentity 1310 - - gogol-cloudiot 1311 - - gogol-cloudkms 1312 - - gogol-cloudmonitoring 1313 - - gogol-cloudprivatecatalog 1314 - - gogol-cloudprivatecatalogproducer 1315 - - gogol-cloudprofiler 1316 - - gogol-cloudscheduler 1317 - - gogol-cloudsearch 1318 - - gogol-cloudshell 1319 - - gogol-cloudtasks 1320 - - gogol-cloudtrace 1321 - - gogol-commentanalyzer 1322 - - gogol-composer 1323 - - gogol-compute 1324 - - gogol-consumersurveys 1325 - - gogol-container 1326 - - gogol-containeranalysis 1327 - - gogol-containerbuilder 1328 - - gogol-customsearch 1329 - - gogol-dataflow 1330 - - gogol-datafusion 1331 - - gogol-dataproc 1332 - - gogol-datastore 1333 - - gogol-debugger 1334 - - gogol-deploymentmanager 1335 - - gogol-dfareporting 1336 - - gogol-dialogflow 1337 - - gogol-digitalassetlinks 1338 - - gogol-discovery 1339 - - gogol-dlp 1340 - - gogol-dns 1341 - - gogol-docs 1342 - - gogol-doubleclick-bids 1343 - - gogol-doubleclick-search 1344 - - gogol-drive 1345 - - gogol-driveactivity 1346 - - gogol-factchecktools 1347 - - gogol-file 1348 - - gogol-firebase-dynamiclinks 1349 - - gogol-firebase-rules 1350 - - gogol-firebasehosting 1351 - - gogol-firebaseremoteconfig 1352 - - gogol-firestore 1353 - - gogol-fitness 1354 - - gogol-fonts 1355 - - gogol-freebasesearch 1356 - - gogol-fusiontables 1357 - - gogol-games 1358 - - gogol-games-configuration 1359 - - gogol-games-management 1360 - - gogol-genomics 1361 - - gogol-gmail 1362 - - gogol-groups-migration 1363 - - gogol-groups-settings 1364 - - gogol-healthcare 1365 - - gogol-iam 1366 - - gogol-iamcredentials 1367 - - gogol-iap 1368 - - gogol-identity-toolkit 1369 - - gogol-indexing 1370 - - gogol-jobs 1371 - - gogol-kgsearch 1372 - - gogol-language 1373 - - gogol-latencytest 1374 - - gogol-libraryagent 1375 - - gogol-logging 1376 - - gogol-manufacturers 1377 - - gogol-maps-coordinate 1378 - - gogol-maps-engine 1379 - - gogol-mirror 1380 - - gogol-ml 1381 - - gogol-monitoring 1382 - - gogol-oauth2 1383 - - gogol-oslogin 1384 - - gogol-pagespeed 1385 - - gogol-partners 1386 - - gogol-people 1387 - - gogol-photoslibrary 1388 - - gogol-play-moviespartner 1389 - - gogol-playcustomapp 1390 - - gogol-plus 1391 - - gogol-plus-domains 1392 - - gogol-poly 1393 - - gogol-prediction 1394 - - gogol-proximitybeacon 1395 - - gogol-pubsub 1396 - - gogol-qpxexpress 1397 - - gogol-redis 1398 - - gogol-remotebuildexecution 1399 - - gogol-replicapool 1400 - - gogol-replicapool-updater 1401 - - gogol-resourcemanager 1402 - - gogol-resourceviews 1403 - - gogol-run 1404 - - gogol-runtimeconfig 1405 - - gogol-safebrowsing 1406 - - gogol-script 1407 - - gogol-searchconsole 1408 - - gogol-securitycenter 1409 - - gogol-servicebroker 1410 - - gogol-serviceconsumermanagement 1411 - - gogol-servicecontrol 1412 - - gogol-servicemanagement 1413 - - gogol-servicenetworking 1414 - - gogol-serviceusage 1415 - - gogol-serviceuser 1416 - - gogol-sheets 1417 - - gogol-shopping-content 1418 - - gogol-siteverification 1419 - - gogol-slides 1420 - - gogol-sourcerepo 1421 - - gogol-spanner 1422 - - gogol-spectrum 1423 - - gogol-speech 1424 - - gogol-sqladmin 1425 - - gogol-storage 1426 - - gogol-storage-transfer 1427 - - gogol-streetviewpublish 1428 - - gogol-surveys 1429 - - gogol-tagmanager 1430 - - gogol-taskqueue 1431 - - gogol-testing 1432 - - gogol-texttospeech 1433 - - gogol-toolresults 1434 - - gogol-tpu 1435 - - gogol-tracing 1436 - - gogol-translate 1437 - - gogol-urlshortener 1438 - - gogol-useraccounts 1439 - - gogol-vault 1440 - - gogol-videointelligence 1441 - - gogol-vision 1442 - - gogol-webmaster-tools 1443 - - gogol-websecurityscanner 1444 - - gogol-youtube 1445 - - gogol-youtube-analytics 1446 - - gogol-youtube-reporting 1447 1267 - google-drive 1448 1268 - google-mail-filters 1449 1269 - google-maps-geocoding ··· 3051 2871 - sql-simple-postgresql 3052 2872 - sql-simple-sqlite 3053 2873 - sqlite-simple-typed 2874 + - squeeze 3054 2875 - sr-extra 3055 2876 - sscgi 3056 2877 - sshd-lint
+551 -256
pkgs/development/haskell-modules/hackage-packages.nix
··· 17895 17895 license = lib.licenses.bsd3; 17896 17896 }) {}; 17897 17897 17898 + "SVGFonts_1_8" = callPackage 17899 + ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg 17900 + , bytestring, cereal, cereal-vector, containers, data-default-class 17901 + , diagrams-core, diagrams-lib, directory, parsec, split, text 17902 + , vector, xml 17903 + }: 17904 + mkDerivation { 17905 + pname = "SVGFonts"; 17906 + version = "1.8"; 17907 + sha256 = "1aqwckrm0vy7y0i8ymq0kvshwwwdrvy13x9jhpxk466mcj19gg2g"; 17908 + enableSeparateDataOutput = true; 17909 + libraryHaskellDepends = [ 17910 + attoparsec base blaze-markup blaze-svg bytestring cereal 17911 + cereal-vector containers data-default-class diagrams-core 17912 + diagrams-lib directory parsec split text vector xml 17913 + ]; 17914 + description = "Fonts from the SVG-Font format"; 17915 + license = lib.licenses.bsd3; 17916 + hydraPlatforms = lib.platforms.none; 17917 + }) {}; 17918 + 17898 17919 "SVGPath" = callPackage 17899 17920 ({ mkDerivation, base, parsec }: 17900 17921 mkDerivation { ··· 18436 18457 ]; 18437 18458 description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; 18438 18459 license = lib.licenses.bsd3; 18460 + hydraPlatforms = lib.platforms.none; 18461 + broken = true; 18439 18462 }) {}; 18440 18463 18441 18464 "Shpadoinkle-backend-snabbdom" = callPackage ··· 18511 18534 ]; 18512 18535 description = "Chrome extension to aide in development"; 18513 18536 license = lib.licenses.bsd3; 18537 + hydraPlatforms = lib.platforms.none; 18514 18538 }) {}; 18515 18539 18516 18540 "Shpadoinkle-disembodied" = callPackage ··· 18675 18699 ]; 18676 18700 description = "Read standard file formats into Shpadoinkle with Template Haskell"; 18677 18701 license = lib.licenses.bsd3; 18702 + hydraPlatforms = lib.platforms.none; 18703 + broken = true; 18678 18704 }) {}; 18679 18705 18680 18706 "Shpadoinkle-widgets" = callPackage ··· 18699 18725 ]; 18700 18726 description = "A collection of common reusable types and components"; 18701 18727 license = lib.licenses.bsd3; 18728 + hydraPlatforms = lib.platforms.none; 18729 + broken = true; 18702 18730 }) {}; 18703 18731 18704 18732 "Shrub" = callPackage ··· 30636 30664 }: 30637 30665 mkDerivation { 30638 30666 pname = "ansi-terminal-game"; 30639 - version = "1.2.1.0"; 30640 - sha256 = "1gzqf0dby0w25nbz6lzlb4b7jgxydv09wqfcvbcfjwn0wg76wfvc"; 30667 + version = "1.3.0.0"; 30668 + sha256 = "08s49nwdj8wlydpbrzxsbz451gfa97n2kvvdv4wfbhwc4gspi9pa"; 30641 30669 isLibrary = true; 30642 30670 isExecutable = true; 30643 30671 libraryHaskellDepends = [ ··· 32912 32940 }) {}; 32913 32941 32914 32942 "argo" = callPackage 32915 - ({ mkDerivation, array, base, bytestring, deepseq, tasty 32916 - , tasty-bench, tasty-hunit, tasty-quickcheck, text 32943 + ({ mkDerivation, array, base, bytestring, containers, deepseq 32944 + , tasty, tasty-bench, tasty-hunit, tasty-quickcheck 32945 + , template-haskell, text 32917 32946 }: 32918 32947 mkDerivation { 32919 32948 pname = "argo"; 32920 - version = "0.2021.10.13"; 32921 - sha256 = "1jlw1v0kzcapc0ziax15hxgvb86q7cby7dpsqlrygw0y72w05w9q"; 32949 + version = "0.2021.10.17"; 32950 + sha256 = "0chzjpdz2x7nkqhphxj2x9knhdjm9dz2880s6f04p6w4w849pm33"; 32922 32951 isLibrary = true; 32923 32952 isExecutable = true; 32924 - libraryHaskellDepends = [ array base bytestring deepseq text ]; 32925 - executableHaskellDepends = [ array base bytestring deepseq text ]; 32953 + libraryHaskellDepends = [ 32954 + array base bytestring containers deepseq template-haskell text 32955 + ]; 32956 + executableHaskellDepends = [ 32957 + array base bytestring containers deepseq template-haskell text 32958 + ]; 32926 32959 testHaskellDepends = [ 32927 - array base bytestring deepseq tasty tasty-hunit tasty-quickcheck 32928 - text 32960 + array base bytestring containers deepseq tasty tasty-hunit 32961 + tasty-quickcheck template-haskell text 32929 32962 ]; 32930 32963 benchmarkHaskellDepends = [ 32931 - array base bytestring deepseq tasty-bench text 32964 + array base bytestring containers deepseq tasty-bench 32965 + template-haskell text 32932 32966 ]; 32933 32967 description = "Parse and render JSON"; 32934 32968 license = lib.licenses.mit; ··· 36104 36138 maintainers = with lib.maintainers; [ expipiplus1 ]; 36105 36139 }) {}; 36106 36140 36141 + "autoapply_0_4_1_1" = callPackage 36142 + ({ mkDerivation, base, Cabal, cabal-doctest, doctest, logict, mtl 36143 + , template-haskell, th-desugar, transformers, unification-fd 36144 + }: 36145 + mkDerivation { 36146 + pname = "autoapply"; 36147 + version = "0.4.1.1"; 36148 + sha256 = "1gpc08j5sq51kz1ysjnm50h89zd6g9r9grbc49jrrbnqirnnl6fl"; 36149 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 36150 + libraryHaskellDepends = [ 36151 + base logict mtl template-haskell th-desugar transformers 36152 + unification-fd 36153 + ]; 36154 + testHaskellDepends = [ base doctest ]; 36155 + description = "Template Haskell to automatically pass values to functions"; 36156 + license = lib.licenses.bsd3; 36157 + hydraPlatforms = lib.platforms.none; 36158 + maintainers = with lib.maintainers; [ expipiplus1 ]; 36159 + }) {}; 36160 + 36107 36161 "autoexporter" = callPackage 36108 36162 ({ mkDerivation, base, Cabal, directory, filepath }: 36109 36163 mkDerivation { ··· 38503 38557 pname = "base-compat"; 38504 38558 version = "0.11.2"; 38505 38559 sha256 = "1nyvkaij4m01jndw72xl8931czz1xp6jpnynpajabys2ahabb9jk"; 38560 + revision = "1"; 38561 + editedCabalFile = "0h6vr19vr5bhm69w8rvswbvd4xgazggkcq8vz934x69www2cpgri"; 38506 38562 libraryHaskellDepends = [ base unix ]; 38507 38563 description = "A compatibility layer for base"; 38508 38564 license = lib.licenses.mit; ··· 47412 47468 license = lib.licenses.bsd3; 47413 47469 }) {}; 47414 47470 47415 - "bugsnag-hs_0_2_0_5" = callPackage 47471 + "bugsnag-hs_0_2_0_6" = callPackage 47416 47472 ({ mkDerivation, aeson, base, bytestring, hedgehog, http-client 47417 47473 , text, time, unordered-containers 47418 47474 }: 47419 47475 mkDerivation { 47420 47476 pname = "bugsnag-hs"; 47421 - version = "0.2.0.5"; 47422 - sha256 = "1gm38w8vjgxmn2a9a7xr364pcv7vsvd3brf90hwbwh7y88q6jdn2"; 47477 + version = "0.2.0.6"; 47478 + sha256 = "0kq2mxsl6rm95v551vwjcim0sfk2lhc2n95f28pmglpp5qxc1q7j"; 47423 47479 enableSeparateDataOutput = true; 47424 47480 libraryHaskellDepends = [ 47425 47481 aeson base bytestring http-client text time unordered-containers ··· 48547 48603 libraryHaskellDepends = [ base bytestring ]; 48548 48604 description = "Parse and produce literals efficiently from strict or lazy bytestrings"; 48549 48605 license = lib.licenses.bsd2; 48606 + }) {}; 48607 + 48608 + "bytestring-lexing_0_5_0_7" = callPackage 48609 + ({ mkDerivation, base, bytestring, tasty, tasty-quickcheck 48610 + , tasty-smallcheck 48611 + }: 48612 + mkDerivation { 48613 + pname = "bytestring-lexing"; 48614 + version = "0.5.0.7"; 48615 + sha256 = "1p7i2haix4m11an3djaq65cnd293hzwqy4cd2i8jxzcl248pk6iy"; 48616 + libraryHaskellDepends = [ base bytestring ]; 48617 + testHaskellDepends = [ 48618 + base bytestring tasty tasty-quickcheck tasty-smallcheck 48619 + ]; 48620 + description = "Efficiently parse and produce common integral and fractional numbers"; 48621 + license = lib.licenses.bsd3; 48622 + hydraPlatforms = lib.platforms.none; 48550 48623 }) {}; 48551 48624 48552 48625 "bytestring-mmap" = callPackage ··· 48765 48838 ({ mkDerivation, base, binary, bytestring }: 48766 48839 mkDerivation { 48767 48840 pname = "bytestring-trie"; 48768 - version = "0.2.5.0"; 48769 - sha256 = "1jpynpyarikxhlc4ifdswvkj0ph9fd5d0vcxhjv0lrv0zwqvv488"; 48770 - revision = "2"; 48771 - editedCabalFile = "0z2d6k7w2bzjdjvhk5aa5a8j6x5m84xj03rgb4jb70psifmzkg9f"; 48841 + version = "0.2.5.2"; 48842 + sha256 = "1sxym7phj61cwpdp6ajh6jrnm9n48n0rzkm06ynip609d9n5zq3w"; 48772 48843 libraryHaskellDepends = [ base binary bytestring ]; 48773 48844 description = "An efficient finite map from (byte)strings to values"; 48774 48845 license = lib.licenses.bsd3; ··· 63968 64039 pname = "constraints"; 63969 64040 version = "0.13"; 63970 64041 sha256 = "143558jykvya7y8134dx30g6nh27q5s61nbq369p69igd1aayncj"; 64042 + revision = "1"; 64043 + editedCabalFile = "1bzhyaxgf4fqg7gakhqgr054mnl2ghc6b1fcb9hw171zj89hsc9w"; 63971 64044 libraryHaskellDepends = [ 63972 64045 base binary deepseq ghc-prim hashable mtl transformers 63973 64046 transformers-compat type-equality ··· 71390 71463 license = lib.licenses.bsd3; 71391 71464 }) {}; 71392 71465 71466 + "data-or_1_0_0_7" = callPackage 71467 + ({ mkDerivation, base }: 71468 + mkDerivation { 71469 + pname = "data-or"; 71470 + version = "1.0.0.7"; 71471 + sha256 = "1n8ym5skpyd15akra1vj97z2h3bq62fh1966yz1i8qds5xq96a4x"; 71472 + libraryHaskellDepends = [ base ]; 71473 + description = "A data type for non-exclusive disjunction"; 71474 + license = lib.licenses.bsd3; 71475 + hydraPlatforms = lib.platforms.none; 71476 + }) {}; 71477 + 71393 71478 "data-ordlist" = callPackage 71394 71479 ({ mkDerivation, base }: 71395 71480 mkDerivation { ··· 78194 78279 }: 78195 78280 mkDerivation { 78196 78281 pname = "discord-haskell"; 78197 - version = "1.8.8"; 78198 - sha256 = "0fvj9m59gsdicl061xlkqq8hrwsksyrysjdh5ijbv8gaql99k17v"; 78282 + version = "1.8.9"; 78283 + sha256 = "0qgbiqn05bn52fsihvz385smgvbkagc435qgmlm74clqfg7flwi4"; 78199 78284 isLibrary = true; 78200 78285 isExecutable = true; 78201 78286 libraryHaskellDepends = [ ··· 88662 88747 executableHaskellDepends = [ aeson base filepath text ]; 88663 88748 description = "Visualise an eventlog"; 88664 88749 license = lib.licenses.bsd3; 88665 - hydraPlatforms = lib.platforms.none; 88666 - broken = true; 88667 88750 }) {}; 88668 88751 88669 88752 "eventloop" = callPackage ··· 88970 89053 license = lib.licenses.bsd3; 88971 89054 }) {}; 88972 89055 89056 + "exact-combinatorics_0_2_0_10" = callPackage 89057 + ({ mkDerivation, base }: 89058 + mkDerivation { 89059 + pname = "exact-combinatorics"; 89060 + version = "0.2.0.10"; 89061 + sha256 = "08xdn2dl9r1zkphm9ja3lp4qin9cn889q184lsmk432icbvw5r2h"; 89062 + libraryHaskellDepends = [ base ]; 89063 + description = "Efficient exact computation of combinatoric functions"; 89064 + license = lib.licenses.bsd3; 89065 + hydraPlatforms = lib.platforms.none; 89066 + }) {}; 89067 + 88973 89068 "exact-cover" = callPackage 88974 89069 ({ mkDerivation, base, containers, tasty, tasty-hunit }: 88975 89070 mkDerivation { ··· 90740 90835 ]; 90741 90836 description = "Rational arithmetic in an irrational world"; 90742 90837 license = lib.licenses.gpl3Plus; 90838 + hydraPlatforms = lib.platforms.none; 90839 + broken = true; 90743 90840 }) {}; 90744 90841 90745 90842 "facts" = callPackage ··· 94169 94266 broken = true; 94170 94267 }) {}; 94171 94268 94269 + "firestore" = callPackage 94270 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring 94271 + , generic-random, gogol, gogol-firestore, http-types, lens 94272 + , lens-aeson, QuickCheck, quickcheck-instances, resourcet, text 94273 + , time, unordered-containers, vector 94274 + }: 94275 + mkDerivation { 94276 + pname = "firestore"; 94277 + version = "0.1.0.0"; 94278 + sha256 = "0xzd0w8px22vq8fs7nyri1l8inb8nj832mfwgphcqqrpapbq8h17"; 94279 + libraryHaskellDepends = [ 94280 + aeson base bytestring gogol gogol-firestore http-types lens 94281 + lens-aeson resourcet text time unordered-containers vector 94282 + ]; 94283 + testHaskellDepends = [ 94284 + aeson aeson-pretty base bytestring generic-random gogol 94285 + gogol-firestore http-types lens lens-aeson QuickCheck 94286 + quickcheck-instances resourcet text time unordered-containers 94287 + vector 94288 + ]; 94289 + description = "Wrapper for Google Firestore/Datastore API"; 94290 + license = lib.licenses.bsd3; 94291 + hydraPlatforms = lib.platforms.none; 94292 + broken = true; 94293 + }) {}; 94294 + 94172 94295 "first-and-last" = callPackage 94173 94296 ({ mkDerivation, base, doctest }: 94174 94297 mkDerivation { ··· 94264 94387 ]; 94265 94388 description = "Calculates file-size frequency-distribution"; 94266 94389 license = "GPL"; 94390 + hydraPlatforms = lib.platforms.none; 94267 94391 }) {}; 94268 94392 94269 94393 "fit" = callPackage ··· 94999 95123 pname = "flat"; 95000 95124 version = "0.4.4"; 95001 95125 sha256 = "02i4nzzkmm11sp312k2d3d3g0gm2gzhh3ibczxxscl986svam7p3"; 95126 + revision = "1"; 95127 + editedCabalFile = "1f9vlfnkr20nh5nayj18wvwh061w0byrd88j01k9gnrmb7qykpf6"; 95002 95128 libraryHaskellDepends = [ 95003 95129 array base bytestring containers deepseq dlist ghc-prim hashable 95004 95130 mono-traversable pretty primitive semigroups text ··· 95102 95228 }: 95103 95229 mkDerivation { 95104 95230 pname = "flatparse"; 95105 - version = "0.3.0.0"; 95106 - sha256 = "0x6q1dwk9zr9s7rx3knm127pjnkpcqmihdzajfcmvi0ayviq984i"; 95231 + version = "0.3.1.0"; 95232 + sha256 = "119qqqzp3aaljxgw0fdvqi2mhpykff33rmm8b5v7y3mllz707mf3"; 95107 95233 libraryHaskellDepends = [ 95108 95234 base bytestring containers integer-gmp template-haskell 95109 95235 ]; ··· 96011 96137 pname = "fmr"; 96012 96138 version = "0.1"; 96013 96139 sha256 = "1hwi4f027pv1sy6pmanc0488xdy398iv50yapivyk2l9kipfnq3q"; 96140 + revision = "1"; 96141 + editedCabalFile = "0xg1q3bjfg9l6xv8cixzydsypjy7nsbirsb14vfpnp42m7ml5klq"; 96014 96142 libraryHaskellDepends = [ base ]; 96015 96143 description = "Fake monadic records library"; 96016 96144 license = lib.licenses.bsd3; ··· 97683 97811 }: 97684 97812 mkDerivation { 97685 97813 pname = "freckle-app"; 97686 - version = "1.0.0.3"; 97687 - sha256 = "13iw0fj3n409mjbc6kkxcy1jx2zg8dwd55qp150qrkbmmjvrw54q"; 97814 + version = "1.0.0.4"; 97815 + sha256 = "0r3sfy7i796qjk3h7kigdj8c1gyrbzbwan7lb41r75h8bqx96p70"; 97688 97816 libraryHaskellDepends = [ 97689 97817 aeson ansi-terminal base bytestring case-insensitive conduit 97690 97818 data-default datadog doctest errors exceptions fast-logger filepath ··· 99965 100093 pname = "futhark"; 99966 100094 version = "0.20.4"; 99967 100095 sha256 = "0yjm0s9risrc0aj1si8i403k6b1znr8szff1f8ksb5cr9j7nn7gn"; 100096 + revision = "1"; 100097 + editedCabalFile = "0kx2p48b56icbd1bf6y6qbqx7sb7r8d2lcjxb60khiz7ff8kqjw8"; 99968 100098 isLibrary = true; 99969 100099 isExecutable = true; 99970 100100 libraryHaskellDepends = [ ··· 103683 103813 }) {}; 103684 103814 103685 103815 "ghc-datasize" = callPackage 103686 - ({ mkDerivation, base, deepseq, ghc-lib-parser-ex, ghc-prim }: 103816 + ({ mkDerivation, base, deepseq, ghc-prim }: 103687 103817 mkDerivation { 103688 103818 pname = "ghc-datasize"; 103689 - version = "0.2.3"; 103690 - sha256 = "1sbzharb72ngbq10mqvia4yb71mkhk5s5n1xd8nm11xpvqy4q28k"; 103691 - libraryHaskellDepends = [ 103692 - base deepseq ghc-lib-parser-ex ghc-prim 103693 - ]; 103819 + version = "0.2.5"; 103820 + sha256 = "1n8pz93lga1mizla91fwz16gd0831wjqskqbk0qr4m585zpzhh4d"; 103821 + libraryHaskellDepends = [ base deepseq ghc-prim ]; 103694 103822 description = "Determine the size of data structures in GHC's memory"; 103695 103823 license = lib.licenses.bsd3; 103696 103824 hydraPlatforms = lib.platforms.none; ··· 104970 105098 ]; 104971 105099 description = "Live visualization of data structures in GHCi"; 104972 105100 license = lib.licenses.bsd3; 104973 - hydraPlatforms = lib.platforms.none; 104974 - broken = true; 105101 + maintainers = with lib.maintainers; [ dalpd ]; 104975 105102 }) {}; 104976 105103 104977 105104 "ghcflags" = callPackage ··· 107747 107874 license = lib.licenses.mit; 107748 107875 }) {}; 107749 107876 107877 + "github-release_1_3_8" = callPackage 107878 + ({ mkDerivation, aeson, base, burrito, bytestring, http-client 107879 + , http-client-tls, http-types, mime-types, optparse-generic, text 107880 + , unordered-containers 107881 + }: 107882 + mkDerivation { 107883 + pname = "github-release"; 107884 + version = "1.3.8"; 107885 + sha256 = "1p8pmingim3vicmrzfs49b3xv71ihlvdd6cppbpa91vi3s2dh04v"; 107886 + isLibrary = true; 107887 + isExecutable = true; 107888 + libraryHaskellDepends = [ 107889 + aeson base burrito bytestring http-client http-client-tls 107890 + http-types mime-types optparse-generic text unordered-containers 107891 + ]; 107892 + executableHaskellDepends = [ base ]; 107893 + description = "Upload files to GitHub releases"; 107894 + license = lib.licenses.mit; 107895 + hydraPlatforms = lib.platforms.none; 107896 + }) {}; 107897 + 107750 107898 "github-rest" = callPackage 107751 107899 ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 107752 107900 , http-client-tls, http-types, jwt, mtl, scientific, tasty ··· 109758 109906 ]; 109759 109907 description = "Comprehensive Google Services SDK"; 109760 109908 license = "unknown"; 109761 - hydraPlatforms = lib.platforms.none; 109762 109909 }) {}; 109763 109910 109764 109911 "gogol-abusiveexperiencereport" = callPackage ··· 109770 109917 libraryHaskellDepends = [ base gogol-core ]; 109771 109918 description = "Google Abusive Experience Report SDK"; 109772 109919 license = "unknown"; 109773 - hydraPlatforms = lib.platforms.none; 109774 109920 }) {}; 109775 109921 109776 109922 "gogol-acceleratedmobilepageurl" = callPackage ··· 109782 109928 libraryHaskellDepends = [ base gogol-core ]; 109783 109929 description = "Google Accelerated Mobile Pages (AMP) URL SDK"; 109784 109930 license = "unknown"; 109785 - hydraPlatforms = lib.platforms.none; 109786 109931 }) {}; 109787 109932 109788 109933 "gogol-accessapproval" = callPackage ··· 109794 109939 libraryHaskellDepends = [ base gogol-core ]; 109795 109940 description = "Google Access Approval SDK"; 109796 109941 license = "unknown"; 109797 - hydraPlatforms = lib.platforms.none; 109798 109942 }) {}; 109799 109943 109800 109944 "gogol-accesscontextmanager" = callPackage ··· 109806 109950 libraryHaskellDepends = [ base gogol-core ]; 109807 109951 description = "Google Access Context Manager SDK"; 109808 109952 license = "unknown"; 109809 - hydraPlatforms = lib.platforms.none; 109810 109953 }) {}; 109811 109954 109812 109955 "gogol-adexchange-buyer" = callPackage ··· 109818 109961 libraryHaskellDepends = [ base gogol-core ]; 109819 109962 description = "Google Ad Exchange Buyer SDK"; 109820 109963 license = "unknown"; 109821 - hydraPlatforms = lib.platforms.none; 109822 109964 }) {}; 109823 109965 109824 109966 "gogol-adexchange-seller" = callPackage ··· 109830 109972 libraryHaskellDepends = [ base gogol-core ]; 109831 109973 description = "Google Ad Exchange Seller SDK"; 109832 109974 license = "unknown"; 109833 - hydraPlatforms = lib.platforms.none; 109834 109975 }) {}; 109835 109976 109836 109977 "gogol-adexchangebuyer2" = callPackage ··· 109842 109983 libraryHaskellDepends = [ base gogol-core ]; 109843 109984 description = "Google Ad Exchange Buyer API II SDK"; 109844 109985 license = "unknown"; 109845 - hydraPlatforms = lib.platforms.none; 109846 109986 }) {}; 109847 109987 109848 109988 "gogol-adexperiencereport" = callPackage ··· 109854 109994 libraryHaskellDepends = [ base gogol-core ]; 109855 109995 description = "Google Ad Experience Report SDK"; 109856 109996 license = "unknown"; 109857 - hydraPlatforms = lib.platforms.none; 109858 109997 }) {}; 109859 109998 109860 109999 "gogol-admin-datatransfer" = callPackage ··· 109866 110005 libraryHaskellDepends = [ base gogol-core ]; 109867 110006 description = "Google Admin Data Transfer SDK"; 109868 110007 license = "unknown"; 109869 - hydraPlatforms = lib.platforms.none; 109870 110008 }) {}; 109871 110009 109872 110010 "gogol-admin-directory" = callPackage ··· 109878 110016 libraryHaskellDepends = [ base gogol-core ]; 109879 110017 description = "Google Admin Directory SDK"; 109880 110018 license = "unknown"; 109881 - hydraPlatforms = lib.platforms.none; 109882 110019 }) {}; 109883 110020 109884 110021 "gogol-admin-emailmigration" = callPackage ··· 109891 110028 description = "Google Email Migration API v2 SDK"; 109892 110029 license = "unknown"; 109893 110030 hydraPlatforms = lib.platforms.none; 110031 + broken = true; 109894 110032 }) {}; 109895 110033 109896 110034 "gogol-admin-reports" = callPackage ··· 109902 110040 libraryHaskellDepends = [ base gogol-core ]; 109903 110041 description = "Google Admin Reports SDK"; 109904 110042 license = "unknown"; 109905 - hydraPlatforms = lib.platforms.none; 109906 110043 }) {}; 109907 110044 109908 110045 "gogol-adsense" = callPackage ··· 109914 110051 libraryHaskellDepends = [ base gogol-core ]; 109915 110052 description = "Google AdSense Management SDK"; 109916 110053 license = "unknown"; 109917 - hydraPlatforms = lib.platforms.none; 109918 110054 }) {}; 109919 110055 109920 110056 "gogol-adsense-host" = callPackage ··· 109926 110062 libraryHaskellDepends = [ base gogol-core ]; 109927 110063 description = "Google AdSense Host SDK"; 109928 110064 license = "unknown"; 109929 - hydraPlatforms = lib.platforms.none; 109930 110065 }) {}; 109931 110066 109932 110067 "gogol-affiliates" = callPackage ··· 109939 110074 description = "Google Affiliate Network SDK"; 109940 110075 license = "unknown"; 109941 110076 hydraPlatforms = lib.platforms.none; 110077 + broken = true; 109942 110078 }) {}; 109943 110079 109944 110080 "gogol-alertcenter" = callPackage ··· 109950 110086 libraryHaskellDepends = [ base gogol-core ]; 109951 110087 description = "Google G Suite Alert Center SDK"; 109952 110088 license = "unknown"; 109953 - hydraPlatforms = lib.platforms.none; 109954 110089 }) {}; 109955 110090 109956 110091 "gogol-analytics" = callPackage ··· 109962 110097 libraryHaskellDepends = [ base gogol-core ]; 109963 110098 description = "Google Analytics SDK"; 109964 110099 license = "unknown"; 109965 - hydraPlatforms = lib.platforms.none; 109966 110100 }) {}; 109967 110101 109968 110102 "gogol-analyticsreporting" = callPackage ··· 109974 110108 libraryHaskellDepends = [ base gogol-core ]; 109975 110109 description = "Google Analytics Reporting SDK"; 109976 110110 license = "unknown"; 109977 - hydraPlatforms = lib.platforms.none; 109978 110111 }) {}; 109979 110112 109980 110113 "gogol-android-enterprise" = callPackage ··· 109986 110119 libraryHaskellDepends = [ base gogol-core ]; 109987 110120 description = "Google Play EMM SDK"; 109988 110121 license = "unknown"; 109989 - hydraPlatforms = lib.platforms.none; 109990 110122 }) {}; 109991 110123 109992 110124 "gogol-android-publisher" = callPackage ··· 109998 110130 libraryHaskellDepends = [ base gogol-core ]; 109999 110131 description = "Google Play Developer SDK"; 110000 110132 license = "unknown"; 110001 - hydraPlatforms = lib.platforms.none; 110002 110133 }) {}; 110003 110134 110004 110135 "gogol-androiddeviceprovisioning" = callPackage ··· 110010 110141 libraryHaskellDepends = [ base gogol-core ]; 110011 110142 description = "Google Android Device Provisioning Partner SDK"; 110012 110143 license = "unknown"; 110013 - hydraPlatforms = lib.platforms.none; 110014 110144 }) {}; 110015 110145 110016 110146 "gogol-androidmanagement" = callPackage ··· 110022 110152 libraryHaskellDepends = [ base gogol-core ]; 110023 110153 description = "Google Android Management SDK"; 110024 110154 license = "unknown"; 110025 - hydraPlatforms = lib.platforms.none; 110026 110155 }) {}; 110027 110156 110028 110157 "gogol-appengine" = callPackage ··· 110034 110163 libraryHaskellDepends = [ base gogol-core ]; 110035 110164 description = "Google App Engine Admin SDK"; 110036 110165 license = "unknown"; 110037 - hydraPlatforms = lib.platforms.none; 110038 110166 }) {}; 110039 110167 110040 110168 "gogol-apps-activity" = callPackage ··· 110046 110174 libraryHaskellDepends = [ base gogol-core ]; 110047 110175 description = "Google Drive Activity SDK"; 110048 110176 license = "unknown"; 110049 - hydraPlatforms = lib.platforms.none; 110050 110177 }) {}; 110051 110178 110052 110179 "gogol-apps-calendar" = callPackage ··· 110058 110185 libraryHaskellDepends = [ base gogol-core ]; 110059 110186 description = "Google Calendar SDK"; 110060 110187 license = "unknown"; 110061 - hydraPlatforms = lib.platforms.none; 110062 110188 }) {}; 110063 110189 110064 110190 "gogol-apps-licensing" = callPackage ··· 110070 110196 libraryHaskellDepends = [ base gogol-core ]; 110071 110197 description = "Google Enterprise License Manager SDK"; 110072 110198 license = "unknown"; 110073 - hydraPlatforms = lib.platforms.none; 110074 110199 }) {}; 110075 110200 110076 110201 "gogol-apps-reseller" = callPackage ··· 110082 110207 libraryHaskellDepends = [ base gogol-core ]; 110083 110208 description = "Google Enterprise Apps Reseller SDK"; 110084 110209 license = "unknown"; 110085 - hydraPlatforms = lib.platforms.none; 110086 110210 }) {}; 110087 110211 110088 110212 "gogol-apps-tasks" = callPackage ··· 110094 110218 libraryHaskellDepends = [ base gogol-core ]; 110095 110219 description = "Google Tasks SDK"; 110096 110220 license = "unknown"; 110097 - hydraPlatforms = lib.platforms.none; 110098 110221 }) {}; 110099 110222 110100 110223 "gogol-appstate" = callPackage ··· 110106 110229 libraryHaskellDepends = [ base gogol-core ]; 110107 110230 description = "Google App State SDK"; 110108 110231 license = "unknown"; 110109 - hydraPlatforms = lib.platforms.none; 110110 110232 }) {}; 110111 110233 110112 110234 "gogol-autoscaler" = callPackage ··· 110119 110241 description = "Google Compute Engine Autoscaler SDK"; 110120 110242 license = "unknown"; 110121 110243 hydraPlatforms = lib.platforms.none; 110244 + broken = true; 110122 110245 }) {}; 110123 110246 110124 110247 "gogol-bigquery" = callPackage ··· 110130 110253 libraryHaskellDepends = [ base gogol-core ]; 110131 110254 description = "Google BigQuery SDK"; 110132 110255 license = "unknown"; 110133 - hydraPlatforms = lib.platforms.none; 110134 110256 }) {}; 110135 110257 110136 110258 "gogol-bigquerydatatransfer" = callPackage ··· 110142 110264 libraryHaskellDepends = [ base gogol-core ]; 110143 110265 description = "Google BigQuery Data Transfer SDK"; 110144 110266 license = "unknown"; 110145 - hydraPlatforms = lib.platforms.none; 110146 110267 }) {}; 110147 110268 110148 110269 "gogol-bigtableadmin" = callPackage ··· 110155 110276 description = "Google Cloud Bigtable Admin SDK"; 110156 110277 license = "unknown"; 110157 110278 hydraPlatforms = lib.platforms.none; 110279 + broken = true; 110158 110280 }) {}; 110159 110281 110160 110282 "gogol-billing" = callPackage ··· 110166 110288 libraryHaskellDepends = [ base gogol-core ]; 110167 110289 description = "Google Cloud Billing SDK"; 110168 110290 license = "unknown"; 110169 - hydraPlatforms = lib.platforms.none; 110170 110291 }) {}; 110171 110292 110172 110293 "gogol-binaryauthorization" = callPackage ··· 110178 110299 libraryHaskellDepends = [ base gogol-core ]; 110179 110300 description = "Google Binary Authorization SDK"; 110180 110301 license = "unknown"; 110181 - hydraPlatforms = lib.platforms.none; 110182 110302 }) {}; 110183 110303 110184 110304 "gogol-blogger" = callPackage ··· 110190 110310 libraryHaskellDepends = [ base gogol-core ]; 110191 110311 description = "Google Blogger SDK"; 110192 110312 license = "unknown"; 110193 - hydraPlatforms = lib.platforms.none; 110194 110313 }) {}; 110195 110314 110196 110315 "gogol-books" = callPackage ··· 110202 110321 libraryHaskellDepends = [ base gogol-core ]; 110203 110322 description = "Google Books SDK"; 110204 110323 license = "unknown"; 110205 - hydraPlatforms = lib.platforms.none; 110206 110324 }) {}; 110207 110325 110208 110326 "gogol-chat" = callPackage ··· 110214 110332 libraryHaskellDepends = [ base gogol-core ]; 110215 110333 description = "Google Hangouts Chat SDK"; 110216 110334 license = "unknown"; 110217 - hydraPlatforms = lib.platforms.none; 110218 110335 }) {}; 110219 110336 110220 110337 "gogol-civicinfo" = callPackage ··· 110226 110343 libraryHaskellDepends = [ base gogol-core ]; 110227 110344 description = "Google Civic Information SDK"; 110228 110345 license = "unknown"; 110229 - hydraPlatforms = lib.platforms.none; 110230 110346 }) {}; 110231 110347 110232 110348 "gogol-classroom" = callPackage ··· 110238 110354 libraryHaskellDepends = [ base gogol-core ]; 110239 110355 description = "Google Classroom SDK"; 110240 110356 license = "unknown"; 110241 - hydraPlatforms = lib.platforms.none; 110242 110357 }) {}; 110243 110358 110244 110359 "gogol-cloudasset" = callPackage ··· 110250 110365 libraryHaskellDepends = [ base gogol-core ]; 110251 110366 description = "Google Cloud Asset SDK"; 110252 110367 license = "unknown"; 110253 - hydraPlatforms = lib.platforms.none; 110254 110368 }) {}; 110255 110369 110256 110370 "gogol-clouderrorreporting" = callPackage ··· 110262 110376 libraryHaskellDepends = [ base gogol-core ]; 110263 110377 description = "Google Stackdriver Error Reporting SDK"; 110264 110378 license = "unknown"; 110265 - hydraPlatforms = lib.platforms.none; 110266 110379 }) {}; 110267 110380 110268 110381 "gogol-cloudfunctions" = callPackage ··· 110274 110387 libraryHaskellDepends = [ base gogol-core ]; 110275 110388 description = "Google Cloud Functions SDK"; 110276 110389 license = "unknown"; 110277 - hydraPlatforms = lib.platforms.none; 110278 110390 }) {}; 110279 110391 110280 110392 "gogol-cloudidentity" = callPackage ··· 110286 110398 libraryHaskellDepends = [ base gogol-core ]; 110287 110399 description = "Google Cloud Identity SDK"; 110288 110400 license = "unknown"; 110289 - hydraPlatforms = lib.platforms.none; 110290 110401 }) {}; 110291 110402 110292 110403 "gogol-cloudiot" = callPackage ··· 110298 110409 libraryHaskellDepends = [ base gogol-core ]; 110299 110410 description = "Google Cloud IoT SDK"; 110300 110411 license = "unknown"; 110301 - hydraPlatforms = lib.platforms.none; 110302 110412 }) {}; 110303 110413 110304 110414 "gogol-cloudkms" = callPackage ··· 110310 110420 libraryHaskellDepends = [ base gogol-core ]; 110311 110421 description = "Google Cloud Key Management Service (KMS) SDK"; 110312 110422 license = "unknown"; 110313 - hydraPlatforms = lib.platforms.none; 110314 110423 }) {}; 110315 110424 110316 110425 "gogol-cloudmonitoring" = callPackage ··· 110323 110432 description = "Google Cloud Monitoring SDK"; 110324 110433 license = "unknown"; 110325 110434 hydraPlatforms = lib.platforms.none; 110435 + broken = true; 110326 110436 }) {}; 110327 110437 110328 110438 "gogol-cloudprivatecatalog" = callPackage ··· 110334 110444 libraryHaskellDepends = [ base gogol-core ]; 110335 110445 description = "Google Cloud Private Catalog SDK"; 110336 110446 license = "unknown"; 110337 - hydraPlatforms = lib.platforms.none; 110338 110447 }) {}; 110339 110448 110340 110449 "gogol-cloudprivatecatalogproducer" = callPackage ··· 110346 110455 libraryHaskellDepends = [ base gogol-core ]; 110347 110456 description = "Google Cloud Private Catalog Producer SDK"; 110348 110457 license = "unknown"; 110349 - hydraPlatforms = lib.platforms.none; 110350 110458 }) {}; 110351 110459 110352 110460 "gogol-cloudprofiler" = callPackage ··· 110358 110466 libraryHaskellDepends = [ base gogol-core ]; 110359 110467 description = "Google Stackdriver Profiler SDK"; 110360 110468 license = "unknown"; 110361 - hydraPlatforms = lib.platforms.none; 110362 110469 }) {}; 110363 110470 110364 110471 "gogol-cloudscheduler" = callPackage ··· 110370 110477 libraryHaskellDepends = [ base gogol-core ]; 110371 110478 description = "Google Cloud Scheduler SDK"; 110372 110479 license = "unknown"; 110373 - hydraPlatforms = lib.platforms.none; 110374 110480 }) {}; 110375 110481 110376 110482 "gogol-cloudsearch" = callPackage ··· 110382 110488 libraryHaskellDepends = [ base gogol-core ]; 110383 110489 description = "Google Cloud Search SDK"; 110384 110490 license = "unknown"; 110385 - hydraPlatforms = lib.platforms.none; 110386 110491 }) {}; 110387 110492 110388 110493 "gogol-cloudshell" = callPackage ··· 110394 110499 libraryHaskellDepends = [ base gogol-core ]; 110395 110500 description = "Google Cloud Shell SDK"; 110396 110501 license = "unknown"; 110397 - hydraPlatforms = lib.platforms.none; 110398 110502 }) {}; 110399 110503 110400 110504 "gogol-cloudtasks" = callPackage ··· 110406 110510 libraryHaskellDepends = [ base gogol-core ]; 110407 110511 description = "Google Cloud Tasks SDK"; 110408 110512 license = "unknown"; 110409 - hydraPlatforms = lib.platforms.none; 110410 110513 }) {}; 110411 110514 110412 110515 "gogol-cloudtrace" = callPackage ··· 110418 110521 libraryHaskellDepends = [ base gogol-core ]; 110419 110522 description = "Google Stackdriver Trace SDK"; 110420 110523 license = "unknown"; 110421 - hydraPlatforms = lib.platforms.none; 110422 110524 }) {}; 110423 110525 110424 110526 "gogol-commentanalyzer" = callPackage ··· 110430 110532 libraryHaskellDepends = [ base gogol-core ]; 110431 110533 description = "Google Perspective Comment Analyzer SDK"; 110432 110534 license = "unknown"; 110433 - hydraPlatforms = lib.platforms.none; 110434 110535 }) {}; 110435 110536 110436 110537 "gogol-composer" = callPackage ··· 110442 110543 libraryHaskellDepends = [ base gogol-core ]; 110443 110544 description = "Google Cloud Composer SDK"; 110444 110545 license = "unknown"; 110445 - hydraPlatforms = lib.platforms.none; 110446 110546 }) {}; 110447 110547 110448 110548 "gogol-compute" = callPackage ··· 110454 110554 libraryHaskellDepends = [ base gogol-core ]; 110455 110555 description = "Google Compute Engine SDK"; 110456 110556 license = "unknown"; 110457 - hydraPlatforms = lib.platforms.none; 110458 110557 }) {}; 110459 110558 110460 110559 "gogol-consumersurveys" = callPackage ··· 110466 110565 libraryHaskellDepends = [ base gogol-core ]; 110467 110566 description = "Google Consumer Surveys SDK"; 110468 110567 license = "unknown"; 110469 - hydraPlatforms = lib.platforms.none; 110470 110568 }) {}; 110471 110569 110472 110570 "gogol-container" = callPackage ··· 110478 110576 libraryHaskellDepends = [ base gogol-core ]; 110479 110577 description = "Google Kubernetes Engine SDK"; 110480 110578 license = "unknown"; 110481 - hydraPlatforms = lib.platforms.none; 110482 110579 }) {}; 110483 110580 110484 110581 "gogol-containeranalysis" = callPackage ··· 110490 110587 libraryHaskellDepends = [ base gogol-core ]; 110491 110588 description = "Google Container Analysis SDK"; 110492 110589 license = "unknown"; 110493 - hydraPlatforms = lib.platforms.none; 110494 110590 }) {}; 110495 110591 110496 110592 "gogol-containerbuilder" = callPackage ··· 110502 110598 libraryHaskellDepends = [ base gogol-core ]; 110503 110599 description = "Google Cloud Build SDK"; 110504 110600 license = "unknown"; 110505 - hydraPlatforms = lib.platforms.none; 110506 110601 }) {}; 110507 110602 110508 110603 "gogol-core" = callPackage ··· 110527 110622 testHaskellDepends = [ base tasty ]; 110528 110623 description = "Core data types and functionality for Gogol libraries"; 110529 110624 license = "unknown"; 110530 - hydraPlatforms = lib.platforms.none; 110531 - broken = true; 110532 110625 }) {}; 110533 110626 110534 110627 "gogol-customsearch" = callPackage ··· 110540 110633 libraryHaskellDepends = [ base gogol-core ]; 110541 110634 description = "Google CustomSearch SDK"; 110542 110635 license = "unknown"; 110543 - hydraPlatforms = lib.platforms.none; 110544 110636 }) {}; 110545 110637 110546 110638 "gogol-dataflow" = callPackage ··· 110552 110644 libraryHaskellDepends = [ base gogol-core ]; 110553 110645 description = "Google Dataflow SDK"; 110554 110646 license = "unknown"; 110555 - hydraPlatforms = lib.platforms.none; 110556 110647 }) {}; 110557 110648 110558 110649 "gogol-datafusion" = callPackage ··· 110564 110655 libraryHaskellDepends = [ base gogol-core ]; 110565 110656 description = "Google Cloud Data Fusion SDK"; 110566 110657 license = "unknown"; 110567 - hydraPlatforms = lib.platforms.none; 110568 110658 }) {}; 110569 110659 110570 110660 "gogol-dataproc" = callPackage ··· 110576 110666 libraryHaskellDepends = [ base gogol-core ]; 110577 110667 description = "Google Cloud Dataproc SDK"; 110578 110668 license = "unknown"; 110579 - hydraPlatforms = lib.platforms.none; 110580 110669 }) {}; 110581 110670 110582 110671 "gogol-datastore" = callPackage ··· 110588 110677 libraryHaskellDepends = [ base gogol-core ]; 110589 110678 description = "Google Cloud Datastore SDK"; 110590 110679 license = "unknown"; 110591 - hydraPlatforms = lib.platforms.none; 110592 110680 }) {}; 110593 110681 110594 110682 "gogol-debugger" = callPackage ··· 110600 110688 libraryHaskellDepends = [ base gogol-core ]; 110601 110689 description = "Google Stackdriver Debugger SDK"; 110602 110690 license = "unknown"; 110603 - hydraPlatforms = lib.platforms.none; 110604 110691 }) {}; 110605 110692 110606 110693 "gogol-deploymentmanager" = callPackage ··· 110612 110699 libraryHaskellDepends = [ base gogol-core ]; 110613 110700 description = "Google Cloud Deployment Manager SDK"; 110614 110701 license = "unknown"; 110615 - hydraPlatforms = lib.platforms.none; 110616 110702 }) {}; 110617 110703 110618 110704 "gogol-dfareporting" = callPackage ··· 110624 110710 libraryHaskellDepends = [ base gogol-core ]; 110625 110711 description = "Google DCM/DFA Reporting And Trafficking SDK"; 110626 110712 license = "unknown"; 110627 - hydraPlatforms = lib.platforms.none; 110628 110713 }) {}; 110629 110714 110630 110715 "gogol-dialogflow" = callPackage ··· 110636 110721 libraryHaskellDepends = [ base gogol-core ]; 110637 110722 description = "Google Dialogflow SDK"; 110638 110723 license = "unknown"; 110639 - hydraPlatforms = lib.platforms.none; 110640 110724 }) {}; 110641 110725 110642 110726 "gogol-digitalassetlinks" = callPackage ··· 110648 110732 libraryHaskellDepends = [ base gogol-core ]; 110649 110733 description = "Google Digital Asset Links SDK"; 110650 110734 license = "unknown"; 110651 - hydraPlatforms = lib.platforms.none; 110652 110735 }) {}; 110653 110736 110654 110737 "gogol-discovery" = callPackage ··· 110660 110743 libraryHaskellDepends = [ base gogol-core ]; 110661 110744 description = "Google API Discovery Service SDK"; 110662 110745 license = "unknown"; 110663 - hydraPlatforms = lib.platforms.none; 110664 110746 }) {}; 110665 110747 110666 110748 "gogol-dlp" = callPackage ··· 110672 110754 libraryHaskellDepends = [ base gogol-core ]; 110673 110755 description = "Google Cloud Data Loss Prevention (DLP) SDK"; 110674 110756 license = "unknown"; 110675 - hydraPlatforms = lib.platforms.none; 110676 110757 }) {}; 110677 110758 110678 110759 "gogol-dns" = callPackage ··· 110684 110765 libraryHaskellDepends = [ base gogol-core ]; 110685 110766 description = "Google Cloud DNS SDK"; 110686 110767 license = "unknown"; 110687 - hydraPlatforms = lib.platforms.none; 110688 110768 }) {}; 110689 110769 110690 110770 "gogol-docs" = callPackage ··· 110696 110776 libraryHaskellDepends = [ base gogol-core ]; 110697 110777 description = "Google Docs SDK"; 110698 110778 license = "unknown"; 110699 - hydraPlatforms = lib.platforms.none; 110700 110779 }) {}; 110701 110780 110702 110781 "gogol-doubleclick-bids" = callPackage ··· 110708 110787 libraryHaskellDepends = [ base gogol-core ]; 110709 110788 description = "Google DoubleClick Bid Manager SDK"; 110710 110789 license = "unknown"; 110711 - hydraPlatforms = lib.platforms.none; 110712 110790 }) {}; 110713 110791 110714 110792 "gogol-doubleclick-search" = callPackage ··· 110720 110798 libraryHaskellDepends = [ base gogol-core ]; 110721 110799 description = "Google DoubleClick Search SDK"; 110722 110800 license = "unknown"; 110723 - hydraPlatforms = lib.platforms.none; 110724 110801 }) {}; 110725 110802 110726 110803 "gogol-drive" = callPackage ··· 110732 110809 libraryHaskellDepends = [ base gogol-core ]; 110733 110810 description = "Google Drive SDK"; 110734 110811 license = "unknown"; 110735 - hydraPlatforms = lib.platforms.none; 110736 110812 }) {}; 110737 110813 110738 110814 "gogol-driveactivity" = callPackage ··· 110744 110820 libraryHaskellDepends = [ base gogol-core ]; 110745 110821 description = "Google Drive Activity SDK"; 110746 110822 license = "unknown"; 110747 - hydraPlatforms = lib.platforms.none; 110748 110823 }) {}; 110749 110824 110750 110825 "gogol-factchecktools" = callPackage ··· 110756 110831 libraryHaskellDepends = [ base gogol-core ]; 110757 110832 description = "Google Fact Check Tools SDK"; 110758 110833 license = "unknown"; 110759 - hydraPlatforms = lib.platforms.none; 110760 110834 }) {}; 110761 110835 110762 110836 "gogol-file" = callPackage ··· 110768 110842 libraryHaskellDepends = [ base gogol-core ]; 110769 110843 description = "Google Cloud Filestore SDK"; 110770 110844 license = "unknown"; 110771 - hydraPlatforms = lib.platforms.none; 110772 110845 }) {}; 110773 110846 110774 110847 "gogol-firebase-dynamiclinks" = callPackage ··· 110780 110853 libraryHaskellDepends = [ base gogol-core ]; 110781 110854 description = "Google Firebase Dynamic Links SDK"; 110782 110855 license = "unknown"; 110783 - hydraPlatforms = lib.platforms.none; 110784 110856 }) {}; 110785 110857 110786 110858 "gogol-firebase-rules" = callPackage ··· 110792 110864 libraryHaskellDepends = [ base gogol-core ]; 110793 110865 description = "Google Firebase Rules SDK"; 110794 110866 license = "unknown"; 110795 - hydraPlatforms = lib.platforms.none; 110796 110867 }) {}; 110797 110868 110798 110869 "gogol-firebasehosting" = callPackage ··· 110804 110875 libraryHaskellDepends = [ base gogol-core ]; 110805 110876 description = "Google Firebase Hosting SDK"; 110806 110877 license = "unknown"; 110807 - hydraPlatforms = lib.platforms.none; 110808 110878 }) {}; 110809 110879 110810 110880 "gogol-firebaseremoteconfig" = callPackage ··· 110816 110886 libraryHaskellDepends = [ base gogol-core ]; 110817 110887 description = "Google Firebase Remote Config SDK"; 110818 110888 license = "unknown"; 110819 - hydraPlatforms = lib.platforms.none; 110820 110889 }) {}; 110821 110890 110822 110891 "gogol-firestore" = callPackage ··· 110828 110897 libraryHaskellDepends = [ base gogol-core ]; 110829 110898 description = "Google Cloud Firestore SDK"; 110830 110899 license = "unknown"; 110831 - hydraPlatforms = lib.platforms.none; 110832 110900 }) {}; 110833 110901 110834 110902 "gogol-fitness" = callPackage ··· 110840 110908 libraryHaskellDepends = [ base gogol-core ]; 110841 110909 description = "Google Fitness SDK"; 110842 110910 license = "unknown"; 110843 - hydraPlatforms = lib.platforms.none; 110844 110911 }) {}; 110845 110912 110846 110913 "gogol-fonts" = callPackage ··· 110852 110919 libraryHaskellDepends = [ base gogol-core ]; 110853 110920 description = "Google Fonts Developer SDK"; 110854 110921 license = "unknown"; 110855 - hydraPlatforms = lib.platforms.none; 110856 110922 }) {}; 110857 110923 110858 110924 "gogol-freebasesearch" = callPackage ··· 110865 110931 description = "Google Freebase Search SDK"; 110866 110932 license = "unknown"; 110867 110933 hydraPlatforms = lib.platforms.none; 110934 + broken = true; 110868 110935 }) {}; 110869 110936 110870 110937 "gogol-fusiontables" = callPackage ··· 110876 110943 libraryHaskellDepends = [ base gogol-core ]; 110877 110944 description = "Google Fusion Tables SDK"; 110878 110945 license = "unknown"; 110879 - hydraPlatforms = lib.platforms.none; 110880 110946 }) {}; 110881 110947 110882 110948 "gogol-games" = callPackage ··· 110888 110954 libraryHaskellDepends = [ base gogol-core ]; 110889 110955 description = "Google Play Game Services SDK"; 110890 110956 license = "unknown"; 110891 - hydraPlatforms = lib.platforms.none; 110892 110957 }) {}; 110893 110958 110894 110959 "gogol-games-configuration" = callPackage ··· 110900 110965 libraryHaskellDepends = [ base gogol-core ]; 110901 110966 description = "Google Play Game Services Publishing SDK"; 110902 110967 license = "unknown"; 110903 - hydraPlatforms = lib.platforms.none; 110904 110968 }) {}; 110905 110969 110906 110970 "gogol-games-management" = callPackage ··· 110912 110976 libraryHaskellDepends = [ base gogol-core ]; 110913 110977 description = "Google Play Game Services Management SDK"; 110914 110978 license = "unknown"; 110915 - hydraPlatforms = lib.platforms.none; 110916 110979 }) {}; 110917 110980 110918 110981 "gogol-genomics" = callPackage ··· 110924 110987 libraryHaskellDepends = [ base gogol-core ]; 110925 110988 description = "Google Genomics SDK"; 110926 110989 license = "unknown"; 110927 - hydraPlatforms = lib.platforms.none; 110928 110990 }) {}; 110929 110991 110930 110992 "gogol-gmail" = callPackage ··· 110936 110998 libraryHaskellDepends = [ base gogol-core ]; 110937 110999 description = "Google Gmail SDK"; 110938 111000 license = "unknown"; 110939 - hydraPlatforms = lib.platforms.none; 110940 111001 }) {}; 110941 111002 110942 111003 "gogol-groups-migration" = callPackage ··· 110948 111009 libraryHaskellDepends = [ base gogol-core ]; 110949 111010 description = "Google Groups Migration SDK"; 110950 111011 license = "unknown"; 110951 - hydraPlatforms = lib.platforms.none; 110952 111012 }) {}; 110953 111013 110954 111014 "gogol-groups-settings" = callPackage ··· 110960 111020 libraryHaskellDepends = [ base gogol-core ]; 110961 111021 description = "Google Groups Settings SDK"; 110962 111022 license = "unknown"; 110963 - hydraPlatforms = lib.platforms.none; 110964 111023 }) {}; 110965 111024 110966 111025 "gogol-healthcare" = callPackage ··· 110972 111031 libraryHaskellDepends = [ base gogol-core ]; 110973 111032 description = "Google Cloud Healthcare SDK"; 110974 111033 license = "unknown"; 110975 - hydraPlatforms = lib.platforms.none; 110976 111034 }) {}; 110977 111035 110978 111036 "gogol-iam" = callPackage ··· 110984 111042 libraryHaskellDepends = [ base gogol-core ]; 110985 111043 description = "Google Identity and Access Management (IAM) SDK"; 110986 111044 license = "unknown"; 110987 - hydraPlatforms = lib.platforms.none; 110988 111045 }) {}; 110989 111046 110990 111047 "gogol-iamcredentials" = callPackage ··· 110996 111053 libraryHaskellDepends = [ base gogol-core ]; 110997 111054 description = "Google IAM Service Account Credentials SDK"; 110998 111055 license = "unknown"; 110999 - hydraPlatforms = lib.platforms.none; 111000 111056 }) {}; 111001 111057 111002 111058 "gogol-iap" = callPackage ··· 111008 111064 libraryHaskellDepends = [ base gogol-core ]; 111009 111065 description = "Google Cloud Identity-Aware Proxy SDK"; 111010 111066 license = "unknown"; 111011 - hydraPlatforms = lib.platforms.none; 111012 111067 }) {}; 111013 111068 111014 111069 "gogol-identity-toolkit" = callPackage ··· 111020 111075 libraryHaskellDepends = [ base gogol-core ]; 111021 111076 description = "Google Identity Toolkit SDK"; 111022 111077 license = "unknown"; 111023 - hydraPlatforms = lib.platforms.none; 111024 111078 }) {}; 111025 111079 111026 111080 "gogol-indexing" = callPackage ··· 111032 111086 libraryHaskellDepends = [ base gogol-core ]; 111033 111087 description = "Google Indexing SDK"; 111034 111088 license = "unknown"; 111035 - hydraPlatforms = lib.platforms.none; 111036 111089 }) {}; 111037 111090 111038 111091 "gogol-jobs" = callPackage ··· 111044 111097 libraryHaskellDepends = [ base gogol-core ]; 111045 111098 description = "Google Cloud Talent Solution SDK"; 111046 111099 license = "unknown"; 111047 - hydraPlatforms = lib.platforms.none; 111048 111100 }) {}; 111049 111101 111050 111102 "gogol-kgsearch" = callPackage ··· 111056 111108 libraryHaskellDepends = [ base gogol-core ]; 111057 111109 description = "Google Knowledge Graph Search SDK"; 111058 111110 license = "unknown"; 111059 - hydraPlatforms = lib.platforms.none; 111060 111111 }) {}; 111061 111112 111062 111113 "gogol-language" = callPackage ··· 111068 111119 libraryHaskellDepends = [ base gogol-core ]; 111069 111120 description = "Google Cloud Natural Language SDK"; 111070 111121 license = "unknown"; 111071 - hydraPlatforms = lib.platforms.none; 111072 111122 }) {}; 111073 111123 111074 111124 "gogol-latencytest" = callPackage ··· 111081 111131 description = "Google Cloud Network Performance Monitoring SDK"; 111082 111132 license = "unknown"; 111083 111133 hydraPlatforms = lib.platforms.none; 111134 + broken = true; 111084 111135 }) {}; 111085 111136 111086 111137 "gogol-libraryagent" = callPackage ··· 111092 111143 libraryHaskellDepends = [ base gogol-core ]; 111093 111144 description = "Google Library Agent SDK"; 111094 111145 license = "unknown"; 111095 - hydraPlatforms = lib.platforms.none; 111096 111146 }) {}; 111097 111147 111098 111148 "gogol-logging" = callPackage ··· 111104 111154 libraryHaskellDepends = [ base gogol-core ]; 111105 111155 description = "Google Stackdriver Logging SDK"; 111106 111156 license = "unknown"; 111107 - hydraPlatforms = lib.platforms.none; 111108 111157 }) {}; 111109 111158 111110 111159 "gogol-manufacturers" = callPackage ··· 111116 111165 libraryHaskellDepends = [ base gogol-core ]; 111117 111166 description = "Google Manufacturer Center SDK"; 111118 111167 license = "unknown"; 111119 - hydraPlatforms = lib.platforms.none; 111120 111168 }) {}; 111121 111169 111122 111170 "gogol-maps-coordinate" = callPackage ··· 111129 111177 description = "Google Maps Coordinate SDK"; 111130 111178 license = "unknown"; 111131 111179 hydraPlatforms = lib.platforms.none; 111180 + broken = true; 111132 111181 }) {}; 111133 111182 111134 111183 "gogol-maps-engine" = callPackage ··· 111141 111190 description = "Google Maps Engine SDK"; 111142 111191 license = "unknown"; 111143 111192 hydraPlatforms = lib.platforms.none; 111193 + broken = true; 111144 111194 }) {}; 111145 111195 111146 111196 "gogol-mirror" = callPackage ··· 111152 111202 libraryHaskellDepends = [ base gogol-core ]; 111153 111203 description = "Google Mirror SDK"; 111154 111204 license = "unknown"; 111155 - hydraPlatforms = lib.platforms.none; 111156 111205 }) {}; 111157 111206 111158 111207 "gogol-ml" = callPackage ··· 111164 111213 libraryHaskellDepends = [ base gogol-core ]; 111165 111214 description = "Google Cloud Machine Learning Engine SDK"; 111166 111215 license = "unknown"; 111167 - hydraPlatforms = lib.platforms.none; 111168 111216 }) {}; 111169 111217 111170 111218 "gogol-monitoring" = callPackage ··· 111176 111224 libraryHaskellDepends = [ base gogol-core ]; 111177 111225 description = "Google Stackdriver Monitoring SDK"; 111178 111226 license = "unknown"; 111179 - hydraPlatforms = lib.platforms.none; 111180 111227 }) {}; 111181 111228 111182 111229 "gogol-oauth2" = callPackage ··· 111188 111235 libraryHaskellDepends = [ base gogol-core ]; 111189 111236 description = "Google OAuth2 SDK"; 111190 111237 license = "unknown"; 111191 - hydraPlatforms = lib.platforms.none; 111192 111238 }) {}; 111193 111239 111194 111240 "gogol-oslogin" = callPackage ··· 111200 111246 libraryHaskellDepends = [ base gogol-core ]; 111201 111247 description = "Google Cloud OS Login SDK"; 111202 111248 license = "unknown"; 111203 - hydraPlatforms = lib.platforms.none; 111204 111249 }) {}; 111205 111250 111206 111251 "gogol-pagespeed" = callPackage ··· 111212 111257 libraryHaskellDepends = [ base gogol-core ]; 111213 111258 description = "Google PageSpeed Insights SDK"; 111214 111259 license = "unknown"; 111215 - hydraPlatforms = lib.platforms.none; 111216 111260 }) {}; 111217 111261 111218 111262 "gogol-partners" = callPackage ··· 111224 111268 libraryHaskellDepends = [ base gogol-core ]; 111225 111269 description = "Google Partners SDK"; 111226 111270 license = "unknown"; 111227 - hydraPlatforms = lib.platforms.none; 111228 111271 }) {}; 111229 111272 111230 111273 "gogol-people" = callPackage ··· 111236 111279 libraryHaskellDepends = [ base gogol-core ]; 111237 111280 description = "Google People SDK"; 111238 111281 license = "unknown"; 111239 - hydraPlatforms = lib.platforms.none; 111240 111282 }) {}; 111241 111283 111242 111284 "gogol-photoslibrary" = callPackage ··· 111249 111291 description = "Google Photos Library SDK"; 111250 111292 license = "unknown"; 111251 111293 hydraPlatforms = lib.platforms.none; 111294 + broken = true; 111252 111295 }) {}; 111253 111296 111254 111297 "gogol-play-moviespartner" = callPackage ··· 111260 111303 libraryHaskellDepends = [ base gogol-core ]; 111261 111304 description = "Google Play Movies Partner SDK"; 111262 111305 license = "unknown"; 111263 - hydraPlatforms = lib.platforms.none; 111264 111306 }) {}; 111265 111307 111266 111308 "gogol-playcustomapp" = callPackage ··· 111272 111314 libraryHaskellDepends = [ base gogol-core ]; 111273 111315 description = "Google Play Custom App Publishing SDK"; 111274 111316 license = "unknown"; 111275 - hydraPlatforms = lib.platforms.none; 111276 111317 }) {}; 111277 111318 111278 111319 "gogol-plus" = callPackage ··· 111284 111325 libraryHaskellDepends = [ base gogol-core ]; 111285 111326 description = "Google + SDK"; 111286 111327 license = "unknown"; 111287 - hydraPlatforms = lib.platforms.none; 111288 111328 }) {}; 111289 111329 111290 111330 "gogol-plus-domains" = callPackage ··· 111296 111336 libraryHaskellDepends = [ base gogol-core ]; 111297 111337 description = "Google + Domains SDK"; 111298 111338 license = "unknown"; 111299 - hydraPlatforms = lib.platforms.none; 111300 111339 }) {}; 111301 111340 111302 111341 "gogol-poly" = callPackage ··· 111308 111347 libraryHaskellDepends = [ base gogol-core ]; 111309 111348 description = "Google Poly SDK"; 111310 111349 license = "unknown"; 111311 - hydraPlatforms = lib.platforms.none; 111312 111350 }) {}; 111313 111351 111314 111352 "gogol-prediction" = callPackage ··· 111320 111358 libraryHaskellDepends = [ base gogol-core ]; 111321 111359 description = "Google Prediction SDK"; 111322 111360 license = "unknown"; 111323 - hydraPlatforms = lib.platforms.none; 111324 111361 }) {}; 111325 111362 111326 111363 "gogol-proximitybeacon" = callPackage ··· 111332 111369 libraryHaskellDepends = [ base gogol-core ]; 111333 111370 description = "Google Proximity Beacon SDK"; 111334 111371 license = "unknown"; 111335 - hydraPlatforms = lib.platforms.none; 111336 111372 }) {}; 111337 111373 111338 111374 "gogol-pubsub" = callPackage ··· 111344 111380 libraryHaskellDepends = [ base gogol-core ]; 111345 111381 description = "Google Cloud Pub/Sub SDK"; 111346 111382 license = "unknown"; 111347 - hydraPlatforms = lib.platforms.none; 111348 111383 }) {}; 111349 111384 111350 111385 "gogol-qpxexpress" = callPackage ··· 111356 111391 libraryHaskellDepends = [ base gogol-core ]; 111357 111392 description = "Google QPX Express SDK"; 111358 111393 license = "unknown"; 111359 - hydraPlatforms = lib.platforms.none; 111360 111394 }) {}; 111361 111395 111362 111396 "gogol-redis" = callPackage ··· 111368 111402 libraryHaskellDepends = [ base gogol-core ]; 111369 111403 description = "Google Cloud Memorystore for Redis SDK"; 111370 111404 license = "unknown"; 111371 - hydraPlatforms = lib.platforms.none; 111372 111405 }) {}; 111373 111406 111374 111407 "gogol-remotebuildexecution" = callPackage ··· 111380 111413 libraryHaskellDepends = [ base gogol-core ]; 111381 111414 description = "Google Remote Build Execution SDK"; 111382 111415 license = "unknown"; 111383 - hydraPlatforms = lib.platforms.none; 111384 111416 }) {}; 111385 111417 111386 111418 "gogol-replicapool" = callPackage ··· 111392 111424 libraryHaskellDepends = [ base gogol-core ]; 111393 111425 description = "Google Replica Pool SDK"; 111394 111426 license = "unknown"; 111395 - hydraPlatforms = lib.platforms.none; 111396 111427 }) {}; 111397 111428 111398 111429 "gogol-replicapool-updater" = callPackage ··· 111404 111435 libraryHaskellDepends = [ base gogol-core ]; 111405 111436 description = "Google Compute Engine Instance Group Updater SDK"; 111406 111437 license = "unknown"; 111407 - hydraPlatforms = lib.platforms.none; 111408 111438 }) {}; 111409 111439 111410 111440 "gogol-resourcemanager" = callPackage ··· 111416 111446 libraryHaskellDepends = [ base gogol-core ]; 111417 111447 description = "Google Cloud Resource Manager SDK"; 111418 111448 license = "unknown"; 111419 - hydraPlatforms = lib.platforms.none; 111420 111449 }) {}; 111421 111450 111422 111451 "gogol-resourceviews" = callPackage ··· 111429 111458 description = "Google Compute Engine Instance Groups SDK"; 111430 111459 license = "unknown"; 111431 111460 hydraPlatforms = lib.platforms.none; 111461 + broken = true; 111432 111462 }) {}; 111433 111463 111434 111464 "gogol-run" = callPackage ··· 111440 111470 libraryHaskellDepends = [ base gogol-core ]; 111441 111471 description = "Google Cloud Run SDK"; 111442 111472 license = "unknown"; 111443 - hydraPlatforms = lib.platforms.none; 111444 111473 }) {}; 111445 111474 111446 111475 "gogol-runtimeconfig" = callPackage ··· 111452 111481 libraryHaskellDepends = [ base gogol-core ]; 111453 111482 description = "Google Cloud Runtime Configuration SDK"; 111454 111483 license = "unknown"; 111455 - hydraPlatforms = lib.platforms.none; 111456 111484 }) {}; 111457 111485 111458 111486 "gogol-safebrowsing" = callPackage ··· 111464 111492 libraryHaskellDepends = [ base gogol-core ]; 111465 111493 description = "Google Safe Browsing SDK"; 111466 111494 license = "unknown"; 111467 - hydraPlatforms = lib.platforms.none; 111468 111495 }) {}; 111469 111496 111470 111497 "gogol-script" = callPackage ··· 111476 111503 libraryHaskellDepends = [ base gogol-core ]; 111477 111504 description = "Google Apps Script SDK"; 111478 111505 license = "unknown"; 111479 - hydraPlatforms = lib.platforms.none; 111480 111506 }) {}; 111481 111507 111482 111508 "gogol-searchconsole" = callPackage ··· 111488 111514 libraryHaskellDepends = [ base gogol-core ]; 111489 111515 description = "Google Search Console URL Testing Tools SDK"; 111490 111516 license = "unknown"; 111491 - hydraPlatforms = lib.platforms.none; 111492 111517 }) {}; 111493 111518 111494 111519 "gogol-securitycenter" = callPackage ··· 111500 111525 libraryHaskellDepends = [ base gogol-core ]; 111501 111526 description = "Google Cloud Security Command Center SDK"; 111502 111527 license = "unknown"; 111503 - hydraPlatforms = lib.platforms.none; 111504 111528 }) {}; 111505 111529 111506 111530 "gogol-servicebroker" = callPackage ··· 111512 111536 libraryHaskellDepends = [ base gogol-core ]; 111513 111537 description = "Google Service Broker SDK"; 111514 111538 license = "unknown"; 111515 - hydraPlatforms = lib.platforms.none; 111516 111539 }) {}; 111517 111540 111518 111541 "gogol-serviceconsumermanagement" = callPackage ··· 111524 111547 libraryHaskellDepends = [ base gogol-core ]; 111525 111548 description = "Google Service Consumer Management SDK"; 111526 111549 license = "unknown"; 111527 - hydraPlatforms = lib.platforms.none; 111528 111550 }) {}; 111529 111551 111530 111552 "gogol-servicecontrol" = callPackage ··· 111536 111558 libraryHaskellDepends = [ base gogol-core ]; 111537 111559 description = "Google Service Control SDK"; 111538 111560 license = "unknown"; 111539 - hydraPlatforms = lib.platforms.none; 111540 111561 }) {}; 111541 111562 111542 111563 "gogol-servicemanagement" = callPackage ··· 111549 111570 description = "Google Service Management SDK"; 111550 111571 license = "unknown"; 111551 111572 hydraPlatforms = lib.platforms.none; 111573 + broken = true; 111552 111574 }) {}; 111553 111575 111554 111576 "gogol-servicenetworking" = callPackage ··· 111560 111582 libraryHaskellDepends = [ base gogol-core ]; 111561 111583 description = "Google Service Networking SDK"; 111562 111584 license = "unknown"; 111563 - hydraPlatforms = lib.platforms.none; 111564 111585 }) {}; 111565 111586 111566 111587 "gogol-serviceusage" = callPackage ··· 111572 111593 libraryHaskellDepends = [ base gogol-core ]; 111573 111594 description = "Google Service Usage SDK"; 111574 111595 license = "unknown"; 111575 - hydraPlatforms = lib.platforms.none; 111576 111596 }) {}; 111577 111597 111578 111598 "gogol-serviceuser" = callPackage ··· 111584 111604 libraryHaskellDepends = [ base gogol-core ]; 111585 111605 description = "Google Service User SDK"; 111586 111606 license = "unknown"; 111587 - hydraPlatforms = lib.platforms.none; 111588 111607 }) {}; 111589 111608 111590 111609 "gogol-sheets" = callPackage ··· 111596 111615 libraryHaskellDepends = [ base gogol-core ]; 111597 111616 description = "Google Sheets SDK"; 111598 111617 license = "unknown"; 111599 - hydraPlatforms = lib.platforms.none; 111600 111618 }) {}; 111601 111619 111602 111620 "gogol-shopping-content" = callPackage ··· 111608 111626 libraryHaskellDepends = [ base gogol-core ]; 111609 111627 description = "Google Content API for Shopping SDK"; 111610 111628 license = "unknown"; 111611 - hydraPlatforms = lib.platforms.none; 111612 111629 }) {}; 111613 111630 111614 111631 "gogol-siteverification" = callPackage ··· 111620 111637 libraryHaskellDepends = [ base gogol-core ]; 111621 111638 description = "Google Site Verification SDK"; 111622 111639 license = "unknown"; 111623 - hydraPlatforms = lib.platforms.none; 111624 111640 }) {}; 111625 111641 111626 111642 "gogol-slides" = callPackage ··· 111632 111648 libraryHaskellDepends = [ base gogol-core ]; 111633 111649 description = "Google Slides SDK"; 111634 111650 license = "unknown"; 111635 - hydraPlatforms = lib.platforms.none; 111636 111651 }) {}; 111637 111652 111638 111653 "gogol-sourcerepo" = callPackage ··· 111644 111659 libraryHaskellDepends = [ base gogol-core ]; 111645 111660 description = "Google Cloud Source Repositories SDK"; 111646 111661 license = "unknown"; 111647 - hydraPlatforms = lib.platforms.none; 111648 111662 }) {}; 111649 111663 111650 111664 "gogol-spanner" = callPackage ··· 111656 111670 libraryHaskellDepends = [ base gogol-core ]; 111657 111671 description = "Google Cloud Spanner SDK"; 111658 111672 license = "unknown"; 111659 - hydraPlatforms = lib.platforms.none; 111660 111673 }) {}; 111661 111674 111662 111675 "gogol-spectrum" = callPackage ··· 111668 111681 libraryHaskellDepends = [ base gogol-core ]; 111669 111682 description = "Google Spectrum Database SDK"; 111670 111683 license = "unknown"; 111671 - hydraPlatforms = lib.platforms.none; 111672 111684 }) {}; 111673 111685 111674 111686 "gogol-speech" = callPackage ··· 111680 111692 libraryHaskellDepends = [ base gogol-core ]; 111681 111693 description = "Google Cloud Speech-to-Text SDK"; 111682 111694 license = "unknown"; 111683 - hydraPlatforms = lib.platforms.none; 111684 111695 }) {}; 111685 111696 111686 111697 "gogol-sqladmin" = callPackage ··· 111692 111703 libraryHaskellDepends = [ base gogol-core ]; 111693 111704 description = "Google Cloud SQL Admin SDK"; 111694 111705 license = "unknown"; 111695 - hydraPlatforms = lib.platforms.none; 111696 111706 }) {}; 111697 111707 111698 111708 "gogol-storage" = callPackage ··· 111704 111714 libraryHaskellDepends = [ base gogol-core ]; 111705 111715 description = "Google Cloud Storage JSON SDK"; 111706 111716 license = "unknown"; 111707 - hydraPlatforms = lib.platforms.none; 111708 111717 }) {}; 111709 111718 111710 111719 "gogol-storage-transfer" = callPackage ··· 111716 111725 libraryHaskellDepends = [ base gogol-core ]; 111717 111726 description = "Google Storage Transfer SDK"; 111718 111727 license = "unknown"; 111719 - hydraPlatforms = lib.platforms.none; 111720 111728 }) {}; 111721 111729 111722 111730 "gogol-streetviewpublish" = callPackage ··· 111728 111736 libraryHaskellDepends = [ base gogol-core ]; 111729 111737 description = "Google Street View Publish SDK"; 111730 111738 license = "unknown"; 111731 - hydraPlatforms = lib.platforms.none; 111732 111739 }) {}; 111733 111740 111734 111741 "gogol-surveys" = callPackage ··· 111740 111747 libraryHaskellDepends = [ base gogol-core ]; 111741 111748 description = "Google Surveys SDK"; 111742 111749 license = "unknown"; 111743 - hydraPlatforms = lib.platforms.none; 111744 111750 }) {}; 111745 111751 111746 111752 "gogol-tagmanager" = callPackage ··· 111752 111758 libraryHaskellDepends = [ base gogol-core ]; 111753 111759 description = "Google Tag Manager SDK"; 111754 111760 license = "unknown"; 111755 - hydraPlatforms = lib.platforms.none; 111756 111761 }) {}; 111757 111762 111758 111763 "gogol-taskqueue" = callPackage ··· 111765 111770 description = "Google TaskQueue SDK"; 111766 111771 license = "unknown"; 111767 111772 hydraPlatforms = lib.platforms.none; 111773 + broken = true; 111768 111774 }) {}; 111769 111775 111770 111776 "gogol-testing" = callPackage ··· 111776 111782 libraryHaskellDepends = [ base gogol-core ]; 111777 111783 description = "Google Cloud Testing SDK"; 111778 111784 license = "unknown"; 111779 - hydraPlatforms = lib.platforms.none; 111780 111785 }) {}; 111781 111786 111782 111787 "gogol-texttospeech" = callPackage ··· 111788 111793 libraryHaskellDepends = [ base gogol-core ]; 111789 111794 description = "Google Cloud Text-to-Speech SDK"; 111790 111795 license = "unknown"; 111791 - hydraPlatforms = lib.platforms.none; 111792 111796 }) {}; 111793 111797 111794 111798 "gogol-toolresults" = callPackage ··· 111800 111804 libraryHaskellDepends = [ base gogol-core ]; 111801 111805 description = "Google Cloud Tool Results SDK"; 111802 111806 license = "unknown"; 111803 - hydraPlatforms = lib.platforms.none; 111804 111807 }) {}; 111805 111808 111806 111809 "gogol-tpu" = callPackage ··· 111812 111815 libraryHaskellDepends = [ base gogol-core ]; 111813 111816 description = "Google Cloud TPU SDK"; 111814 111817 license = "unknown"; 111815 - hydraPlatforms = lib.platforms.none; 111816 111818 }) {}; 111817 111819 111818 111820 "gogol-tracing" = callPackage ··· 111824 111826 libraryHaskellDepends = [ base gogol-core ]; 111825 111827 description = "Google Tracing SDK"; 111826 111828 license = "unknown"; 111827 - hydraPlatforms = lib.platforms.none; 111828 111829 }) {}; 111829 111830 111830 111831 "gogol-translate" = callPackage ··· 111836 111837 libraryHaskellDepends = [ base gogol-core ]; 111837 111838 description = "Google Cloud Translation SDK"; 111838 111839 license = "unknown"; 111839 - hydraPlatforms = lib.platforms.none; 111840 111840 }) {}; 111841 111841 111842 111842 "gogol-urlshortener" = callPackage ··· 111848 111848 libraryHaskellDepends = [ base gogol-core ]; 111849 111849 description = "Google URL Shortener SDK"; 111850 111850 license = "unknown"; 111851 - hydraPlatforms = lib.platforms.none; 111852 111851 }) {}; 111853 111852 111854 111853 "gogol-useraccounts" = callPackage ··· 111861 111860 description = "Google Cloud User Accounts SDK"; 111862 111861 license = "unknown"; 111863 111862 hydraPlatforms = lib.platforms.none; 111863 + broken = true; 111864 111864 }) {}; 111865 111865 111866 111866 "gogol-vault" = callPackage ··· 111872 111872 libraryHaskellDepends = [ base gogol-core ]; 111873 111873 description = "Google G Suite Vault SDK"; 111874 111874 license = "unknown"; 111875 - hydraPlatforms = lib.platforms.none; 111876 111875 }) {}; 111877 111876 111878 111877 "gogol-videointelligence" = callPackage ··· 111884 111883 libraryHaskellDepends = [ base gogol-core ]; 111885 111884 description = "Google Cloud Video Intelligence SDK"; 111886 111885 license = "unknown"; 111887 - hydraPlatforms = lib.platforms.none; 111888 111886 }) {}; 111889 111887 111890 111888 "gogol-vision" = callPackage ··· 111896 111894 libraryHaskellDepends = [ base gogol-core ]; 111897 111895 description = "Google Cloud Vision SDK"; 111898 111896 license = "unknown"; 111899 - hydraPlatforms = lib.platforms.none; 111900 111897 }) {}; 111901 111898 111902 111899 "gogol-webmaster-tools" = callPackage ··· 111908 111905 libraryHaskellDepends = [ base gogol-core ]; 111909 111906 description = "Google Search Console SDK"; 111910 111907 license = "unknown"; 111911 - hydraPlatforms = lib.platforms.none; 111912 111908 }) {}; 111913 111909 111914 111910 "gogol-websecurityscanner" = callPackage ··· 111920 111916 libraryHaskellDepends = [ base gogol-core ]; 111921 111917 description = "Google Web Security Scanner SDK"; 111922 111918 license = "unknown"; 111923 - hydraPlatforms = lib.platforms.none; 111924 111919 }) {}; 111925 111920 111926 111921 "gogol-youtube" = callPackage ··· 111932 111927 libraryHaskellDepends = [ base gogol-core ]; 111933 111928 description = "Google YouTube Data SDK"; 111934 111929 license = "unknown"; 111935 - hydraPlatforms = lib.platforms.none; 111936 111930 }) {}; 111937 111931 111938 111932 "gogol-youtube-analytics" = callPackage ··· 111944 111938 libraryHaskellDepends = [ base gogol-core ]; 111945 111939 description = "Google YouTube Analytics SDK"; 111946 111940 license = "unknown"; 111947 - hydraPlatforms = lib.platforms.none; 111948 111941 }) {}; 111949 111942 111950 111943 "gogol-youtube-reporting" = callPackage ··· 111956 111949 libraryHaskellDepends = [ base gogol-core ]; 111957 111950 description = "Google YouTube Reporting SDK"; 111958 111951 license = "unknown"; 111959 - hydraPlatforms = lib.platforms.none; 111960 111952 }) {}; 111961 111953 111962 111954 "goldplate" = callPackage ··· 131432 131424 }: 131433 131425 mkDerivation { 131434 131426 sha256 = "0ibbf8nq81b533902wkh0ags4a1jydm5jq0gn6jp1pg465q6qn7j"; 131435 - version = "0.2.1"; 131436 - sha256 = "0ibbf8nq81b533902wkh0ags4a1jydm5jq0gn6jp1pg465q6qn7j"; 131427 + version = "0.2.2"; 131428 + sha256 = "0xpyw9q684ms5aaq9rpfn9m2fxgvprmci8kvz81pj0qjsxhkzfhh"; 131437 131429 isLibrary = true; 131438 131430 isExecutable = true; 131439 131431 enableSeparateDataOutput = true; ··· 145677 145669 license = lib.licenses.bsd3; 145678 145670 }) {}; 145679 145671 145672 + "hvega_0_12_0_0" = callPackage 145673 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 145674 + , filepath, tasty, tasty-golden, text, unordered-containers 145675 + }: 145676 + mkDerivation { 145677 + pname = "hvega"; 145678 + version = "0.12.0.0"; 145679 + sha256 = "1zb79dbnznp1y08a497kgc423c7zmppz0qkfb04bnmffcp1p1ymn"; 145680 + isLibrary = true; 145681 + isExecutable = true; 145682 + libraryHaskellDepends = [ aeson base text unordered-containers ]; 145683 + testHaskellDepends = [ 145684 + aeson aeson-pretty base bytestring containers filepath tasty 145685 + tasty-golden text unordered-containers 145686 + ]; 145687 + description = "Create Vega-Lite visualizations (version 4) in Haskell"; 145688 + license = lib.licenses.bsd3; 145689 + hydraPlatforms = lib.platforms.none; 145690 + }) {}; 145691 + 145680 145692 "hvega-theme" = callPackage 145681 145693 ({ mkDerivation, base, hvega, text }: 145682 145694 mkDerivation { ··· 149290 149302 ({ mkDerivation, aeson, base, hvega, ihaskell, text }: 149291 149303 mkDerivation { 149292 149304 pname = "ihaskell-hvega"; 149293 - version = "0.3.2.0"; 149294 - sha256 = "0k7h33cqj58dv4hrsdjgnbykh036mrvbw6cbr98xlkdq5062pnzp"; 149305 + version = "0.4.0.0"; 149306 + sha256 = "0sdgrlirnjb1bg6l5a6k3y084q3jddl08h032m0smaalvzcyl21b"; 149295 149307 libraryHaskellDepends = [ aeson base hvega ihaskell text ]; 149296 149308 description = "IHaskell display instance for hvega types"; 149297 149309 license = lib.licenses.bsd3; ··· 156538 156550 testHaskellDepends = [ base bytestring filepath hspec ]; 156539 156551 description = "JSON Feed"; 156540 156552 license = lib.licenses.mit; 156553 + }) {}; 156554 + 156555 + "json-feed_1_0_14" = callPackage 156556 + ({ mkDerivation, aeson, base, bytestring, filepath, hspec 156557 + , mime-types, network-uri, tagsoup, text, time 156558 + }: 156559 + mkDerivation { 156560 + pname = "json-feed"; 156561 + version = "1.0.14"; 156562 + sha256 = "1jfyx1n3yxb8shi2s6an0glccniyp2hwyas38xpf6a9q6nzjagys"; 156563 + libraryHaskellDepends = [ 156564 + aeson base bytestring mime-types network-uri tagsoup text time 156565 + ]; 156566 + testHaskellDepends = [ base bytestring filepath hspec ]; 156567 + description = "JSON Feed"; 156568 + license = lib.licenses.mit; 156569 + hydraPlatforms = lib.platforms.none; 156541 156570 }) {}; 156542 156571 156543 156572 "json-fu" = callPackage ··· 168722 168751 ({ mkDerivation, base }: 168723 168752 mkDerivation { 168724 168753 pname = "list-extras"; 168725 - version = "0.4.1.4"; 168726 - sha256 = "15vjk6y3zwiffm1x8wlzv6203ykzm2phalqlq4zhmhcj2wd70viw"; 168754 + version = "0.4.1.6"; 168755 + sha256 = "0h5abhm84vhk5pfd6rrimgrb5l2bs2w5a7gpkg0rvlacbv4di4rz"; 168727 168756 libraryHaskellDepends = [ base ]; 168728 168757 description = "Common not-so-common functions for lists"; 168729 168758 license = lib.licenses.bsd3; ··· 169585 169614 ({ mkDerivation, base, enumset, LLVM }: 169586 169615 mkDerivation { 169587 169616 pname = "llvm-ffi"; 169588 - version = "9.1.0.1"; 169589 - sha256 = "19bj8gkzmzg3khnj1pnksc789p1hls0ji48kvwp72zbhhzgpr75d"; 169590 - revision = "1"; 169591 - editedCabalFile = "0iq9csqrbzrhvpzgz8nbs9k390sh3440002ipcicjlqkm4ssi330"; 169617 + version = "10.0"; 169618 + sha256 = "0damvra488px3gskqxyyb0rysyh6sza27q190c01i1icisalc8dh"; 169592 169619 isLibrary = true; 169593 169620 isExecutable = true; 169594 169621 libraryHaskellDepends = [ base enumset ]; ··· 169776 169803 169777 169804 "llvm-pkg-config" = callPackage 169778 169805 ({ mkDerivation, base, Cabal, explicit-exception, process 169779 - , transformers, utility-ht 169806 + , shell-utility, transformers, utility-ht 169780 169807 }: 169781 169808 mkDerivation { 169782 169809 pname = "llvm-pkg-config"; 169783 - version = "0.0.1"; 169784 - sha256 = "1ynxkdaanw3nxpsgfcjg6wsz6jgxszp239xhssyzasz59qhw64rr"; 169810 + version = "0.0.2"; 169811 + sha256 = "1p4ww8ylhr4ag1dfz4sffkg2qsyjj4zxccda3nr50k3c26pmmdz1"; 169785 169812 isLibrary = false; 169786 169813 isExecutable = true; 169787 169814 enableSeparateDataOutput = true; 169788 169815 executableHaskellDepends = [ 169789 - base Cabal explicit-exception process transformers utility-ht 169816 + base Cabal explicit-exception process shell-utility transformers 169817 + utility-ht 169790 169818 ]; 169791 169819 description = "Generate Pkg-Config configuration file for LLVM"; 169792 169820 license = lib.licenses.bsd3; ··· 169846 169874 }: 169847 169875 mkDerivation { 169848 169876 pname = "llvm-tf"; 169849 - version = "9.2"; 169850 - sha256 = "1p4r9m1svp6k235r0azx6dkpdarakgy3420z3kk06bdiy1m2jk1s"; 169851 - revision = "1"; 169852 - editedCabalFile = "0maav3vis08vdvp0zwclyjznf2k4r8qi7szpwxhkya0xa87fh96d"; 169877 + version = "9.2.0.1"; 169878 + sha256 = "0icn48k9g1gy335rmwb06jgffywjfyf3as7ihm0006l07nvyf63q"; 169853 169879 isLibrary = true; 169854 169880 isExecutable = true; 169855 169881 libraryHaskellDepends = [ ··· 170641 170667 libraryHaskellDepends = [ array base ]; 170642 170668 description = "Log-domain floating point numbers"; 170643 170669 license = lib.licenses.bsd3; 170670 + }) {}; 170671 + 170672 + "logfloat_0_13_4" = callPackage 170673 + ({ mkDerivation, array, base }: 170674 + mkDerivation { 170675 + pname = "logfloat"; 170676 + version = "0.13.4"; 170677 + sha256 = "0kbx7p3lfbvqfcqpwfspm82x3z404sa85k586jwlkhyh7rxv1fh3"; 170678 + libraryHaskellDepends = [ array base ]; 170679 + description = "Log-domain floating point numbers"; 170680 + license = lib.licenses.bsd3; 170681 + hydraPlatforms = lib.platforms.none; 170644 170682 }) {}; 170645 170683 170646 170684 "logfmt" = callPackage ··· 172212 172250 license = lib.licenses.bsd3; 172213 172251 }) {}; 172214 172252 172253 + "lucid_2_10_0" = callPackage 172254 + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring 172255 + , containers, criterion, deepseq, hashable, hspec, HUnit, mmorph 172256 + , mtl, parsec, text, transformers, unordered-containers 172257 + }: 172258 + mkDerivation { 172259 + pname = "lucid"; 172260 + version = "2.10.0"; 172261 + sha256 = "1xzrb31n1kx6ym8za32ggy0cxmm2pcv9vm5czzsip5va6p5411yg"; 172262 + libraryHaskellDepends = [ 172263 + base blaze-builder bytestring containers hashable mmorph mtl text 172264 + transformers unordered-containers 172265 + ]; 172266 + testHaskellDepends = [ 172267 + base bifunctors hspec HUnit mtl parsec text 172268 + ]; 172269 + benchmarkHaskellDepends = [ 172270 + base blaze-builder bytestring criterion deepseq text transformers 172271 + ]; 172272 + description = "Clear to write, read and edit DSL for HTML"; 172273 + license = lib.licenses.bsd3; 172274 + hydraPlatforms = lib.platforms.none; 172275 + }) {}; 172276 + 172215 172277 "lucid-cdn" = callPackage 172216 172278 ({ mkDerivation, base, lucid }: 172217 172279 mkDerivation { ··· 175694 175756 description = "Matlab bindings and interface"; 175695 175757 license = lib.licenses.bsd3; 175696 175758 hydraPlatforms = lib.platforms.none; 175697 - }) {eng = null; mat = null; inherit (pkgs) mx;}; 175759 + }) {eng = null; mat = null; mx = null;}; 175698 175760 175699 175761 "matplotlib" = callPackage 175700 175762 ({ mkDerivation, ad, aeson, base, bytestring, containers, deepseq ··· 188043 188105 pname = "nanovg"; 188044 188106 version = "0.8.0.0"; 188045 188107 sha256 = "1il4305wv7f53225jv5s04nf7gf5rw6cfxm8j3v1di2xvhdingz5"; 188108 + revision = "1"; 188109 + editedCabalFile = "0m69iqs8jaqh1gq1vfp92j2adf05v0isakl3ijxf7akxs5j2i3da"; 188046 188110 isLibrary = true; 188047 188111 isExecutable = true; 188048 188112 libraryHaskellDepends = [ base bytestring containers text vector ]; ··· 193143 193207 }: 193144 193208 mkDerivation { 193145 193209 pname = "nri-kafka"; 193146 - version = "0.1.0.1"; 193147 - sha256 = "0sybcf7lx0gqhi79h6d1rqx0ckyz38m86h87imrh4grgbikxaic5"; 193210 + version = "0.1.0.2"; 193211 + sha256 = "0bqpfcivp2hx5s2dmx2jwndia4pwfppslzr3krqwmph1qy3h2v9i"; 193148 193212 libraryHaskellDepends = [ 193149 193213 aeson async base bytestring conduit containers hw-kafka-client 193150 193214 nri-env-parser nri-observability nri-prelude safe-exceptions stm ··· 193187 193251 license = lib.licenses.bsd3; 193188 193252 }) {}; 193189 193253 193190 - "nri-observability_0_1_1_2" = callPackage 193254 + "nri-observability_0_1_1_3" = callPackage 193191 193255 ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs 193192 193256 , bytestring, conduit, directory, hostname, http-client 193193 193257 , http-client-tls, nri-env-parser, nri-prelude, random ··· 193195 193259 }: 193196 193260 mkDerivation { 193197 193261 pname = "nri-observability"; 193198 - version = "0.1.1.2"; 193199 - sha256 = "0n4ap88ll5q86addjgfv8pf86zbnw1ic6wh7wc929fn4ygc6r2x5"; 193262 + version = "0.1.1.3"; 193263 + sha256 = "0brjddl4ff8881ld41sp7ix3skxgj10jign4xx8l3ad89f91621b"; 193200 193264 libraryHaskellDepends = [ 193201 193265 aeson aeson-pretty async base bugsnag-hs bytestring conduit 193202 193266 directory hostname http-client http-client-tls nri-env-parser ··· 193222 193286 }: 193223 193287 mkDerivation { 193224 193288 pname = "nri-postgresql"; 193225 - version = "0.1.0.2"; 193226 - sha256 = "0rm76z57zvvsswd0dyqmq7m1mrvamiff5kawkcwy4k4xkn4yl3py"; 193289 + version = "0.1.0.3"; 193290 + sha256 = "0v07b6yq2i2pnfmiaks2vp3yj2ncfr9c3f2fx9sq6hr9z56q8hqd"; 193227 193291 libraryHaskellDepends = [ 193228 193292 attoparsec base bytestring filepath network nri-env-parser 193229 193293 nri-observability nri-prelude postgresql-typed resource-pool ··· 193267 193331 license = lib.licenses.bsd3; 193268 193332 }) {}; 193269 193333 193270 - "nri-prelude_0_6_0_4" = callPackage 193334 + "nri-prelude_0_6_0_5" = callPackage 193271 193335 ({ mkDerivation, aeson, aeson-pretty, async, auto-update, base 193272 193336 , bytestring, containers, directory, exceptions, filepath, ghc 193273 193337 , hedgehog, junit-xml, pretty-diff, pretty-show, safe-coloured-text ··· 193276 193340 }: 193277 193341 mkDerivation { 193278 193342 pname = "nri-prelude"; 193279 - version = "0.6.0.4"; 193280 - sha256 = "0r2jgjrbjbkkvsk8ypg0d7r840qkadwinq0qyhng9bkjqrsrn78c"; 193343 + version = "0.6.0.5"; 193344 + sha256 = "0qam6bamjp92mky193iddpq3v7knsxx4kcyc8fw3a8nkbrx6gigh"; 193281 193345 libraryHaskellDepends = [ 193282 193346 aeson aeson-pretty async auto-update base bytestring containers 193283 193347 directory exceptions filepath ghc hedgehog junit-xml pretty-diff ··· 198786 198850 broken = true; 198787 198851 }) {}; 198788 198852 198853 + "owoify-hs" = callPackage 198854 + ({ mkDerivation, base, HUnit, random, regex, regex-with-pcre, text 198855 + }: 198856 + mkDerivation { 198857 + pname = "owoify-hs"; 198858 + version = "1.0.0.1"; 198859 + sha256 = "0h7z4hsf5x9qi892sd9jx6r9vcnaskbpxhpq64vmvd2805cznyr1"; 198860 + libraryHaskellDepends = [ base random regex regex-with-pcre text ]; 198861 + testHaskellDepends = [ 198862 + base HUnit random regex regex-with-pcre text 198863 + ]; 198864 + description = "Turn any English text into nonsensical babyspeaks"; 198865 + license = lib.licenses.mit; 198866 + }) {}; 198867 + 198789 198868 "pack" = callPackage 198790 198869 ({ mkDerivation, array, base, bytestring, lens, transformers 198791 198870 , vector ··· 205307 205386 pname = "persistent-typed-db"; 205308 205387 version = "0.1.0.4"; 205309 205388 sha256 = "1dd5kig6zkiq5qkqv63icz9z8mn0b56b06w6z980hi7a2bmp6pk8"; 205389 + revision = "1"; 205390 + editedCabalFile = "07irkdph44vw5g8ixrpw3rlmx13nsxbbcznz2k2jiyw5i3nd1b94"; 205310 205391 libraryHaskellDepends = [ 205311 205392 aeson base bytestring conduit http-api-data monad-logger 205312 205393 path-pieces persistent resource-pool resourcet template-haskell ··· 206246 206327 }: 206247 206328 mkDerivation { 206248 206329 pname = "phonetic-languages-simplified-generalized-examples-array"; 206249 - version = "0.12.1.0"; 206250 - sha256 = "0wp5gpshmq5kr39glvfmc0b5jg8p1i146svjxh6flgkfn7yyr6rf"; 206330 + version = "0.13.0.0"; 206331 + sha256 = "02f4hvzva39fjhbi4nhxf9n7fm5dvl35g3sb29cw66hbylcsrz2n"; 206251 206332 libraryHaskellDepends = [ 206252 206333 base heaps mmsyn2-array mmsyn3 parallel 206253 206334 phonetic-languages-constraints-array ··· 209691 209772 license = lib.licenses.bsd3; 209692 209773 }) {}; 209693 209774 209775 + "pointless-fun_1_1_0_8" = callPackage 209776 + ({ mkDerivation, base }: 209777 + mkDerivation { 209778 + pname = "pointless-fun"; 209779 + version = "1.1.0.8"; 209780 + sha256 = "1s8chhic15ywbd6k6rv9nkh3nb4sibgslnndd954rprz2nj7zn2h"; 209781 + libraryHaskellDepends = [ base ]; 209782 + description = "Some common point-free combinators"; 209783 + license = lib.licenses.bsd3; 209784 + hydraPlatforms = lib.platforms.none; 209785 + }) {}; 209786 + 209694 209787 "pointless-haskell" = callPackage 209695 209788 ({ mkDerivation, base, GHood, process, syb }: 209696 209789 mkDerivation { ··· 210274 210367 }: 210275 210368 mkDerivation { 210276 210369 pname = "polysemy-check"; 210277 - version = "0.5.0.0"; 210278 - sha256 = "0ch8dzzap6f6bfdyy8i9xdna9l7d3yvx9m7z3pz9pjb19vjxa3f6"; 210370 + version = "0.7.0.0"; 210371 + sha256 = "1sb6gz5wz7b7gxmw0jci9kpaafk4m3rf7ghzsk2fnpvzya5fp6lg"; 210279 210372 libraryHaskellDepends = [ 210280 210373 base containers kind-generics kind-generics-th polysemy QuickCheck 210281 210374 ]; ··· 213909 214002 libraryHaskellDepends = [ base ]; 213910 214003 description = "A redefinition of the Prelude's Enum class in order to render it safe"; 213911 214004 license = lib.licenses.bsd3; 214005 + }) {}; 214006 + 214007 + "prelude-safeenum_0_1_1_3" = callPackage 214008 + ({ mkDerivation, base }: 214009 + mkDerivation { 214010 + pname = "prelude-safeenum"; 214011 + version = "0.1.1.3"; 214012 + sha256 = "1p6q2kv8gbkhzam03sl2bkjp8xq7q77h88v6afvca3yrlg4mlw62"; 214013 + libraryHaskellDepends = [ base ]; 214014 + description = "A redefinition of the Prelude's Enum class in order to render it safe"; 214015 + license = lib.licenses.bsd3; 214016 + hydraPlatforms = lib.platforms.none; 213912 214017 }) {}; 213913 214018 213914 214019 "prelude2010" = callPackage ··· 218584 218689 license = lib.licenses.mit; 218585 218690 }) {}; 218586 218691 218692 + "pusher-http-haskell_2_1_0_4" = callPackage 218693 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 218694 + , cryptonite, hashable, hspec, http-client, http-client-tls 218695 + , http-types, memory, QuickCheck, text, time, unordered-containers 218696 + }: 218697 + mkDerivation { 218698 + pname = "pusher-http-haskell"; 218699 + version = "2.1.0.4"; 218700 + sha256 = "0mqjxx1jb8kvzhnnpfs0r1zkjlb6n0pwqdr6idjsn3w7yxlf5ldw"; 218701 + libraryHaskellDepends = [ 218702 + aeson base base16-bytestring bytestring cryptonite hashable 218703 + http-client http-client-tls http-types memory text time 218704 + unordered-containers 218705 + ]; 218706 + testHaskellDepends = [ 218707 + aeson base bytestring hspec QuickCheck text unordered-containers 218708 + ]; 218709 + description = "Haskell client library for the Pusher Channels HTTP API"; 218710 + license = lib.licenses.mit; 218711 + hydraPlatforms = lib.platforms.none; 218712 + }) {}; 218713 + 218587 218714 "pusher-ws" = callPackage 218588 218715 ({ mkDerivation, aeson, base, bytestring, containers, deepseq 218589 218716 , hashable, http-conduit, lens, lens-aeson, network, scientific ··· 222406 222533 license = lib.licenses.mit; 222407 222534 }) {}; 222408 222535 222536 + "ratel_1_0_16" = callPackage 222537 + ({ mkDerivation, aeson, base, bytestring, case-insensitive 222538 + , containers, filepath, hspec, http-client, http-client-tls 222539 + , http-types, text, uuid 222540 + }: 222541 + mkDerivation { 222542 + pname = "ratel"; 222543 + version = "1.0.16"; 222544 + sha256 = "0n29h5g5bhin3hza334fdmxvk48gnpvg0dldck8rd9kn0713n032"; 222545 + libraryHaskellDepends = [ 222546 + aeson base bytestring case-insensitive containers http-client 222547 + http-client-tls http-types text uuid 222548 + ]; 222549 + testHaskellDepends = [ base filepath hspec ]; 222550 + description = "Notify Honeybadger about exceptions"; 222551 + license = lib.licenses.mit; 222552 + hydraPlatforms = lib.platforms.none; 222553 + }) {}; 222554 + 222409 222555 "ratel-wai" = callPackage 222410 222556 ({ mkDerivation, base, bytestring, case-insensitive, containers 222411 222557 , http-client, ratel, wai ··· 222565 222711 broken = true; 222566 222712 }) {}; 222567 222713 222568 - "rattletrap_11_2_1" = callPackage 222714 + "rattletrap_11_2_3" = callPackage 222569 222715 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 222570 - , containers, filepath, http-client, http-client-tls, HUnit, text 222716 + , containers, filepath, http-client, http-client-tls, text 222571 222717 }: 222572 222718 mkDerivation { 222573 222719 pname = "rattletrap"; 222574 - version = "11.2.1"; 222575 - sha256 = "0kmr3178rilifbqs2zkifx47fdq279n4wzxbcr6kn71450xi5xyx"; 222720 + version = "11.2.3"; 222721 + sha256 = "00hqymw1fbg4crgrd5ixivbpx5qblvp109j0yw8nkzidb4bbdhjj"; 222576 222722 isLibrary = true; 222577 222723 isExecutable = true; 222578 222724 libraryHaskellDepends = [ ··· 222580 222726 http-client http-client-tls text 222581 222727 ]; 222582 222728 executableHaskellDepends = [ base ]; 222583 - testHaskellDepends = [ base bytestring filepath HUnit ]; 222729 + testHaskellDepends = [ base bytestring filepath ]; 222584 222730 description = "Parse and generate Rocket League replays"; 222585 222731 license = lib.licenses.mit; 222586 222732 hydraPlatforms = lib.platforms.none; ··· 222670 222816 testHaskellDepends = [ base bytestring ]; 222671 222817 description = "Use RawFilePath instead of FilePath"; 222672 222818 license = lib.licenses.asl20; 222819 + }) {}; 222820 + 222821 + "rawfilepath_1_0_0" = callPackage 222822 + ({ mkDerivation, base, bytestring, unix }: 222823 + mkDerivation { 222824 + pname = "rawfilepath"; 222825 + version = "1.0.0"; 222826 + sha256 = "0ya68wvafb8zq6d9hlfdr71pnks9a9hln67a2r93pxhz3iz2cv5w"; 222827 + libraryHaskellDepends = [ base bytestring unix ]; 222828 + testHaskellDepends = [ base bytestring ]; 222829 + description = "Use RawFilePath instead of FilePath"; 222830 + license = lib.licenses.asl20; 222831 + hydraPlatforms = lib.platforms.none; 222673 222832 }) {}; 222674 222833 222675 222834 "rawr" = callPackage ··· 224235 224394 hydraPlatforms = lib.platforms.none; 224236 224395 }) {}; 224237 224396 224397 + "reddit-scrape" = callPackage 224398 + ({ mkDerivation, base, hspec, http-client, http-client-tls, rio 224399 + , scalpel 224400 + }: 224401 + mkDerivation { 224402 + pname = "reddit-scrape"; 224403 + version = "0.0.1"; 224404 + sha256 = "1i95qlp84v8q2a7czfl66vqmzypp0pg5qlk25nyg4wsja22pryaj"; 224405 + libraryHaskellDepends = [ 224406 + base http-client http-client-tls rio scalpel 224407 + ]; 224408 + testHaskellDepends = [ 224409 + base hspec http-client http-client-tls rio scalpel 224410 + ]; 224411 + description = "Library for getting links from a sub-reddit"; 224412 + license = lib.licenses.bsd2; 224413 + }) {}; 224414 + 224238 224415 "redesigned-carnival" = callPackage 224239 224416 ({ mkDerivation, base }: 224240 224417 mkDerivation { ··· 236207 236384 ({ mkDerivation, base, data-default-class, ghc-prim }: 236208 236385 mkDerivation { 236209 236386 pname = "sdp"; 236210 - version = "0.2"; 236211 - sha256 = "1q9l87rvvx7bqbqx1675r2mvj3b2jf0ywa55xcv2ybsl621z52y0"; 236387 + version = "0.2.0.1"; 236388 + sha256 = "1l7bvwqxwn3c8cafbxbkm66cahdpas29h8vgkkkp0rd3y18bvbb5"; 236212 236389 libraryHaskellDepends = [ base data-default-class ghc-prim ]; 236213 236390 description = "Simple Data Processing"; 236214 236391 license = lib.licenses.bsd3; ··· 251928 252105 ]; 251929 252106 description = "A file-packing application"; 251930 252107 license = "GPL"; 252108 + hydraPlatforms = lib.platforms.none; 251931 252109 }) {}; 251932 252110 251933 252111 "sr-extra" = callPackage ··· 254556 254734 license = lib.licenses.bsd3; 254557 254735 }) {}; 254558 254736 254737 + "stm-chans_3_0_0_6" = callPackage 254738 + ({ mkDerivation, base, stm }: 254739 + mkDerivation { 254740 + pname = "stm-chans"; 254741 + version = "3.0.0.6"; 254742 + sha256 = "04hafqjq8ngvhcavkfx88a0zky8yc7i18q2n9ajav03kns1kwvpa"; 254743 + libraryHaskellDepends = [ base stm ]; 254744 + description = "Additional types of channels for STM"; 254745 + license = lib.licenses.bsd3; 254746 + hydraPlatforms = lib.platforms.none; 254747 + }) {}; 254748 + 254559 254749 "stm-chunked-queues" = callPackage 254560 254750 ({ mkDerivation, async, base, HUnit, stm, tasty, tasty-hunit }: 254561 254751 mkDerivation { ··· 257362 257552 license = lib.licenses.mit; 257363 257553 }) {}; 257364 257554 257555 + "strive_5_0_15" = callPackage 257556 + ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline 257557 + , http-client, http-client-tls, http-types, template-haskell, text 257558 + , time, transformers 257559 + }: 257560 + mkDerivation { 257561 + pname = "strive"; 257562 + version = "5.0.15"; 257563 + sha256 = "1v1m9wdb1kd2pyib6sima4zb0hlwp8hax3mlik3m3ixjbiwfp4ii"; 257564 + libraryHaskellDepends = [ 257565 + aeson base bytestring data-default gpolyline http-client 257566 + http-client-tls http-types template-haskell text time transformers 257567 + ]; 257568 + description = "A client for the Strava V3 API"; 257569 + license = lib.licenses.mit; 257570 + hydraPlatforms = lib.platforms.none; 257571 + }) {}; 257572 + 257365 257573 "strong-path" = callPackage 257366 257574 ({ mkDerivation, base, exceptions, filepath, hspec, path, tasty 257367 257575 , tasty-discover, tasty-hspec, tasty-quickcheck, template-haskell ··· 259259 259467 license = lib.licenses.lgpl21Only; 259260 259468 }) {}; 259261 259469 259470 + "swish_0_10_0_7" = callPackage 259471 + ({ mkDerivation, base, containers, directory, filepath, hashable 259472 + , HUnit, intern, mtl, network-uri, old-locale, polyparse 259473 + , semigroups, test-framework, test-framework-hunit, text, time 259474 + }: 259475 + mkDerivation { 259476 + pname = "swish"; 259477 + version = "0.10.0.7"; 259478 + sha256 = "1ii1fcpnhvbid0jwlnya746qh0h4jla8ibx1vn59wyjxb8frlvxk"; 259479 + isLibrary = true; 259480 + isExecutable = true; 259481 + enableSeparateDataOutput = true; 259482 + libraryHaskellDepends = [ 259483 + base containers directory filepath hashable intern mtl network-uri 259484 + old-locale polyparse text time 259485 + ]; 259486 + executableHaskellDepends = [ base ]; 259487 + testHaskellDepends = [ 259488 + base containers hashable HUnit network-uri old-locale semigroups 259489 + test-framework test-framework-hunit text time 259490 + ]; 259491 + description = "A semantic web toolkit"; 259492 + license = lib.licenses.lgpl21Only; 259493 + hydraPlatforms = lib.platforms.none; 259494 + }) {}; 259495 + 259262 259496 "swiss-ephemeris" = callPackage 259263 259497 ({ mkDerivation, base, directory, hspec, hspec-discover, QuickCheck 259264 259498 }: ··· 260741 260975 }: 260742 260976 mkDerivation { 260743 260977 pname = "synthesizer-alsa"; 260744 - version = "0.5.0.5"; 260745 - sha256 = "09nf2c7nc5dbrd8nskmjrxz8fynnacbnml2wcf5p5qghq2dcd6ma"; 260746 - revision = "1"; 260747 - editedCabalFile = "0acwdxdi8wj63x6f3vcm366hm9liyjbm0czv4mwmm9ryrnc36sc6"; 260978 + version = "0.5.0.6"; 260979 + sha256 = "1jrsl9lbhsyg4cs32c9hq1jflvw9jdgpd9allv89ypw8yw9mmh45"; 260748 260980 isLibrary = true; 260749 260981 isExecutable = true; 260750 260982 libraryHaskellDepends = [ ··· 260754 260986 transformers utility-ht 260755 260987 ]; 260756 260988 description = "Control synthesizer effects via ALSA/MIDI"; 260757 - license = "GPL"; 260989 + license = lib.licenses.gpl3Only; 260758 260990 platforms = [ 260759 260991 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 260760 260992 ]; ··· 262698 262930 maintainers = with lib.maintainers; [ maralorn ]; 262699 262931 }) {}; 262700 262932 262933 + "taskwarrior_0_4_0_0" = callPackage 262934 + ({ mkDerivation, aeson, base, bytestring, containers, hspec 262935 + , hspec-discover, process, QuickCheck, quickcheck-instances, random 262936 + , text, time, uuid 262937 + }: 262938 + mkDerivation { 262939 + pname = "taskwarrior"; 262940 + version = "0.4.0.0"; 262941 + sha256 = "0f815vfhabry64zjwjp48cdcnk875bx2a8c1ix8lxsa700g2rmav"; 262942 + libraryHaskellDepends = [ 262943 + aeson base bytestring containers process random text time uuid 262944 + ]; 262945 + testHaskellDepends = [ 262946 + aeson base containers hspec QuickCheck quickcheck-instances text 262947 + time uuid 262948 + ]; 262949 + testToolDepends = [ hspec-discover ]; 262950 + description = "Types and aeson instances for taskwarrior tasks"; 262951 + license = lib.licenses.agpl3Plus; 262952 + hydraPlatforms = lib.platforms.none; 262953 + maintainers = with lib.maintainers; [ maralorn ]; 262954 + }) {}; 262955 + 262701 262956 "tasty" = callPackage 262702 262957 ({ mkDerivation, ansi-terminal, base, clock, containers, mtl 262703 262958 , optparse-applicative, stm, tagged, unbounded-delays, unix ··· 264124 264379 pname = "telegram-api"; 264125 264380 version = "0.7.2.0"; 264126 264381 sha256 = "1aixgyxz3izv9z3zwwsbvdnlg4lrhy7aa33zw98v70072a0rqaj2"; 264382 + revision = "1"; 264383 + editedCabalFile = "1mwccj8cs7lcjs1lrwv3wrbj89l5s6s9jpd0svfmmrysn6c20c5a"; 264127 264384 enableSeparateDataOutput = true; 264128 264385 libraryHaskellDepends = [ 264129 264386 aeson base bytestring containers http-api-data http-client ··· 264252 264509 pname = "telegraph"; 264253 264510 version = "1.2.0"; 264254 264511 sha256 = "158wbdzgs4dnrfhhds1dbpmrns8p29qbg5sfph2qaigs1ygf3z58"; 264512 + revision = "1"; 264513 + editedCabalFile = "1rcrrd1jxd5ib00bsw4yyc3a4xfk1m2wyj9naghc08a72xwgxwzw"; 264255 264514 libraryHaskellDepends = [ 264256 264515 aeson base bytestring conduit generic-data-surgery http-client 264257 264516 http-conduit in-other-words mtl optics-th text ··· 269193 269452 hydraPlatforms = lib.platforms.none; 269194 269453 }) {}; 269195 269454 269196 - "time_1_12" = callPackage 269455 + "time_1_13" = callPackage 269197 269456 ({ mkDerivation, base, criterion, deepseq, QuickCheck, random 269198 269457 , tasty, tasty-hunit, tasty-quickcheck 269199 269458 }: 269200 269459 mkDerivation { 269201 269460 pname = "time"; 269202 - version = "1.12"; 269203 - sha256 = "0xavlg1lsq0fip6mwvphr4xz2iykys4wsn468hr8qdg6xqab0x0b"; 269461 + version = "1.13"; 269462 + sha256 = "1i2czgawz0gx3b6mfkcjc8fk4b4jjdlq3znys6kcvzmb6s1lf61d"; 269204 269463 libraryHaskellDepends = [ base deepseq ]; 269205 269464 testHaskellDepends = [ 269206 269465 base deepseq QuickCheck random tasty tasty-hunit tasty-quickcheck ··· 270456 270715 testHaskellDepends = [ base tasty tasty-golden ]; 270457 270716 description = "Haskell tldr client"; 270458 270717 license = lib.licenses.bsd3; 270718 + }) {}; 270719 + 270720 + "tldr_0_9_2" = callPackage 270721 + ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, cmark 270722 + , containers, directory, filepath, http-conduit 270723 + , optparse-applicative, semigroups, tasty, tasty-golden, text, time 270724 + , zip-archive 270725 + }: 270726 + mkDerivation { 270727 + pname = "tldr"; 270728 + version = "0.9.2"; 270729 + sha256 = "1yypb9zhsj9ks7bbw2sayqv3rn9y8z3w5p1xmsnwb4w99dqmvcx5"; 270730 + isLibrary = true; 270731 + isExecutable = true; 270732 + libraryHaskellDepends = [ 270733 + ansi-terminal attoparsec base bytestring cmark containers directory 270734 + filepath http-conduit optparse-applicative semigroups text time 270735 + zip-archive 270736 + ]; 270737 + executableHaskellDepends = [ base ]; 270738 + testHaskellDepends = [ base tasty tasty-golden ]; 270739 + description = "Haskell tldr client"; 270740 + license = lib.licenses.bsd3; 270741 + hydraPlatforms = lib.platforms.none; 270459 270742 }) {}; 270460 270743 270461 270744 "tlex" = callPackage ··· 279167 279450 license = lib.licenses.bsd3; 279168 279451 }) {}; 279169 279452 279453 + "unix-bytestring_0_3_7_5" = callPackage 279454 + ({ mkDerivation, base, bytestring }: 279455 + mkDerivation { 279456 + pname = "unix-bytestring"; 279457 + version = "0.3.7.5"; 279458 + sha256 = "003003nh00aww2k8wdygjp0z7f61z8nz8840iinww83xph5wsih5"; 279459 + libraryHaskellDepends = [ base bytestring ]; 279460 + description = "Unix/Posix-specific functions for ByteStrings"; 279461 + license = lib.licenses.bsd3; 279462 + hydraPlatforms = lib.platforms.none; 279463 + }) {}; 279464 + 279170 279465 "unix-compat" = callPackage 279171 279466 ({ mkDerivation, base, unix }: 279172 279467 mkDerivation { ··· 283243 283538 }: 283244 283539 mkDerivation { 283245 283540 pname = "vega-view"; 283246 - version = "0.3.1.7"; 283247 - sha256 = "1181gfxyxf2m3m23xg89kmmp8aizrm9sm908ydbkw885idh2k5x0"; 283541 + version = "0.4.0.0"; 283542 + sha256 = "0sjwgcvymyl74hgfc93l6nj5422d044dkj02mlzvrcfdqhicz96d"; 283248 283543 isLibrary = false; 283249 283544 isExecutable = true; 283250 283545 executableHaskellDepends = [ ··· 283262 283557 }: 283263 283558 mkDerivation { 283264 283559 pname = "venzone"; 283265 - version = "1.0.0.5"; 283266 - sha256 = "1f8v5xhw6ak6qckrb96rjfpn7h8lm3cq7p0w0k54mrg5ixm4paba"; 283560 + version = "1.0.0.6"; 283561 + sha256 = "1x0034ww13apr1g6mscncacri3nvnmjll7spsip1dnc70ilffk77"; 283267 283562 isLibrary = false; 283268 283563 isExecutable = true; 283269 283564 enableSeparateDataOutput = true;
+26
pkgs/development/haskell-modules/patches/gogol-core-144.patch
··· 1 + diff --git a/gogol-core.cabal b/gogol-core.cabal 2 + index 4c47988..caa4796 100644 3 + --- a/gogol-core.cabal 4 + +++ b/gogol-core.cabal 5 + @@ -62,7 +62,7 @@ library 6 + , lens >= 4.4 7 + , resourcet >= 1.1 8 + , scientific >= 0.3 9 + - , servant >= 0.4.4 10 + + , servant >= 0.14.1 11 + , text >= 1.1 12 + , unordered-containers >= 0.2.5 13 + 14 + diff --git a/src/Network/Google/Prelude.hs b/src/Network/Google/Prelude.hs 15 + index a4ad9de..795c690 100644 16 + --- a/src/Network/Google/Prelude.hs 17 + +++ b/src/Network/Google/Prelude.hs 18 + @@ -28,7 +28,7 @@ import Network.HTTP.Client as Export (RequestBody) 19 + import Numeric.Natural as Export (Natural) 20 + import Prelude as Export hiding (product, span, any, Word) 21 + import Servant.API as Export hiding (Headers, Link, getResponse, Stream, ResponseHeader, Header, header) 22 + -import Servant.Utils.Links as Export hiding (Link) 23 + +import Servant.Links as Export hiding (Link) 24 + import Web.HttpApiData as Export (FromHttpApiData (..), ToHttpApiData (..)) 25 + 26 + import Network.Google.Data.Bytes as Export
+47
pkgs/development/libraries/libbpkg/default.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , libbutl 5 + , enableShared ? !stdenv.hostPlatform.isStatic 6 + , enableStatic ? !enableShared 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "libbpkg"; 11 + version = "0.13.0"; 12 + outputs = [ "out" "dev" "doc" ]; 13 + 14 + src = fetchurl { 15 + url = "https://pkg.cppget.org/1/alpha/build2/libbpkg-${version}.tar.gz"; 16 + sha256 = "732849cdd5d773c589dd0ac220002fa41424784df10617adc4dea729faafb22b"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + build2 21 + ]; 22 + buildInputs = [ 23 + libbutl 24 + ]; 25 + 26 + build2ConfigureFlags = [ 27 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 28 + ]; 29 + 30 + strictDeps = true; 31 + 32 + doCheck = true; 33 + 34 + meta = with lib; { 35 + description = "build2 package dependency manager utility library"; 36 + longDescription = '' 37 + This library defines the types and utilities for working with build2 packages. 38 + In particular, it provides C++ classes as well as the parser and serializer 39 + implementations that can be used to read, manipulate, and write package, 40 + repository and signature manifests. 41 + ''; 42 + homepage = "https://build2.org/"; 43 + changelog = "https://git.build2.org/cgit/libbpkg/log"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ r-burns ]; 46 + }; 47 + }
+54
pkgs/development/libraries/libbutl/default.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , libuuid 5 + , enableShared ? !stdenv.hostPlatform.isStatic 6 + , enableStatic ? !enableShared 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "libbutl"; 11 + version = "0.13.0"; 12 + 13 + outputs = [ "out" "dev" "doc" ]; 14 + 15 + src = fetchurl { 16 + url = "https://pkg.cppget.org/1/alpha/build2/libbutl-${version}.tar.gz"; 17 + sha256 = "d7944637ab4a17d3a299c04ff6f146e89b2a0f433ddd9d08d8632a25bae9c9cb"; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + build2 22 + ]; 23 + 24 + strictDeps = true; 25 + 26 + # Should be true for anything built with build2, 27 + # but especially important when bootstrapping 28 + disallowedReferences = [ build2 ]; 29 + 30 + postPatch = lib.optionalString stdenv.isLinux '' 31 + substituteInPlace libbutl/uuid-linux.cxx \ 32 + --replace '"libuuid.so' '"${lib.getLib libuuid}/lib/libuuid.so' 33 + ''; 34 + 35 + build2ConfigureFlags = [ 36 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 37 + ]; 38 + 39 + # tests broken with -DNDEBUG 40 + # https://github.com/build2/libbutl/issues/4 41 + # doCheck = true; 42 + 43 + meta = with lib; { 44 + description = "build2 utility library"; 45 + longDescription = '' 46 + This library is a collection of utilities that are used throughout the 47 + build2 toolchain. 48 + ''; 49 + homepage = "https://build2.org/"; 50 + changelog = "https://git.build2.org/cgit/libbutl/log"; 51 + license = licenses.mit; 52 + maintainers = with maintainers; [ r-burns ]; 53 + }; 54 + }
+56
pkgs/development/libraries/libodb-sqlite/default.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , libodb 5 + , sqlite 6 + , enableShared ? !stdenv.hostPlatform.isStatic 7 + , enableStatic ? !enableShared 8 + }: 9 + stdenv.mkDerivation rec { 10 + pname = "libodb-sqlite"; 11 + version = "2.5.0-b.19"; 12 + 13 + outputs = [ "out" "dev" "doc" ]; 14 + 15 + src = fetchurl { 16 + url = "https://pkg.cppget.org/1/beta/odb/libodb-sqlite-${version}.tar.gz"; 17 + sha256 = "9443653bfc31d02d0d723f18072f6b04083d090e6580844e33c1e769db122494"; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + build2 22 + ]; 23 + buildInputs = [ 24 + libodb 25 + ]; 26 + propagatedBuildInputs = [ 27 + sqlite 28 + ]; 29 + 30 + build2ConfigureFlags = [ 31 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 32 + ]; 33 + 34 + doCheck = true; 35 + 36 + meta = with lib; { 37 + description = "SQLite ODB runtime library"; 38 + longDescription = '' 39 + ODB is an object-relational mapping (ORM) system for C++. It provides 40 + tools, APIs, and library support that allow you to persist C++ objects 41 + to a relational database (RDBMS) without having to deal with tables, 42 + columns, or SQL and without manually writing any of the mapping code. 43 + For more information see: 44 + 45 + http://www.codesynthesis.com/products/odb/ 46 + 47 + This package contains the SQLite ODB runtime library. Every application 48 + that includes code generated for the SQLite database will need to link 49 + to this library. 50 + ''; 51 + homepage = "https://www.codesynthesis.com/products/odb/"; 52 + changelog = "https://git.codesynthesis.com/cgit/odb/libodb-sqlite/tree/NEWS"; 53 + license = licenses.gpl2Only; 54 + maintainers = with maintainers; [ r-burns ]; 55 + }; 56 + }
+45
pkgs/development/libraries/libodb/default.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , enableShared ? !stdenv.hostPlatform.isStatic 5 + , enableStatic ? !enableShared 6 + }: 7 + stdenv.mkDerivation rec { 8 + pname = "libodb"; 9 + version = "2.5.0-b.19"; 10 + 11 + outputs = [ "out" "dev" "doc" ]; 12 + 13 + src = fetchurl { 14 + url = "https://pkg.cppget.org/1/beta/odb/libodb-${version}.tar.gz"; 15 + sha256 = "8180d9d40d8e74ed25b1712953f19379a29abdee3896ae98ba9ade35846adb39"; 16 + }; 17 + 18 + nativeBuildInputs = [ build2 ]; 19 + build2ConfigureFlags = [ 20 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 21 + ]; 22 + 23 + doCheck = true; 24 + 25 + meta = with lib; { 26 + description = "Common ODB runtime library"; 27 + longDescription = '' 28 + ODB is an object-relational mapping (ORM) system for C++. It provides 29 + tools, APIs, and library support that allow you to persist C++ objects 30 + to a relational database (RDBMS) without having to deal with tables, 31 + columns, or SQL and without manually writing any of the mapping code. 32 + For more information see: 33 + 34 + http://www.codesynthesis.com/products/odb/ 35 + 36 + This package contains the common ODB runtime library. Every application 37 + that includes code generated by the ODB compiler will need to link to 38 + this library. 39 + ''; 40 + homepage = "https://www.codesynthesis.com/products/odb/"; 41 + changelog = "https://git.codesynthesis.com/cgit/odb/libodb/tree/NEWS"; 42 + license = licenses.gpl2Only; 43 + maintainers = with maintainers; [ r-burns ]; 44 + }; 45 + }
+3
pkgs/development/libraries/mtxclient/default.nix
··· 21 21 sha256 = "sha256-UKroV1p7jYuNzCAFMsuUsYC/C9AZ1D4rhwpwuER39vc="; 22 22 }; 23 23 24 + # This patch should be obsolete and should stop applying the in next release. 25 + patches = [ ./fix-compilation-with-olm-3.2.5.patch ]; 26 + 24 27 cmakeFlags = [ 25 28 # Network requiring tests can't be disabled individually: 26 29 # https://github.com/Nheko-Reborn/mtxclient/issues/22
+22
pkgs/development/libraries/mtxclient/fix-compilation-with-olm-3.2.5.patch
··· 1 + diff -Naur old/lib/crypto/client.cpp c5pf6ygk9v9rdwwr3dyd24wghflp0vmx-source/lib/crypto/client.cpp 2 + --- old/lib/crypto/client.cpp 2021-10-22 19:31:52.159836190 +0300 3 + +++ c5pf6ygk9v9rdwwr3dyd24wghflp0vmx-source/lib/crypto/client.cpp 2021-10-22 19:30:42.882010441 +0300 4 + @@ -37,15 +37,15 @@ 5 + 6 + }; 7 + 8 + -OlmErrorCode 9 + +mtx::crypto::OlmErrorCode 10 + olm_exception::ec_from_string(std::string_view error) 11 + { 12 + for (size_t i = 0; i < olmErrorStrings.size(); i++) { 13 + if (olmErrorStrings[i] == error) 14 + - return static_cast<OlmErrorCode>(i); 15 + + return static_cast<mtx::crypto::OlmErrorCode>(i); 16 + } 17 + 18 + - return OlmErrorCode::UNKNOWN_ERROR; 19 + + return mtx::crypto::OlmErrorCode::UNKNOWN_ERROR; 20 + } 21 + 22 + void
+49
pkgs/development/tools/build-managers/build2/bdep.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , libbpkg 5 + , libbutl 6 + , libodb 7 + , libodb-sqlite 8 + , enableShared ? !stdenv.hostPlatform.isStatic 9 + , enableStatic ? !enableShared 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "bdep"; 14 + version = "0.13.0"; 15 + 16 + outputs = [ "out" "doc" "man" ]; 17 + src = fetchurl { 18 + url = "https://pkg.cppget.org/1/alpha/build2/bdep-${version}.tar.gz"; 19 + sha256 = "8e11b469d875d05c4eb7a228416b78a61c68a49310e5e41db78ed6d048f6ba2a"; 20 + }; 21 + 22 + strictDeps = true; 23 + nativeBuildInputs = [ 24 + build2 25 + ]; 26 + buildInputs = [ 27 + libbpkg 28 + libbutl 29 + libodb 30 + libodb-sqlite 31 + ]; 32 + 33 + build2ConfigureFlags = [ 34 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "build2 project dependency manager"; 39 + # https://build2.org/bdep/doc/bdep.xhtml 40 + longDescription = '' 41 + The build2 project dependency manager is used to manage the dependencies 42 + of a project during development. 43 + ''; 44 + homepage = "https://build2.org/"; 45 + changelog = "https://git.build2.org/cgit/bdep/tree/NEWS"; 46 + license = licenses.mit; 47 + maintainers = with maintainers; [ r-burns ]; 48 + }; 49 + }
+44
pkgs/development/tools/build-managers/build2/bootstrap.nix
··· 1 + { lib, stdenv 2 + , fetchurl 3 + , pkgs 4 + , fixDarwinDylibNames 5 + }: 6 + stdenv.mkDerivation rec { 7 + pname = "build2-bootstrap"; 8 + version = "0.13.0"; 9 + src = fetchurl { 10 + url = "https://download.build2.org/${version}/build2-toolchain-${version}.tar.xz"; 11 + sha256 = "01hmr5y8aa28qchwy9ci8x5q746flwxmlxarmy4w9zay9nmvryms"; 12 + }; 13 + patches = [ 14 + # Pick up sysdirs from NIX_LDFLAGS 15 + ./nix-ldflags-sysdirs.patch 16 + ]; 17 + 18 + sourceRoot = "build2-toolchain-${version}/build2"; 19 + makefile = "bootstrap.gmake"; 20 + enableParallelBuilding = true; 21 + 22 + setupHook = ./setup-hook.sh; 23 + 24 + strictDeps = true; 25 + 26 + propagatedBuildInputs = lib.optionals stdenv.targetPlatform.isDarwin [ 27 + fixDarwinDylibNames 28 + ]; 29 + 30 + doCheck = true; 31 + checkPhase = '' 32 + runHook preCheck 33 + build2/b-boot --version 34 + runHook postCheck 35 + ''; 36 + 37 + installPhase = '' 38 + runHook preInstall 39 + install -D build2/b-boot $out/bin/b 40 + runHook postInstall 41 + ''; 42 + 43 + inherit (pkgs.build2) passthru; 44 + }
+63
pkgs/development/tools/build-managers/build2/bpkg.nix
··· 1 + { lib, stdenv 2 + , build2 3 + , fetchurl 4 + , git 5 + , libbpkg 6 + , libbutl 7 + , libodb 8 + , libodb-sqlite 9 + , openssl 10 + , enableShared ? !stdenv.hostPlatform.isStatic 11 + , enableStatic ? !enableShared 12 + }: 13 + 14 + stdenv.mkDerivation rec { 15 + pname = "bpkg"; 16 + version = "0.13.0"; 17 + 18 + outputs = [ "out" "doc" "man" ]; 19 + 20 + src = fetchurl { 21 + url = "https://pkg.cppget.org/1/alpha/build2/bpkg-${version}.tar.gz"; 22 + sha256 = "fec41e171c8ea7967bfc44850568cd624def544fd866c383bd413c5b4349e282"; 23 + }; 24 + 25 + strictDeps = true; 26 + nativeBuildInputs = [ 27 + build2 28 + ]; 29 + buildInputs = [ 30 + libbpkg 31 + libbutl 32 + libodb 33 + libodb-sqlite 34 + ]; 35 + checkInputs = [ 36 + git 37 + openssl 38 + ]; 39 + 40 + doCheck = !stdenv.isDarwin; # tests hang 41 + 42 + # Failing test 43 + postPatch = '' 44 + rm tests/rep-create.testscript 45 + ''; 46 + 47 + build2ConfigureFlags = [ 48 + "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" 49 + ]; 50 + 51 + meta = with lib; { 52 + description = "build2 package dependency manager"; 53 + # https://build2.org/bpkg/doc/bpkg.xhtml 54 + longDescription = '' 55 + The build2 package dependency manager is used to manipulate build 56 + configurations, packages, and repositories. 57 + ''; 58 + homepage = "https://build2.org/"; 59 + changelog = "https://git.build2.org/cgit/bpkg/tree/NEWS"; 60 + license = licenses.mit; 61 + maintainers = with maintainers; [ r-burns ]; 62 + }; 63 + }
+74 -10
pkgs/development/tools/build-managers/build2/default.nix
··· 1 - { stdenv, lib, fetchurl }: 2 - 1 + { stdenv, lib 2 + , build2 3 + , fetchurl 4 + , fetchpatch 5 + , fixDarwinDylibNames 6 + , libbutl 7 + , libpkgconf 8 + , enableShared ? !stdenv.hostPlatform.isStatic 9 + , enableStatic ? !enableShared 10 + }: 11 + let 12 + configSharedStatic = enableShared: enableStatic: 13 + if enableShared && enableStatic then "both" 14 + else if enableShared then "shared" 15 + else if enableStatic then "static" 16 + else throw "neither shared nor static libraries requested"; 17 + in 3 18 stdenv.mkDerivation rec { 4 19 pname = "build2"; 5 20 version = "0.13.0"; 6 21 22 + outputs = [ "out" "dev" "doc" "man" ]; 23 + 24 + setupHook = ./setup-hook.sh; 25 + 7 26 src = fetchurl { 8 - url = "https://download.build2.org/${version}/build2-toolchain-${version}.tar.xz"; 9 - sha256 = "01hmr5y8aa28qchwy9ci8x5q746flwxmlxarmy4w9zay9nmvryms"; 27 + url = "https://pkg.cppget.org/1/alpha/build2/build2-${version}.tar.gz"; 28 + sha256 = "aff53a87c23534e0232b5cf746e0be4b2aaa840c3de4e668b98e382a3973c45e"; 10 29 }; 11 30 12 - dontConfigure = true; 13 - dontInstall = true; 31 + patches = [ 32 + # Remove any build/host config entries which refer to nix store paths 33 + ./remove-config-store-paths.patch 34 + # Pick up sysdirs from NIX_LDFLAGS 35 + ./nix-ldflags-sysdirs.patch 36 + # Fix stray '-l' linker flags in pkg-config files (remove in next release) 37 + (fetchpatch { 38 + url = "https://github.com/build2/build2/commit/d51892e33a0fe69e743e02d9620312133a7ac61d.patch"; 39 + sha256 = "0xzm084bxnfi8lqng0cwxvz8ylbfzk0didbr2wf385gssv4fva81"; 40 + }) 41 + ]; 14 42 15 - buildPhase = '' 16 - runHook preBuild 17 - ./build.sh --local --trust yes --install-dir "$out" "$CXX" 18 - runHook postBuild 43 + strictDeps = true; 44 + nativeBuildInputs = [ 45 + build2 46 + ]; 47 + disallowedReferences = [ 48 + build2 49 + libbutl.dev 50 + libpkgconf.dev 51 + ]; 52 + buildInputs = [ 53 + libbutl 54 + libpkgconf 55 + ]; 56 + 57 + # Build2 uses @rpath on darwin 58 + # https://github.com/build2/build2/issues/166 59 + # N.B. this only adjusts the install_name after all libraries are installed; 60 + # packages containing multiple interdependent libraries may have 61 + # LC_LOAD_DYLIB entries containing @rpath, requiring manual fixup 62 + propagatedBuildInputs = lib.optionals stdenv.targetPlatform.isDarwin [ 63 + fixDarwinDylibNames 64 + ]; 65 + 66 + postPatch = '' 67 + patchShebangs --build tests/bash/testscript 19 68 ''; 20 69 70 + build2ConfigureFlags = [ 71 + "config.bin.lib=${configSharedStatic enableShared enableStatic}" 72 + "config.cc.poptions+=-I${lib.getDev libpkgconf}/include/pkgconf" 73 + ]; 74 + 75 + postInstall = lib.optionalString stdenv.isDarwin '' 76 + install_name_tool -add_rpath "''${!outputLib}/lib" "''${!outputBin}/bin/b" 77 + ''; 78 + 79 + passthru = { 80 + bootstrap = build2; 81 + inherit configSharedStatic; 82 + }; 83 + 21 84 meta = with lib; { 22 85 homepage = "https://www.build2.org/"; 23 86 description = "build2 build system"; ··· 34 97 at C/C++ projects as well as mixed-language projects involving 35 98 one of these languages (see bash and rust modules, for example). 36 99 ''; 100 + changelog = "https://git.build2.org/cgit/build2/tree/NEWS"; 37 101 platforms = platforms.all; 38 102 maintainers = with maintainers; [ hiro98 r-burns ]; 39 103 };
+42
pkgs/development/tools/build-managers/build2/nix-ldflags-sysdirs.patch
··· 1 + diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx 2 + index f848003c..0f14f9a5 100644 3 + --- a/libbuild2/cc/common.cxx 4 + +++ b/libbuild2/cc/common.cxx 5 + @@ -966,6 +966,17 @@ namespace build2 6 + void 7 + msvc_extract_library_search_dirs (const strings&, dir_paths&); // msvc.cxx 8 + 9 + + static strings split (const string& s, const char delim) { 10 + + stringstream ss (s); 11 + + string item; 12 + + strings result; 13 + + 14 + + while (getline (ss, item, delim)) { 15 + + result.push_back (item); 16 + + } 17 + + return result; 18 + + } 19 + + 20 + dir_paths common:: 21 + extract_library_search_dirs (const scope& bs) const 22 + { 23 + @@ -987,8 +998,19 @@ namespace build2 24 + msvc_extract_library_search_dirs (v, r); 25 + else 26 + gcc_extract_library_search_dirs (v, r); 27 + + 28 + }; 29 + 30 + + // NIX_LDFLAGS are implicitly used when linking, 31 + + // so its -L flags effectively specify system dirs. 32 + + // However, they are only enabled when actually linking and are thus 33 + + // not detected by build2, so we need to manually pick them up here. 34 + + if (auto s = getenv ("NIX_LDFLAGS")) { 35 + + // TODO: do we need more robust args splitting here? e.g. shlex.split 36 + + auto args = split (s.value (), ' '); 37 + + gcc_extract_library_search_dirs (args, r); 38 + + } 39 + + 40 + // Note that the compiler mode options are in sys_lib_dirs. 41 + // 42 + if (auto l = bs[c_loptions]) extract (*l, c_loptions);
+14
pkgs/development/tools/build-managers/build2/remove-config-store-paths.patch
··· 1 + --- a/libbuild2/buildfile 2 + +++ b/libbuild2/buildfile 3 + @@ -68,7 +68,11 @@ config/cxx{host-config}: config/in{host-config} 4 + # 5 + build2_config = $regex.replace_lines( \ 6 + + $regex.replace_lines( \ 7 + $config.save(), \ 8 + '^ *(#|config\.dist\.|config\.install\.chroot).*$', \ 9 + [null], \ 10 + + return_lines), \ 11 + + '^.*'$getenv(NIX_STORE)'/[a-z0-9]{32}-.*$', \ 12 + + [null], \ 13 + return_lines) 14 +
+85
pkgs/development/tools/build-managers/build2/setup-hook.sh
··· 1 + build2ConfigurePhase() { 2 + runHook preConfigure 3 + 4 + local flagsArray=( 5 + "config.c=$CC" 6 + "config.cxx=$CXX" 7 + "config.cc.coptions+=-O2" 8 + "config.cc.poptions+=-DNDEBUG" 9 + "config.install.root=$prefix" 10 + "config.install.bin=${!outputBin}/bin" 11 + "config.install.doc=${!outputDoc}/share/doc/${shareDocName}" 12 + "config.install.exec_root=${!outputBin}" 13 + "config.install.include=${!outputInclude}/include" 14 + "config.install.lib=${!outputLib}/lib" 15 + "config.install.libexec=${!outputLib}/libexec" 16 + "config.install.man=${!outputDoc}/share/man" 17 + "config.install.sbin=${!outputBin}/sbin" 18 + "config.install.bin.mode=755" 19 + $build2ConfigureFlags "${build2ConfigureFlagsArray[@]}" 20 + ) 21 + 22 + echo 'configure flags' "${flagsArray[@]}" 23 + 24 + b configure "${flagsArray[@]}" 25 + 26 + runHook postConfigure 27 + } 28 + 29 + build2BuildPhase() { 30 + runHook preBuild 31 + 32 + local flagsArray=( 33 + $build2BuildFlags "${build2BuildFlagsArray[@]}" 34 + ) 35 + 36 + echo 'build flags' "${flagsArray[@]}" 37 + b "${flagsArray[@]}" 38 + 39 + runHook postBuild 40 + } 41 + 42 + build2CheckPhase() { 43 + runHook preCheck 44 + 45 + local flagsArray=( 46 + $build2CheckFlags "${build2CheckFlags[@]}" 47 + ) 48 + 49 + echo 'check flags' "${flagsArray[@]}" 50 + 51 + b test ${build2Dir:-.} "${flagsArray[@]}" 52 + 53 + runHook postCheck 54 + } 55 + 56 + build2InstallPhase() { 57 + runHook preInstall 58 + 59 + local flagsArray=( 60 + $build2InstallFlags "${build2InstallFlagsArray[@]}" 61 + ${installTargets:-} 62 + ) 63 + 64 + echo 'install flags' "${flagsArray[@]}" 65 + b install "${flagsArray[@]}" 66 + 67 + runHook postInstall 68 + } 69 + 70 + if [ -z "${dontUseBuild2Configure-}" -a -z "${configurePhase-}" ]; then 71 + setOutputFlags= 72 + configurePhase=build2ConfigurePhase 73 + fi 74 + 75 + if [ -z "${dontUseBuild2Build-}" -a -z "${buildPhase-}" ]; then 76 + buildPhase=build2BuildPhase 77 + fi 78 + 79 + if [ -z "${dontUseBuild2Check-}" -a -z "${checkPhase-}" ]; then 80 + checkPhase=build2CheckPhase 81 + fi 82 + 83 + if [ -z "${dontUseBuild2Install-}" -a -z "${installPhase-}" ]; then 84 + installPhase=build2InstallPhase 85 + fi
+3 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgbouncer"; 5 - version = "1.15.0"; 5 + version = "1.16.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "100ksf2wcdrsscaiq78s030mb48hscjr3kfbm9h6y9d6i8arwnp0"; 9 + sha256 = "0li66jk1v07bpfmmqzcqjn5vkhglfhwnbncc5bpalg5qidhr38x4"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; ··· 17 17 homepage = "https://pgbouncer.github.io"; 18 18 description = "Lightweight connection pooler for PostgreSQL"; 19 19 license = licenses.isc; 20 + maintainers = with maintainers; [ _1000101 ]; 20 21 platforms = platforms.all; 21 22 }; 22 23 }
+6 -6
pkgs/tools/misc/pgmetrics/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pgmetrics"; 5 - version = "1.11.0"; 5 + version = "1.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "rapidloop"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-8E4rciuoZrj8Oz2EXqtFgrPxvb8GJO3n1s2FpXrR0Q0="; 8 + owner = "rapidloop"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1fwc4qc17fqmzx08kiyfx5iwgzr14dxk9i8zjd9bq5gk281v0ybd"; 12 12 }; 13 13 14 - vendorSha256 = "sha256-scaaRjaDE/RG6Ei83CJBkfQCd1e5pH/Cs2vEbdl9Oyg="; 14 + vendorSha256 = "18da45axjl8l3qb6f3w5v2c7clz4bjhdz2bck20j729k7693hpsl"; 15 15 16 16 doCheck = false; 17 17
+17 -1
pkgs/top-level/all-packages.nix
··· 13979 13979 13980 13980 buck = callPackage ../development/tools/build-managers/buck { }; 13981 13981 13982 - build2 = callPackage ../development/tools/build-managers/build2 { }; 13982 + build2 = callPackage ../development/tools/build-managers/build2 { 13983 + # Break cycle by using self-contained toolchain for bootstrapping 13984 + build2 = buildPackages.callPackage ../development/tools/build-managers/build2/bootstrap.nix { }; 13985 + }; 13986 + 13987 + # Dependency of build2, must also break cycle for this 13988 + libbutl = callPackage ../development/libraries/libbutl { 13989 + build2 = build2.bootstrap; 13990 + }; 13991 + 13992 + libbpkg = callPackage ../development/libraries/libbpkg { }; 13993 + libodb = callPackage ../development/libraries/libodb { }; 13994 + libodb-sqlite = callPackage ../development/libraries/libodb-sqlite { }; 13995 + bdep = callPackage ../development/tools/build-managers/build2/bdep.nix { }; 13996 + bpkg = callPackage ../development/tools/build-managers/build2/bpkg.nix { }; 13983 13997 13984 13998 buildkite-agent = callPackage ../development/tools/continuous-integration/buildkite-agent { }; 13985 13999 ··· 14744 14758 msitools = callPackage ../development/tools/misc/msitools { }; 14745 14759 14746 14760 haskell-ci = haskell.lib.justStaticExecutables haskellPackages.haskell-ci; 14761 + haskell-ci-unstable = lowPrio (haskell.lib.justStaticExecutables haskellPackages.haskell-ci-unstable); 14747 14762 14748 14763 neoload = callPackage ../development/tools/neoload { 14749 14764 licenseAccepted = (config.neoload.accept_license or false); ··· 14849 14864 pkg-config = pkgconf-unwrapped; 14850 14865 baseBinName = "pkgconf"; 14851 14866 }; 14867 + libpkgconf = pkgconf-unwrapped; 14852 14868 14853 14869 pkg-config-unwrapped = callPackage ../development/tools/misc/pkg-config { }; 14854 14870 pkg-config = callPackage ../build-support/pkg-config-wrapper {