mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
Merge pull request #116965 from NixOS/haskell-updates
Update Haskell package set to Stackage Nightly 2021-03-21 (plus other fixes)
This commit is contained in:
commit
a395ac2307
|
@ -64,7 +64,7 @@ self: super: {
|
||||||
name = "git-annex-${super.git-annex.version}-src";
|
name = "git-annex-${super.git-annex.version}-src";
|
||||||
url = "git://git-annex.branchable.com/";
|
url = "git://git-annex.branchable.com/";
|
||||||
rev = "refs/tags/" + super.git-annex.version;
|
rev = "refs/tags/" + super.git-annex.version;
|
||||||
sha256 = "1y9js3n8ml2g492nivy7gk371rdmibwydb4fwzzwbviya280akaq";
|
sha256 = "13n62v3cdkx23fywdccczcr8vsf0vmjbimmgin766bf428jlhh6h";
|
||||||
};
|
};
|
||||||
}).override {
|
}).override {
|
||||||
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
|
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
|
||||||
|
@ -91,6 +91,7 @@ self: super: {
|
||||||
tdigest = doJailbreak super.tdigest;
|
tdigest = doJailbreak super.tdigest;
|
||||||
text-short = doJailbreak super.text-short;
|
text-short = doJailbreak super.text-short;
|
||||||
tree-diff = doJailbreak super.tree-diff;
|
tree-diff = doJailbreak super.tree-diff;
|
||||||
|
zinza = doJailbreak super.zinza;
|
||||||
|
|
||||||
# Tests require a Kafka broker running locally
|
# Tests require a Kafka broker running locally
|
||||||
haskakafka = dontCheck super.haskakafka;
|
haskakafka = dontCheck super.haskakafka;
|
||||||
|
@ -708,8 +709,13 @@ self: super: {
|
||||||
diagrams-postscript = doJailbreak super.diagrams-postscript;
|
diagrams-postscript = doJailbreak super.diagrams-postscript;
|
||||||
diagrams-svg = doJailbreak super.diagrams-svg;
|
diagrams-svg = doJailbreak super.diagrams-svg;
|
||||||
diagrams-contrib = doJailbreak super.diagrams-contrib;
|
diagrams-contrib = doJailbreak super.diagrams-contrib;
|
||||||
# https://github.com/diagrams/diagrams-lib/issues/288
|
# apply patch from master to add compat with optparse-applicative >= 0.16
|
||||||
diagrams-lib = doJailbreak (overrideCabal super.diagrams-lib (drv: { doCheck = !pkgs.stdenv.isi686; }));
|
diagrams-lib = doJailbreak (appendPatch super.diagrams-lib
|
||||||
|
(pkgs.fetchpatch {
|
||||||
|
url = "https://github.com/diagrams/diagrams-lib/commit/4b9842c3e3d653be69af19778970337775e2404d.patch";
|
||||||
|
sha256 = "0xqvzh3ip9i0nv8xnh41afxki64r259pxq8ir1a4v99ggnldpjaa";
|
||||||
|
includes = [ "*/CmdLine.hs" ];
|
||||||
|
}));
|
||||||
|
|
||||||
# https://github.com/danidiaz/streaming-eversion/issues/1
|
# https://github.com/danidiaz/streaming-eversion/issues/1
|
||||||
streaming-eversion = dontCheck super.streaming-eversion;
|
streaming-eversion = dontCheck super.streaming-eversion;
|
||||||
|
@ -1159,10 +1165,11 @@ self: super: {
|
||||||
# $HOME, which we don't have in our build sandbox.
|
# $HOME, which we don't have in our build sandbox.
|
||||||
cabal-install-parsers = dontCheck super.cabal-install-parsers;
|
cabal-install-parsers = dontCheck super.cabal-install-parsers;
|
||||||
|
|
||||||
# version constraints break the build, so we jailbreak
|
# * jailbreak can be removed at the next release (current is 0.13.0.0)
|
||||||
# can be removed at a new release which also fixes
|
# * patch fixes compilation with pandoc >= 2.12, can be removed if a
|
||||||
# https://github.com/jgm/gitit/issues/665
|
# release contains https://github.com/jgm/gitit/pull/670 or equivalent.
|
||||||
gitit = doJailbreak super.gitit;
|
# Patch is vendored in as it may change upstream in the future.
|
||||||
|
gitit = doJailbreak (appendPatch super.gitit ./patches/gitit-pandoc-2.12.patch);
|
||||||
|
|
||||||
# Test suite requires database
|
# Test suite requires database
|
||||||
persistent-mysql = dontCheck super.persistent-mysql;
|
persistent-mysql = dontCheck super.persistent-mysql;
|
||||||
|
@ -1407,13 +1414,26 @@ self: super: {
|
||||||
# 2021-03-19: https://github.com/Avi-D-coder/implicit-hie-cradle/pull/8
|
# 2021-03-19: https://github.com/Avi-D-coder/implicit-hie-cradle/pull/8
|
||||||
implicit-hie-cradle = doJailbreak super.implicit-hie-cradle;
|
implicit-hie-cradle = doJailbreak super.implicit-hie-cradle;
|
||||||
|
|
||||||
# 2021-03-09: Overrides because nightly is to old for hls 1.0.0
|
|
||||||
lsp-test = doDistribute (dontCheck self.lsp-test_0_13_0_0);
|
|
||||||
|
|
||||||
# 2021-03-09: Golden tests seem to be missing in hackage release:
|
# 2021-03-09: Golden tests seem to be missing in hackage release:
|
||||||
# https://github.com/haskell/haskell-language-server/issues/1536
|
# https://github.com/haskell/haskell-language-server/issues/1536
|
||||||
hls-tactics-plugin = dontCheck super.hls-tactics-plugin;
|
hls-tactics-plugin = dontCheck super.hls-tactics-plugin;
|
||||||
|
|
||||||
|
# 2021-03-24: hlint 3.3 is for ghc 9 compat, but hls only supports ghc 8.10
|
||||||
|
hls-hlint-plugin = super.hls-hlint-plugin.override {
|
||||||
|
hlint = super.hlint_3_2_7;
|
||||||
|
};
|
||||||
|
|
||||||
|
# hlint 3.3 needs a ghc-lib-parser newer than the one from stackage
|
||||||
|
hlint = super.hlint.overrideScope (self: super: {
|
||||||
|
ghc-lib-parser = overrideCabal self.ghc-lib-parser_9_0_1_20210324 {
|
||||||
|
doHaddock = false;
|
||||||
|
};
|
||||||
|
ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_0_0_4;
|
||||||
|
});
|
||||||
|
|
||||||
|
# 2021-03-09: Overrides because nightly is to old for hls 1.0.0
|
||||||
|
lsp-test = doDistribute (dontCheck self.lsp-test_0_13_0_0);
|
||||||
|
|
||||||
# 2021-03-21 Test hangs
|
# 2021-03-21 Test hangs
|
||||||
# https://github.com/haskell/haskell-language-server/issues/1562
|
# https://github.com/haskell/haskell-language-server/issues/1562
|
||||||
# Jailbreak because of: https://github.com/haskell/haskell-language-server/pull/1595
|
# Jailbreak because of: https://github.com/haskell/haskell-language-server/pull/1595
|
||||||
|
@ -1593,9 +1613,6 @@ self: super: {
|
||||||
vivid-osc = dontCheck super.vivid-osc;
|
vivid-osc = dontCheck super.vivid-osc;
|
||||||
vivid-supercollider = dontCheck super.vivid-supercollider;
|
vivid-supercollider = dontCheck super.vivid-supercollider;
|
||||||
|
|
||||||
# Overly strict version bounds: https://github.com/Profpatsch/yarn-lock/issues/8
|
|
||||||
yarn-lock = doJailbreak super.yarn-lock;
|
|
||||||
|
|
||||||
# Dependency to regex-tdfa-text can be removed for later regex-tdfa versions.
|
# Dependency to regex-tdfa-text can be removed for later regex-tdfa versions.
|
||||||
# Fix protolude compilation error by applying patch from pull-request.
|
# Fix protolude compilation error by applying patch from pull-request.
|
||||||
# Override can be removed for the next release > 0.8.0.
|
# Override can be removed for the next release > 0.8.0.
|
||||||
|
@ -1675,8 +1692,92 @@ self: super: {
|
||||||
# https://github.com/jgm/pandoc/issues/7163
|
# https://github.com/jgm/pandoc/issues/7163
|
||||||
pandoc = dontCheck super.pandoc;
|
pandoc = dontCheck super.pandoc;
|
||||||
|
|
||||||
|
# test suite triggers some kind of linking bug at runtime
|
||||||
|
# https://github.com/noinia/hgeometry/issues/132
|
||||||
|
hgeometry-combinatorial = dontCheck super.hgeometry-combinatorial;
|
||||||
|
|
||||||
|
# Too strict version bounds on ansi-terminal
|
||||||
|
# https://github.com/kowainik/co-log/pull/218
|
||||||
|
co-log = doJailbreak super.co-log;
|
||||||
|
|
||||||
|
# Test suite has a too strict bound on base
|
||||||
|
# https://github.com/jswebtools/language-ecmascript/pull/88
|
||||||
|
language-ecmascript = doJailbreak super.language-ecmascript;
|
||||||
|
|
||||||
|
# Too strict bounds on containers
|
||||||
|
# https://github.com/jswebtools/language-ecmascript-analysis/issues/1
|
||||||
|
language-ecmascript-analysis = doJailbreak super.language-ecmascript-analysis;
|
||||||
|
|
||||||
|
# Too strict bounds on optparse-applicative
|
||||||
|
# https://github.com/faylang/fay/pull/474
|
||||||
|
fay = doJailbreak super.fay;
|
||||||
|
|
||||||
# Too strict version bounds on cryptonite.
|
# Too strict version bounds on cryptonite.
|
||||||
# Issue reported upstream, no bug tracker url yet.
|
# Issue reported upstream, no bug tracker url yet.
|
||||||
darcs = doJailbreak super.darcs;
|
darcs = doJailbreak super.darcs;
|
||||||
|
|
||||||
|
# Too strict version bounds on ansi-terminal
|
||||||
|
# This patch will be contained with the next release (current is 0.1.0.0).
|
||||||
|
colourista = appendPatch super.colourista
|
||||||
|
(pkgs.fetchpatch {
|
||||||
|
url = "https://github.com/kowainik/colourista/commit/15ace92105b56eba4ea3717bd55f733afe5be401.patch";
|
||||||
|
sha256 = "sha256-9gJFlyWUkO5sJodDRNuH10I66j8/0ZZIv6nJQkhlA0s=";
|
||||||
|
});
|
||||||
|
|
||||||
|
# Too strict version bounds on base16-bytestring and http-link-header.
|
||||||
|
# This patch will be merged when next release comes.
|
||||||
|
github = appendPatch super.github (pkgs.fetchpatch {
|
||||||
|
url = "https://github.com/phadej/github/commit/514b175851dd7c4a9722ff203dd6f652a15d33e8.patch";
|
||||||
|
sha256 = "0pmx54xd7ah85y9mfi5366wbnwrp918j0wbx8yw8hrdac92qi4gh";
|
||||||
|
});
|
||||||
|
|
||||||
|
# 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream.
|
||||||
|
trial-optparse-applicative = assert super.trial-optparse-applicative.version == "0.0.0.0"; doJailbreak super.trial-optparse-applicative;
|
||||||
|
|
||||||
|
# 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream.
|
||||||
|
extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions;
|
||||||
|
|
||||||
|
# 2021-04-02: iCalendar is basically unmaintained.
|
||||||
|
# There are PRs for bumping the bounds: https://github.com/chrra/iCalendar/pull/46
|
||||||
|
iCalendar = overrideCabal (doJailbreak super.iCalendar) {
|
||||||
|
# Overriding bounds behind a cabal flag
|
||||||
|
preConfigure = ''substituteInPlace iCalendar.cabal --replace "network >=2.6 && <2.7" "network -any"'';
|
||||||
|
};
|
||||||
|
|
||||||
|
# Too strict bounds on base: https://github.com/runarorama/fuzzyfind/issues/1
|
||||||
|
fuzzyfind = doJailbreak super.fuzzyfind;
|
||||||
|
|
||||||
|
# Apply patch from master relaxing the version bounds on tasty.
|
||||||
|
# Can be removed at next release (current is 0.10.1.0).
|
||||||
|
ginger = appendPatch super.ginger
|
||||||
|
(pkgs.fetchpatch {
|
||||||
|
url = "https://github.com/tdammers/ginger/commit/bd8cb39c1853d4fb4f663c4c201884575906acea.patch";
|
||||||
|
sha256 = "1rdy53k0384g52bnc59j1f0i13hr4lbnbksfsabr4av6zmw9wmzf";
|
||||||
|
});
|
||||||
|
|
||||||
|
# Too strict version bounds on cryptonite
|
||||||
|
# https://github.com/obsidiansystems/haveibeenpwned/issues/7
|
||||||
|
haveibeenpwned = doJailbreak super.haveibeenpwned;
|
||||||
|
|
||||||
|
# Too strict version bounds on ghc-events
|
||||||
|
# https://github.com/haskell/ThreadScope/issues/118
|
||||||
|
threadscope = doJailbreak super.threadscope;
|
||||||
|
|
||||||
|
# Too strict version bounds on tasty
|
||||||
|
# Can likely be removed next week (2021-04-09) when 1.1.1.1 is released.
|
||||||
|
fused-effects = doJailbreak super.fused-effects;
|
||||||
|
|
||||||
|
# Test suite doesn't support base16-bytestring >= 1.0
|
||||||
|
# https://github.com/centromere/blake2/issues/6
|
||||||
|
blake2 = dontCheck super.blake2;
|
||||||
|
|
||||||
|
# Test suite doesn't support base16-bytestring >= 1.0
|
||||||
|
# https://github.com/serokell/haskell-crypto/issues/25
|
||||||
|
crypto-sodium = dontCheck super.crypto-sodium;
|
||||||
|
|
||||||
|
# Too strict version bounds on a bunch of libraries:
|
||||||
|
# https://github.com/smallhadroncollider/taskell/issues/100
|
||||||
|
# May be possible to remove at the next release (1.11.0)
|
||||||
|
taskell = doJailbreak super.taskell;
|
||||||
|
|
||||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||||
|
|
|
@ -73,11 +73,33 @@ default-package-overrides:
|
||||||
# gi-gdkx11-4.x requires gtk-4.x, which is still under development and
|
# gi-gdkx11-4.x requires gtk-4.x, which is still under development and
|
||||||
# not yet available in Nixpkgs
|
# not yet available in Nixpkgs
|
||||||
- gi-gdkx11 < 4
|
- gi-gdkx11 < 4
|
||||||
- hlint < 3.3 # We don‘t have ghc-lib-parser 9.0.X yet.
|
# Needs Cabal 3.4 for Setup.hs
|
||||||
- ghcide < 1.1 # To stay hls 1.0 compatible
|
- gi-javascriptcore < 4.0.23 #
|
||||||
- hls-retrie-plugin < 1.0.0.1 # To stay hls 1.0 compatible
|
- gi-soup < 2.4.24 #
|
||||||
|
- gi-webkit2 < 4.0.27 #
|
||||||
|
# To stay hls 1.0 compatible
|
||||||
|
- ghcide < 1.1
|
||||||
|
- hls-retrie-plugin < 1.0.0.1
|
||||||
|
- lsp < 1.2
|
||||||
|
- lsp-types < 1.2
|
||||||
|
# 2021-04-02: Stackage Nighlty has haskell-gi* < 0.25,
|
||||||
|
# so we need to restrict these to compatible versions
|
||||||
|
# Remove these as soon as haskell-gi{,-base} are 0.25.*
|
||||||
|
# in Stackage Nightly!
|
||||||
|
- gi-ggit < 1.0.10
|
||||||
|
- gi-girepository < 1.0.24
|
||||||
|
- gi-gst < 1.0.24
|
||||||
|
- gi-gstbase < 1.0.24
|
||||||
|
- gi-gstvideo < 1.0.24
|
||||||
|
- gi-gtksource < 3.0.24
|
||||||
|
- gi-ibus < 1.5.3
|
||||||
|
- gi-notify < 0.7.23
|
||||||
|
- gi-ostree < 1.0.14
|
||||||
|
- gi-pangocairo < 1.0.25
|
||||||
|
- gi-secret < 0.0.13
|
||||||
|
- gi-vte < 2.91.28
|
||||||
|
|
||||||
# Stackage Nightly 2021-03-17
|
# Stackage Nightly 2021-03-21
|
||||||
- abstract-deque ==0.3
|
- abstract-deque ==0.3
|
||||||
- abstract-par ==0.3.3
|
- abstract-par ==0.3.3
|
||||||
- AC-Angle ==1.0
|
- AC-Angle ==1.0
|
||||||
|
@ -112,6 +134,7 @@ default-package-overrides:
|
||||||
- alarmclock ==0.7.0.5
|
- alarmclock ==0.7.0.5
|
||||||
- alerts ==0.1.2.0
|
- alerts ==0.1.2.0
|
||||||
- alex ==3.2.6
|
- alex ==3.2.6
|
||||||
|
- alex-meta ==0.3.0.13
|
||||||
- alg ==0.2.13.1
|
- alg ==0.2.13.1
|
||||||
- algebraic-graphs ==0.5
|
- algebraic-graphs ==0.5
|
||||||
- Allure ==0.9.5.0
|
- Allure ==0.9.5.0
|
||||||
|
@ -350,6 +373,7 @@ default-package-overrides:
|
||||||
- blaze-textual ==0.2.1.0
|
- blaze-textual ==0.2.1.0
|
||||||
- bmp ==1.2.6.3
|
- bmp ==1.2.6.3
|
||||||
- BNFC ==2.9.1
|
- BNFC ==2.9.1
|
||||||
|
- BNFC-meta ==0.6.1
|
||||||
- board-games ==0.3
|
- board-games ==0.3
|
||||||
- boltzmann-samplers ==0.1.1.0
|
- boltzmann-samplers ==0.1.1.0
|
||||||
- Boolean ==0.2.4
|
- Boolean ==0.2.4
|
||||||
|
@ -409,7 +433,7 @@ default-package-overrides:
|
||||||
- cache ==0.1.3.0
|
- cache ==0.1.3.0
|
||||||
- cacophony ==0.10.1
|
- cacophony ==0.10.1
|
||||||
- calendar-recycling ==0.0.0.1
|
- calendar-recycling ==0.0.0.1
|
||||||
- call-stack ==0.2.0
|
- call-stack ==0.3.0
|
||||||
- can-i-haz ==0.3.1.0
|
- can-i-haz ==0.3.1.0
|
||||||
- ca-province-codes ==1.0.0.0
|
- ca-province-codes ==1.0.0.0
|
||||||
- cardano-coin-selection ==1.0.1
|
- cardano-coin-selection ==1.0.1
|
||||||
|
@ -707,6 +731,7 @@ default-package-overrides:
|
||||||
- dotnet-timespan ==0.0.1.0
|
- dotnet-timespan ==0.0.1.0
|
||||||
- double-conversion ==2.0.2.0
|
- double-conversion ==2.0.2.0
|
||||||
- download ==0.3.2.7
|
- download ==0.3.2.7
|
||||||
|
- download-curl ==0.1.4
|
||||||
- drinkery ==0.4
|
- drinkery ==0.4
|
||||||
- dsp ==0.2.5.1
|
- dsp ==0.2.5.1
|
||||||
- dual ==0.1.1.1
|
- dual ==0.1.1.1
|
||||||
|
@ -829,6 +854,7 @@ default-package-overrides:
|
||||||
- filelock ==0.1.1.5
|
- filelock ==0.1.1.5
|
||||||
- filemanip ==0.3.6.3
|
- filemanip ==0.3.6.3
|
||||||
- file-modules ==0.1.2.4
|
- file-modules ==0.1.2.4
|
||||||
|
- filepath-bytestring ==1.4.2.1.7
|
||||||
- file-path-th ==0.1.0.0
|
- file-path-th ==0.1.0.0
|
||||||
- filepattern ==0.1.2
|
- filepattern ==0.1.2
|
||||||
- fileplow ==0.1.0.0
|
- fileplow ==0.1.0.0
|
||||||
|
@ -1010,6 +1036,7 @@ default-package-overrides:
|
||||||
- gluturtle ==0.0.58.1
|
- gluturtle ==0.0.58.1
|
||||||
- gnuplot ==0.5.6.1
|
- gnuplot ==0.5.6.1
|
||||||
- google-isbn ==1.0.3
|
- google-isbn ==1.0.3
|
||||||
|
- gopher-proxy ==0.1.1.2
|
||||||
- gothic ==0.1.6
|
- gothic ==0.1.6
|
||||||
- gpolyline ==0.1.0.1
|
- gpolyline ==0.1.0.1
|
||||||
- graph-core ==0.3.0.0
|
- graph-core ==0.3.0.0
|
||||||
|
@ -1042,6 +1069,7 @@ default-package-overrides:
|
||||||
- hapistrano ==0.4.1.2
|
- hapistrano ==0.4.1.2
|
||||||
- happstack-server ==7.7.0
|
- happstack-server ==7.7.0
|
||||||
- happy ==1.20.0
|
- happy ==1.20.0
|
||||||
|
- happy-meta ==0.2.0.11
|
||||||
- HasBigDecimal ==0.1.1
|
- HasBigDecimal ==0.1.1
|
||||||
- hasbolt ==0.1.4.4
|
- hasbolt ==0.1.4.4
|
||||||
- hashable ==1.3.0.0
|
- hashable ==1.3.0.0
|
||||||
|
@ -1050,7 +1078,7 @@ default-package-overrides:
|
||||||
- hashing ==0.1.0.1
|
- hashing ==0.1.0.1
|
||||||
- hashmap ==1.3.3
|
- hashmap ==1.3.3
|
||||||
- hashtables ==1.2.4.1
|
- hashtables ==1.2.4.1
|
||||||
- haskeline ==0.8.1.1
|
- haskeline ==0.8.1.2
|
||||||
- haskell-gi ==0.24.7
|
- haskell-gi ==0.24.7
|
||||||
- haskell-gi-base ==0.24.5
|
- haskell-gi-base ==0.24.5
|
||||||
- haskell-gi-overloading ==1.0
|
- haskell-gi-overloading ==1.0
|
||||||
|
@ -1080,7 +1108,7 @@ default-package-overrides:
|
||||||
- HDBC-session ==0.1.2.0
|
- HDBC-session ==0.1.2.0
|
||||||
- headroom ==0.4.1.0
|
- headroom ==0.4.1.0
|
||||||
- heap ==1.0.4
|
- heap ==1.0.4
|
||||||
- heaps ==0.3.6.1
|
- heaps ==0.4
|
||||||
- hebrew-time ==0.1.2
|
- hebrew-time ==0.1.2
|
||||||
- hedgehog ==1.0.5
|
- hedgehog ==1.0.5
|
||||||
- hedgehog-corpus ==0.2.0
|
- hedgehog-corpus ==0.2.0
|
||||||
|
@ -1157,7 +1185,7 @@ default-package-overrides:
|
||||||
- hslua-module-path ==0.1.0.1
|
- hslua-module-path ==0.1.0.1
|
||||||
- hslua-module-system ==0.2.2.1
|
- hslua-module-system ==0.2.2.1
|
||||||
- hslua-module-text ==0.3.0.1
|
- hslua-module-text ==0.3.0.1
|
||||||
- HsOpenSSL ==0.11.5.1
|
- HsOpenSSL ==0.11.6
|
||||||
- HsOpenSSL-x509-system ==0.1.0.4
|
- HsOpenSSL-x509-system ==0.1.0.4
|
||||||
- hsp ==0.10.0
|
- hsp ==0.10.0
|
||||||
- hspec ==2.7.8
|
- hspec ==2.7.8
|
||||||
|
@ -1173,6 +1201,7 @@ default-package-overrides:
|
||||||
- hspec-golden ==0.1.0.3
|
- hspec-golden ==0.1.0.3
|
||||||
- hspec-golden-aeson ==0.7.0.0
|
- hspec-golden-aeson ==0.7.0.0
|
||||||
- hspec-hedgehog ==0.0.1.2
|
- hspec-hedgehog ==0.0.1.2
|
||||||
|
- hspec-junit-formatter ==1.0.0.0
|
||||||
- hspec-leancheck ==0.0.4
|
- hspec-leancheck ==0.0.4
|
||||||
- hspec-megaparsec ==2.2.0
|
- hspec-megaparsec ==2.2.0
|
||||||
- hspec-meta ==2.7.8
|
- hspec-meta ==2.7.8
|
||||||
|
@ -1198,7 +1227,7 @@ default-package-overrides:
|
||||||
- html-entity-map ==0.1.0.0
|
- html-entity-map ==0.1.0.0
|
||||||
- htoml ==1.0.0.3
|
- htoml ==1.0.0.3
|
||||||
- http2 ==2.0.6
|
- http2 ==2.0.6
|
||||||
- HTTP ==4000.3.15
|
- HTTP ==4000.3.16
|
||||||
- http-api-data ==0.4.2
|
- http-api-data ==0.4.2
|
||||||
- http-client ==0.6.4.1
|
- http-client ==0.6.4.1
|
||||||
- http-client-openssl ==0.3.2.0
|
- http-client-openssl ==0.3.2.0
|
||||||
|
@ -1217,7 +1246,7 @@ default-package-overrides:
|
||||||
- http-streams ==0.8.7.2
|
- http-streams ==0.8.7.2
|
||||||
- http-types ==0.12.3
|
- http-types ==0.12.3
|
||||||
- human-readable-duration ==0.2.1.4
|
- human-readable-duration ==0.2.1.4
|
||||||
- HUnit ==1.6.1.0
|
- HUnit ==1.6.2.0
|
||||||
- HUnit-approx ==1.1.1.1
|
- HUnit-approx ==1.1.1.1
|
||||||
- hunit-dejafu ==2.0.0.4
|
- hunit-dejafu ==2.0.0.4
|
||||||
- hvect ==0.4.0.0
|
- hvect ==0.4.0.0
|
||||||
|
@ -1377,7 +1406,7 @@ default-package-overrides:
|
||||||
- ki ==0.2.0.1
|
- ki ==0.2.0.1
|
||||||
- kind-apply ==0.3.2.0
|
- kind-apply ==0.3.2.0
|
||||||
- kind-generics ==0.4.1.0
|
- kind-generics ==0.4.1.0
|
||||||
- kind-generics-th ==0.2.2.1
|
- kind-generics-th ==0.2.2.2
|
||||||
- kmeans ==0.1.3
|
- kmeans ==0.1.3
|
||||||
- koofr-client ==1.0.0.3
|
- koofr-client ==1.0.0.3
|
||||||
- krank ==0.2.2
|
- krank ==0.2.2
|
||||||
|
@ -1793,9 +1822,9 @@ default-package-overrides:
|
||||||
- persist ==0.1.1.5
|
- persist ==0.1.1.5
|
||||||
- persistable-record ==0.6.0.5
|
- persistable-record ==0.6.0.5
|
||||||
- persistable-types-HDBC-pg ==0.0.3.5
|
- persistable-types-HDBC-pg ==0.0.3.5
|
||||||
- persistent ==2.11.0.2
|
- persistent ==2.11.0.4
|
||||||
- persistent-documentation ==0.1.0.2
|
- persistent-documentation ==0.1.0.2
|
||||||
- persistent-mtl ==0.2.0.0
|
- persistent-mtl ==0.2.1.0
|
||||||
- persistent-mysql ==2.10.3.1
|
- persistent-mysql ==2.10.3.1
|
||||||
- persistent-pagination ==0.1.1.2
|
- persistent-pagination ==0.1.1.2
|
||||||
- persistent-postgresql ==2.11.0.1
|
- persistent-postgresql ==2.11.0.1
|
||||||
|
@ -1830,6 +1859,7 @@ default-package-overrides:
|
||||||
- pipes-wai ==3.2.0
|
- pipes-wai ==3.2.0
|
||||||
- pkcs10 ==0.2.0.0
|
- pkcs10 ==0.2.0.0
|
||||||
- pkgtreediff ==0.4
|
- pkgtreediff ==0.4
|
||||||
|
- place-cursor-at ==1.0.1
|
||||||
- placeholders ==0.1
|
- placeholders ==0.1
|
||||||
- plaid ==0.1.0.4
|
- plaid ==0.1.0.4
|
||||||
- plotlyhs ==0.2.1
|
- plotlyhs ==0.2.1
|
||||||
|
@ -1965,7 +1995,7 @@ default-package-overrides:
|
||||||
- rate-limit ==1.4.2
|
- rate-limit ==1.4.2
|
||||||
- ratel-wai ==1.1.5
|
- ratel-wai ==1.1.5
|
||||||
- rattle ==0.2
|
- rattle ==0.2
|
||||||
- rattletrap ==11.0.0
|
- rattletrap ==11.0.1
|
||||||
- Rattus ==0.5
|
- Rattus ==0.5
|
||||||
- rawfilepath ==0.2.4
|
- rawfilepath ==0.2.4
|
||||||
- rawstring-qm ==0.2.3.0
|
- rawstring-qm ==0.2.3.0
|
||||||
|
@ -1982,7 +2012,7 @@ default-package-overrides:
|
||||||
- record-hasfield ==1.0
|
- record-hasfield ==1.0
|
||||||
- records-sop ==0.1.0.3
|
- records-sop ==0.1.0.3
|
||||||
- record-wrangler ==0.1.1.0
|
- record-wrangler ==0.1.1.0
|
||||||
- recursion-schemes ==5.2.2
|
- recursion-schemes ==5.2.2.1
|
||||||
- reducers ==3.12.3
|
- reducers ==3.12.3
|
||||||
- refact ==0.3.0.2
|
- refact ==0.3.0.2
|
||||||
- ref-fd ==0.4.0.2
|
- ref-fd ==0.4.0.2
|
||||||
|
@ -2104,6 +2134,7 @@ default-package-overrides:
|
||||||
- semiring-simple ==1.0.0.1
|
- semiring-simple ==1.0.0.1
|
||||||
- semver ==0.4.0.1
|
- semver ==0.4.0.1
|
||||||
- sendfile ==0.7.11.1
|
- sendfile ==0.7.11.1
|
||||||
|
- sendgrid-v3 ==0.3.0.0
|
||||||
- seqalign ==0.2.0.4
|
- seqalign ==0.2.0.4
|
||||||
- seqid ==0.6.2
|
- seqid ==0.6.2
|
||||||
- seqid-streams ==0.7.2
|
- seqid-streams ==0.7.2
|
||||||
|
@ -2179,11 +2210,11 @@ default-package-overrides:
|
||||||
- skein ==1.0.9.4
|
- skein ==1.0.9.4
|
||||||
- skews ==0.1.0.3
|
- skews ==0.1.0.3
|
||||||
- skip-var ==0.1.1.0
|
- skip-var ==0.1.1.0
|
||||||
- skylighting ==0.10.4.1
|
- skylighting ==0.10.5
|
||||||
- skylighting-core ==0.10.4.1
|
- skylighting-core ==0.10.5
|
||||||
- slack-api ==0.12
|
- slack-api ==0.12
|
||||||
- slack-progressbar ==0.1.0.1
|
- slack-progressbar ==0.1.0.1
|
||||||
- slist ==0.1.1.0
|
- slist ==0.2.0.0
|
||||||
- slynx ==0.5.0.2
|
- slynx ==0.5.0.2
|
||||||
- smallcheck ==1.2.1
|
- smallcheck ==1.2.1
|
||||||
- smash ==0.1.1.0
|
- smash ==0.1.1.0
|
||||||
|
@ -2199,6 +2230,7 @@ default-package-overrides:
|
||||||
- soap ==0.2.3.6
|
- soap ==0.2.3.6
|
||||||
- soap-openssl ==0.1.0.2
|
- soap-openssl ==0.1.0.2
|
||||||
- soap-tls ==0.1.1.4
|
- soap-tls ==0.1.1.4
|
||||||
|
- socket ==0.8.3.0
|
||||||
- socks ==0.6.1
|
- socks ==0.6.1
|
||||||
- some ==1.0.2
|
- some ==1.0.2
|
||||||
- sop-core ==0.5.0.1
|
- sop-core ==0.5.0.1
|
||||||
|
@ -2207,6 +2239,7 @@ default-package-overrides:
|
||||||
- sourcemap ==0.1.6
|
- sourcemap ==0.1.6
|
||||||
- sox ==0.2.3.1
|
- sox ==0.2.3.1
|
||||||
- soxlib ==0.0.3.1
|
- soxlib ==0.0.3.1
|
||||||
|
- spacecookie ==1.0.0.0
|
||||||
- sparse-linear-algebra ==0.3.1
|
- sparse-linear-algebra ==0.3.1
|
||||||
- sparse-tensor ==0.2.1.5
|
- sparse-tensor ==0.2.1.5
|
||||||
- spatial-math ==0.5.0.1
|
- spatial-math ==0.5.0.1
|
||||||
|
@ -2327,7 +2360,7 @@ default-package-overrides:
|
||||||
- tardis ==0.4.3.0
|
- tardis ==0.4.3.0
|
||||||
- tasty ==1.4.1
|
- tasty ==1.4.1
|
||||||
- tasty-ant-xml ==1.1.8
|
- tasty-ant-xml ==1.1.8
|
||||||
- tasty-bench ==0.2.2
|
- tasty-bench ==0.2.3
|
||||||
- tasty-dejafu ==2.0.0.7
|
- tasty-dejafu ==2.0.0.7
|
||||||
- tasty-discover ==4.2.2
|
- tasty-discover ==4.2.2
|
||||||
- tasty-expected-failure ==0.12.3
|
- tasty-expected-failure ==0.12.3
|
||||||
|
@ -2486,6 +2519,7 @@ default-package-overrides:
|
||||||
- type-level-numbers ==0.1.1.1
|
- type-level-numbers ==0.1.1.1
|
||||||
- type-map ==0.1.6.0
|
- type-map ==0.1.6.0
|
||||||
- type-natural ==1.1.0.0
|
- type-natural ==1.1.0.0
|
||||||
|
- typenums ==0.1.3
|
||||||
- type-of-html ==1.6.2.0
|
- type-of-html ==1.6.2.0
|
||||||
- type-of-html-static ==0.1.0.2
|
- type-of-html-static ==0.1.0.2
|
||||||
- type-operators ==0.2.0.0
|
- type-operators ==0.2.0.0
|
||||||
|
@ -2570,7 +2604,7 @@ default-package-overrides:
|
||||||
- vector-algorithms ==0.8.0.4
|
- vector-algorithms ==0.8.0.4
|
||||||
- vector-binary-instances ==0.2.5.1
|
- vector-binary-instances ==0.2.5.1
|
||||||
- vector-buffer ==0.4.1
|
- vector-buffer ==0.4.1
|
||||||
- vector-builder ==0.3.8
|
- vector-builder ==0.3.8.1
|
||||||
- vector-bytes-instances ==0.1.1
|
- vector-bytes-instances ==0.1.1
|
||||||
- vector-circular ==0.1.3
|
- vector-circular ==0.1.3
|
||||||
- vector-instances ==3.4
|
- vector-instances ==3.4
|
||||||
|
@ -2599,6 +2633,7 @@ default-package-overrides:
|
||||||
- wai-feature-flags ==0.1.0.1
|
- wai-feature-flags ==0.1.0.1
|
||||||
- wai-handler-launch ==3.0.3.1
|
- wai-handler-launch ==3.0.3.1
|
||||||
- wai-logger ==2.3.6
|
- wai-logger ==2.3.6
|
||||||
|
- wai-middleware-auth ==0.2.4.1
|
||||||
- wai-middleware-caching ==0.1.0.2
|
- wai-middleware-caching ==0.1.0.2
|
||||||
- wai-middleware-clacks ==0.1.0.1
|
- wai-middleware-clacks ==0.1.0.1
|
||||||
- wai-middleware-static ==0.9.0
|
- wai-middleware-static ==0.9.0
|
||||||
|
@ -2750,10 +2785,9 @@ extra-packages:
|
||||||
- dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20
|
- dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20
|
||||||
- network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15
|
- network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15
|
||||||
- mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls
|
- mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls
|
||||||
- haskell-lsp == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08
|
- hlint < 3.3 # We don‘t have ghc-lib-parser 9.0.X yet.
|
||||||
- haskell-lsp-types == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08
|
|
||||||
- lsp-test == 0.11.0.7 # required by hls-plugin-api 0.7.0.0, 2021-02-08
|
|
||||||
- optparse-applicative < 0.16 # needed for niv-0.2.19
|
- optparse-applicative < 0.16 # needed for niv-0.2.19
|
||||||
|
- lsp-test < 0.14 # needed for hls 1.0.0
|
||||||
|
|
||||||
package-maintainers:
|
package-maintainers:
|
||||||
peti:
|
peti:
|
||||||
|
@ -2831,6 +2865,8 @@ package-maintainers:
|
||||||
- taskwarrior
|
- taskwarrior
|
||||||
- haskell-language-server
|
- haskell-language-server
|
||||||
- shake-bench
|
- shake-bench
|
||||||
|
- iCalendar
|
||||||
|
- stm-containers
|
||||||
sorki:
|
sorki:
|
||||||
- cayene-lpp
|
- cayene-lpp
|
||||||
- data-stm32
|
- data-stm32
|
||||||
|
@ -3075,6 +3111,7 @@ broken-packages:
|
||||||
- ACME
|
- ACME
|
||||||
- acme-all-monad
|
- acme-all-monad
|
||||||
- acme-comonad
|
- acme-comonad
|
||||||
|
- acme-dont
|
||||||
- acme-flipping-tables
|
- acme-flipping-tables
|
||||||
- acme-hq9plus
|
- acme-hq9plus
|
||||||
- acme-http
|
- acme-http
|
||||||
|
@ -3147,6 +3184,7 @@ broken-packages:
|
||||||
- aeson-tiled
|
- aeson-tiled
|
||||||
- aeson-typescript
|
- aeson-typescript
|
||||||
- aeson-utils
|
- aeson-utils
|
||||||
|
- aeson-via
|
||||||
- affection
|
- affection
|
||||||
- affine-invariant-ensemble-mcmc
|
- affine-invariant-ensemble-mcmc
|
||||||
- afv
|
- afv
|
||||||
|
@ -3204,6 +3242,7 @@ broken-packages:
|
||||||
- amazon-emailer
|
- amazon-emailer
|
||||||
- amazon-emailer-client-snap
|
- amazon-emailer-client-snap
|
||||||
- amazon-products
|
- amazon-products
|
||||||
|
- amazonka-ec2
|
||||||
- amazonka-s3-streaming
|
- amazonka-s3-streaming
|
||||||
- amby
|
- amby
|
||||||
- AMI
|
- AMI
|
||||||
|
@ -3282,6 +3321,7 @@ broken-packages:
|
||||||
- apiary-session
|
- apiary-session
|
||||||
- apiary-websockets
|
- apiary-websockets
|
||||||
- apis
|
- apis
|
||||||
|
- apns-http2
|
||||||
- apotiki
|
- apotiki
|
||||||
- app-lens
|
- app-lens
|
||||||
- appc
|
- appc
|
||||||
|
@ -3291,6 +3331,7 @@ broken-packages:
|
||||||
- applicative-parsec
|
- applicative-parsec
|
||||||
- applicative-quoters
|
- applicative-quoters
|
||||||
- applicative-splice
|
- applicative-splice
|
||||||
|
- apply-unordered
|
||||||
- approveapi
|
- approveapi
|
||||||
- approx
|
- approx
|
||||||
- ApproxFun-hs
|
- ApproxFun-hs
|
||||||
|
@ -3298,8 +3339,10 @@ broken-packages:
|
||||||
- arbb-vm
|
- arbb-vm
|
||||||
- arbor-datadog
|
- arbor-datadog
|
||||||
- arbor-monad-counter
|
- arbor-monad-counter
|
||||||
|
- arbor-monad-logger
|
||||||
- arbor-monad-metric
|
- arbor-monad-metric
|
||||||
- arbor-monad-metric-datadog
|
- arbor-monad-metric-datadog
|
||||||
|
- arbor-postgres
|
||||||
- arch-hs
|
- arch-hs
|
||||||
- arch-web
|
- arch-web
|
||||||
- archive-libarchive
|
- archive-libarchive
|
||||||
|
@ -3351,6 +3394,8 @@ broken-packages:
|
||||||
- asn1-codec
|
- asn1-codec
|
||||||
- asn1-data
|
- asn1-data
|
||||||
- assert
|
- assert
|
||||||
|
- assert4hs
|
||||||
|
- assert4hs-tasty
|
||||||
- assertions
|
- assertions
|
||||||
- asset-map
|
- asset-map
|
||||||
- assimp
|
- assimp
|
||||||
|
@ -3460,6 +3505,7 @@ broken-packages:
|
||||||
- azure-service-api
|
- azure-service-api
|
||||||
- azure-servicebus
|
- azure-servicebus
|
||||||
- azurify
|
- azurify
|
||||||
|
- b-tree
|
||||||
- b9
|
- b9
|
||||||
- babylon
|
- babylon
|
||||||
- backblaze-b2-hs
|
- backblaze-b2-hs
|
||||||
|
@ -3491,9 +3537,12 @@ broken-packages:
|
||||||
- barrier
|
- barrier
|
||||||
- barrier-monad
|
- barrier-monad
|
||||||
- base-compat-migrate
|
- base-compat-migrate
|
||||||
|
- base-encoding
|
||||||
- base-feature-macros
|
- base-feature-macros
|
||||||
- base-generics
|
- base-generics
|
||||||
- base-io-access
|
- base-io-access
|
||||||
|
- base16
|
||||||
|
- base16-lens
|
||||||
- base32-bytestring
|
- base32-bytestring
|
||||||
- base62
|
- base62
|
||||||
- base64-bytes
|
- base64-bytes
|
||||||
|
@ -3553,10 +3602,12 @@ broken-packages:
|
||||||
- betacode
|
- betacode
|
||||||
- betris
|
- betris
|
||||||
- bff
|
- bff
|
||||||
|
- bglib
|
||||||
- bgmax
|
- bgmax
|
||||||
- bgzf
|
- bgzf
|
||||||
- bhoogle
|
- bhoogle
|
||||||
- bibdb
|
- bibdb
|
||||||
|
- bidi-icu
|
||||||
- bidirectional
|
- bidirectional
|
||||||
- bidirectionalization-combined
|
- bidirectionalization-combined
|
||||||
- bidispec
|
- bidispec
|
||||||
|
@ -3646,6 +3697,7 @@ broken-packages:
|
||||||
- biopsl
|
- biopsl
|
||||||
- biosff
|
- biosff
|
||||||
- biostockholm
|
- biostockholm
|
||||||
|
- bip32
|
||||||
- birch-beer
|
- birch-beer
|
||||||
- bird
|
- bird
|
||||||
- BirdPP
|
- BirdPP
|
||||||
|
@ -3660,10 +3712,12 @@ broken-packages:
|
||||||
- bitcoin-block
|
- bitcoin-block
|
||||||
- bitcoin-compact-filters
|
- bitcoin-compact-filters
|
||||||
- bitcoin-hs
|
- bitcoin-hs
|
||||||
|
- bitcoin-keys
|
||||||
- bitcoin-rpc
|
- bitcoin-rpc
|
||||||
- bitcoin-script
|
- bitcoin-script
|
||||||
- bitcoin-scripting
|
- bitcoin-scripting
|
||||||
- bitcoin-tx
|
- bitcoin-tx
|
||||||
|
- bitcoin-types
|
||||||
- bitcoind-regtest
|
- bitcoind-regtest
|
||||||
- bitcoind-rpc
|
- bitcoind-rpc
|
||||||
- Bitly
|
- Bitly
|
||||||
|
@ -3721,6 +3775,7 @@ broken-packages:
|
||||||
- blunk-hask-tests
|
- blunk-hask-tests
|
||||||
- blunt
|
- blunt
|
||||||
- bno055-haskell
|
- bno055-haskell
|
||||||
|
- bogocopy
|
||||||
- bogre-banana
|
- bogre-banana
|
||||||
- boilerplate
|
- boilerplate
|
||||||
- bolt
|
- bolt
|
||||||
|
@ -3743,6 +3798,7 @@ broken-packages:
|
||||||
- boring-window-switcher
|
- boring-window-switcher
|
||||||
- bot
|
- bot
|
||||||
- botpp
|
- botpp
|
||||||
|
- bound-extras
|
||||||
- bounded-array
|
- bounded-array
|
||||||
- bowntz
|
- bowntz
|
||||||
- box
|
- box
|
||||||
|
@ -3851,6 +3907,7 @@ broken-packages:
|
||||||
- cabal-dependency-licenses
|
- cabal-dependency-licenses
|
||||||
- cabal-dev
|
- cabal-dev
|
||||||
- cabal-dir
|
- cabal-dir
|
||||||
|
- cabal-edit
|
||||||
- cabal-file-th
|
- cabal-file-th
|
||||||
- cabal-ghc-dynflags
|
- cabal-ghc-dynflags
|
||||||
- cabal-ghci
|
- cabal-ghci
|
||||||
|
@ -4281,6 +4338,7 @@ broken-packages:
|
||||||
- conferer-provider-dhall
|
- conferer-provider-dhall
|
||||||
- conferer-provider-json
|
- conferer-provider-json
|
||||||
- conferer-provider-yaml
|
- conferer-provider-yaml
|
||||||
|
- conferer-snap
|
||||||
- conferer-source-dhall
|
- conferer-source-dhall
|
||||||
- conferer-source-json
|
- conferer-source-json
|
||||||
- conferer-source-yaml
|
- conferer-source-yaml
|
||||||
|
@ -4467,6 +4525,7 @@ broken-packages:
|
||||||
- ctkl
|
- ctkl
|
||||||
- ctpl
|
- ctpl
|
||||||
- cube
|
- cube
|
||||||
|
- cubical
|
||||||
- cuboid
|
- cuboid
|
||||||
- cuckoo
|
- cuckoo
|
||||||
- curl-runnings
|
- curl-runnings
|
||||||
|
@ -4744,6 +4803,7 @@ broken-packages:
|
||||||
- dingo-core
|
- dingo-core
|
||||||
- dingo-example
|
- dingo-example
|
||||||
- dingo-widgets
|
- dingo-widgets
|
||||||
|
- diohsc
|
||||||
- diophantine
|
- diophantine
|
||||||
- diplomacy
|
- diplomacy
|
||||||
- diplomacy-server
|
- diplomacy-server
|
||||||
|
@ -4964,6 +5024,7 @@ broken-packages:
|
||||||
- eibd-client-simple
|
- eibd-client-simple
|
||||||
- eigen
|
- eigen
|
||||||
- Eight-Ball-Pool-Hack-Cheats
|
- Eight-Ball-Pool-Hack-Cheats
|
||||||
|
- eio
|
||||||
- either-list-functions
|
- either-list-functions
|
||||||
- either-unwrap
|
- either-unwrap
|
||||||
- EitherT
|
- EitherT
|
||||||
|
@ -5042,6 +5103,7 @@ broken-packages:
|
||||||
- equeue
|
- equeue
|
||||||
- erf-native
|
- erf-native
|
||||||
- erlang
|
- erlang
|
||||||
|
- erlang-ffi
|
||||||
- eros
|
- eros
|
||||||
- eros-client
|
- eros-client
|
||||||
- eros-http
|
- eros-http
|
||||||
|
@ -5080,6 +5142,7 @@ broken-packages:
|
||||||
- ethereum-analyzer-webui
|
- ethereum-analyzer-webui
|
||||||
- ethereum-client-haskell
|
- ethereum-client-haskell
|
||||||
- ethereum-merkle-patricia-db
|
- ethereum-merkle-patricia-db
|
||||||
|
- ethereum-rlp
|
||||||
- euphoria
|
- euphoria
|
||||||
- eurofxref
|
- eurofxref
|
||||||
- evdev
|
- evdev
|
||||||
|
@ -5176,23 +5239,15 @@ broken-packages:
|
||||||
- fastedit
|
- fastedit
|
||||||
- fastirc
|
- fastirc
|
||||||
- fastly
|
- fastly
|
||||||
|
- fastpbkdf2
|
||||||
- FastPush
|
- FastPush
|
||||||
- fastsum
|
- fastsum
|
||||||
- FastxPipe
|
- FastxPipe
|
||||||
- fathead-util
|
- fathead-util
|
||||||
- fault-tree
|
- fault-tree
|
||||||
- fay
|
|
||||||
- fay-base
|
|
||||||
- fay-builder
|
- fay-builder
|
||||||
- fay-dom
|
|
||||||
- fay-geoposition
|
|
||||||
- fay-hsx
|
- fay-hsx
|
||||||
- fay-jquery
|
|
||||||
- fay-ref
|
|
||||||
- fay-simplejson
|
- fay-simplejson
|
||||||
- fay-text
|
|
||||||
- fay-uri
|
|
||||||
- fay-websockets
|
|
||||||
- fb-persistent
|
- fb-persistent
|
||||||
- fbmessenger-api
|
- fbmessenger-api
|
||||||
- fbrnch
|
- fbrnch
|
||||||
|
@ -5307,6 +5362,7 @@ broken-packages:
|
||||||
- fizzbuzz-as-a-service
|
- fizzbuzz-as-a-service
|
||||||
- flac
|
- flac
|
||||||
- flac-picture
|
- flac-picture
|
||||||
|
- flaccuraterip
|
||||||
- flamethrower
|
- flamethrower
|
||||||
- flamingra
|
- flamingra
|
||||||
- flashblast
|
- flashblast
|
||||||
|
@ -5451,6 +5507,8 @@ broken-packages:
|
||||||
- ft-generator
|
- ft-generator
|
||||||
- ftdi
|
- ftdi
|
||||||
- FTGL-bytestring
|
- FTGL-bytestring
|
||||||
|
- ftp-client
|
||||||
|
- ftp-client-conduit
|
||||||
- ftp-conduit
|
- ftp-conduit
|
||||||
- ftphs
|
- ftphs
|
||||||
- FTPLine
|
- FTPLine
|
||||||
|
@ -5495,6 +5553,7 @@ broken-packages:
|
||||||
- fwgl
|
- fwgl
|
||||||
- fwgl-glfw
|
- fwgl-glfw
|
||||||
- fwgl-javascript
|
- fwgl-javascript
|
||||||
|
- fxpak
|
||||||
- g-npm
|
- g-npm
|
||||||
- g2
|
- g2
|
||||||
- g2q
|
- g2q
|
||||||
|
@ -5576,6 +5635,7 @@ broken-packages:
|
||||||
- GenSmsPdu
|
- GenSmsPdu
|
||||||
- gentlemark
|
- gentlemark
|
||||||
- GenussFold
|
- GenussFold
|
||||||
|
- genvalidity-persistent
|
||||||
- geo-resolver
|
- geo-resolver
|
||||||
- GeocoderOpenCage
|
- GeocoderOpenCage
|
||||||
- geodetic
|
- geodetic
|
||||||
|
@ -5591,6 +5651,7 @@ broken-packages:
|
||||||
- GGg
|
- GGg
|
||||||
- ggtsTC
|
- ggtsTC
|
||||||
- gh-labeler
|
- gh-labeler
|
||||||
|
- ghc-bignum
|
||||||
- ghc-clippy-plugin
|
- ghc-clippy-plugin
|
||||||
- ghc-core-smallstep
|
- ghc-core-smallstep
|
||||||
- ghc-datasize
|
- ghc-datasize
|
||||||
|
@ -5642,8 +5703,6 @@ broken-packages:
|
||||||
- gi-gstaudio
|
- gi-gstaudio
|
||||||
- gi-gstpbutils
|
- gi-gstpbutils
|
||||||
- gi-gsttag
|
- gi-gsttag
|
||||||
- gi-gtk-declarative
|
|
||||||
- gi-gtk-declarative-app-simple
|
|
||||||
- gi-gtkosxapplication
|
- gi-gtkosxapplication
|
||||||
- gi-gtksheet
|
- gi-gtksheet
|
||||||
- gi-handy
|
- gi-handy
|
||||||
|
@ -5849,6 +5908,7 @@ broken-packages:
|
||||||
- gross
|
- gross
|
||||||
- GroteTrap
|
- GroteTrap
|
||||||
- groundhog-converters
|
- groundhog-converters
|
||||||
|
- groundhog-mysql
|
||||||
- group-theory
|
- group-theory
|
||||||
- group-with
|
- group-with
|
||||||
- grouped-list
|
- grouped-list
|
||||||
|
@ -5934,6 +5994,7 @@ broken-packages:
|
||||||
- hackernews
|
- hackernews
|
||||||
- HackMail
|
- HackMail
|
||||||
- hackmanager
|
- hackmanager
|
||||||
|
- hackport
|
||||||
- hactor
|
- hactor
|
||||||
- hactors
|
- hactors
|
||||||
- haddock
|
- haddock
|
||||||
|
@ -6122,6 +6183,7 @@ broken-packages:
|
||||||
- haskell-ml
|
- haskell-ml
|
||||||
- haskell-mpfr
|
- haskell-mpfr
|
||||||
- haskell-mpi
|
- haskell-mpi
|
||||||
|
- haskell-names
|
||||||
- haskell-neo4j-client
|
- haskell-neo4j-client
|
||||||
- haskell-openflow
|
- haskell-openflow
|
||||||
- haskell-overridez
|
- haskell-overridez
|
||||||
|
@ -6244,6 +6306,7 @@ broken-packages:
|
||||||
- haskyapi
|
- haskyapi
|
||||||
- haslo
|
- haslo
|
||||||
- hasloGUI
|
- hasloGUI
|
||||||
|
- hasmin
|
||||||
- hasparql-client
|
- hasparql-client
|
||||||
- hasql-backend
|
- hasql-backend
|
||||||
- hasql-class
|
- hasql-class
|
||||||
|
@ -6355,7 +6418,6 @@ broken-packages:
|
||||||
- heckle
|
- heckle
|
||||||
- hedgehog-checkers
|
- hedgehog-checkers
|
||||||
- hedgehog-checkers-lens
|
- hedgehog-checkers-lens
|
||||||
- hedgehog-classes
|
|
||||||
- hedgehog-fakedata
|
- hedgehog-fakedata
|
||||||
- hedgehog-gen-json
|
- hedgehog-gen-json
|
||||||
- hedgehog-generic
|
- hedgehog-generic
|
||||||
|
@ -6407,6 +6469,7 @@ broken-packages:
|
||||||
- heterolist
|
- heterolist
|
||||||
- hetris
|
- hetris
|
||||||
- heukarya
|
- heukarya
|
||||||
|
- hevm
|
||||||
- hevolisa
|
- hevolisa
|
||||||
- hevolisa-dph
|
- hevolisa-dph
|
||||||
- hex-text
|
- hex-text
|
||||||
|
@ -6420,6 +6483,7 @@ broken-packages:
|
||||||
- hexpr
|
- hexpr
|
||||||
- hexpress
|
- hexpress
|
||||||
- hexquote
|
- hexquote
|
||||||
|
- hexstring
|
||||||
- hext
|
- hext
|
||||||
- hextream
|
- hextream
|
||||||
- heyefi
|
- heyefi
|
||||||
|
@ -6443,8 +6507,6 @@ broken-packages:
|
||||||
- hGelf
|
- hGelf
|
||||||
- hgen
|
- hgen
|
||||||
- hgeometric
|
- hgeometric
|
||||||
- hgeometry
|
|
||||||
- hgeometry-combinatorial
|
|
||||||
- hgeometry-ipe
|
- hgeometry-ipe
|
||||||
- hgeometry-svg
|
- hgeometry-svg
|
||||||
- hgeos
|
- hgeos
|
||||||
|
@ -6461,6 +6523,7 @@ broken-packages:
|
||||||
- HHDL
|
- HHDL
|
||||||
- hhp
|
- hhp
|
||||||
- hhwloc
|
- hhwloc
|
||||||
|
- hi
|
||||||
- hi3status
|
- hi3status
|
||||||
- hiccup
|
- hiccup
|
||||||
- hichi
|
- hichi
|
||||||
|
@ -6549,6 +6612,7 @@ broken-packages:
|
||||||
- hlrdb
|
- hlrdb
|
||||||
- hlrdb-core
|
- hlrdb-core
|
||||||
- hls
|
- hls
|
||||||
|
- hls-exactprint-utils
|
||||||
- hlwm
|
- hlwm
|
||||||
- hly
|
- hly
|
||||||
- hmark
|
- hmark
|
||||||
|
@ -6601,6 +6665,7 @@ broken-packages:
|
||||||
- hol
|
- hol
|
||||||
- hold-em
|
- hold-em
|
||||||
- hole
|
- hole
|
||||||
|
- holmes
|
||||||
- Holumbus-Searchengine
|
- Holumbus-Searchengine
|
||||||
- holy-project
|
- holy-project
|
||||||
- homeomorphic
|
- homeomorphic
|
||||||
|
@ -6724,6 +6789,7 @@ broken-packages:
|
||||||
- hs-scrape
|
- hs-scrape
|
||||||
- hs-snowtify
|
- hs-snowtify
|
||||||
- hs-speedscope
|
- hs-speedscope
|
||||||
|
- hs-tags
|
||||||
- hs-twitter
|
- hs-twitter
|
||||||
- hs-twitterarchiver
|
- hs-twitterarchiver
|
||||||
- hs-vcard
|
- hs-vcard
|
||||||
|
@ -6789,6 +6855,7 @@ broken-packages:
|
||||||
- HsHyperEstraier
|
- HsHyperEstraier
|
||||||
- hsI2C
|
- hsI2C
|
||||||
- hSimpleDB
|
- hSimpleDB
|
||||||
|
- hsimport
|
||||||
- hsinspect
|
- hsinspect
|
||||||
- hsinspect-lsp
|
- hsinspect-lsp
|
||||||
- HsJudy
|
- HsJudy
|
||||||
|
@ -6935,6 +7002,7 @@ broken-packages:
|
||||||
- human-text
|
- human-text
|
||||||
- humble-prelude
|
- humble-prelude
|
||||||
- hums
|
- hums
|
||||||
|
- hunch
|
||||||
- HUnit-Diff
|
- HUnit-Diff
|
||||||
- hunit-gui
|
- hunit-gui
|
||||||
- hunit-rematch
|
- hunit-rematch
|
||||||
|
@ -7023,7 +7091,6 @@ broken-packages:
|
||||||
- ib-api
|
- ib-api
|
||||||
- iban
|
- iban
|
||||||
- ical
|
- ical
|
||||||
- iCalendar
|
|
||||||
- ice40-prim
|
- ice40-prim
|
||||||
- IcoGrid
|
- IcoGrid
|
||||||
- iconv-typed
|
- iconv-typed
|
||||||
|
@ -7103,6 +7170,7 @@ broken-packages:
|
||||||
- indentation-core
|
- indentation-core
|
||||||
- indentation-parsec
|
- indentation-parsec
|
||||||
- indentation-trifecta
|
- indentation-trifecta
|
||||||
|
- indents
|
||||||
- index-core
|
- index-core
|
||||||
- indexation
|
- indexation
|
||||||
- IndexedList
|
- IndexedList
|
||||||
|
@ -7153,6 +7221,7 @@ broken-packages:
|
||||||
- interruptible
|
- interruptible
|
||||||
- interval
|
- interval
|
||||||
- IntFormats
|
- IntFormats
|
||||||
|
- intricacy
|
||||||
- intro-prelude
|
- intro-prelude
|
||||||
- introduction
|
- introduction
|
||||||
- introduction-test
|
- introduction-test
|
||||||
|
@ -7293,7 +7362,6 @@ broken-packages:
|
||||||
- json-builder
|
- json-builder
|
||||||
- JSON-Combinator
|
- JSON-Combinator
|
||||||
- JSON-Combinator-Examples
|
- JSON-Combinator-Examples
|
||||||
- json-directory
|
|
||||||
- json-encoder
|
- json-encoder
|
||||||
- json-enumerator
|
- json-enumerator
|
||||||
- json-extra
|
- json-extra
|
||||||
|
@ -7319,6 +7387,7 @@ broken-packages:
|
||||||
- jsonextfilter
|
- jsonextfilter
|
||||||
- JsonGrammar
|
- JsonGrammar
|
||||||
- jsonifier
|
- jsonifier
|
||||||
|
- jsonnet
|
||||||
- jsonresume
|
- jsonresume
|
||||||
- jsonrpc-conduit
|
- jsonrpc-conduit
|
||||||
- jsons-to-schema
|
- jsons-to-schema
|
||||||
|
@ -7496,8 +7565,6 @@ broken-packages:
|
||||||
- language-dart
|
- language-dart
|
||||||
- language-dickinson
|
- language-dickinson
|
||||||
- language-dockerfile
|
- language-dockerfile
|
||||||
- language-ecmascript
|
|
||||||
- language-ecmascript-analysis
|
|
||||||
- language-eiffel
|
- language-eiffel
|
||||||
- language-elm
|
- language-elm
|
||||||
- language-fortran
|
- language-fortran
|
||||||
|
@ -7546,7 +7613,6 @@ broken-packages:
|
||||||
- latex-svg-image
|
- latex-svg-image
|
||||||
- latex-svg-pandoc
|
- latex-svg-pandoc
|
||||||
- LATS
|
- LATS
|
||||||
- lattices
|
|
||||||
- launchdarkly-server-sdk
|
- launchdarkly-server-sdk
|
||||||
- launchpad-control
|
- launchpad-control
|
||||||
- lawless-concurrent-machines
|
- lawless-concurrent-machines
|
||||||
|
@ -7647,6 +7713,7 @@ broken-packages:
|
||||||
- libxml-enumerator
|
- libxml-enumerator
|
||||||
- libxslt
|
- libxslt
|
||||||
- lie
|
- lie
|
||||||
|
- life-sync
|
||||||
- lifetimes
|
- lifetimes
|
||||||
- lifted-base-tf
|
- lifted-base-tf
|
||||||
- lifted-protolude
|
- lifted-protolude
|
||||||
|
@ -7705,6 +7772,7 @@ broken-packages:
|
||||||
- liquid-platform
|
- liquid-platform
|
||||||
- liquid-prelude
|
- liquid-prelude
|
||||||
- liquid-vector
|
- liquid-vector
|
||||||
|
- liquidhaskell
|
||||||
- liquidhaskell-cabal
|
- liquidhaskell-cabal
|
||||||
- Liquorice
|
- Liquorice
|
||||||
- list-fusion-probe
|
- list-fusion-probe
|
||||||
|
@ -7936,6 +8004,7 @@ broken-packages:
|
||||||
- math-grads
|
- math-grads
|
||||||
- math-interpolate
|
- math-interpolate
|
||||||
- math-metric
|
- math-metric
|
||||||
|
- math-programming
|
||||||
- math-programming-glpk
|
- math-programming-glpk
|
||||||
- math-programming-tests
|
- math-programming-tests
|
||||||
- mathblog
|
- mathblog
|
||||||
|
@ -8000,6 +8069,8 @@ broken-packages:
|
||||||
- memorypool
|
- memorypool
|
||||||
- menoh
|
- menoh
|
||||||
- menshen
|
- menshen
|
||||||
|
- mergeful-persistent
|
||||||
|
- mergeless-persistent
|
||||||
- merkle-patricia-db
|
- merkle-patricia-db
|
||||||
- merkle-tree
|
- merkle-tree
|
||||||
- messagepack-rpc
|
- messagepack-rpc
|
||||||
|
@ -8027,6 +8098,7 @@ broken-packages:
|
||||||
- mi
|
- mi
|
||||||
- Michelangelo
|
- Michelangelo
|
||||||
- miconix-test
|
- miconix-test
|
||||||
|
- micro-gateway
|
||||||
- micro-recursion-schemes
|
- micro-recursion-schemes
|
||||||
- microbase
|
- microbase
|
||||||
- microformats2-parser
|
- microformats2-parser
|
||||||
|
@ -8077,6 +8149,7 @@ broken-packages:
|
||||||
- miss-porcelain
|
- miss-porcelain
|
||||||
- missing-py2
|
- missing-py2
|
||||||
- MissingPy
|
- MissingPy
|
||||||
|
- mit-3qvpPyAi6mH
|
||||||
- mix-arrows
|
- mix-arrows
|
||||||
- mixed-strategies
|
- mixed-strategies
|
||||||
- mixpanel-client
|
- mixpanel-client
|
||||||
|
@ -8282,6 +8355,7 @@ broken-packages:
|
||||||
- muon
|
- muon
|
||||||
- murder
|
- murder
|
||||||
- murmur
|
- murmur
|
||||||
|
- murmur3
|
||||||
- murmurhash3
|
- murmurhash3
|
||||||
- mushu
|
- mushu
|
||||||
- music-graphics
|
- music-graphics
|
||||||
|
@ -8355,6 +8429,7 @@ broken-packages:
|
||||||
- nationstates
|
- nationstates
|
||||||
- nats-client
|
- nats-client
|
||||||
- nats-queue
|
- nats-queue
|
||||||
|
- natural
|
||||||
- natural-number
|
- natural-number
|
||||||
- NaturalLanguageAlphabets
|
- NaturalLanguageAlphabets
|
||||||
- NaturalSort
|
- NaturalSort
|
||||||
|
@ -8417,6 +8492,7 @@ broken-packages:
|
||||||
- network-minihttp
|
- network-minihttp
|
||||||
- network-msgpack-rpc
|
- network-msgpack-rpc
|
||||||
- network-netpacket
|
- network-netpacket
|
||||||
|
- network-packet-linux
|
||||||
- network-protocol-xmpp
|
- network-protocol-xmpp
|
||||||
- network-rpca
|
- network-rpca
|
||||||
- network-server
|
- network-server
|
||||||
|
@ -8529,6 +8605,7 @@ broken-packages:
|
||||||
- NXTDSL
|
- NXTDSL
|
||||||
- nylas
|
- nylas
|
||||||
- nymphaea
|
- nymphaea
|
||||||
|
- nyx-game
|
||||||
- oanda-rest-api
|
- oanda-rest-api
|
||||||
- oasis-xrd
|
- oasis-xrd
|
||||||
- oauth2-jwt-bearer
|
- oauth2-jwt-bearer
|
||||||
|
@ -8693,6 +8770,7 @@ broken-packages:
|
||||||
- pam
|
- pam
|
||||||
- pan-os-syslog
|
- pan-os-syslog
|
||||||
- panda
|
- panda
|
||||||
|
- pandoc-citeproc
|
||||||
- pandoc-csv2table
|
- pandoc-csv2table
|
||||||
- pandoc-filter-graphviz
|
- pandoc-filter-graphviz
|
||||||
- pandoc-filter-indent
|
- pandoc-filter-indent
|
||||||
|
@ -8763,6 +8841,7 @@ broken-packages:
|
||||||
- parsers-megaparsec
|
- parsers-megaparsec
|
||||||
- parsestar
|
- parsestar
|
||||||
- parsimony
|
- parsimony
|
||||||
|
- parsnip
|
||||||
- partage
|
- partage
|
||||||
- partial-lens
|
- partial-lens
|
||||||
- partial-records
|
- partial-records
|
||||||
|
@ -8853,6 +8932,7 @@ broken-packages:
|
||||||
- persistent-odbc
|
- persistent-odbc
|
||||||
- persistent-protobuf
|
- persistent-protobuf
|
||||||
- persistent-ratelimit
|
- persistent-ratelimit
|
||||||
|
- persistent-redis
|
||||||
- persistent-relational-record
|
- persistent-relational-record
|
||||||
- persistent-template-classy
|
- persistent-template-classy
|
||||||
- persistent-test
|
- persistent-test
|
||||||
|
@ -8925,6 +9005,7 @@ broken-packages:
|
||||||
- pipes-extra
|
- pipes-extra
|
||||||
- pipes-files
|
- pipes-files
|
||||||
- pipes-illumina
|
- pipes-illumina
|
||||||
|
- pipes-interleave
|
||||||
- pipes-io
|
- pipes-io
|
||||||
- pipes-key-value-csv
|
- pipes-key-value-csv
|
||||||
- pipes-mongodb
|
- pipes-mongodb
|
||||||
|
@ -8945,6 +9026,7 @@ broken-packages:
|
||||||
- pivotal-tracker
|
- pivotal-tracker
|
||||||
- pixel-printer
|
- pixel-printer
|
||||||
- pixelated-avatar-generator
|
- pixelated-avatar-generator
|
||||||
|
- pixiv
|
||||||
- pkcs10
|
- pkcs10
|
||||||
- pkcs7
|
- pkcs7
|
||||||
- pkggraph
|
- pkggraph
|
||||||
|
@ -9058,6 +9140,7 @@ broken-packages:
|
||||||
- postgresql-simple-queue
|
- postgresql-simple-queue
|
||||||
- postgresql-simple-sop
|
- postgresql-simple-sop
|
||||||
- postgresql-simple-typed
|
- postgresql-simple-typed
|
||||||
|
- postgresql-simple-url
|
||||||
- postgresql-syntax
|
- postgresql-syntax
|
||||||
- postgresql-tx-query
|
- postgresql-tx-query
|
||||||
- postgresql-tx-squeal
|
- postgresql-tx-squeal
|
||||||
|
@ -9124,7 +9207,6 @@ broken-packages:
|
||||||
- primitive-checked
|
- primitive-checked
|
||||||
- primitive-containers
|
- primitive-containers
|
||||||
- primitive-convenience
|
- primitive-convenience
|
||||||
- primitive-extras
|
|
||||||
- primitive-foreign
|
- primitive-foreign
|
||||||
- primitive-indexed
|
- primitive-indexed
|
||||||
- primitive-maybe
|
- primitive-maybe
|
||||||
|
@ -9191,6 +9273,7 @@ broken-packages:
|
||||||
- proto-lens-arbitrary
|
- proto-lens-arbitrary
|
||||||
- proto-lens-combinators
|
- proto-lens-combinators
|
||||||
- proto-lens-descriptors
|
- proto-lens-descriptors
|
||||||
|
- proto-lens-optparse
|
||||||
- proto3-suite
|
- proto3-suite
|
||||||
- proto3-wire
|
- proto3-wire
|
||||||
- protobuf-native
|
- protobuf-native
|
||||||
|
@ -9264,6 +9347,7 @@ broken-packages:
|
||||||
- QIO
|
- QIO
|
||||||
- QLearn
|
- QLearn
|
||||||
- qlinear
|
- qlinear
|
||||||
|
- qnap-decrypt
|
||||||
- qr-imager
|
- qr-imager
|
||||||
- qr-repa
|
- qr-repa
|
||||||
- qsem
|
- qsem
|
||||||
|
@ -9301,6 +9385,7 @@ broken-packages:
|
||||||
- quickcheck-string-random
|
- quickcheck-string-random
|
||||||
- quickcheck-webdriver
|
- quickcheck-webdriver
|
||||||
- QuickCheckVariant
|
- QuickCheckVariant
|
||||||
|
- quickjs-hs
|
||||||
- QuickPlot
|
- QuickPlot
|
||||||
- quickpull
|
- quickpull
|
||||||
- quickset
|
- quickset
|
||||||
|
@ -9363,6 +9448,7 @@ broken-packages:
|
||||||
- random-stream
|
- random-stream
|
||||||
- RandomDotOrg
|
- RandomDotOrg
|
||||||
- Range
|
- Range
|
||||||
|
- range-set-list
|
||||||
- range-space
|
- range-space
|
||||||
- rangemin
|
- rangemin
|
||||||
- Ranka
|
- Ranka
|
||||||
|
@ -9420,6 +9506,7 @@ broken-packages:
|
||||||
- read-bounded
|
- read-bounded
|
||||||
- read-ctags
|
- read-ctags
|
||||||
- read-io
|
- read-io
|
||||||
|
- readability
|
||||||
- readline
|
- readline
|
||||||
- readline-statevar
|
- readline-statevar
|
||||||
- readme-lhs
|
- readme-lhs
|
||||||
|
@ -9511,6 +9598,7 @@ broken-packages:
|
||||||
- regions-monadstf
|
- regions-monadstf
|
||||||
- regions-mtl
|
- regions-mtl
|
||||||
- register-machine-typelevel
|
- register-machine-typelevel
|
||||||
|
- registry
|
||||||
- registry-hedgehog
|
- registry-hedgehog
|
||||||
- regress
|
- regress
|
||||||
- regression-simple
|
- regression-simple
|
||||||
|
@ -9524,6 +9612,7 @@ broken-packages:
|
||||||
- reified-records
|
- reified-records
|
||||||
- reify
|
- reify
|
||||||
- relacion
|
- relacion
|
||||||
|
- relapse
|
||||||
- relational-postgresql8
|
- relational-postgresql8
|
||||||
- relational-query-postgresql-pure
|
- relational-query-postgresql-pure
|
||||||
- relative-date
|
- relative-date
|
||||||
|
@ -9848,6 +9937,7 @@ broken-packages:
|
||||||
- seclib
|
- seclib
|
||||||
- second-transfer
|
- second-transfer
|
||||||
- secp256k1
|
- secp256k1
|
||||||
|
- secp256k1-haskell
|
||||||
- secp256k1-legacy
|
- secp256k1-legacy
|
||||||
- secret-santa
|
- secret-santa
|
||||||
- secrm
|
- secrm
|
||||||
|
@ -9888,6 +9978,7 @@ broken-packages:
|
||||||
- sequent-core
|
- sequent-core
|
||||||
- sequor
|
- sequor
|
||||||
- serialize-instances
|
- serialize-instances
|
||||||
|
- serialport
|
||||||
- serokell-util
|
- serokell-util
|
||||||
- serpentine
|
- serpentine
|
||||||
- serv
|
- serv
|
||||||
|
@ -10020,6 +10111,7 @@ broken-packages:
|
||||||
- shake-extras
|
- shake-extras
|
||||||
- shake-futhark
|
- shake-futhark
|
||||||
- shake-minify
|
- shake-minify
|
||||||
|
- shake-minify-css
|
||||||
- shake-pack
|
- shake-pack
|
||||||
- shake-path
|
- shake-path
|
||||||
- shake-persist
|
- shake-persist
|
||||||
|
@ -10060,6 +10152,7 @@ broken-packages:
|
||||||
- Shpadoinkle-examples
|
- Shpadoinkle-examples
|
||||||
- Shpadoinkle-html
|
- Shpadoinkle-html
|
||||||
- Shpadoinkle-router
|
- Shpadoinkle-router
|
||||||
|
- Shpadoinkle-streaming
|
||||||
- Shpadoinkle-template
|
- Shpadoinkle-template
|
||||||
- Shpadoinkle-widgets
|
- Shpadoinkle-widgets
|
||||||
- shpider
|
- shpider
|
||||||
|
@ -10073,6 +10166,7 @@ broken-packages:
|
||||||
- sign
|
- sign
|
||||||
- signable
|
- signable
|
||||||
- signals
|
- signals
|
||||||
|
- signature
|
||||||
- signed-multiset
|
- signed-multiset
|
||||||
- signify-hs
|
- signify-hs
|
||||||
- silkscreen
|
- silkscreen
|
||||||
|
@ -10100,6 +10194,7 @@ broken-packages:
|
||||||
- simple-pipe
|
- simple-pipe
|
||||||
- simple-rope
|
- simple-rope
|
||||||
- simple-server
|
- simple-server
|
||||||
|
- simple-sql-parser
|
||||||
- simple-stacked-vm
|
- simple-stacked-vm
|
||||||
- simple-tabular
|
- simple-tabular
|
||||||
- simple-tar
|
- simple-tar
|
||||||
|
@ -10121,6 +10216,8 @@ broken-packages:
|
||||||
- simseq
|
- simseq
|
||||||
- singleton-dict
|
- singleton-dict
|
||||||
- singleton-typelits
|
- singleton-typelits
|
||||||
|
- singletons-base
|
||||||
|
- singletons-th
|
||||||
- singnal
|
- singnal
|
||||||
- singular-factory
|
- singular-factory
|
||||||
- sink
|
- sink
|
||||||
|
@ -10147,6 +10244,7 @@ broken-packages:
|
||||||
- skype4hs
|
- skype4hs
|
||||||
- slack
|
- slack
|
||||||
- slack-notify-haskell
|
- slack-notify-haskell
|
||||||
|
- slack-verify
|
||||||
- slack-web
|
- slack-web
|
||||||
- slave-thread
|
- slave-thread
|
||||||
- sliceofpy
|
- sliceofpy
|
||||||
|
@ -10327,6 +10425,7 @@ broken-packages:
|
||||||
- splaytree
|
- splaytree
|
||||||
- spline3
|
- spline3
|
||||||
- splines
|
- splines
|
||||||
|
- splint
|
||||||
- split-morphism
|
- split-morphism
|
||||||
- splitter
|
- splitter
|
||||||
- Spock
|
- Spock
|
||||||
|
@ -10437,9 +10536,7 @@ broken-packages:
|
||||||
- STL
|
- STL
|
||||||
- STLinkUSB
|
- STLinkUSB
|
||||||
- stm-chunked-queues
|
- stm-chunked-queues
|
||||||
- stm-containers
|
|
||||||
- stm-firehose
|
- stm-firehose
|
||||||
- stm-hamt
|
|
||||||
- stm-promise
|
- stm-promise
|
||||||
- stm-stats
|
- stm-stats
|
||||||
- STM32-Zombie
|
- STM32-Zombie
|
||||||
|
@ -10505,6 +10602,7 @@ broken-packages:
|
||||||
- stripe-hs
|
- stripe-hs
|
||||||
- stripe-http-streams
|
- stripe-http-streams
|
||||||
- stripe-scotty
|
- stripe-scotty
|
||||||
|
- stripe-signature
|
||||||
- stripe-wreq
|
- stripe-wreq
|
||||||
- strongswan-sql
|
- strongswan-sql
|
||||||
- structural-induction
|
- structural-induction
|
||||||
|
@ -10552,6 +10650,8 @@ broken-packages:
|
||||||
- supplemented
|
- supplemented
|
||||||
- surjective
|
- surjective
|
||||||
- sv
|
- sv
|
||||||
|
- sv-cassava
|
||||||
|
- sv-core
|
||||||
- sv-svfactor
|
- sv-svfactor
|
||||||
- SVD2HS
|
- SVD2HS
|
||||||
- svfactor
|
- svfactor
|
||||||
|
@ -10667,11 +10767,11 @@ broken-packages:
|
||||||
- target
|
- target
|
||||||
- task
|
- task
|
||||||
- task-distribution
|
- task-distribution
|
||||||
- taskell
|
|
||||||
- TaskMonad
|
- TaskMonad
|
||||||
- tasty-auto
|
- tasty-auto
|
||||||
- tasty-bdd
|
- tasty-bdd
|
||||||
- tasty-fail-fast
|
- tasty-fail-fast
|
||||||
|
- tasty-grading-system
|
||||||
- tasty-groundhog-converters
|
- tasty-groundhog-converters
|
||||||
- tasty-hedgehog-coverage
|
- tasty-hedgehog-coverage
|
||||||
- tasty-html
|
- tasty-html
|
||||||
|
@ -10682,6 +10782,7 @@ broken-packages:
|
||||||
- tasty-mgolden
|
- tasty-mgolden
|
||||||
- tasty-silver
|
- tasty-silver
|
||||||
- tasty-stats
|
- tasty-stats
|
||||||
|
- tasty-test-vector
|
||||||
- tateti-tateti
|
- tateti-tateti
|
||||||
- Taxonomy
|
- Taxonomy
|
||||||
- TaxonomyTools
|
- TaxonomyTools
|
||||||
|
@ -10932,6 +11033,8 @@ broken-packages:
|
||||||
- trace-function-call
|
- trace-function-call
|
||||||
- traced
|
- traced
|
||||||
- tracetree
|
- tracetree
|
||||||
|
- tracing
|
||||||
|
- tracing-control
|
||||||
- tracked-files
|
- tracked-files
|
||||||
- tracker
|
- tracker
|
||||||
- trackit
|
- trackit
|
||||||
|
@ -11109,6 +11212,7 @@ broken-packages:
|
||||||
- uhc-light
|
- uhc-light
|
||||||
- uhc-util
|
- uhc-util
|
||||||
- uhexdump
|
- uhexdump
|
||||||
|
- uhttpc
|
||||||
- ui-command
|
- ui-command
|
||||||
- UMM
|
- UMM
|
||||||
- unagi-bloomfilter
|
- unagi-bloomfilter
|
||||||
|
@ -11148,7 +11252,6 @@ broken-packages:
|
||||||
- universe-instances-base
|
- universe-instances-base
|
||||||
- universe-instances-extended
|
- universe-instances-extended
|
||||||
- universe-instances-trans
|
- universe-instances-trans
|
||||||
- universe-reverse-instances
|
|
||||||
- universe-th
|
- universe-th
|
||||||
- unix-fcntl
|
- unix-fcntl
|
||||||
- unix-handle
|
- unix-handle
|
||||||
|
@ -11181,6 +11284,7 @@ broken-packages:
|
||||||
- upskirt
|
- upskirt
|
||||||
- urbit-airlock
|
- urbit-airlock
|
||||||
- urbit-api
|
- urbit-api
|
||||||
|
- urbit-hob
|
||||||
- ureader
|
- ureader
|
||||||
- urembed
|
- urembed
|
||||||
- uri
|
- uri
|
||||||
|
@ -11274,7 +11378,6 @@ broken-packages:
|
||||||
- vect-floating-accelerate
|
- vect-floating-accelerate
|
||||||
- vect-opengl
|
- vect-opengl
|
||||||
- vector-bytestring
|
- vector-bytestring
|
||||||
- vector-circular
|
|
||||||
- vector-clock
|
- vector-clock
|
||||||
- vector-conduit
|
- vector-conduit
|
||||||
- vector-endian
|
- vector-endian
|
||||||
|
@ -11397,6 +11500,7 @@ broken-packages:
|
||||||
- waitra
|
- waitra
|
||||||
- waldo
|
- waldo
|
||||||
- wallpaper
|
- wallpaper
|
||||||
|
- warc
|
||||||
- warp-dynamic
|
- warp-dynamic
|
||||||
- warp-static
|
- warp-static
|
||||||
- warp-systemd
|
- warp-systemd
|
||||||
|
@ -11442,7 +11546,9 @@ broken-packages:
|
||||||
- webdriver-w3c
|
- webdriver-w3c
|
||||||
- WeberLogic
|
- WeberLogic
|
||||||
- webfinger-client
|
- webfinger-client
|
||||||
|
- webify
|
||||||
- webkit-javascriptcore
|
- webkit-javascriptcore
|
||||||
|
- webmention
|
||||||
- Webrexp
|
- Webrexp
|
||||||
- webserver
|
- webserver
|
||||||
- webshow
|
- webshow
|
||||||
|
@ -11505,6 +11611,7 @@ broken-packages:
|
||||||
- WordNet
|
- WordNet
|
||||||
- WordNet-ghc74
|
- WordNet-ghc74
|
||||||
- wordpass
|
- wordpass
|
||||||
|
- wordpress-auth
|
||||||
- wordsearch
|
- wordsearch
|
||||||
- work-time
|
- work-time
|
||||||
- workdays
|
- workdays
|
||||||
|
|
|
@ -445,6 +445,7 @@ self: super: builtins.intersectAttrs super {
|
||||||
|
|
||||||
# requires an X11 display in test suite
|
# requires an X11 display in test suite
|
||||||
gi-gtk-declarative = dontCheck super.gi-gtk-declarative;
|
gi-gtk-declarative = dontCheck super.gi-gtk-declarative;
|
||||||
|
gi-gtk-declarative-app-simple = dontCheck super.gi-gtk-declarative-app-simple;
|
||||||
|
|
||||||
# tests depend on executable
|
# tests depend on executable
|
||||||
ghcide = overrideCabal super.ghcide (drv: {
|
ghcide = overrideCabal super.ghcide (drv: {
|
||||||
|
@ -815,5 +816,4 @@ self: super: builtins.intersectAttrs super {
|
||||||
|
|
||||||
# Tests access internet
|
# Tests access internet
|
||||||
prune-juice = dontCheck super.prune-juice;
|
prune-juice = dontCheck super.prune-juice;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
4992
pkgs/development/haskell-modules/hackage-packages.nix
generated
4992
pkgs/development/haskell-modules/hackage-packages.nix
generated
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,65 @@
|
||||||
|
commit a03d3b043458f45d29ba32068a77c0d3b8a4223f
|
||||||
|
Author: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
|
||||||
|
Date: Fri Apr 2 15:14:02 2021 +0200
|
||||||
|
|
||||||
|
Allow compilation with pandoc 2.12 and 2.13
|
||||||
|
|
||||||
|
pandoc 2.13 introduced the following breakages for gitit:
|
||||||
|
|
||||||
|
* UTF8.readFile now returns a Text which is actually ideal for gitit.
|
||||||
|
If pandoc is new enough we just make readFileUTF8 an alias for
|
||||||
|
UTF8.readFile.
|
||||||
|
|
||||||
|
* Text.Pandoc.Shared no longer exports substitute. In order to be
|
||||||
|
conservative I've chosen to just copy the substitute function from
|
||||||
|
pandoc 2.11.4. I need this patch kind of urgently so I didn't want to
|
||||||
|
make any changes or refactors independently from upstream if
|
||||||
|
avoidable. However, I'd be happy to rebase this PR branch to adopt a
|
||||||
|
different solution to just copying the function.
|
||||||
|
|
||||||
|
diff --git a/src/Network/Gitit/Authentication.hs b/src/Network/Gitit/Authentication.hs
|
||||||
|
index 4c240e7..c0f92fd 100644
|
||||||
|
--- a/src/Network/Gitit/Authentication.hs
|
||||||
|
+++ b/src/Network/Gitit/Authentication.hs
|
||||||
|
@@ -44,7 +44,7 @@ import System.Exit
|
||||||
|
import System.Log.Logger (logM, Priority(..))
|
||||||
|
import Data.Char (isAlphaNum, isAlpha)
|
||||||
|
import qualified Data.Map as M
|
||||||
|
-import Text.Pandoc.Shared (substitute)
|
||||||
|
+import Data.List (stripPrefix)
|
||||||
|
import Data.Maybe (isJust, fromJust, isNothing, fromMaybe)
|
||||||
|
import Network.URL (exportURL, add_param, importURL)
|
||||||
|
import Network.BSD (getHostName)
|
||||||
|
@@ -54,6 +54,16 @@ import Codec.Binary.UTF8.String (encodeString)
|
||||||
|
import Data.ByteString.UTF8 (toString)
|
||||||
|
import Network.Gitit.Rpxnow as R
|
||||||
|
|
||||||
|
+-- | Replace each occurrence of one sublist in a list with another.
|
||||||
|
+-- Vendored in from pandoc 2.11.4 as 2.12 removed this function.
|
||||||
|
+substitute :: (Eq a) => [a] -> [a] -> [a] -> [a]
|
||||||
|
+substitute _ _ [] = []
|
||||||
|
+substitute [] _ xs = xs
|
||||||
|
+substitute target replacement lst@(x:xs) =
|
||||||
|
+ case stripPrefix target lst of
|
||||||
|
+ Just lst' -> replacement ++ substitute target replacement lst'
|
||||||
|
+ Nothing -> x : substitute target replacement xs
|
||||||
|
+
|
||||||
|
data ValidationType = Register
|
||||||
|
| ResetPassword
|
||||||
|
deriving (Show,Read)
|
||||||
|
diff --git a/src/Network/Gitit/Util.hs b/src/Network/Gitit/Util.hs
|
||||||
|
index c5e9fe5..067130a 100644
|
||||||
|
--- a/src/Network/Gitit/Util.hs
|
||||||
|
+++ b/src/Network/Gitit/Util.hs
|
||||||
|
@@ -45,7 +45,11 @@ import Network.URL (encString)
|
||||||
|
|
||||||
|
-- | Read file as UTF-8 string. Encode filename as UTF-8.
|
||||||
|
readFileUTF8 :: FilePath -> IO Text
|
||||||
|
+#if MIN_VERSION_pandoc(2,12,0)
|
||||||
|
+readFileUTF8 = UTF8.readFile
|
||||||
|
+#else
|
||||||
|
readFileUTF8 = fmap T.pack . UTF8.readFile
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
-- | Perform a function a directory and return to working directory.
|
||||||
|
inDir :: FilePath -> IO a -> IO a
|
Loading…
Reference in a new issue