Commit Graph

8870 Commits

Author SHA1 Message Date
Dennis Gosnell
1713e1d023 taskell: mark broken
taskell depends on an old version of brick that no longer compiles
2023-11-10 20:11:19 +09:00
Dennis Gosnell
b0b2f16bb9 haskellPackages: mark builds failing on hydra as broken
This commit has been generated by maintainers/scripts/haskell/mark-broken.sh based on
*evaluation [1801560](https://hydra.nixos.org/eval/1801560) of nixpkgs commit [f10a9c9](f10a9c9094) as of 2023-11-10 04:13 UTC*
from the haskell-updates jobset on hydra under https://hydra.nixos.org/jobset/nixpkgs/haskell-updates
2023-11-10 15:22:32 +09:00
Dennis Gosnell
f10a9c9094
Merge branch 'haskell-sdl2-pkg-config-workarounds' into haskell-updates
This is a manual merge of the PR
https://github.com/NixOS/nixpkgs/pull/265678 since it has a merge
conflict
2023-11-10 09:16:34 +09:00
Naïm Favier
fc80719711
haskellPackages.monad-bayes: don't check
https://github.com/tweag/monad-bayes/pull/326
2023-11-09 15:29:11 +01:00
Richard Marko
704a2b7c9d haskellPackages.servant-JuicyPixels: unbreak 2023-11-09 14:31:48 +01:00
Randy Eckenrode
8164b19096
haskell-modules/generic-builder.nix: work around libc++abi issue
Work around clang’s not linking libc++abi when invoked as `clang` or
`cc` even when it’s needed to link a C++ library or C++ code.

See https://github.com/NixOS/nixpkgs/issues/166205.
2023-11-08 21:54:55 -05:00
Adam Joseph
ba2ed469c2
Merge branch 'master' into staging-next 2023-11-08 06:15:46 +00:00
github-actions[bot]
fe1578be1e
Merge master into haskell-updates 2023-11-08 00:12:22 +00:00
Gabriella Gonzalez
aa75fa1eaa haskell.lib.packagesFromDirectory: only .nix files
This changes `haskell.lib.packagesFromDirectory` to ignore non-Nix
files so that it doesn't attempt to run `callPackage` on, say, a
`.md` file in the same directory.
2023-11-07 14:33:28 -08:00
Even Brenden
11547fea6e unleash-client-haskell: Unbreak and add maintainer 2023-11-07 17:27:31 +01:00
sternenseemann
2ec6f63534 haskell.compiler.ghcHEAD: 9.7.20230527 -> 9.9.20231014 2023-11-06 15:26:58 +01:00
maralorn
fd8a8c9160
haskellPackages.ema(-note): Drop maintainership 2023-11-06 11:21:07 +01:00
sternenseemann
c31f006570 haskellPackages.sdl2-ttf: work around sdl2 pkg-config issue
Ref https://github.com/NixOS/nixpkgs/issues/260863.
2023-11-05 16:57:03 +01:00
sternenseemann
0ee702c439 haskellPackages.sdl2-gfx: work around sdl2 pkg-config issue
Ref https://github.com/NixOS/nixpkgs/issues/260863.
2023-11-05 16:47:56 +01:00
Dennis Gosnell
8a8ec371fe
haskellPackages.gi-graphene: mark unbroken 2023-11-03 09:58:33 +09:00
Dennis Gosnell
9cbe3360fb
haskellPackages: regenerate package set based on current config
This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
2023-11-03 09:46:31 +09:00
Dennis Gosnell
a6dfad13f4
haskellPackages.cabal2nix-unstable: bump to latest commit 2023-11-03 09:43:23 +09:00
Dennis Gosnell
a9d6c649dd
haskellPackages: regenerate package set based on current config
This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
2023-11-01 12:01:00 +09:00
Dennis Gosnell
b228c161a2
Merge pull request #264623 from hercules-ci/add-changelog-d
haskellPackages.changelog-d: init
2023-11-01 08:05:40 +09:00
Robert Hensing
054f67065e haskellPackages.changelog-d: init 2023-10-31 23:35:15 +01:00
Deniz Alp Durmaz
2238cc1ed9
haskellPackages.dhall-lsp-server: Apply patch relaxing lens bound 2023-10-31 09:07:31 +02:00
Dennis Gosnell
d9cc84954d
git-brunch: mark unbroken 2023-10-31 13:31:23 +09:00
maralorn
7a0d89ed56
haskell.packages.ghc96.haskell-language-server: Fix eval 2023-10-29 21:11:16 +01:00
maralorn
be603676d8
haskell.packages.ghc96: Fix base-compat-batteries eval 2023-10-29 20:59:44 +01:00
maralorn
704aa729f1
haskell.packages.ghc96: Fix ghc-lib(-parser) eval 2023-10-29 20:45:09 +01:00
maralorn
9ebbc5f765
Merge branch 'haskell-fixes' into haskell-updates 2023-10-29 19:09:22 +01:00
Phillip Seeber
fe7d494468
haskellPackages.mpi-hs*: respect pkgs.mpi and make tests pass 2023-10-29 19:08:16 +01:00
Troels Henriksen
4b653bdacf futhark: mark not broken, add athas as maintainer 2023-10-25 09:08:44 +02:00
Naïm Favier
97ba4facba
haskell-language-server: fix eval 2023-10-24 18:27:59 +02:00
Naïm Favier
caf1c4efda
haskellPackages: more eval fixes 2023-10-23 12:02:30 +02:00
sternenseemann
5ea114083c haskell.packages.ghc96.tls: fix missing LLVM tools on aarch64
The original change missed that we used to erroneously provide LLVM on
aarch64-linux, but not on aarch64-darwin which was later fixed
in #246045. Since the change was tested on aarch64-linux prior to this,
tls ended up being broken on both aarch64-linux and aarch64-darwin.

This commit resolves the situation by introducing a helper function to
achieve the effect of passing -fllvm while ensuring LLVM is provided.

Resolves #260013.
2023-10-22 19:18:13 +02:00
Naïm Favier
4a47fc9395
haskellPackages.vector: remove redundant patch 2023-10-22 17:28:00 +02:00
maralorn
2d4a6546e7
Merge branch 'cabal-plan-bounds2' into haskell-updates 2023-10-22 16:16:48 +02:00
Joachim Breitner
7bec1b95d1
haskellPackages.cabal-plan-bounds: Unbreak on 9.6, add nomeata as maintainer 2023-10-22 16:15:18 +02:00
maralorn
a1e8ef46c6
haskellPackages: Eval fixes 2023-10-22 12:37:39 +02:00
maralorn
b779210e3a
haskellPackages.Cabal-syntax: Update overrides 2023-10-22 12:24:23 +02:00
github-actions[bot]
0fa884ae1f
Merge staging-next into staging 2023-10-22 06:01:35 +00:00
maralorn
13fea7f2ad
haskellPackages: regenerate package set based on current config
This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
2023-10-22 02:32:54 +02:00
maralorn
d73c49026a
haskellPackages: stackage LTS 21.14 -> LTS 21.16
This commit has been generated by maintainers/scripts/haskell/update-stackage.sh
2023-10-22 02:31:26 +02:00
maralorn
b4e7f130be
haskellPackages: mark builds failing on hydra as broken
This commit has been generated by maintainers/scripts/haskell/mark-broken.sh based on
*evaluation [1800774](https://hydra.nixos.org/eval/1800774) of nixpkgs commit [004ea20](004ea202f2) as of 2023-10-21 23:54 UTC*
from the haskell-updates jobset on hydra under https://hydra.nixos.org/jobset/nixpkgs/haskell-updates
2023-10-22 02:23:10 +02:00
maralorn
f8e6a54a9d
Merge pull request #243601 from nomeata/hackage-dont-report-broken
haskell.package-list: dont report broken packages to Hackage
2023-10-22 02:18:30 +02:00
maralorn
004ea202f2
haskellPackages.pandoc-crossref: Fix build 2023-10-22 01:28:56 +02:00
maralorn
40ce16ef93
haskell-language-server: Fix for all supported GHCs 2023-10-22 01:23:30 +02:00
maralorn
3d06d7622d
haskell-language-server: Fix 2.3.0.0 2023-10-19 02:48:11 +02:00
Artturi
5a1cc0e11d
Merge pull request #258431 from pbsds/stabilize-patches 2023-10-19 03:02:46 +03:00
Peder Bergebakken Sundt
b48a8bb529 ghc-9.6.x: make patch urls reproducible 2023-10-17 20:18:59 +02:00
github-actions[bot]
d49bdad524
Merge master into haskell-updates 2023-10-15 00:13:07 +00:00
Nicolas Pouillard
45dfae0893 haskell.packages.ghc96.fourmolu: 0.13.1.0 -> 0.14.0.0 2023-10-14 00:27:26 +02:00
Nicolas Pouillard
c49f4c784c haskell.packages.ghc96.servant: 0.20 -> 0.20.1 2023-10-14 00:07:14 +02:00
Nicolas Pouillard
91c6034e2b haskell.packages.ghc96.warp_3_3_29: update exception from warp_3_3_28 2023-10-14 00:04:37 +02:00
Nicolas Pouillard
f40f1e2f2c haskell.packages.ghc96.fgl: 5.8.0.0 -> 5.8.1.1 2023-10-13 23:46:42 +02:00
sternenseemann
67a3127751 haskell.packages.ghc96.monad-par: drop obsolete override 2023-10-10 23:48:12 +02:00
maralorn
f8a575d071
haskellPackages: Drop broken aeson_1_5_6_0 overrides 2023-10-09 16:06:13 +02:00
Dennis Gosnell
691a877730
stack: get new version 2.13.1 compiling 2023-10-08 12:16:42 +09:00
Dennis Gosnell
856af8d93d
haskellPackages.crypton-connection: actually unmark broken 2023-10-08 10:17:53 +09:00
Dennis Gosnell
345788180c
haskellPackages.crypton-connection: get building 2023-10-08 10:01:03 +09:00
Robert Schütz
91ddd9eeba haskellPackages.hledger-iadd: unmark broken 2023-10-07 16:54:28 -07:00
maralorn
c807dcb1ab
Merge pull request #259414 from turion/haskell-updates
Haskell jailbreak updates
2023-10-06 19:22:05 +02:00
maralorn
ee59e10362
Merge pull request #259408 from dalpd/fix-patat-build-5
haskellPackages.patat: Remove patch failing the build
2023-10-06 19:16:47 +02:00
Manuel Bärenz
12a6c13b8e haskellPackages.kewar: Jailbreak 2023-10-06 18:42:07 +02:00
Manuel Bärenz
523cafe512 haskellPackages.essence-of-live-code-warp: Remove unnecessary jailbreak 2023-10-06 18:41:27 +02:00
maralorn
00c05bbc65
haskell.packages.ghc810.haskell-language-server: Remove 2023-10-06 17:54:23 +02:00
Deniz Alp Durmaz
d5b241bd37
haskellPackages.patat: Remove patch failing the build
The latest pin bump brings in patat release 0.9.2.0
2023-10-06 18:43:36 +03:00
sternenseemann
83d9e51168 git-annex: update sha256 for 10.20230926 2023-10-05 21:07:16 +02:00
maralorn
3ed175e913
haskellPackages: regenerate package set based on current config
This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
2023-10-05 09:03:23 +02:00
maralorn
98262d4eee
haskellPackages: Update hspec pins 2023-10-05 00:45:07 +02:00
maralorn
88c66e9a96
haskellPackages: Update process pins 2023-10-04 22:40:05 +02:00
maralorn
61c12a0140
haskellPackages: regenerate package set based on current config
This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
2023-10-04 22:23:20 +02:00
maralorn
76353c9c5b
haskellPackages: stackage LTS 21.11 -> LTS 21.14
This commit has been generated by maintainers/scripts/haskell/update-stackage.sh
2023-10-04 22:20:48 +02:00
maralorn
d3d3d46b71
haskellPackages: Disable packages on darwin 2023-10-04 22:01:10 +02:00
maralorn
03d0845cea
haskellPackages: Change a few plattform capabilities 2023-10-04 21:36:51 +02:00
maralorn
aef0e28aec
haskellPackages: mark builds failing on hydra as broken
This commit has been generated by maintainers/scripts/haskell/mark-broken.sh based on
*evaluation [1799996](https://hydra.nixos.org/eval/1799996) of nixpkgs commit [ea0284a](ea0284a3da) as of 2023-10-04 19:24 UTC*
from the haskell-updates jobset on hydra under https://hydra.nixos.org/jobset/nixpkgs/haskell-updates
2023-10-04 21:30:19 +02:00
maralorn
59df00a4a7
git-annex: Fix hash 2023-10-04 21:18:39 +02:00
sternenseemann
4ad7a433ef haskell.packages.ghc96.tls: work around aarch64 codegen bug 2023-10-02 03:28:10 +02:00
Dennis Gosnell
ec9ac6e433
Merge pull request #258387 from mpscholten/fix-amazonka
haskellPackages.amazonka: Fix build
2023-10-01 22:32:59 +09:00
Marc Scholten
785895439e haskellPackages.amazonka: Fix build 2023-10-01 14:09:46 +02:00
Marc Scholten
8e7c07d65a haskellPackages.typerep-map: Fix build 2023-09-30 23:24:10 +02:00
github-actions[bot]
23bb2be564
Merge master into haskell-updates 2023-09-29 00:11:52 +00:00
Peder Bergebakken Sundt
470614b671 treewide: Fix typos 2023-09-28 19:06:13 +02:00
maralorn
43dece63bf
haskell.packages.ghc96.ormolu: enableSeparateBinOutput 2023-09-27 16:21:47 +02:00
github-actions[bot]
a1486d7898
Merge master into haskell-updates 2023-09-26 00:11:53 +00:00
Domen Kožar
461a549036 cachix: 1.6 -> 1.6.1 2023-09-25 17:40:34 +01:00
sternenseemann
da589d2bc0 haskell.packages.ghcHEAD.inline-c-cpp: drop obsolete override
-fcompact-unwind is the default behavior since GHC 9.4.
2023-09-25 13:48:48 +02:00
Dennis Gosnell
4fec13e832 nvfetcher: mark non-broken 2023-09-24 12:02:16 -04:00
sternenseemann
8eff84a4fe jacinda: build with alex >= 3.4 as new release requires 2023-09-21 16:52:37 +02:00
Deniz Alp Durmaz
316bc558ec
haskellPackages.patat: Fix build by patching commit relaxing bounds 2023-09-17 16:02:32 +03:00
maralorn
09b047f6b3
haskellPackages.reflex-dom: Backpin to unbreak 2023-09-17 04:02:21 +02:00
maralorn
a4deb19a3c
Revert "haskellPackages.reflex-dom: remove old jailbreak"
This reverts commit 77202d8f23.
2023-09-17 04:02:20 +02:00
maralorn
ed737c0c18
haskellPackages.jsaddle-webkit2gtk: Drop obsolete overrides 2023-09-17 04:02:18 +02:00
maralorn
44197b751d
haskellPackages.jsaddle: Drop obsolete overrides 2023-09-17 04:02:17 +02:00
maralorn
7386d0ab04
haskell.packages.ghc96.haskell-language-server: Fix build 2023-09-16 12:41:18 +02:00
Dennis Gosnell
26d55116d7 haskell.packages.ghc96.ormolu: 0.7.1.0 -> 0.7.2.0 2023-09-14 16:13:40 -04:00
Dennis Gosnell
b6100863bd haskell.packages.ghc96.ghc-lib-parser-ex: 9.6.0.1 -> 9.6.0.2 2023-09-14 12:33:52 -04:00
Dennis Gosnell
0c0bed6abc haskell.packages.ghc96.doctest: 0.22.0 -> 0.22.1 2023-09-14 12:21:45 -04:00
Dennis Gosnell
77202d8f23 haskellPackages.reflex-dom: remove old jailbreak 2023-09-14 11:53:06 -04:00
Dennis Gosnell
9d5f44d309 haskellPackages.text_2_0_2: regenerate for elm 2023-09-14 10:38:15 -04:00
Dennis Gosnell
6887adc3e7 pandoc: bump skylighting deps 2023-09-14 09:40:08 -04:00
Dennis Gosnell
67cba441af haskellPackages.binrep: regenerate unbroken 2023-09-14 08:48:52 -04:00
Ben Orchard
af03cff7fb haskellPackages.binrep: unbreak 2023-09-14 11:39:14 +01:00
maralorn
3e197c9b23
haskell-language-server: Fix build 2023-09-14 12:05:21 +02:00