Brendan Hay
Brendan Hay
After upgrading to the latest commit (from v0.14) I receive numerous errors of the following form: ``` Use --sandbox_debug to see verbose messages from the sandbox Control/Concurrent/Async.hs:217:1: error: Could not...
I currently use a fork of `rules_haskell` with modifications to the default options being passed to `haddock`, since `haskell_doc` doesn't expose a `haddockopts`, `args`, or similar attribute. This is used...
(Was uncertain where to open this issue given it involves rules_{haskell,nixpkgs} and [streamly](https://github.com/comoposewell/streamly).) Currently I'm unable to `bazel build @stackage//:streamly` on macOS when using rules_nixpkgs `haskell_register_ghc_nixpkgs` and `nixpkgs_cc_configure()` for any...
Note: I added this to **dhall-haskell** although possibly? it belongs under **dhall-lang** or **dhall-kuberentes** `¯\_(ツ)_/¯` The following [usecase](#usecase) and example outlines how I'd like to pretty-print fully normalized expressions as...
As a concrete example, I'm attempting to convert various helm charts such as [cert-manager](https://github.com/jetstack/cert-manager/blob/33051b0c662440ac3a8f371f730f3cc737d5a80c/deploy/manifests/00-crds.yaml) into Dhall and there are various errors in the [CustomResourceDefinition](https://github.com/dhall-lang/dhall-kubernetes/blob/3e160f4a272d8243091620ca47888ec38981b4f8/1.17/types/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition.dhall) and related [CustomResourceValidation](https://github.com/dhall-lang/dhall-kubernetes/blob/3e160f4a272d8243091620ca47888ec38981b4f8/1.17/types/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation.dhall) types that are...
Here lie vague notes on code generation taken from my current work on [gogol](https://github.com/brendanhay/gogol), focused on the UX around constructing large records. TL;DR: Given the issues with record sizes (#...
I've been meaning to try out [large-records](https://www.well-typed.com/blog/2021/08/large-records) and collect some data regarding comparative compilation performance. The `large-records` library itself has an unfortunate dependency on `haskell-src-exts` which I wouldn't want to...
This is a tracking issue for Cabal's (and Hackage's) "Multiple public libraries" feature. See: * Announcement: https://fgaz.me/posts/2019-11-14-cabal-multiple-libraries/ * Original PR: https://github.com/haskell/cabal/pull/5526 * Cabal tracking issue: https://github.com/haskell/cabal/issues/5660 * Hackage support (supposed):...
Rather unfortunate. It seems the S3 service definition has completely [nonsensical metadata](https://github.com/boto/botocore/blob/dc0955cb0e977e3f5bbdbbcd6874e694ae9f4b0e/botocore/data/s3/2006-03-01/service-2.json#L3280) for the errors. For example attempting to catch `_NoSuchBucket` will never succeed given the following S3 response: ```...
Currently, when creating a new S3 Bucket via `CreateBucket`, if no locaiton constraint or configuration is specified, then an empty XML element is sent. This results in a validation error,...