Jonathan King
Jonathan King
* Drop Nix based CI pipeline and switch to [haskell/actions](https://github.com/haskell/actions) (as described in https://kodimensional.dev/github-actions). * Add GHC 8.10.8, 9.0.2 and 9.2.2 (Cabal only, as there is not Stack LTS yet)...
If you have a `haskell_library` target that's a dependency (i.e. referred to in a `build-depends`) of a `haskell_cabal_library` and the `haskell_library` doesn't have a `version` attribute set, upgrading beyond Cabal...
Fixes https://github.com/kubernetes-sigs/kustomize/issues/5047. Until https://github.com/kubernetes-sigs/kustomize/pull/3529, an empty prefix/suffix was considered to have the same `SameEndingSubSlice` (previously named `SameEndingSubarray`) as a one element prefix/suffix. This allowed the example in https://github.com/kubernetes-sigs/kustomize/issues/5047 (added as...
Updates nixpkgs to 23.11. * `nix build --impure --expr '(import ./survey { useArchiveFilesForTemplateHaskell = true; }).working'` * `nix build --impure --expr '(import ./survey { }).working'` Completely succeed. * `nix build...
Fixes #122. This is based on top of my existing https://github.com/nh2/static-haskell-nix/pull/118 PR (which changes the same code and would cause git conflicts).
On master (88f1e2d) when setting `useArchiveFilesForTemplateHaskell = true` two versions of GHC are being depended on. Picking an arbitrary package (in this case `vector`): ``` nix-repl> pkgs = (import ./survey/default.nix...
This moves the GHC configuration/fixing/selection to the start, ensuring that `pkgsWithArchiveFiles` contains the "final" version of `ghc`. This is important as some users of the `survey` are only interested in...
At Zurihac @nh2 graciously explained how the `survey/default.nix` worked. Hopefully some of the notes I made will be useful to others!