mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 06:37:41 +00:00
haskellPackages: update hackage and stackage (#346720)
This commit is contained in:
commit
9ddc3313c8
@ -760,7 +760,7 @@ that depend on that library, you may want to use:
|
||||
|
||||
```nix
|
||||
haskellPackages.haskell-ci.overrideScope (self: super: {
|
||||
Cabal = self.Cabal_3_6_2_0;
|
||||
Cabal = self.Cabal_3_14_0_0;
|
||||
})
|
||||
```
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"commit": "5d97d9c05e76d8cecb68f1e9063afb39ca0fb26b",
|
||||
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/5d97d9c05e76d8cecb68f1e9063afb39ca0fb26b.tar.gz",
|
||||
"sha256": "1ic4wn5immv06m1m2cq6mzrrgrxbidxmj39licxlkmnm9jlwzjwr",
|
||||
"msg": "Update from Hackage at 2024-09-03T10:29:19Z"
|
||||
"commit": "750067bc36e810a96c066c8800438e0ce9ced327",
|
||||
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/750067bc36e810a96c066c8800438e0ce9ced327.tar.gz",
|
||||
"sha256": "1bfr8r14rkisjp1f3iln12h4f5n66k8wkk09jvk7adal4grlpjny",
|
||||
"msg": "Update from Hackage at 2024-10-05T14:46:54Z"
|
||||
}
|
||||
|
@ -298,6 +298,20 @@ stdenv.mkDerivation (rec {
|
||||
url = "https://gitlab.haskell.org/ghc/ghc/-/commit/8f7dd5710b80906ea7a3e15b7bb56a883a49fed8.patch";
|
||||
hash = "sha256-C636Nq2U8YOG/av7XQmG3L1rU0bmC9/7m7Hty5pm5+s=";
|
||||
})
|
||||
|
||||
# Backport part of <https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7111> to 8.10.7
|
||||
# The change we are interested in is that Cabal no longer sets include-dirs
|
||||
# for the GHCi library delegating to the system search path or (in our case)
|
||||
# cc-wrapper. Without this patch, the target libffi ends up in there (which
|
||||
# we provide via --with-ffi-includes) which breaks bootstrapping e.g. when
|
||||
# cross compiling GHC. Without include-dirs, cc-wrapper and splicing will
|
||||
# correctly pick the suitable libffi out of the build environment.
|
||||
(fetchpatch {
|
||||
name = "ghci-no-libffi-include.patch";
|
||||
url = "https://gitlab.haskell.org/ghc/ghc/-/commit/b2721819f391ab49871271283f32df54810c4387.patch";
|
||||
sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9";
|
||||
includes = [ "libraries/ghci/ghci.cabal.in" ];
|
||||
})
|
||||
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# Make Block.h compile with c++ compilers. Remove with the next release
|
||||
(fetchpatch {
|
||||
|
4
pkgs/development/compilers/ghc/9.8.3.nix
Normal file
4
pkgs/development/compilers/ghc/9.8.3.nix
Normal file
@ -0,0 +1,4 @@
|
||||
import ./common-hadrian.nix rec {
|
||||
version = "9.8.3";
|
||||
sha256 = "99e40d729ec8831a633b75fd85d65dd10e31a0133dec9d198d686a273679ab70";
|
||||
}
|
@ -1,11 +1,5 @@
|
||||
import ./common-hadrian.nix {
|
||||
version = "9.11.20240410";
|
||||
rev = "1b1a92bd25c3f7249cf922c5dbf4415d2de44a36";
|
||||
sha256 = "sha256-2HdhxhVrKn8c/ZOGYoYThqXpod2OPiGXgH+mAV69Ip0=";
|
||||
# The STM benchmark contains chanbench.hs and ChanBench.hs causing a hash
|
||||
# mismatch on case insensitive filesystems. See also
|
||||
# https://gitlab.haskell.org/ghc/packages/stm/-/issues/2
|
||||
postFetch = ''
|
||||
rm -rf "$out/libraries/stm/bench"
|
||||
'';
|
||||
version = "9.11.20240423";
|
||||
rev = "dddc9dff0547733a10e7f505612ab9df3a7c21b6";
|
||||
sha256 = "0993sdmzzyymllck8mcpa1zgrjqjfxcvk1ykvfc18bvbs4145cm9";
|
||||
}
|
||||
|
@ -8,10 +8,10 @@
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "cabal2nix";
|
||||
version = "unstable-2024-05-20";
|
||||
version = "unstable-2024-10-17";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/NixOS/cabal2nix/archive/79b73778680e2ae27302dce430beee302299f496.tar.gz";
|
||||
sha256 = "0xjrnf9x1f4jl4bsxc6kv5q7rsbn3vs0ddidj9qf6mzzzqxq14p3";
|
||||
url = "https://github.com/NixOS/cabal2nix/archive/b8eb82f8bc907b42dfb463cab62e49fbe2fff997.tar.gz";
|
||||
sha256 = "1fxqigr002ssgz1l62rc7k04q4q0hwcl2wqy7l2shylxqf7yfcd6";
|
||||
};
|
||||
postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot";
|
||||
isLibrary = true;
|
||||
|
@ -27,14 +27,14 @@ self: super: {
|
||||
Cabal-syntax = self.Cabal-syntax_3_10_3_0;
|
||||
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.2.5") {
|
||||
# Use process core package when possible
|
||||
process = self.process_1_6_22_0;
|
||||
process = self.process_1_6_24_0;
|
||||
}));
|
||||
|
||||
Cabal_3_12_1_0 = doDistribute (super.Cabal_3_12_1_0.override ({
|
||||
Cabal-syntax = self.Cabal-syntax_3_12_1_0;
|
||||
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.2.5") {
|
||||
# Use process core package when possible
|
||||
process = self.process_1_6_22_0;
|
||||
process = self.process_1_6_24_0;
|
||||
}));
|
||||
|
||||
# hackage-security == 0.6.2.6 has a wider support range in theory, but it only
|
||||
@ -411,7 +411,7 @@ self: super: {
|
||||
name = "git-annex-${super.git-annex.version}-src";
|
||||
url = "git://git-annex.branchable.com/";
|
||||
rev = "refs/tags/" + super.git-annex.version;
|
||||
sha256 = "0j037sis64gnrll7ajg48cvzzvxqsrhj7vnhiwcqv8wbmbfv0avn";
|
||||
sha256 = "sha256-hPZTcl3kWeUnSVYOE1W+FDwR3LYg6gaJfEBIY6VSfxY=";
|
||||
# delete android and Android directories which cause issues on
|
||||
# darwin (case insensitive directory). Since we don't need them
|
||||
# during the build process, we can delete it to prevent a hash
|
||||
@ -724,7 +724,6 @@ self: super: {
|
||||
nats-queue = dontCheck super.nats-queue;
|
||||
netpbm = dontCheck super.netpbm;
|
||||
network = dontCheck super.network;
|
||||
network_2_6_3_1 = dontCheck super.network_2_6_3_1; # package is missing files for test
|
||||
network-dbus = dontCheck super.network-dbus;
|
||||
notcpp = dontCheck super.notcpp;
|
||||
ntp-control = dontCheck super.ntp-control;
|
||||
@ -1811,10 +1810,6 @@ self: super: {
|
||||
# tests seem to require a different version of hspec-core
|
||||
hspec-contrib = dontCheck super.hspec-contrib;
|
||||
|
||||
# github.com/ucsd-progsys/liquidhaskell/issues/1729
|
||||
liquidhaskell-boot = super.liquidhaskell-boot.override { Diff = self.Diff_0_3_4; };
|
||||
Diff_0_3_4 = dontCheck super.Diff_0_3_4;
|
||||
|
||||
# The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox.
|
||||
domain-auth = dontCheck super.domain-auth;
|
||||
|
||||
@ -1865,6 +1860,12 @@ self: super: {
|
||||
# 2024-03-02: vty <5.39 - https://github.com/reflex-frp/reflex-ghci/pull/33
|
||||
reflex-ghci = assert super.reflex-ghci.version == "0.2.0.1"; doJailbreak super.reflex-ghci;
|
||||
|
||||
# 2024-09-18: transformers <0.5 https://github.com/reflex-frp/reflex-gloss/issues/6
|
||||
reflex-gloss = assert super.reflex-gloss.version == "0.2"; doJailbreak super.reflex-gloss;
|
||||
|
||||
# 2024-09-18: primitive <0.8 https://gitlab.com/Kritzefitz/reflex-gi-gtk/-/merge_requests/20
|
||||
reflex-gi-gtk = assert super.reflex-gi-gtk.version == "0.2.0.1"; doJailbreak super.reflex-gi-gtk;
|
||||
|
||||
# Due to tests restricting base in 0.8.0.0 release
|
||||
http-media = doJailbreak super.http-media;
|
||||
|
||||
@ -1914,9 +1915,8 @@ self: super: {
|
||||
sha256 = "sha256-kFV6CcwKdMq+qSgyc+eIApnaycq5A++pEEVr2A9xvts=";
|
||||
}) super.pipes-aeson;
|
||||
|
||||
# Needs bytestring 0.11
|
||||
# https://github.com/Gabriella439/Haskell-Pipes-HTTP-Library/pull/17
|
||||
pipes-http = doJailbreak super.pipes-http;
|
||||
# 2024-09-18: transformers <0.6 https://github.com/Gabriella439/Haskell-Pipes-Extras-Library/pull/19
|
||||
pipes-extras = assert super.pipes-extras.version == "1.0.15"; doJailbreak super.pipes-extras;
|
||||
|
||||
moto-postgresql = appendPatches [
|
||||
# https://gitlab.com/k0001/moto/-/merge_requests/3
|
||||
@ -2002,6 +2002,14 @@ self: super: {
|
||||
# Test suite fails, upstream not reachable for simple fix (not responsive on github)
|
||||
vivid-osc = dontCheck super.vivid-osc;
|
||||
vivid-supercollider = dontCheck super.vivid-supercollider;
|
||||
vivid = overrideCabal (drv: assert drv.version == "0.5.2.0"; {
|
||||
# 2024-10-18: Some library dependency must have stopped
|
||||
# re-exporting 'void', so now it needs an extra import line.
|
||||
# Fixed in 0.5.2.1.
|
||||
postPatch = ''
|
||||
sed -i '/) where/a import Control.Monad (void)' Vivid/GlobalState.hs
|
||||
'';
|
||||
}) super.vivid;
|
||||
|
||||
# Test suite does not compile.
|
||||
feed = dontCheck super.feed;
|
||||
@ -2109,12 +2117,6 @@ self: super: {
|
||||
# https://github.com/serokell/haskell-crypto/issues/25
|
||||
crypto-sodium = dontCheck super.crypto-sodium;
|
||||
|
||||
taskell = super.taskell.override {
|
||||
# Does not support brick >= 1.0
|
||||
# https://github.com/smallhadroncollider/taskell/issues/125
|
||||
brick = self.brick_0_70_1;
|
||||
};
|
||||
|
||||
# Polyfill for GHCs from the integer-simple days that don't bundle ghc-bignum
|
||||
ghc-bignum = super.ghc-bignum or self.mkDerivation {
|
||||
pname = "ghc-bignum";
|
||||
@ -2220,17 +2222,6 @@ self: super: {
|
||||
revision = null;
|
||||
} super.llvm-hs-pure);
|
||||
|
||||
# * Fix build failure by picking patch from 8.5, we need
|
||||
# this version of sbv for petrinizer
|
||||
# * Pin version of crackNum that still exposes its library
|
||||
sbv_7_13 = appendPatch (fetchpatch {
|
||||
url = "https://github.com/LeventErkok/sbv/commit/57014b9c7c67dd9b63619a996e2c66e32c33c958.patch";
|
||||
sha256 = "10npa8nh2413n6p6qld795qfkbld08icm02bspmk93y0kabpgmgm";
|
||||
})
|
||||
(super.sbv_7_13.override {
|
||||
crackNum = self.crackNum_2_4;
|
||||
});
|
||||
|
||||
# Too strict bounds on dimensional
|
||||
# https://github.com/enomsg/science-constants-dimensional/pull/1
|
||||
science-constants-dimensional = doJailbreak super.science-constants-dimensional;
|
||||
@ -2239,17 +2230,23 @@ self: super: {
|
||||
# https://github.com/merijn/paramtree/issues/4
|
||||
paramtree = dontCheck super.paramtree;
|
||||
|
||||
# Too strict version bounds on haskell-gi
|
||||
# https://github.com/owickstrom/gi-gtk-declarative/issues/100
|
||||
gi-gtk-declarative = doJailbreak super.gi-gtk-declarative;
|
||||
# 2024-09-18: Make compatible with haskell-gi 0.26.10
|
||||
# https://github.com/owickstrom/gi-gtk-declarative/pull/118
|
||||
gi-gtk-declarative = overrideCabal (drv: assert drv.version == "0.7.1"; {
|
||||
jailbreak = true;
|
||||
postPatch = ''
|
||||
sed -i '1 i {-# LANGUAGE FlexibleContexts #-}' \
|
||||
src/GI/Gtk/Declarative/Widget/Conversions.hs
|
||||
'';
|
||||
}) super.gi-gtk-declarative;
|
||||
gi-gtk-declarative-app-simple = doJailbreak super.gi-gtk-declarative-app-simple;
|
||||
|
||||
gi-gtk_4 = self.gi-gtk_4_0_9;
|
||||
gi-gtk_4_0_9 = doDistribute (super.gi-gtk_4_0_9.override {
|
||||
gi-gdk = self.gi-gdk_4;
|
||||
});
|
||||
gi-gdk_4 = self.gi-gdk_4_0_8;
|
||||
gi-gdk_4_0_8 = doDistribute super.gi-gdk_4_0_8;
|
||||
gi-gdk_4 = self.gi-gdk_4_0_9;
|
||||
gi-gdk_4_0_9 = doDistribute super.gi-gdk_4_0_9;
|
||||
# GSK is only used for GTK 4.
|
||||
gi-gsk = super.gi-gsk.override {
|
||||
gi-gdk = self.gi-gdk_4;
|
||||
@ -2531,9 +2528,12 @@ self: super: {
|
||||
# 2024-03-02: base <=4.18.0.0 https://github.com/srid/url-slug/pull/2
|
||||
url-slug = doJailbreak super.url-slug;
|
||||
|
||||
glirc = doJailbreak (super.glirc.override {
|
||||
vty = self.vty_5_35_1;
|
||||
});
|
||||
glirc = super.glirc.override {
|
||||
vty = self.vty_6_2;
|
||||
vty-unix = super.vty-unix.override {
|
||||
vty = self.vty_6_2;
|
||||
};
|
||||
};
|
||||
|
||||
# Too strict bounds on text and tls
|
||||
# https://github.com/barrucadu/irc-conduit/issues/54
|
||||
@ -2942,13 +2942,6 @@ self: super: {
|
||||
hash = "sha256-zugyUpEq/iVkxghrvguL95+lJDEpE8MLvZivken0p24=";
|
||||
}) super.nix-serve-ng;
|
||||
|
||||
# Needs a matching version of ipython-kernel and a
|
||||
# ghc-syntax-highlighter compatible with a newer ghc-lib-parser it
|
||||
# transitively pulls in
|
||||
ihaskell = super.ihaskell.overrideScope (self: super: {
|
||||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0;
|
||||
});
|
||||
|
||||
# 2024-01-24: support optparse-applicative 0.18
|
||||
niv = appendPatches [
|
||||
(fetchpatch {
|
||||
|
@ -86,10 +86,6 @@ self: super: {
|
||||
# cabal2spec needs a recent version of Cabal
|
||||
cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
|
||||
|
||||
# https://github.com/pikajude/stylish-cabal/issues/12
|
||||
stylish-cabal = doDistribute (markUnbroken (super.stylish-cabal.override { haddock-library = self.haddock-library_1_7_0; }));
|
||||
haddock-library_1_7_0 = dontCheck super.haddock-library_1_7_0;
|
||||
|
||||
# ghc versions prior to 8.8.x needs additional dependency to compile successfully.
|
||||
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser super.ghc-lib-parser-ex;
|
||||
|
||||
@ -99,8 +95,6 @@ self: super: {
|
||||
# vector 0.12.2 indroduced doctest checks that don’t work on older compilers
|
||||
vector = dontCheck super.vector;
|
||||
|
||||
mmorph = super.mmorph_1_1_3;
|
||||
|
||||
# https://github.com/haskellari/time-compat/issues/23
|
||||
time-compat = dontCheck super.time-compat;
|
||||
|
||||
|
@ -61,7 +61,6 @@ self: super: {
|
||||
# Upgrade to accommodate new core library versions, where the authors have
|
||||
# already made the relevant changes.
|
||||
aeson = doDistribute self.aeson_2_2_3_0;
|
||||
apply-refact = doDistribute self.apply-refact_0_14_0_0;
|
||||
attoparsec-aeson = doDistribute self.attoparsec-aeson_2_2_2_0;
|
||||
auto-update = super.auto-update_0_2_1;
|
||||
extensions = doDistribute self.extensions_0_1_0_2;
|
||||
@ -112,12 +111,11 @@ self: super: {
|
||||
|
||||
bitvec = doJailbreak super.bitvec; # primitive <0.9
|
||||
|
||||
apply-refact_0_14_0_0 = doJailbreak super.apply-refact_0_14_0_0; # ghc-exactprint <1.9
|
||||
retrie = doJailbreak super.retrie; # base <4.20, ghc<9.9, ghc-exactprint<1.9
|
||||
|
||||
hashable_1_4_7_0 = doJailbreak super.hashable_1_4_7_0; # relax bounds for QuickCheck, tasty, and tasty-quickcheck
|
||||
hashable_1_5_0_0 = doJailbreak super.hashable_1_5_0_0; # relax bounds for QuickCheck, tasty, and tasty-quickcheck
|
||||
|
||||
broadcast-chan = doJailbreak super.broadcast-chan; # base <4.19 https://github.com/merijn/broadcast-chan/pull/19
|
||||
|
||||
#
|
||||
# Test suite issues
|
||||
#
|
||||
@ -128,7 +126,7 @@ self: super: {
|
||||
primitive-unlifted = dontCheck super.primitive-unlifted; # doesn't compile with primitive ==0.9.*
|
||||
bsb-http-chunked = pkgs.haskell.lib.dontCheck super.bsb-http-chunked; # https://github.com/sjakobi/bsb-http-chunked/issues/45
|
||||
hinotify = pkgs.haskell.lib.dontCheck super.hinotify; # https://github.com/kolmodin/hinotify/issues/38
|
||||
warp = pkgs.haskell.lib.dontCheck super.warp_3_4_1; # test suite assumes it can freely call curl
|
||||
warp = pkgs.haskell.lib.dontCheck super.warp_3_4_2; # test suite assumes it can freely call curl
|
||||
|
||||
haskell-language-server = disableCabalFlag "retrie" (disableCabalFlag "hlint" (disableCabalFlag "stylishhaskel" (super.haskell-language-server.override {stylish-haskell = null;retrie = null;apply-refact=null;hlint = null;})));
|
||||
|
||||
|
@ -118,6 +118,7 @@ self: super: {
|
||||
string-random = doJailbreak super.string-random; # text >=1.2.2.1 && <2.1
|
||||
inflections = doJailbreak super.inflections; # text >=0.2 && <2.1
|
||||
universe-some = doJailbreak super.universe-some; # th-abstraction < 0.7
|
||||
broadcast-chan = doJailbreak super.broadcast-chan; # base <4.19 https://github.com/merijn/broadcast-chan/pull/19
|
||||
|
||||
#
|
||||
# Test suite issues
|
||||
|
@ -1224,7 +1224,6 @@ broken-packages:
|
||||
- dead-code-detection # failure in job https://hydra.nixos.org/build/233205957 at 2023-09-02
|
||||
- Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02
|
||||
- dead-simple-json # failure in job https://hydra.nixos.org/build/233204301 at 2023-09-02
|
||||
- dear-imgui # failure in job https://hydra.nixos.org/build/233238246 at 2023-09-02
|
||||
- debugger-hs # failure in job https://hydra.nixos.org/build/233206302 at 2023-09-02
|
||||
- debug-me # failure in job https://hydra.nixos.org/build/233213991 at 2023-09-02
|
||||
- debug-trace-file # failure in job https://hydra.nixos.org/build/233231840 at 2023-09-02
|
||||
@ -1844,6 +1843,7 @@ broken-packages:
|
||||
- fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02
|
||||
- freckle-kafka # failure in job https://hydra.nixos.org/build/269673466 at 2024-08-19
|
||||
- freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02
|
||||
- free-alacarte # failure in job https://hydra.nixos.org/build/275141793 at 2024-10-21
|
||||
- free-applicative-t # failure in job https://hydra.nixos.org/build/252715728 at 2024-03-16
|
||||
- free-concurrent # failure in job https://hydra.nixos.org/build/233257070 at 2023-09-02
|
||||
- free-foil # failure in job https://hydra.nixos.org/build/265268910 at 2024-07-14
|
||||
@ -1938,7 +1938,6 @@ broken-packages:
|
||||
- gearhash # failure in job https://hydra.nixos.org/build/252728216 at 2024-03-16
|
||||
- gelatin # failure in job https://hydra.nixos.org/build/233249394 at 2023-09-02
|
||||
- gemcap # failure in job https://hydra.nixos.org/build/233202506 at 2023-09-02
|
||||
- gemini-server # failure in job https://hydra.nixos.org/build/252717988 at 2024-03-16
|
||||
- gemmula-altera # failure in job https://hydra.nixos.org/build/252721416 at 2024-03-16
|
||||
- gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02
|
||||
- gender # failure in job https://hydra.nixos.org/build/233235712 at 2023-09-02
|
||||
@ -2053,7 +2052,6 @@ broken-packages:
|
||||
- gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02
|
||||
- gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31
|
||||
- gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02
|
||||
- gi-gtk-declarative # failure in job https://hydra.nixos.org/build/233217494 at 2023-09-02
|
||||
- gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02
|
||||
- gi-gtksource # failure in job https://hydra.nixos.org/build/233215342 at 2023-09-02
|
||||
- gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02
|
||||
@ -2321,6 +2319,7 @@ broken-packages:
|
||||
- HarmTrace-Base # failure in job https://hydra.nixos.org/build/233213843 at 2023-09-02
|
||||
- haroonga # failure in job https://hydra.nixos.org/build/233226376 at 2023-09-02
|
||||
- harp # failure in job https://hydra.nixos.org/build/252730015 at 2024-03-16
|
||||
- harpie # failure in job https://hydra.nixos.org/build/275138146 at 2024-10-21
|
||||
- harpy # failure in job https://hydra.nixos.org/build/233225779 at 2023-09-02
|
||||
- harvest-api # failure in job https://hydra.nixos.org/build/233213054 at 2023-09-02
|
||||
- hasbolt-extras # failure in job https://hydra.nixos.org/build/233211734 at 2023-09-02
|
||||
@ -3186,7 +3185,6 @@ broken-packages:
|
||||
- ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02
|
||||
- iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02
|
||||
- IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02
|
||||
- irc-core # failure in job https://hydra.nixos.org/build/233242138 at 2023-09-02
|
||||
- irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02
|
||||
- Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02
|
||||
- irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02
|
||||
@ -3290,6 +3288,7 @@ broken-packages:
|
||||
- json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02
|
||||
- json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16
|
||||
- json-tools # failure in job https://hydra.nixos.org/build/233247019 at 2023-09-02
|
||||
- json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21
|
||||
- json-tracer # failure in job https://hydra.nixos.org/build/233196632 at 2023-09-02
|
||||
- jsontsv # failure in job https://hydra.nixos.org/build/233234129 at 2023-09-02
|
||||
- jsonxlsx # failure in job https://hydra.nixos.org/build/233201772 at 2023-09-02
|
||||
@ -3339,6 +3338,7 @@ broken-packages:
|
||||
- keenser # failure in job https://hydra.nixos.org/build/233200021 at 2023-09-02
|
||||
- keera-hails-reactivevalues # failure in job https://hydra.nixos.org/build/233258391 at 2023-09-02
|
||||
- keid-render-basic # failure in job https://hydra.nixos.org/build/233258215 at 2023-09-02
|
||||
- keid-ui-dearimgui # failure in job https://hydra.nixos.org/build/275828030 at 2024-10-21
|
||||
- keiretsu # failure in job https://hydra.nixos.org/build/233195563 at 2023-09-02
|
||||
- kempe # failure in job https://hydra.nixos.org/build/233221290 at 2023-09-02
|
||||
- kesha # failure in job https://hydra.nixos.org/build/233215581 at 2023-09-02
|
||||
@ -3418,7 +3418,6 @@ broken-packages:
|
||||
- language-elm # failure in job https://hydra.nixos.org/build/233214012 at 2023-09-02
|
||||
- language-fortran # failure in job https://hydra.nixos.org/build/233205480 at 2023-09-02
|
||||
- language-gcl # failure in job https://hydra.nixos.org/build/233218957 at 2023-09-02
|
||||
- language-gemini # failure in job https://hydra.nixos.org/build/233211812 at 2023-09-02
|
||||
- language-go # failure in job https://hydra.nixos.org/build/233194866 at 2023-09-02
|
||||
- language-guess # failure in job https://hydra.nixos.org/build/233257420 at 2023-09-02
|
||||
- language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02
|
||||
@ -3831,6 +3830,7 @@ broken-packages:
|
||||
- minicurl # failure in job https://hydra.nixos.org/build/252710787 at 2024-03-16
|
||||
- miniforth # failure in job https://hydra.nixos.org/build/233220853 at 2023-09-02
|
||||
- minilens # failure in job https://hydra.nixos.org/build/233191347 at 2023-09-02
|
||||
- minion-openapi3 # failure in job https://hydra.nixos.org/build/275140771 at 2024-10-21
|
||||
- minions # failure in job https://hydra.nixos.org/build/233246840 at 2023-09-02
|
||||
- miniplex # failure in job https://hydra.nixos.org/build/233241976 at 2023-09-02
|
||||
- ministg # failure in job https://hydra.nixos.org/build/233214109 at 2023-09-02
|
||||
@ -3858,6 +3858,7 @@ broken-packages:
|
||||
- mmzk-typeid # failure in job https://hydra.nixos.org/build/233258612 at 2023-09-02
|
||||
- Mobile-Legends-Hack-Cheats # failure in job https://hydra.nixos.org/build/233194849 at 2023-09-02
|
||||
- mockazo # failure in job https://hydra.nixos.org/build/233234923 at 2023-09-02
|
||||
- mockcat # failure in job https://hydra.nixos.org/build/275146693 at 2024-10-21
|
||||
- mock-httpd # failure in job https://hydra.nixos.org/build/233191481 at 2023-09-02
|
||||
- mock-time # failure in job https://hydra.nixos.org/build/252737870 at 2024-03-16
|
||||
- modbus-tcp # failure in job https://hydra.nixos.org/build/233230661 at 2023-09-02
|
||||
@ -4439,6 +4440,7 @@ broken-packages:
|
||||
- partial-records # failure in job https://hydra.nixos.org/build/233205143 at 2023-09-02
|
||||
- partial-semigroup-hedgehog # failure in job https://hydra.nixos.org/build/252731350 at 2024-03-16
|
||||
- partly # failure in job https://hydra.nixos.org/build/233229003 at 2023-09-02
|
||||
- paseto # failure in job https://hydra.nixos.org/build/275145626 at 2024-10-21
|
||||
- passage # failure in job https://hydra.nixos.org/build/233192945 at 2023-09-02
|
||||
- passman-core # failure in job https://hydra.nixos.org/build/233217997 at 2023-09-02
|
||||
- passman # failure in job https://hydra.nixos.org/build/233234939 at 2023-09-02
|
||||
@ -4527,16 +4529,19 @@ broken-packages:
|
||||
- phasechange # failure in job https://hydra.nixos.org/build/233254293 at 2023-09-02
|
||||
- phaser # failure in job https://hydra.nixos.org/build/233250604 at 2023-09-02
|
||||
- phkdf # failure in job https://hydra.nixos.org/build/255669790 at 2024-04-16
|
||||
- phladiprelio-general-datatype # failure in job https://hydra.nixos.org/build/275139962 at 2024-10-21
|
||||
- phoityne # failure in job https://hydra.nixos.org/build/233195238 at 2023-09-02
|
||||
- phoityne-vscode # failure in job https://hydra.nixos.org/build/233190938 at 2023-09-02
|
||||
- phone-metadata # failure in job https://hydra.nixos.org/build/233256096 at 2023-09-02
|
||||
- phone-numbers # failure in job https://hydra.nixos.org/build/233217584 at 2023-09-02
|
||||
- phone-push # failure in job https://hydra.nixos.org/build/233246934 at 2023-09-02
|
||||
- phonetic-languages-constaints # failure in job https://hydra.nixos.org/build/233232580 at 2023-09-02
|
||||
- phonetic-languages-phonetics-basics # failure in job https://hydra.nixos.org/build/275143090 at 2024-10-21
|
||||
- phonetic-languages-simplified-generalized-examples-array # failure in job https://hydra.nixos.org/build/233245242 at 2023-09-02
|
||||
- phonetic-languages-simplified-generalized-properties-array # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237248983 at 2023-10-21
|
||||
- phonetic-languages-simplified-properties-array # failure in job https://hydra.nixos.org/build/233195530 at 2023-09-02
|
||||
- phonetic-languages-simplified-properties-array-old # failure in job https://hydra.nixos.org/build/233258258 at 2023-09-02
|
||||
- phonetic-languages-ukrainian-array # failure in job https://hydra.nixos.org/build/275138098 at 2024-10-21
|
||||
- phonetic-languages-vector # failure in job https://hydra.nixos.org/build/233258156 at 2023-09-02
|
||||
- photoname # failure in job https://hydra.nixos.org/build/252736965 at 2024-03-16
|
||||
- phraskell # failure in job https://hydra.nixos.org/build/233202906 at 2023-09-02
|
||||
@ -4571,7 +4576,6 @@ broken-packages:
|
||||
- pipes-cereal # failure in job https://hydra.nixos.org/build/233195413 at 2023-09-02
|
||||
- pipes-core # failure in job https://hydra.nixos.org/build/233213024 at 2023-09-02
|
||||
- pipes-errors # failure in job https://hydra.nixos.org/build/233214912 at 2023-09-02
|
||||
- pipes-extras # failure in job https://hydra.nixos.org/build/252732291 at 2024-03-16
|
||||
- pipes-interleave # failure in job https://hydra.nixos.org/build/233247428 at 2023-09-02
|
||||
- pipes-io # failure in job https://hydra.nixos.org/build/233243253 at 2023-09-02
|
||||
- pipes-kafka # failure in job https://hydra.nixos.org/build/252727228 at 2024-03-16
|
||||
@ -4652,6 +4656,7 @@ broken-packages:
|
||||
- polyglot # failure in job https://hydra.nixos.org/build/233218267 at 2023-09-02
|
||||
- polynom # failure in job https://hydra.nixos.org/build/233237353 at 2023-09-02
|
||||
- polynomial # failure in job https://hydra.nixos.org/build/233242131 at 2023-09-02
|
||||
- polysemy-blockfrost # failure in job https://hydra.nixos.org/build/275144296 at 2024-10-21
|
||||
- polysemy-keyed-state # failure in job https://hydra.nixos.org/build/233224142 at 2023-09-02
|
||||
- polysemy-kvstore # failure in job https://hydra.nixos.org/build/233229745 at 2023-09-02
|
||||
- polysemy-managed # failure in job https://hydra.nixos.org/build/233221190 at 2023-09-02
|
||||
@ -5029,11 +5034,8 @@ broken-packages:
|
||||
- reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02
|
||||
- reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02
|
||||
- reflex-gadt-api # failure in job https://hydra.nixos.org/build/260124380 at 2024-05-19
|
||||
- reflex-gi-gtk # failure in job https://hydra.nixos.org/build/253683412 at 2024-03-31
|
||||
- reflex-gloss # failure in job https://hydra.nixos.org/build/234457448 at 2023-09-13
|
||||
- reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02
|
||||
- reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02
|
||||
- reflex-sdl2 # failure in job https://hydra.nixos.org/build/233233947 at 2023-09-02
|
||||
- reflex-test-host # failure in job https://hydra.nixos.org/build/233220665 at 2023-09-02
|
||||
- reflex-transformers # failure in job https://hydra.nixos.org/build/233243647 at 2023-09-02
|
||||
- ref-mtl # failure in job https://hydra.nixos.org/build/233260152 at 2023-09-02
|
||||
@ -5945,6 +5947,7 @@ broken-packages:
|
||||
- tasty-auto # failure in job https://hydra.nixos.org/build/233220008 at 2023-09-02
|
||||
- tasty-checklist # failure in job https://hydra.nixos.org/build/252710481 at 2024-03-16
|
||||
- tasty-fail-fast # failure in job https://hydra.nixos.org/build/233200040 at 2023-09-02
|
||||
- tasty-flaky # failure in job https://hydra.nixos.org/build/275140265 at 2024-10-21
|
||||
- tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04
|
||||
- tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02
|
||||
- tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02
|
||||
@ -6322,6 +6325,7 @@ broken-packages:
|
||||
- uhttpc # failure in job https://hydra.nixos.org/build/233232481 at 2023-09-02
|
||||
- ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02
|
||||
- ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02
|
||||
- ukrainian-phonetics-basic-array # failure in job https://hydra.nixos.org/build/275136298 at 2024-10-21
|
||||
- unac-bindings # failure in job https://hydra.nixos.org/build/236686523 at 2023-10-04
|
||||
- unamb-custom # failure in job https://hydra.nixos.org/build/233197458 at 2023-09-02
|
||||
- unbeliever # failure in job https://hydra.nixos.org/build/233221256 at 2023-09-02
|
||||
@ -6501,7 +6505,6 @@ broken-packages:
|
||||
- visibility # failure in job https://hydra.nixos.org/build/233206672 at 2023-09-02
|
||||
- visual-prof # failure in job https://hydra.nixos.org/build/233250080 at 2023-09-02
|
||||
- vitrea # failure in job https://hydra.nixos.org/build/233252038 at 2023-09-02
|
||||
- vivid # failure in job https://hydra.nixos.org/build/252716916 at 2024-03-16
|
||||
- vk-aws-route53 # failure in job https://hydra.nixos.org/build/233250126 at 2023-09-02
|
||||
- VKHS # failure in job https://hydra.nixos.org/build/233246557 at 2023-09-02
|
||||
- vowpal-utils # failure in job https://hydra.nixos.org/build/233251505 at 2023-09-02
|
||||
@ -6832,6 +6835,7 @@ broken-packages:
|
||||
- yesod-vend # failure in job https://hydra.nixos.org/build/233227545 at 2023-09-02
|
||||
- YFrob # failure in job https://hydra.nixos.org/build/233197612 at 2023-09-02
|
||||
- yggdrasil # failure in job https://hydra.nixos.org/build/233229923 at 2023-09-02
|
||||
- yggdrasil-schema # failure in job https://hydra.nixos.org/build/275135174 at 2024-10-21
|
||||
- yhccore # failure in job https://hydra.nixos.org/build/233199669 at 2023-09-02
|
||||
- yhseq # failure in job https://hydra.nixos.org/build/233191724 at 2023-09-02
|
||||
- yices # failure in job https://hydra.nixos.org/build/233242137 at 2023-09-02
|
||||
|
@ -39,29 +39,18 @@ default-package-overrides:
|
||||
|
||||
|
||||
extra-packages:
|
||||
- Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8
|
||||
- Cabal == 3.2.* # Used for packages needing newer Cabal on ghc 8.6 and 8.8
|
||||
- Cabal == 3.6.* # used for packages needing newer Cabal on ghc 8.10 and 9.0
|
||||
- Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8
|
||||
- Cabal-syntax == 3.8.* # version required for ormolu and fourmolu on ghc 9.2 and 9.0
|
||||
- Cabal-syntax == 3.10.* # version required for cabal-install and other packages
|
||||
- Cabal == 3.10.* # version required for cabal-install and other packages
|
||||
- directory == 1.3.7.* # required to build cabal-install 3.10.* with GHC 9.2
|
||||
- Diff < 0.4 # required by liquidhaskell-0.8.10.2: https://github.com/ucsd-progsys/liquidhaskell/issues/1729
|
||||
- Cabal-syntax == 3.10.*
|
||||
- Cabal == 3.10.*
|
||||
- Cabal == 3.12.* # version required for cabal-install and other packages
|
||||
- Cabal-syntax == 3.12.* # version required for cabal-install and other packages
|
||||
- aeson < 2 # required by pantry-0.5.2
|
||||
- apply-refact == 0.9.* # 2022-12-12: needed for GHC < 9.2
|
||||
- apply-refact == 0.11.* # 2023-02-02: needed for hls-hlint-plugin on GHC 9.2
|
||||
- attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now
|
||||
- base16-bytestring < 1 # required for cabal-install etc.
|
||||
- basement < 0.0.15 # 2022-08-30: last version to support GHC < 8.10
|
||||
- brick == 0.70.* # 2022-08-13: needed by taskell
|
||||
- brittany == 0.13.1.2 # 2022-09-20: needed for hls on ghc 8.8
|
||||
- crackNum < 3.0 # 2021-05-21: 3.0 removed the lib which sbv 7.13 uses
|
||||
- dependent-map == 0.2.4.0 # required by Hasura 1.3.1, 2020-08-20
|
||||
- dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20
|
||||
- doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.*
|
||||
- foundation < 0.0.29 # 2022-08-30: last version to support GHC < 8.10
|
||||
- ghc-api-compat == 8.10.7 # 2022-02-17: preserve for GHC 8.10.7
|
||||
- ghc-api-compat == 8.6 # 2021-09-07: preserve for GHC 8.8.4
|
||||
- ghc-exactprint == 0.6.* # 2022-12-12: needed for GHC < 9.2
|
||||
- ghc-exactprint == 1.5.* # 2023-03-30: needed for GHC == 9.2
|
||||
- ghc-exactprint == 1.6.* # 2023-03-30: needed for GHC == 9.4
|
||||
@ -73,36 +62,24 @@ extra-packages:
|
||||
- ghc-lib-parser == 9.8.* # 2024-05-19: preserve for GHC 9.8
|
||||
- ghc-lib-parser-ex == 9.2.* # 2022-07-13: preserve for GHC 8.10, 9.0
|
||||
- ghc-lib-parser-ex == 9.8.* # 2024-05-19: preserve for GHC 9.8
|
||||
- ghc-syntax-highlighter == 0.0.10.* # 2023-11-20:
|
||||
- gi-soup == 2.4.28 # 2023-04-05: the last version to support libsoup-2.4 (and thus be compatible with our other gi- packages)
|
||||
- haddock == 2.23.* # required on GHC < 8.10.x
|
||||
- haddock-api == 2.23.* # required on GHC < 8.10.x
|
||||
- haddock-library ==1.7.* # required by stylish-cabal-0.5.0.0
|
||||
- happy == 1.19.12 # for ghcjs
|
||||
- hashable == 1.4.7.0 # allows GHC 9.10
|
||||
- hinotify == 0.3.9 # for xmonad-0.26: https://github.com/kolmodin/hinotify/issues/29
|
||||
- ansi-wl-pprint >= 0.6 && < 0.7 # 2024-03-23: required for ghcjs
|
||||
- hlint == 3.2.8 # 2022-09-21: needed for hls on ghc 8.8
|
||||
- hlint == 3.4.1 # 2022-09-21: needed for hls with ghc-lib-parser 9.2
|
||||
- hnix-store-core < 0.7 # 2023-12-11: required by hnix-store-remote 0.6
|
||||
- hpack == 0.36.0 # 2024-07-27: required for stack-2.15.7 to match upstream stack release
|
||||
- hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
|
||||
- hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
|
||||
- hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
|
||||
- hspec-megaparsec == 2.2.0 # 2023-11-18: Latest version compatible with ghc 9.0, needed for HLS
|
||||
- hspec-meta < 2.8 # 2022-12-07: Needed for elmPackages.elm / hspec-discover
|
||||
- hspec-golden == 0.1.* # 2022-04-07: Needed for elm-format
|
||||
- http2 < 3.3 # 2023-08-24: Needed for twain <https://github.com/alexmingoia/twain/issues/5>
|
||||
- immortal == 0.2.2.1 # required by Hasura 1.3.1, 2020-08-20
|
||||
- language-docker == 11.0.0 # required by hadolint 2.12.0, 2022-11-16
|
||||
- language-javascript == 0.7.0.0 # required by purescript
|
||||
- lens-aeson < 1.2 # 2022-12-17: For aeson < 2.0 compat
|
||||
- lsp == 2.1.0.0 # 2024-02-28: need for dhall-lsp-server unstable
|
||||
- lsp-types == 2.0.2.0 # 2024-02-28: need for dhall-lsp-server unstable
|
||||
- lsp < 2.5 # 2024-07-08: need for koka
|
||||
- lsp-types < 2.2 # 2024-07-08: need for koka
|
||||
- mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls
|
||||
- network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15
|
||||
- optparse-applicative < 0.16 # needed for niv-0.2.19
|
||||
- fourmolu == 0.14.0.0 # 2023-11-13: for ghc-lib-parser 9.6 compat
|
||||
- fourmolu == 0.15.0.0 # 2024-07-07: for ghc 9.8 compat
|
||||
@ -110,13 +87,8 @@ extra-packages:
|
||||
- ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat
|
||||
- ormolu == 0.7.4.0 # 2024-07-07: for ghc 9.8 compat
|
||||
- primitive-unlifted == 0.1.3.1 # 2024-03-16: Needed for hls on ghc 9.2
|
||||
- path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.2
|
||||
- sbv == 7.13 # required for pkgs.petrinizer
|
||||
- stylish-haskell == 0.14.4.0 # 2022-09-19: needed for hls on ghc 9.2
|
||||
- tasty-hspec == 1.1.6 # 2022-04-07: Needed for elm-format
|
||||
- text == 2.0.2 # 2023-09-14: Needed for elm (which is currently on ghc-8.10)
|
||||
- th-abstraction < 0.6 # 2023-09-11: needed for aeson-2.2.0.0
|
||||
- vty == 5.35.1 # 2022-07-08: needed for glirc-2.39.0.1
|
||||
- warp < 3.3.31 # 2024-03-20: for twain, which requires http2 3.0.3
|
||||
- weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7
|
||||
- weeder == 2.3.* # 2022-05-31: preserve for GHC 9.0.2
|
||||
@ -136,6 +108,8 @@ extra-packages:
|
||||
- singletons-th == 3.3 # 2024-06-28: preserve for GHC 9.8
|
||||
- singletons-base == 3.3 # 2024-06-28: preserve for GHC 9.8
|
||||
- tls < 2.1.0 # 2024-07-19: requested by darcs == 2.18.3
|
||||
- extensions == 0.1.0.2 # 2024-10-20: for GHC 9.10/Cabal 3.12
|
||||
- network-run == 0.4.0 # 2024-10-20: for GHC 9.10/network == 3.1.*
|
||||
|
||||
package-maintainers:
|
||||
abbradar:
|
||||
@ -207,6 +181,7 @@ package-maintainers:
|
||||
bdesham:
|
||||
- pinboard-notes-backup
|
||||
cdepillabout:
|
||||
- cloudy
|
||||
- password
|
||||
- password-instances
|
||||
- pretty-simple
|
||||
@ -739,10 +714,7 @@ unsupported-platforms:
|
||||
mpi-hs-cereal: [ aarch64-linux, platforms.darwin ]
|
||||
mpi-hs-store: [ aarch64-linux, platforms.darwin ]
|
||||
mplayer-spot: [ aarch64-linux, platforms.darwin ]
|
||||
monomer: [ platforms.darwin ] # depends on mesa
|
||||
monomer-hagrid: [ platforms.darwin ] # depends on mesa
|
||||
mptcp-pm: [ platforms.darwin ]
|
||||
nanovg: [ platforms.darwin ] # depends on mesa
|
||||
netlink: [ platforms.darwin ]
|
||||
network-unexceptional: [ platforms.darwin ] # depends on posix-api
|
||||
notifications-tray-icon: [ platforms.darwin ] # depends on gi-dbusmenu
|
||||
@ -760,7 +732,6 @@ unsupported-platforms:
|
||||
reactive-balsa: [ platforms.darwin ] # depends on alsa-core
|
||||
reflex-dom-fragment-shader-canvas: [ platforms.darwin, aarch64-linux ]
|
||||
reflex-localize-dom: [ platforms.darwin, aarch64-linux ]
|
||||
rsi-break: [ platforms.darwin ] # depends on monomer
|
||||
rtlsdr: [ platforms.darwin ]
|
||||
rubberband: [ platforms.darwin ]
|
||||
SDL-mixer: [ platforms.darwin ] # depends on mesa
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Stackage LTS 22.33
|
||||
# Stackage LTS 22.36
|
||||
# This file is auto-generated by
|
||||
# maintainers/scripts/haskell/update-stackage.sh
|
||||
default-package-overrides:
|
||||
@ -16,7 +16,7 @@ default-package-overrides:
|
||||
- adjunctions ==4.4.2
|
||||
- adler32 ==0.1.2.0
|
||||
- aern2-mp ==0.2.15.1
|
||||
- aern2-real ==0.2.15
|
||||
- aern2-real ==0.2.15.1
|
||||
- aeson ==2.1.2.1
|
||||
- aeson-attoparsec ==0.0.0
|
||||
- aeson-casing ==0.2.0.0
|
||||
@ -480,7 +480,7 @@ default-package-overrides:
|
||||
- binary-shared ==0.8.3
|
||||
- binary-tagged ==0.3.1
|
||||
- bindings-DSL ==1.0.25
|
||||
- bindings-GLFW ==3.3.9.1
|
||||
- bindings-GLFW ==3.3.9.2
|
||||
- bindings-libzip ==1.0.1
|
||||
- bindings-uname ==0.1
|
||||
- BiobaseEnsembl ==0.2.0.1
|
||||
@ -563,11 +563,11 @@ default-package-overrides:
|
||||
- bytesmith ==0.3.11.1
|
||||
- bytestring-builder ==0.10.8.2.0
|
||||
- bytestring-conversion ==0.3.2
|
||||
- bytestring-lexing ==0.5.0.12
|
||||
- bytestring-lexing ==0.5.0.14
|
||||
- bytestring-strict-builder ==0.4.5.7
|
||||
- bytestring-to-vector ==0.3.0.1
|
||||
- bytestring-tree-builder ==0.2.7.12
|
||||
- bytestring-trie ==0.2.7.3
|
||||
- bytestring-trie ==0.2.7.5
|
||||
- bz2 ==1.0.1.2
|
||||
- bzip2-clib ==1.0.8
|
||||
- bzlib ==0.5.2.0
|
||||
@ -575,7 +575,7 @@ default-package-overrides:
|
||||
- c14n ==0.1.0.3
|
||||
- c2hs ==0.28.8
|
||||
- cabal2spec ==2.7.1
|
||||
- cabal-appimage ==0.4.0.4
|
||||
- cabal-appimage ==0.4.0.5
|
||||
- cabal-clean ==0.2.20230609
|
||||
- cabal-debian ==5.2.3
|
||||
- cabal-doctest ==1.0.10
|
||||
@ -627,7 +627,7 @@ default-package-overrides:
|
||||
- Chart-cairo ==1.9.4.1
|
||||
- Chart-diagrams ==1.9.5.1
|
||||
- chart-svg ==0.5.2.0
|
||||
- ChasingBottoms ==1.3.1.14
|
||||
- ChasingBottoms ==1.3.1.15
|
||||
- check-email ==1.0.2
|
||||
- checkers ==0.6.0
|
||||
- checksum ==0.0.0.1
|
||||
@ -705,7 +705,7 @@ default-package-overrides:
|
||||
- composite-xstep ==0.1.0.0
|
||||
- composition ==1.0.2.2
|
||||
- composition-extra ==2.1.0
|
||||
- composition-prelude ==3.0.0.2
|
||||
- composition-prelude ==3.0.1.0
|
||||
- concise ==0.1.0.1
|
||||
- concurrency ==1.11.0.3
|
||||
- concurrent-extra ==0.7.0.12
|
||||
@ -713,7 +713,7 @@ default-package-overrides:
|
||||
- concurrent-split ==0.0.1.1
|
||||
- concurrent-supply ==0.1.8
|
||||
- cond ==0.5.1
|
||||
- conduit ==1.3.5
|
||||
- conduit ==1.3.6
|
||||
- conduit-aeson ==0.1.1.0
|
||||
- conduit-combinators ==1.3.0
|
||||
- conduit-concurrent-map ==0.1.3
|
||||
@ -901,7 +901,7 @@ default-package-overrides:
|
||||
- diagrams-postscript ==1.5.1.1
|
||||
- diagrams-rasterific ==1.4.2.3
|
||||
- diagrams-solve ==0.1.3
|
||||
- diagrams-svg ==1.4.3.1
|
||||
- diagrams-svg ==1.4.3.2
|
||||
- dice ==0.1.1
|
||||
- di-core ==1.0.4
|
||||
- dictionary-sharing ==0.1.0.0
|
||||
@ -922,7 +922,7 @@ default-package-overrides:
|
||||
- discrimination ==0.5
|
||||
- disk-free-space ==0.1.0.1
|
||||
- distributed-closure ==0.5.0.0
|
||||
- distributed-static ==0.3.10
|
||||
- distributed-static ==0.3.11
|
||||
- distribution-opensuse ==1.1.4
|
||||
- distributive ==0.6.2.1
|
||||
- diversity ==0.8.1.0
|
||||
@ -934,7 +934,7 @@ default-package-overrides:
|
||||
- dns ==4.2.0
|
||||
- dockerfile ==0.2.0
|
||||
- doclayout ==0.4.0.1
|
||||
- doctemplates ==0.11
|
||||
- doctemplates ==0.11.0.1
|
||||
- doctest ==0.22.6
|
||||
- doctest-discover ==0.2.0.0
|
||||
- doctest-driver-gen ==0.3.0.8
|
||||
@ -989,7 +989,7 @@ default-package-overrides:
|
||||
- elerea ==2.9.0
|
||||
- elf ==0.31
|
||||
- eliminators ==0.9.3
|
||||
- elm-bridge ==0.8.3
|
||||
- elm-bridge ==0.8.4
|
||||
- elm-core-sources ==1.0.0
|
||||
- elm-export ==0.6.0.1
|
||||
- elm-street ==0.2.2.1
|
||||
@ -1000,12 +1000,12 @@ default-package-overrides:
|
||||
- elynx-tools ==0.7.2.2
|
||||
- elynx-tree ==0.7.2.2
|
||||
- emacs-module ==0.2.1
|
||||
- email-validate ==2.3.2.20
|
||||
- email-validate ==2.3.2.21
|
||||
- emojis ==0.1.4.1
|
||||
- enclosed-exceptions ==1.0.3
|
||||
- ENIG ==0.0.1.0
|
||||
- entropy ==0.4.1.10
|
||||
- enummapset ==0.7.2.0
|
||||
- enummapset ==0.7.3.0
|
||||
- enumset ==0.1
|
||||
- enum-subset-generate ==0.1.0.1
|
||||
- enum-text ==0.5.3.0
|
||||
@ -1048,7 +1048,7 @@ default-package-overrides:
|
||||
- exp-pairs ==0.2.1.0
|
||||
- express ==1.0.16
|
||||
- extended-reals ==0.2.4.0
|
||||
- extensible ==0.9
|
||||
- extensible ==0.9.1
|
||||
- extensible-effects ==5.0.0.1
|
||||
- extensible-exceptions ==0.1.1.4
|
||||
- extra ==1.7.16
|
||||
@ -1068,7 +1068,7 @@ default-package-overrides:
|
||||
- fast-digits ==0.3.2.0
|
||||
- fast-logger ==3.2.3
|
||||
- fast-math ==1.0.2
|
||||
- fast-myers-diff ==0.0.0
|
||||
- fast-myers-diff ==0.0.1
|
||||
- fb ==2.1.1.1
|
||||
- fcf-family ==0.2.0.1
|
||||
- fclabels ==2.0.5.1
|
||||
@ -1123,8 +1123,8 @@ default-package-overrides:
|
||||
- focus ==1.0.3.2
|
||||
- focuslist ==0.1.1.0
|
||||
- foldable1-classes-compat ==0.1
|
||||
- fold-debounce ==0.2.0.11
|
||||
- foldl ==1.4.16
|
||||
- fold-debounce ==0.2.0.12
|
||||
- foldl ==1.4.17
|
||||
- folds ==0.7.8
|
||||
- FontyFruity ==0.5.3.5
|
||||
- force-layout ==0.4.0.6
|
||||
@ -1154,7 +1154,7 @@ default-package-overrides:
|
||||
- funcmp ==1.9
|
||||
- function-builder ==0.3.0.1
|
||||
- functor-classes-compat ==2.0.0.2
|
||||
- fused-effects ==1.1.2.2
|
||||
- fused-effects ==1.1.2.3
|
||||
- fusion-plugin ==0.2.7
|
||||
- fusion-plugin-types ==0.1.0
|
||||
- fuzzcheck ==0.1.1
|
||||
@ -1188,7 +1188,7 @@ default-package-overrides:
|
||||
- genvalidity-appendful ==0.1.0.0
|
||||
- genvalidity-bytestring ==1.0.0.1
|
||||
- genvalidity-case-insensitive ==0.0.0.1
|
||||
- genvalidity-containers ==1.0.0.1
|
||||
- genvalidity-containers ==1.0.0.2
|
||||
- genvalidity-criterion ==1.1.0.0
|
||||
- genvalidity-hspec ==1.0.0.3
|
||||
- genvalidity-hspec-aeson ==1.0.0.0
|
||||
@ -1253,7 +1253,7 @@ default-package-overrides:
|
||||
- gi-gdk ==3.0.29
|
||||
- gi-gdkpixbuf ==2.0.32
|
||||
- gi-gdkx11 ==3.0.16
|
||||
- gi-gio ==2.0.34
|
||||
- gi-gio ==2.0.35
|
||||
- gi-glib ==2.0.30
|
||||
- gi-gmodule ==2.0.6
|
||||
- gi-gobject ==2.0.31
|
||||
@ -1283,7 +1283,7 @@ default-package-overrides:
|
||||
- gl ==0.9
|
||||
- glabrous ==2.0.6.3
|
||||
- glasso ==0.1.0
|
||||
- GLFW-b ==3.3.9.0
|
||||
- GLFW-b ==3.3.9.1
|
||||
- glib ==0.13.11.0
|
||||
- glib-stopgap ==0.1.0.0
|
||||
- Glob ==0.10.2
|
||||
@ -1343,12 +1343,12 @@ default-package-overrides:
|
||||
- hashing ==0.1.1.0
|
||||
- hashmap ==1.3.3
|
||||
- hashtables ==1.3.1
|
||||
- haskell-gi ==0.26.10
|
||||
- haskell-gi-base ==0.26.6
|
||||
- haskell-gi ==0.26.11
|
||||
- haskell-gi-base ==0.26.8
|
||||
- haskell-gi-overloading ==1.0
|
||||
- haskell-lexer ==1.1.1
|
||||
- HaskellNet ==0.6.1.2
|
||||
- haskell-src ==1.0.4
|
||||
- haskell-src ==1.0.4.1
|
||||
- haskell-src-exts ==1.23.1
|
||||
- haskell-src-exts-simple ==1.23.0.0
|
||||
- haskell-src-exts-util ==0.2.5
|
||||
@ -1397,7 +1397,7 @@ default-package-overrides:
|
||||
- heterocephalus ==1.0.5.7
|
||||
- hetzner ==0.6.0.0
|
||||
- hex ==0.2.0
|
||||
- hexml ==0.3.4
|
||||
- hexml ==0.3.5
|
||||
- hexml-lens ==0.2.2
|
||||
- hexpat ==0.20.13
|
||||
- hex-text ==0.1.0.9
|
||||
@ -1476,7 +1476,7 @@ default-package-overrides:
|
||||
- hslua-classes ==2.3.1
|
||||
- hslua-cli ==1.4.3
|
||||
- hslua-core ==2.3.2
|
||||
- hslua-list ==1.1.1
|
||||
- hslua-list ==1.1.3
|
||||
- hslua-marshalling ==2.3.1
|
||||
- hslua-module-doclayout ==1.1.1.2
|
||||
- hslua-module-path ==1.1.1
|
||||
@ -1490,7 +1490,7 @@ default-package-overrides:
|
||||
- hslua-typing ==0.1.1
|
||||
- hsndfile ==0.8.0
|
||||
- hsndfile-vector ==0.5.2
|
||||
- HsOpenSSL ==0.11.7.7
|
||||
- HsOpenSSL ==0.11.7.8
|
||||
- HsOpenSSL-x509-system ==0.1.0.4
|
||||
- hspec ==2.11.9
|
||||
- hspec-api ==2.11.9
|
||||
@ -1541,7 +1541,7 @@ default-package-overrides:
|
||||
- http-client-restricted ==0.1.0
|
||||
- http-client-tls ==0.3.6.3
|
||||
- http-common ==0.8.3.4
|
||||
- http-conduit ==2.3.8.3
|
||||
- http-conduit ==2.3.9
|
||||
- http-date ==0.0.11
|
||||
- http-directory ==0.1.10
|
||||
- http-download ==0.2.1.0
|
||||
@ -1668,7 +1668,7 @@ default-package-overrides:
|
||||
- iso639 ==0.1.0.3
|
||||
- iso8601-time ==0.1.5
|
||||
- isocline ==1.0.9
|
||||
- isomorphism-class ==0.1.0.12
|
||||
- isomorphism-class ==0.1.1
|
||||
- ixset-typed ==0.5.1.0
|
||||
- ixset-typed-binary-instance ==0.1.0.2
|
||||
- ixset-typed-hashable-instance ==0.1.0.2
|
||||
@ -1691,7 +1691,7 @@ default-package-overrides:
|
||||
- jsonifier ==0.2.1.3
|
||||
- jsonpath ==0.3.0.0
|
||||
- json-rpc ==1.0.4
|
||||
- json-stream ==0.4.5.3
|
||||
- json-stream ==0.4.6.0
|
||||
- JuicyPixels ==3.3.9
|
||||
- JuicyPixels-extra ==0.6.0
|
||||
- JuicyPixels-scale-dct ==0.1.2
|
||||
@ -1700,7 +1700,7 @@ default-package-overrides:
|
||||
- jwt ==0.11.0
|
||||
- kan-extensions ==5.2.6
|
||||
- kansas-comet ==0.4.2
|
||||
- katip ==0.8.8.0
|
||||
- katip ==0.8.8.2
|
||||
- katip-logstash ==0.1.0.2
|
||||
- katip-wai ==0.1.2.4
|
||||
- kazura-queue ==0.1.0.4
|
||||
@ -1827,7 +1827,7 @@ default-package-overrides:
|
||||
- lpeg ==1.0.4
|
||||
- LPFP-core ==1.1.1
|
||||
- lrucache ==1.2.0.1
|
||||
- lua ==2.3.2
|
||||
- lua ==2.3.3
|
||||
- lua-arbitrary ==1.0.1.1
|
||||
- lucid2 ==0.0.20240424
|
||||
- lucid ==2.11.20230408
|
||||
@ -1973,7 +1973,7 @@ default-package-overrides:
|
||||
- monoid-subclasses ==1.2.5.1
|
||||
- monoid-transformer ==0.0.4
|
||||
- monomer ==1.6.0.1
|
||||
- mono-traversable ==1.0.17.0
|
||||
- mono-traversable ==1.0.20.0
|
||||
- mono-traversable-instances ==0.1.1.0
|
||||
- mono-traversable-keys ==0.3.0
|
||||
- more-containers ==0.2.2.2
|
||||
@ -2050,7 +2050,7 @@ default-package-overrides:
|
||||
- network-multicast ==0.3.2
|
||||
- network-run ==0.2.8
|
||||
- network-simple ==0.4.5
|
||||
- network-transport ==0.5.7
|
||||
- network-transport ==0.5.8
|
||||
- network-uri ==2.6.4.2
|
||||
- network-wait ==0.2.0.0
|
||||
- newtype ==0.2.2.0
|
||||
@ -2099,7 +2099,7 @@ default-package-overrides:
|
||||
- ofx ==0.4.4.0
|
||||
- old-locale ==1.0.0.7
|
||||
- old-time ==1.1.0.4
|
||||
- om-elm ==2.0.0.6
|
||||
- om-elm ==2.0.0.7
|
||||
- once ==0.4
|
||||
- one-liner ==2.1
|
||||
- one-liner-instances ==0.1.3.0
|
||||
@ -2153,7 +2153,7 @@ default-package-overrides:
|
||||
- pandoc-cli ==3.1.11.1
|
||||
- pandoc-dhall-decoder ==0.1.0.1
|
||||
- pandoc-lua-engine ==0.2.1.2
|
||||
- pandoc-lua-marshal ==0.2.7.1
|
||||
- pandoc-lua-marshal ==0.2.8
|
||||
- pandoc-plot ==1.8.0
|
||||
- pandoc-server ==0.1.0.5
|
||||
- pandoc-throw ==0.1.0.0
|
||||
@ -2164,7 +2164,7 @@ default-package-overrides:
|
||||
- parallel ==3.2.2.0
|
||||
- parallel-io ==0.3.5
|
||||
- parameterized ==0.5.0.0
|
||||
- parameterized-utils ==2.1.8.0
|
||||
- parameterized-utils ==2.1.9.0
|
||||
- park-bench ==0.1.1.0
|
||||
- parseargs ==0.2.0.9
|
||||
- parsec-class ==1.0.1.0
|
||||
@ -2214,11 +2214,11 @@ default-package-overrides:
|
||||
- perfect-hash-generator ==1.0.0
|
||||
- persistable-record ==0.6.0.6
|
||||
- persistable-types-HDBC-pg ==0.0.3.5
|
||||
- persistent ==2.14.6.2
|
||||
- persistent ==2.14.6.3
|
||||
- persistent-discover ==0.1.0.7
|
||||
- persistent-iproute ==0.2.5
|
||||
- persistent-lens ==1.0.0
|
||||
- persistent-mongoDB ==2.13.0.1
|
||||
- persistent-mongoDB ==2.13.1.0
|
||||
- persistent-mtl ==0.5.1
|
||||
- persistent-mysql ==2.13.1.5
|
||||
- persistent-pagination ==0.1.1.2
|
||||
@ -2356,7 +2356,7 @@ default-package-overrides:
|
||||
- pureMD5 ==2.1.4
|
||||
- purescript-bridge ==0.15.0.0
|
||||
- purview ==0.2.0.2
|
||||
- pusher-http-haskell ==2.1.0.17
|
||||
- pusher-http-haskell ==2.1.0.18
|
||||
- pvar ==1.0.0.0
|
||||
- pwstore-fast ==2.4.4
|
||||
- PyF ==0.11.3.0
|
||||
@ -2403,7 +2403,7 @@ default-package-overrides:
|
||||
- Ranged-sets ==0.4.0
|
||||
- ranges ==0.2.4
|
||||
- range-set-list ==0.1.3.1
|
||||
- rank1dynamic ==0.4.1
|
||||
- rank1dynamic ==0.4.2
|
||||
- rank2classes ==1.5.3.1
|
||||
- Rasterific ==0.7.5.4
|
||||
- rasterific-svg ==0.3.3.2
|
||||
@ -2477,7 +2477,7 @@ default-package-overrides:
|
||||
- resolv ==0.2.0.2
|
||||
- resource-pool ==0.4.0.0
|
||||
- resourcet ==1.3.0
|
||||
- rest-rewrite ==0.4.3
|
||||
- rest-rewrite ==0.4.4
|
||||
- result ==0.2.6.0
|
||||
- retry ==0.9.3.1
|
||||
- rex ==0.6.2
|
||||
@ -2511,7 +2511,7 @@ default-package-overrides:
|
||||
- runmemo ==1.0.0.1
|
||||
- run-st ==0.1.3.3
|
||||
- rvar ==0.3.0.2
|
||||
- rzk ==0.7.4
|
||||
- rzk ==0.7.5
|
||||
- s3-signer ==0.5.0.0
|
||||
- safe ==0.3.21
|
||||
- safe-coloured-text ==0.2.0.2
|
||||
@ -2535,7 +2535,7 @@ default-package-overrides:
|
||||
- sampling ==0.3.5
|
||||
- sandi ==0.5
|
||||
- sandwich ==0.2.2.0
|
||||
- sandwich-hedgehog ==0.1.3.0
|
||||
- sandwich-hedgehog ==0.1.3.1
|
||||
- sandwich-quickcheck ==0.1.0.7
|
||||
- sandwich-slack ==0.1.2.0
|
||||
- sandwich-webdriver ==0.2.3.1
|
||||
@ -2574,41 +2574,41 @@ default-package-overrides:
|
||||
- seqalign ==0.2.0.4
|
||||
- seqid ==0.6.3
|
||||
- seqid-streams ==0.7.2
|
||||
- sequence-formats ==1.8.1.0
|
||||
- sequence-formats ==1.8.1.1
|
||||
- sequenceTools ==1.5.3.1
|
||||
- serialise ==0.2.6.1
|
||||
- servant ==0.20.1
|
||||
- servant-auth ==0.4.1.0
|
||||
- servant-auth-client ==0.4.1.1
|
||||
- servant-auth-docs ==0.2.10.1
|
||||
- servant-auth-server ==0.4.8.0
|
||||
- servant-auth-swagger ==0.2.10.2
|
||||
- servant ==0.20.2
|
||||
- servant-auth ==0.4.2.0
|
||||
- servant-auth-client ==0.4.2.0
|
||||
- servant-auth-docs ==0.2.11.0
|
||||
- servant-auth-server ==0.4.9.0
|
||||
- servant-auth-swagger ==0.2.11.0
|
||||
- servant-blaze ==0.9.1
|
||||
- servant-checked-exceptions ==2.2.0.1
|
||||
- servant-checked-exceptions-core ==2.2.0.1
|
||||
- servant-client ==0.20
|
||||
- servant-client-core ==0.20
|
||||
- servant-conduit ==0.16
|
||||
- servant-docs ==0.13
|
||||
- servant-client ==0.20.2
|
||||
- servant-client-core ==0.20.2
|
||||
- servant-conduit ==0.16.1
|
||||
- servant-docs ==0.13.1
|
||||
- servant-elm ==0.7.3
|
||||
- servant-exceptions ==0.2.1
|
||||
- servant-exceptions-server ==0.2.1
|
||||
- servant-foreign ==0.16
|
||||
- servant-http-streams ==0.20
|
||||
- servant-foreign ==0.16.1
|
||||
- servant-http-streams ==0.20.2
|
||||
- servant-JuicyPixels ==0.3.1.1
|
||||
- servant-lucid ==0.9.0.6
|
||||
- servant-machines ==0.16
|
||||
- servant-machines ==0.16.1
|
||||
- servant-multipart ==0.12.1
|
||||
- servant-multipart-api ==0.12.1
|
||||
- servant-multipart-client ==0.12.2
|
||||
- servant-openapi3 ==2.0.1.6
|
||||
- servant-pipes ==0.16
|
||||
- servant-pipes ==0.16.1
|
||||
- servant-rate-limit ==0.2.0.0
|
||||
- servant-rawm ==1.0.0.0
|
||||
- servant-server ==0.20
|
||||
- servant-server ==0.20.2
|
||||
- servant-static-th ==1.0.0.0
|
||||
- servant-subscriber ==0.7.0.0
|
||||
- servant-swagger ==1.2
|
||||
- servant-swagger ==1.2.1
|
||||
- servant-swagger-ui ==0.3.5.5.0.0
|
||||
- servant-swagger-ui-core ==0.3.5
|
||||
- servant-swagger-ui-redoc ==0.3.4.1.22.3
|
||||
@ -2671,13 +2671,13 @@ default-package-overrides:
|
||||
- singletons-th ==3.2
|
||||
- Sit ==0.2023.8.3
|
||||
- sitemap-gen ==0.1.0.0
|
||||
- size-based ==0.1.3.2
|
||||
- size-based ==0.1.3.3
|
||||
- sized ==1.1.0.2
|
||||
- skein ==1.0.9.4
|
||||
- skews ==0.1.0.3
|
||||
- skip-var ==0.1.1.0
|
||||
- skylighting ==0.14.2
|
||||
- skylighting-core ==0.14.2
|
||||
- skylighting ==0.14.3
|
||||
- skylighting-core ==0.14.3
|
||||
- skylighting-format-ansi ==0.1
|
||||
- skylighting-format-blaze-html ==0.1.1.2
|
||||
- skylighting-format-context ==0.1.0.2
|
||||
@ -2818,7 +2818,7 @@ default-package-overrides:
|
||||
- sydtest-rabbitmq ==0.1.0.0
|
||||
- sydtest-servant ==0.2.0.2
|
||||
- sydtest-typed-process ==0.0.0.0
|
||||
- sydtest-wai ==0.2.0.1
|
||||
- sydtest-wai ==0.2.0.2
|
||||
- sydtest-webdriver ==0.0.0.1
|
||||
- sydtest-webdriver-screenshot ==0.0.0.2
|
||||
- sydtest-webdriver-yesod ==0.0.0.1
|
||||
@ -2914,7 +2914,7 @@ default-package-overrides:
|
||||
- text-ansi ==0.3.0.1
|
||||
- text-binary ==0.2.1.1
|
||||
- text-builder ==0.6.7.2
|
||||
- text-builder-dev ==0.3.4.4
|
||||
- text-builder-dev ==0.3.5
|
||||
- text-builder-linear ==0.1.3
|
||||
- text-conversions ==0.3.1.1
|
||||
- text-format ==0.3.2.1
|
||||
@ -3033,7 +3033,7 @@ default-package-overrides:
|
||||
- twitter-types ==0.11.0
|
||||
- twitter-types-lens ==0.11.0
|
||||
- typecheck-plugin-nat-simple ==0.1.0.9
|
||||
- typed-process ==0.2.11.1
|
||||
- typed-process ==0.2.12.0
|
||||
- typed-uuid ==0.2.0.0
|
||||
- type-equality ==1.0.1
|
||||
- type-errors ==0.2.0.2
|
||||
@ -3095,7 +3095,7 @@ default-package-overrides:
|
||||
- universe-reverse-instances ==1.1.1
|
||||
- universe-some ==1.2.1
|
||||
- universum ==1.8.2.1
|
||||
- unix-bytestring ==0.4.0.1
|
||||
- unix-bytestring ==0.4.0.2
|
||||
- unix-compat ==0.7.2
|
||||
- unix-time ==0.4.15
|
||||
- unjson ==0.15.4
|
||||
@ -3127,7 +3127,7 @@ default-package-overrides:
|
||||
- validity-aeson ==0.2.0.5
|
||||
- validity-bytestring ==0.4.1.1
|
||||
- validity-case-insensitive ==0.0.0.0
|
||||
- validity-containers ==0.5.0.4
|
||||
- validity-containers ==0.5.0.5
|
||||
- validity-network-uri ==0.0.0.1
|
||||
- validity-path ==0.4.0.1
|
||||
- validity-persistent ==0.0.0.0
|
||||
@ -3207,7 +3207,7 @@ default-package-overrides:
|
||||
- wai-websockets ==3.0.1.2
|
||||
- wakame ==0.1.0.0
|
||||
- warp ==3.3.31
|
||||
- warp-tls ==3.4.6
|
||||
- warp-tls ==3.4.7
|
||||
- wave ==0.2.1
|
||||
- wcwidth ==0.0.2
|
||||
- webdriver ==0.12.0.0
|
||||
|
@ -732,6 +732,7 @@ dont-distribute-packages:
|
||||
- cabal-cargs
|
||||
- cabal-fix
|
||||
- cabal-query
|
||||
- cabal-scaffold
|
||||
- cabal-test
|
||||
- cabal2arch
|
||||
- cabalmdvrpm
|
||||
@ -964,14 +965,14 @@ dont-distribute-packages:
|
||||
- copilot-cbmc
|
||||
- copilot-frp-sketch
|
||||
- copilot-language
|
||||
- copilot-language_3_20
|
||||
- copilot-language_4_0
|
||||
- copilot-libraries
|
||||
- copilot-libraries_3_20
|
||||
- copilot-libraries_4_0
|
||||
- copilot-sbv
|
||||
- copilot-theorem
|
||||
- copilot-theorem_3_20
|
||||
- copilot-theorem_4_0
|
||||
- copilot-verifier
|
||||
- copilot_3_20
|
||||
- copilot_4_0
|
||||
- corenlp-parser
|
||||
- coroutine-enumerator
|
||||
- coroutine-iteratee
|
||||
@ -988,7 +989,7 @@ dont-distribute-packages:
|
||||
- cqrs-test
|
||||
- cqrs-testkit
|
||||
- crackNum
|
||||
- crackNum_3_12
|
||||
- crackNum_3_14
|
||||
- craft
|
||||
- craftwerk-cairo
|
||||
- craftwerk-gtk
|
||||
@ -1162,7 +1163,7 @@ dont-distribute-packages:
|
||||
- distribution-plot
|
||||
- dixi
|
||||
- dl-fedora
|
||||
- dl-fedora_1_1
|
||||
- dl-fedora_1_2
|
||||
- dmenu-pkill
|
||||
- dmenu-pmount
|
||||
- dmenu-search
|
||||
@ -1469,8 +1470,6 @@ dont-distribute-packages:
|
||||
- gelatin-gl
|
||||
- gelatin-sdl2
|
||||
- gelatin-shaders
|
||||
- gemini-router
|
||||
- gemini-textboard
|
||||
- gencheck
|
||||
- generic-accessors
|
||||
- generic-override-aeson
|
||||
@ -1501,7 +1500,6 @@ dont-distribute-packages:
|
||||
- gi-cairo-again
|
||||
- gi-ges
|
||||
- gi-gstpbutils
|
||||
- gi-gtk-declarative-app-simple
|
||||
- git-config
|
||||
- git-fmt
|
||||
- git-gpush
|
||||
@ -1511,6 +1509,7 @@ dont-distribute-packages:
|
||||
- gitdo
|
||||
- github-data
|
||||
- github-webhook-handler-snap
|
||||
- github-workflow-commands
|
||||
- gitlib-cross
|
||||
- gitlib-s3
|
||||
- gitson
|
||||
@ -1521,7 +1520,6 @@ dont-distribute-packages:
|
||||
- glazier-react
|
||||
- glazier-react-examples
|
||||
- glazier-react-widget
|
||||
- glirc
|
||||
- global
|
||||
- global-config
|
||||
- glome-hs
|
||||
@ -1796,6 +1794,7 @@ dont-distribute-packages:
|
||||
- gtk2hs-cast-gtksourceview2
|
||||
- gtkimageview
|
||||
- gtkrsync
|
||||
- gtvm-hs
|
||||
- guarded-rewriting
|
||||
- guess-combinator
|
||||
- h3spec
|
||||
@ -1823,7 +1822,6 @@ dont-distribute-packages:
|
||||
- hackage2twitter
|
||||
- hackmanager
|
||||
- haddock
|
||||
- haddock_2_23_1
|
||||
- haddocset
|
||||
- hadoop-tools
|
||||
- haggis
|
||||
@ -2440,7 +2438,6 @@ dont-distribute-packages:
|
||||
- keera-hails-reactivelenses
|
||||
- keera-posture
|
||||
- keid-resource-gltf
|
||||
- keid-ui-dearimgui
|
||||
- kerry
|
||||
- kevin
|
||||
- key-vault
|
||||
@ -2463,6 +2460,7 @@ dont-distribute-packages:
|
||||
- kubernetes-client
|
||||
- kure-your-boilerplate
|
||||
- kurita
|
||||
- kvitable_1_1_0_1
|
||||
- laborantin-hs
|
||||
- labsat
|
||||
- labyrinth
|
||||
@ -3051,6 +3049,10 @@ dont-distribute-packages:
|
||||
- peyotls
|
||||
- peyotls-codec
|
||||
- pg-entity
|
||||
- phladiprelio-general-shared
|
||||
- phladiprelio-general-simple
|
||||
- phladiprelio-ukrainian-shared
|
||||
- phladiprelio-ukrainian-simple
|
||||
- phonetic-languages-common
|
||||
- phonetic-languages-constraints
|
||||
- phonetic-languages-examples
|
||||
@ -3547,7 +3549,6 @@ dont-distribute-packages:
|
||||
- serv
|
||||
- serv-wai
|
||||
- servant-aeson-generics-typescript
|
||||
- servant-auth-client_0_4_2_0
|
||||
- servant-auth-hmac
|
||||
- servant-auth-token
|
||||
- servant-auth-token-acid
|
||||
@ -3811,7 +3812,7 @@ dont-distribute-packages:
|
||||
- sydtest-webdriver-screenshot_0_1_0_0
|
||||
- sydtest-webdriver-yesod
|
||||
- sydtest-yesod
|
||||
- sydtest_0_17_0_0
|
||||
- sydtest_0_18_0_0
|
||||
- sylvia
|
||||
- symantic-atom
|
||||
- symantic-http-demo
|
||||
@ -4012,6 +4013,7 @@ dont-distribute-packages:
|
||||
- ukrainian-phonetics-basic
|
||||
- unagi-bloomfilter
|
||||
- unbound
|
||||
- unbound-generics-unify
|
||||
- unbound-kind-generics
|
||||
- unfoldable-restricted
|
||||
- uni-events
|
||||
@ -4170,7 +4172,7 @@ dont-distribute-packages:
|
||||
- werewolf-slack
|
||||
- wgpu-hs
|
||||
- what4
|
||||
- what4_1_6
|
||||
- what4_1_6_2
|
||||
- wheb-mongo
|
||||
- wheb-redis
|
||||
- wheb-strapped
|
||||
|
@ -376,6 +376,9 @@ self: super: builtins.intersectAttrs super {
|
||||
mustache = dontCheck super.mustache;
|
||||
arch-web = dontCheck super.arch-web;
|
||||
|
||||
# Tries accessing the GitHub API
|
||||
github-app-token = dontCheck super.github-app-token;
|
||||
|
||||
# The curl executable is required for withApplication tests.
|
||||
warp = addTestToolDepend pkgs.curl super.warp;
|
||||
warp_3_3_30 = addTestToolDepend pkgs.curl super.warp_3_3_30;
|
||||
@ -1117,6 +1120,22 @@ self: super: builtins.intersectAttrs super {
|
||||
(dontCheckIf (!pkgs.postgresql.doCheck))
|
||||
];
|
||||
|
||||
cloudy =
|
||||
pkgs.lib.pipe
|
||||
super.cloudy
|
||||
[
|
||||
# The code-path that generates the optparse-applicative completions uses
|
||||
# the HOME directory, so that must be set in order to generate completions.
|
||||
# https://github.com/cdepillabout/cloudy/issues/10
|
||||
( overrideCabal (oldAttrs: {
|
||||
postInstall = ''
|
||||
export HOME=$TMPDIR
|
||||
'' + (oldAttrs.postInstall or "");
|
||||
})
|
||||
)
|
||||
(self.generateOptparseApplicativeCompletions ["cloudy"])
|
||||
];
|
||||
|
||||
# Wants running postgresql database accessible over ip, so postgresqlTestHook
|
||||
# won't work (or would need to patch test suite).
|
||||
domaindriven-core = dontCheck super.domaindriven-core;
|
||||
@ -1368,11 +1387,12 @@ self: super: builtins.intersectAttrs super {
|
||||
gi-javascriptcore
|
||||
gi-webkit2webextension
|
||||
gi-gtk_4_0_9
|
||||
gi-gdk_4_0_8
|
||||
gi-gdk_4_0_9
|
||||
gi-gsk
|
||||
gi-adwaita
|
||||
sdl2-ttf
|
||||
sdl2
|
||||
dear-imgui
|
||||
;
|
||||
|
||||
webkit2gtk3-javascriptcore = lib.pipe super.webkit2gtk3-javascriptcore [
|
||||
|
4827
pkgs/development/haskell-modules/hackage-packages.nix
generated
4827
pkgs/development/haskell-modules/hackage-packages.nix
generated
File diff suppressed because it is too large
Load Diff
@ -32726,8 +32726,6 @@ with pkgs;
|
||||
teamspeak5_client = callPackage ../applications/networking/instant-messengers/teamspeak/client5.nix { };
|
||||
teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { };
|
||||
|
||||
taskell = haskell.lib.compose.justStaticExecutables haskellPackages.taskell;
|
||||
|
||||
taskjuggler = callPackage ../applications/misc/taskjuggler { };
|
||||
|
||||
tabula-java = callPackage ../applications/misc/tabula-java { };
|
||||
|
@ -382,7 +382,25 @@ in {
|
||||
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15;
|
||||
llvmPackages = pkgs.llvmPackages_15;
|
||||
};
|
||||
ghc98 = compiler.ghc982;
|
||||
ghc983 = callPackage ../development/compilers/ghc/9.8.3.nix {
|
||||
bootPkgs =
|
||||
# For GHC 9.6 no armv7l bindists are available.
|
||||
if stdenv.buildPlatform.isAarch32 then
|
||||
bb.packages.ghc963
|
||||
else if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then
|
||||
bb.packages.ghc963
|
||||
else
|
||||
bb.packages.ghc963Binary;
|
||||
inherit (buildPackages.python3Packages) sphinx;
|
||||
# Need to use apple's patched xattr until
|
||||
# https://github.com/xattr/xattr/issues/44 and
|
||||
# https://github.com/xattr/xattr/issues/55 are solved.
|
||||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||||
# Support range >= 11 && < 16
|
||||
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15;
|
||||
llvmPackages = pkgs.llvmPackages_15;
|
||||
};
|
||||
ghc98 = compiler.ghc982; # HLS doesn't work yet with 9.8.3
|
||||
ghc9101 = callPackage ../development/compilers/ghc/9.10.1.nix {
|
||||
bootPkgs =
|
||||
# For GHC 9.6 no armv7l bindists are available.
|
||||
@ -424,8 +442,8 @@ in {
|
||||
# https://github.com/xattr/xattr/issues/55 are solved.
|
||||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||||
# 2023-01-15: Support range >= 11 && < 16
|
||||
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15;
|
||||
llvmPackages = pkgs.llvmPackages_15;
|
||||
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_18;
|
||||
llvmPackages = pkgs.llvmPackages_18;
|
||||
};
|
||||
|
||||
ghcjs = compiler.ghcjs810;
|
||||
@ -571,7 +589,12 @@ in {
|
||||
ghc = bh.compiler.ghc982;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
|
||||
};
|
||||
ghc98 = packages.ghc982;
|
||||
ghc983 = callPackage ../development/haskell-modules {
|
||||
buildHaskellPackages = bh.packages.ghc983;
|
||||
ghc = bh.compiler.ghc983;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
|
||||
};
|
||||
ghc98 = packages.ghc982; # HLS doesn't work yet with 9.8.3
|
||||
ghc9101 = callPackage ../development/haskell-modules {
|
||||
buildHaskellPackages = bh.packages.ghc9101;
|
||||
ghc = bh.compiler.ghc9101;
|
||||
|
@ -75,6 +75,7 @@ let
|
||||
ghc966
|
||||
ghc981
|
||||
ghc982
|
||||
ghc983
|
||||
ghc9101
|
||||
];
|
||||
|
||||
@ -366,7 +367,6 @@ let
|
||||
stylish-haskell
|
||||
taffybar
|
||||
tamarin-prover
|
||||
taskell
|
||||
termonad
|
||||
tldr-hs
|
||||
tweet-hs
|
||||
@ -465,8 +465,8 @@ let
|
||||
;
|
||||
};
|
||||
|
||||
haskell.packages.native-bignum.ghc982 = {
|
||||
inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc982)
|
||||
haskell.packages.native-bignum.ghc983 = {
|
||||
inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc983)
|
||||
hello
|
||||
random
|
||||
QuickCheck
|
||||
@ -724,7 +724,7 @@ let
|
||||
constituents = accumulateDerivations [
|
||||
jobs.pkgsStatic.haskell.packages.native-bignum.ghc948 # non-hadrian
|
||||
jobs.pkgsStatic.haskellPackages
|
||||
jobs.pkgsStatic.haskell.packages.native-bignum.ghc982
|
||||
jobs.pkgsStatic.haskell.packages.native-bignum.ghc983
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user