Merge branch 'master' into staging-next
This commit is contained in:
@@ -146,16 +146,11 @@ self: super: {
|
||||
else super.halive;
|
||||
|
||||
# Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
|
||||
hakyll = appendPatch
|
||||
(if pkgs.stdenv.isDarwin
|
||||
hakyll = if pkgs.stdenv.isDarwin
|
||||
then dontCheck (overrideCabal super.hakyll (drv: {
|
||||
testToolDepends = [];
|
||||
}))
|
||||
else super.hakyll)
|
||||
(pkgs.fetchpatch {
|
||||
url = https://github.com/jaspervdj/hakyll/commit/25a4460b75b3c9f3ce339b3311b084d92994f5f1.patch;
|
||||
sha256 = "sha256-F59WHt52LOKGsGoaD3LAIZFEMe9s9WHfGxQgSh9Q8uQ=";
|
||||
});
|
||||
else super.hakyll;
|
||||
|
||||
double-conversion = if !pkgs.stdenv.isDarwin
|
||||
then super.double-conversion
|
||||
@@ -1231,4 +1226,10 @@ self: super: {
|
||||
# The LTS-14.x version of optparse-applicative is too old.
|
||||
cabal-plan = super.cabal-plan.override { optparse-applicative = self.optparse-applicative_0_15_1_0; };
|
||||
|
||||
# https://github.com/brendanhay/amazonka/commit/657b70d174fe5cb61e56cb8b9c5e57f1ec216f2b
|
||||
amazonka = appendPatch super.amazonka ./patches/amazonka-Allow-http-client-0.6.patch;
|
||||
|
||||
# https://github.com/brendanhay/amazonka/commit/657b70d174fe5cb61e56cb8b9c5e57f1ec216f2b
|
||||
amazonka-core = appendPatch super.amazonka-core ./patches/amazonka-core-Allow-http-client-0.6.patch;
|
||||
|
||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||
|
||||
@@ -96,27 +96,18 @@ self: super: {
|
||||
url = "https://gitlab.haskell.org/ghc/head.hackage/raw/master/patches/hedgehog-1.0.patch";
|
||||
sha256 = "16gadh1hb74jqvzc9c893sffb1y2vjglblyrqjwp7xfhccq7g8yw";
|
||||
});
|
||||
easytest = self.easytest_0_3;
|
||||
easytest = markBroken super.easytest;
|
||||
easytest_0_3 = markBroken super.easytest_0_3;
|
||||
regex-tdfa = appendPatch super.regex-tdfa (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/regex-tdfa-1.2.3.1.patch";
|
||||
sha256 = "1lhas4s2ms666prb475gaw2bqw1v4y8cxi66sy20j727sx7ppjs7";
|
||||
});
|
||||
cassava = appendPatch super.cassava (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/cassava-0.5.1.0.patch";
|
||||
sha256 = "11scwwjp94si90vb8v5yr291g9qwv5l223z8y0g0lc63932bp63g";
|
||||
});
|
||||
shakespeare = appendPatch super.shakespeare (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/shakespeare-2.0.20.patch";
|
||||
sha256 = "1dgx41ylahj4wk8r422aik0d7qdpawdga4gqz905nvlnhqjla58y";
|
||||
});
|
||||
socks = appendPatch (doJailbreak super.socks) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/socks-0.6.0.patch";
|
||||
sha256 = "1dsqmx0sw62x4glh43c0sbizd2y00v5xybiqadn96v6pmfrap5cp";
|
||||
});
|
||||
lens = appendPatch (doJailbreak super.lens) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/lens-4.17.1.patch";
|
||||
sha256 = "0w89ipi6dfkx5vlw4a64hh6fd0bm9hg33mwpghliyyxik5jmilv1";
|
||||
});
|
||||
lens = self.lens_4_18_1;
|
||||
xmonad-contrib = self.xmonad-contrib_0_16;
|
||||
polyparse = appendPatch (doJailbreak super.polyparse) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/polyparse-1.12.1.patch";
|
||||
sha256 = "01b2gnsq0x4fd9na8zpk6pajym55mbz64hgzawlwxdw0y6681kr5";
|
||||
@@ -157,10 +148,37 @@ self: super: {
|
||||
});
|
||||
tls = self.tls_1_5_1;
|
||||
vault = dontHaddock super.vault;
|
||||
monad-par = dontCheck super.monad-par; # test suite does not compile in monad-par-0.3.4.8
|
||||
|
||||
# TODO dont fetch patch if https://github.com/simonmar/alex/issues/140 is resolved
|
||||
alex = appendPatch super.alex (pkgs.fetchpatch {
|
||||
url = "https://github.com/simonmar/alex/commit/deaae6eddef5186bfd0e42e2c3ced39e26afa4d6.patch";
|
||||
sha256 = "1v40gmnw4lqyk271wngdwz8whpfdhmza58srbkka8icwwwrck3l5";
|
||||
});
|
||||
|
||||
# don't use obsolete "defaultUserHooks" in Setup.hs
|
||||
X11 = appendPatch super.X11 (pkgs.fetchpatch {
|
||||
url = "https://github.com/xmonad/X11/commit/8d817617afa1b54e6c50a9cc552dc1c0804c1794.patch";
|
||||
sha256 = "0zsgzn0nvdxvqi5z0za3gzlhql2x5d5cr0kkr19j5c67fy177w6b";
|
||||
});
|
||||
|
||||
# over-specified version constraints
|
||||
aeson-diff = doJailbreak super.aeson-diff;
|
||||
|
||||
# https://github.com/sol/hpack/issues/371
|
||||
hpack = markBrokenVersion "0.32.0" super.hpack;
|
||||
|
||||
# Upstream ships a broken Setup.hs file.
|
||||
csv = overrideCabal super.csv (drv: { prePatch = "rm Setup.hs"; });
|
||||
|
||||
# Upstream ships a broken Setup.hs file.
|
||||
string-qq = overrideSrc (dontCheck super.string-qq) {
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "dmwit";
|
||||
repo = "string-qq";
|
||||
rev = "b396f5ef36a9b23f1d3fafcc91f2222cd1ad24fe";
|
||||
sha256 = "1z2f1yry8wi0jb38dgz7rl89zl63fhngf7xk4ljw240vn315jj8s";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -2871,146 +2871,6 @@ broken-packages:
|
||||
- amazon-emailer
|
||||
- amazon-emailer-client-snap
|
||||
- amazon-products
|
||||
- amazonka
|
||||
- amazonka-alexa-business
|
||||
- amazonka-apigateway
|
||||
- amazonka-application-autoscaling
|
||||
- amazonka-appstream
|
||||
- amazonka-appsync
|
||||
- amazonka-athena
|
||||
- amazonka-autoscaling
|
||||
- amazonka-autoscaling-plans
|
||||
- amazonka-batch
|
||||
- amazonka-budgets
|
||||
- amazonka-certificatemanager
|
||||
- amazonka-certificatemanager-pca
|
||||
- amazonka-cloud9
|
||||
- amazonka-clouddirectory
|
||||
- amazonka-cloudformation
|
||||
- amazonka-cloudfront
|
||||
- amazonka-cloudhsm
|
||||
- amazonka-cloudhsmv2
|
||||
- amazonka-cloudsearch
|
||||
- amazonka-cloudsearch-domains
|
||||
- amazonka-cloudtrail
|
||||
- amazonka-cloudwatch
|
||||
- amazonka-cloudwatch-events
|
||||
- amazonka-cloudwatch-logs
|
||||
- amazonka-codebuild
|
||||
- amazonka-codecommit
|
||||
- amazonka-codedeploy
|
||||
- amazonka-codepipeline
|
||||
- amazonka-codestar
|
||||
- amazonka-cognito-identity
|
||||
- amazonka-cognito-idp
|
||||
- amazonka-cognito-sync
|
||||
- amazonka-comprehend
|
||||
- amazonka-config
|
||||
- amazonka-connect
|
||||
- amazonka-core
|
||||
- amazonka-cost-explorer
|
||||
- amazonka-cur
|
||||
- amazonka-datapipeline
|
||||
- amazonka-devicefarm
|
||||
- amazonka-directconnect
|
||||
- amazonka-discovery
|
||||
- amazonka-dms
|
||||
- amazonka-ds
|
||||
- amazonka-dynamodb
|
||||
- amazonka-dynamodb-dax
|
||||
- amazonka-dynamodb-streams
|
||||
- amazonka-ec2
|
||||
- amazonka-ecr
|
||||
- amazonka-ecs
|
||||
- amazonka-efs
|
||||
- amazonka-elasticache
|
||||
- amazonka-elasticbeanstalk
|
||||
- amazonka-elasticsearch
|
||||
- amazonka-elastictranscoder
|
||||
- amazonka-elb
|
||||
- amazonka-elbv2
|
||||
- amazonka-emr
|
||||
- amazonka-fms
|
||||
- amazonka-gamelift
|
||||
- amazonka-glacier
|
||||
- amazonka-glue
|
||||
- amazonka-greengrass
|
||||
- amazonka-guardduty
|
||||
- amazonka-health
|
||||
- amazonka-iam
|
||||
- amazonka-importexport
|
||||
- amazonka-inspector
|
||||
- amazonka-iot
|
||||
- amazonka-iot-analytics
|
||||
- amazonka-iot-dataplane
|
||||
- amazonka-iot-jobs-dataplane
|
||||
- amazonka-kinesis
|
||||
- amazonka-kinesis-analytics
|
||||
- amazonka-kinesis-firehose
|
||||
- amazonka-kinesis-video
|
||||
- amazonka-kinesis-video-archived-media
|
||||
- amazonka-kinesis-video-media
|
||||
- amazonka-kms
|
||||
- amazonka-lambda
|
||||
- amazonka-lex-models
|
||||
- amazonka-lex-runtime
|
||||
- amazonka-lightsail
|
||||
- amazonka-marketplace-analytics
|
||||
- amazonka-marketplace-entitlement
|
||||
- amazonka-marketplace-metering
|
||||
- amazonka-mechanicalturk
|
||||
- amazonka-mediaconvert
|
||||
- amazonka-medialive
|
||||
- amazonka-mediapackage
|
||||
- amazonka-mediastore
|
||||
- amazonka-mediastore-dataplane
|
||||
- amazonka-migrationhub
|
||||
- amazonka-ml
|
||||
- amazonka-mobile
|
||||
- amazonka-mq
|
||||
- amazonka-opsworks
|
||||
- amazonka-opsworks-cm
|
||||
- amazonka-organizations
|
||||
- amazonka-pinpoint
|
||||
- amazonka-polly
|
||||
- amazonka-pricing
|
||||
- amazonka-rds
|
||||
- amazonka-redshift
|
||||
- amazonka-rekognition
|
||||
- amazonka-resourcegroups
|
||||
- amazonka-resourcegroupstagging
|
||||
- amazonka-route53
|
||||
- amazonka-route53-autonaming
|
||||
- amazonka-route53-domains
|
||||
- amazonka-s3
|
||||
- amazonka-s3-streaming
|
||||
- amazonka-sagemaker
|
||||
- amazonka-sagemaker-runtime
|
||||
- amazonka-sdb
|
||||
- amazonka-secretsmanager
|
||||
- amazonka-serverlessrepo
|
||||
- amazonka-servicecatalog
|
||||
- amazonka-ses
|
||||
- amazonka-shield
|
||||
- amazonka-sms
|
||||
- amazonka-snowball
|
||||
- amazonka-sns
|
||||
- amazonka-sqs
|
||||
- amazonka-ssm
|
||||
- amazonka-stepfunctions
|
||||
- amazonka-storagegateway
|
||||
- amazonka-sts
|
||||
- amazonka-support
|
||||
- amazonka-swf
|
||||
- amazonka-test
|
||||
- amazonka-transcribe
|
||||
- amazonka-translate
|
||||
- amazonka-waf
|
||||
- amazonka-waf-regional
|
||||
- amazonka-workdocs
|
||||
- amazonka-workmail
|
||||
- amazonka-workspaces
|
||||
- amazonka-xray
|
||||
- amby
|
||||
- AMI
|
||||
- ampersand
|
||||
@@ -3050,6 +2910,7 @@ broken-packages:
|
||||
- antiope-messages
|
||||
- antiope-optparse-applicative
|
||||
- antiope-s3
|
||||
- antiope-shell
|
||||
- antiope-sns
|
||||
- antiope-sqs
|
||||
- antiope-swf
|
||||
@@ -3211,7 +3072,6 @@ broken-packages:
|
||||
- aws-configuration-tools
|
||||
- aws-dynamodb-conduit
|
||||
- aws-dynamodb-streams
|
||||
- aws-easy
|
||||
- aws-ec2
|
||||
- aws-ec2-knownhosts
|
||||
- aws-elastic-transcoder
|
||||
@@ -3227,7 +3087,6 @@ broken-packages:
|
||||
- aws-sdk
|
||||
- aws-sdk-text-converter
|
||||
- aws-sdk-xml-unordered
|
||||
- aws-ses-easy
|
||||
- aws-sign4
|
||||
- aws-simple
|
||||
- aws-sns
|
||||
@@ -3933,7 +3792,6 @@ broken-packages:
|
||||
- conduit-throttle
|
||||
- conduit-tokenize-attoparsec
|
||||
- conf
|
||||
- confcrypt
|
||||
- conffmt
|
||||
- confide
|
||||
- config-parser
|
||||
@@ -4503,7 +4361,6 @@ broken-packages:
|
||||
- easyplot
|
||||
- ebeats
|
||||
- ebnf-bff
|
||||
- ec2-unikernel
|
||||
- ecma262
|
||||
- ecu
|
||||
- eddie
|
||||
@@ -4530,7 +4387,6 @@ broken-packages:
|
||||
- Eight-Ball-Pool-Hack-Cheats
|
||||
- either-list-functions
|
||||
- EitherT
|
||||
- ekg-cloudwatch
|
||||
- ekg-elastic
|
||||
- ekg-elasticsearch
|
||||
- ekg-influxdb
|
||||
@@ -5381,7 +5237,6 @@ broken-packages:
|
||||
- hakismet
|
||||
- hakka
|
||||
- hako
|
||||
- hakyll
|
||||
- hakyll-agda
|
||||
- hakyll-blaze-templates
|
||||
- hakyll-contrib
|
||||
@@ -5732,7 +5587,6 @@ broken-packages:
|
||||
- heartbeat-streams
|
||||
- heatitup
|
||||
- heatitup-complete
|
||||
- heavy-logger-amazon
|
||||
- hecc
|
||||
- heckle
|
||||
- hedgehog-checkers
|
||||
@@ -7971,7 +7825,6 @@ broken-packages:
|
||||
- pier-core
|
||||
- piet
|
||||
- pig
|
||||
- pinboard-notes-backup
|
||||
- pinchot
|
||||
- ping
|
||||
- pinpon
|
||||
@@ -8758,6 +8611,7 @@ broken-packages:
|
||||
- selenium
|
||||
- selenium-server
|
||||
- selinux
|
||||
- semantic-source
|
||||
- Semantique
|
||||
- semdoc
|
||||
- semi-iso
|
||||
@@ -8848,7 +8702,6 @@ broken-packages:
|
||||
- servant-zeppelin-server
|
||||
- servant-zeppelin-swagger
|
||||
- server-generic
|
||||
- serverless-haskell
|
||||
- serversession-backend-redis
|
||||
- serversession-frontend-snap
|
||||
- serversession-frontend-yesod
|
||||
@@ -8905,8 +8758,6 @@ broken-packages:
|
||||
- shellish
|
||||
- shellmate
|
||||
- shellmate-extras
|
||||
- shh
|
||||
- shh-extras
|
||||
- shivers-cfg
|
||||
- shoap
|
||||
- shopify
|
||||
|
||||
+783
-447
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,24 @@
|
||||
From 657b70d174fe5cb61e56cb8b9c5e57f1ec216f2b Mon Sep 17 00:00:00 2001
|
||||
From: Mikhail Glushenkov <mikhail.glushenkov@gmail.com>
|
||||
Date: Wed, 10 Apr 2019 17:42:57 +0100
|
||||
Subject: [PATCH] Allow http-client 0.6.*.
|
||||
|
||||
Changelog doesn't list any silently breaking semantic changes.
|
||||
---
|
||||
amazonka/amazonka.cabal | 2 +-
|
||||
core/amazonka-core.cabal | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/amazonka/amazonka.cabal b/amazonka/amazonka.cabal
|
||||
index e86713f11c..81c4cb7e48 100644
|
||||
--- a/amazonka.cabal
|
||||
+++ b/amazonka.cabal
|
||||
@@ -67,7 +67,7 @@ library
|
||||
, conduit-extra >= 1.1
|
||||
, directory >= 1.2
|
||||
, exceptions >= 0.6
|
||||
- , http-client >= 0.4 && < 0.6
|
||||
+ , http-client >= 0.4 && < 0.7
|
||||
, http-conduit >= 2.1.7 && < 3
|
||||
, http-types >= 0.8
|
||||
, ini >= 0.3.5
|
||||
@@ -0,0 +1,26 @@
|
||||
From 657b70d174fe5cb61e56cb8b9c5e57f1ec216f2b Mon Sep 17 00:00:00 2001
|
||||
From: Mikhail Glushenkov <mikhail.glushenkov@gmail.com>
|
||||
Date: Wed, 10 Apr 2019 17:42:57 +0100
|
||||
Subject: [PATCH] Allow http-client 0.6.*.
|
||||
|
||||
Changelog doesn't list any silently breaking semantic changes.
|
||||
---
|
||||
amazonka/amazonka.cabal | 2 +-
|
||||
core/amazonka-core.cabal | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/core/amazonka-core.cabal b/core/amazonka-core.cabal
|
||||
index 9796e007cf..eccb24e5bd 100644
|
||||
--- a/amazonka-core.cabal
|
||||
+++ b/amazonka-core.cabal
|
||||
@@ -90,7 +90,7 @@ library
|
||||
, deepseq >= 1.4
|
||||
, exceptions >= 0.6
|
||||
, hashable >= 1.2
|
||||
- , http-client >= 0.4 && < 0.6
|
||||
+ , http-client >= 0.4 && < 0.7
|
||||
, http-conduit >= 2.1.4 && < 3
|
||||
, http-types >= 0.8 && (<0.11 || >=0.12)
|
||||
, lens >= 4.4
|
||||
--
|
||||
2.23.0
|
||||
Reference in New Issue
Block a user