Merge pull request #108252 from NixOS/haskell-updates
Update Haskell package set to Stackage Nightly 2021-01-02 (plus other fixes)
This commit is contained in:
commit
c25fc73a81
@ -217,7 +217,24 @@ self: super: {
|
|||||||
# building of the executable has been disabled for ghc < 8.10 in hnix.
|
# building of the executable has been disabled for ghc < 8.10 in hnix.
|
||||||
# Generating the completions should be activated again, once we default to
|
# Generating the completions should be activated again, once we default to
|
||||||
# ghc 8.10.
|
# ghc 8.10.
|
||||||
hnix = dontCheck super.hnix;
|
hnix = dontCheck (super.hnix.override {
|
||||||
|
|
||||||
|
# 2021-01-07: NOTE: hnix-store-core pinned at ==0.2 in Stackage Nightly.
|
||||||
|
# https://github.com/haskell-nix/hnix-store/issues/104
|
||||||
|
# Until unpin, which may hold off in time due to Stackage maintenence bottleneck
|
||||||
|
# the 0_4_0_0 is used
|
||||||
|
hnix-store-core = self.hnix-store-core_0_4_0_0; # at least 1.7
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
# 2021-01-07: NOTE: hnix-store-core pinned at ==0.2 in Stackage Nightly.
|
||||||
|
# https://github.com/haskell-nix/hnix-store/issues/104
|
||||||
|
# Until unpin, which may hold off in time due to Stackage maintenence bottleneck
|
||||||
|
# the 0_4_0_0 is used
|
||||||
|
hnix-store-remote = (super.hnix-store-remote.override {
|
||||||
|
hnix-store-core = self.hnix-store-core_0_4_0_0; # at least 1.7
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
# Fails for non-obvious reasons while attempting to use doctest.
|
# Fails for non-obvious reasons while attempting to use doctest.
|
||||||
search = dontCheck super.search;
|
search = dontCheck super.search;
|
||||||
@ -805,11 +822,20 @@ self: super: {
|
|||||||
# Needs QuickCheck <2.10, HUnit <1.6 and base <4.10
|
# Needs QuickCheck <2.10, HUnit <1.6 and base <4.10
|
||||||
pointfree = doJailbreak super.pointfree;
|
pointfree = doJailbreak super.pointfree;
|
||||||
|
|
||||||
# Depends on base <4.12
|
# The project is stale
|
||||||
# See https://github.com/haskell-hvr/cryptohash-sha512/pull/3
|
#
|
||||||
# , https://github.com/haskell-hvr/cryptohash-sha512/issues/4
|
# Archiving request: https://github.com/haskell-hvr/cryptohash-sha512/issues/6
|
||||||
# and https://github.com/haskell-hvr/cryptohash-sha512/pull/5
|
#
|
||||||
cryptohash-sha512 = doJailbreak super.cryptohash-sha512;
|
# doJailbreak since base <4.12 && bytestring <0.11
|
||||||
|
# Request to support:
|
||||||
|
# https://github.com/haskell-hvr/cryptohash-sha512/issues/4
|
||||||
|
# PRs to support base <4.12:
|
||||||
|
# https://github.com/haskell-hvr/cryptohash-sha512/pull/3
|
||||||
|
# https://github.com/haskell-hvr/cryptohash-sha512/pull/5
|
||||||
|
#
|
||||||
|
# dontCheck since test suite does not support new `base16-bytestring` >= 1 format
|
||||||
|
# https://github.com/haskell-hvr/cryptohash-sha512/pull/5#issuecomment-752796913
|
||||||
|
cryptohash-sha512 = dontCheck (doJailbreak super.cryptohash-sha512);
|
||||||
|
|
||||||
# Depends on tasty < 1.x, which we don't have.
|
# Depends on tasty < 1.x, which we don't have.
|
||||||
cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
|
cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
|
||||||
@ -1309,7 +1335,7 @@ self: super: {
|
|||||||
commonmark-extensions = dontCheck super.commonmark-extensions;
|
commonmark-extensions = dontCheck super.commonmark-extensions;
|
||||||
|
|
||||||
# Testsuite trying to run `which haskeline-examples-Test`
|
# Testsuite trying to run `which haskeline-examples-Test`
|
||||||
haskeline_0_8_1_0 = dontCheck super.haskeline_0_8_1_0;
|
haskeline_0_8_1_1 = dontCheck super.haskeline_0_8_1_1;
|
||||||
|
|
||||||
# Tests for list-t, superbuffer, and stm-containers
|
# Tests for list-t, superbuffer, and stm-containers
|
||||||
# depend on HTF and it is broken, 2020-08-23
|
# depend on HTF and it is broken, 2020-08-23
|
||||||
@ -1483,22 +1509,7 @@ self: super: {
|
|||||||
# 2020-11-19: Jailbreaking until: https://github.com/snapframework/snap/pull/219
|
# 2020-11-19: Jailbreaking until: https://github.com/snapframework/snap/pull/219
|
||||||
snap = doJailbreak super.snap;
|
snap = doJailbreak super.snap;
|
||||||
|
|
||||||
# 2020-11-21: cachix + chachix-api needs a patch for ghc 8.10 compat. Can be removed once released
|
cachix = generateOptparseApplicativeCompletion "cachix" super.cachix;
|
||||||
# https://github.com/cachix/cachix/pull/331
|
|
||||||
cachix-api = appendPatch super.cachix-api (pkgs.fetchpatch {
|
|
||||||
url = https://github.com/cachix/cachix/commit/bfeec151a03afad72401815fe8bbb1b0d5d63b0d.patch;
|
|
||||||
sha256 = "0rglyd77g4j72l5g0sj9zpq2hy3v992bm6nhj58pmj4j2aj67y74";
|
|
||||||
stripLen = 2;
|
|
||||||
extraPrefix = "";
|
|
||||||
includes = [ "src/Cachix/Types/Session.hs" "src/Cachix/API/Signing.hs" ];
|
|
||||||
});
|
|
||||||
cachix = generateOptparseApplicativeCompletion "cachix" (appendPatch super.cachix (pkgs.fetchpatch {
|
|
||||||
url = https://github.com/cachix/cachix/commit/bfeec151a03afad72401815fe8bbb1b0d5d63b0d.patch;
|
|
||||||
sha256 = "06jmpz8l5vh9cch5aqdbrln7bm3fghxsicwy1m93avli320kp8pp";
|
|
||||||
stripLen = 2;
|
|
||||||
extraPrefix = "";
|
|
||||||
excludes = [ "stack.yaml" "sources.json" "src/Cachix/Types/Session.hs" "src/Cachix/API/Signing.hs" "cachix-api.cabal" "workflows/test.yml" ];
|
|
||||||
}));
|
|
||||||
|
|
||||||
# 2020-11-23: Jailbreaking until: https://github.com/michaelt/text-pipes/pull/29
|
# 2020-11-23: Jailbreaking until: https://github.com/michaelt/text-pipes/pull/29
|
||||||
pipes-text = doJailbreak super.pipes-text;
|
pipes-text = doJailbreak super.pipes-text;
|
||||||
@ -1552,4 +1563,8 @@ self: super: {
|
|||||||
servant-client = doJailbreak super.servant-client;
|
servant-client = doJailbreak super.servant-client;
|
||||||
servant-client-core = doJailbreak super.servant-client-core;
|
servant-client-core = doJailbreak super.servant-client-core;
|
||||||
|
|
||||||
|
# overly strict dependency on aeson
|
||||||
|
# https://github.com/jaspervdj/profiteur/issues/33
|
||||||
|
profiteur = doJailbreak super.profiteur;
|
||||||
|
|
||||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||||
|
@ -76,7 +76,7 @@ default-package-overrides:
|
|||||||
# haskell-language-server 0.5.0.0 doesn't accept newer versions
|
# haskell-language-server 0.5.0.0 doesn't accept newer versions
|
||||||
- fourmolu ==0.2.*
|
- fourmolu ==0.2.*
|
||||||
- refinery ==0.2.*
|
- refinery ==0.2.*
|
||||||
# Stackage Nightly 2021-01-01
|
# Stackage Nightly 2021-01-05
|
||||||
- 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
|
||||||
@ -86,7 +86,7 @@ default-package-overrides:
|
|||||||
- ad ==4.4.1
|
- ad ==4.4.1
|
||||||
- adjunctions ==4.4
|
- adjunctions ==4.4
|
||||||
- adler32 ==0.1.2.0
|
- adler32 ==0.1.2.0
|
||||||
- aeson ==1.5.4.1
|
- aeson ==1.5.5.1
|
||||||
- aeson-attoparsec ==0.0.0
|
- aeson-attoparsec ==0.0.0
|
||||||
- aeson-better-errors ==0.9.1.0
|
- aeson-better-errors ==0.9.1.0
|
||||||
- aeson-casing ==0.2.0.0
|
- aeson-casing ==0.2.0.0
|
||||||
@ -261,7 +261,7 @@ default-package-overrides:
|
|||||||
- attoparsec-base64 ==0.0.0
|
- attoparsec-base64 ==0.0.0
|
||||||
- attoparsec-binary ==0.2
|
- attoparsec-binary ==0.2
|
||||||
- attoparsec-expr ==0.1.1.2
|
- attoparsec-expr ==0.1.1.2
|
||||||
- attoparsec-iso8601 ==1.0.1.0
|
- attoparsec-iso8601 ==1.0.2.0
|
||||||
- attoparsec-path ==0.0.0.1
|
- attoparsec-path ==0.0.0.1
|
||||||
- audacity ==0.0.2
|
- audacity ==0.0.2
|
||||||
- aur ==7.0.5
|
- aur ==7.0.5
|
||||||
@ -334,7 +334,6 @@ default-package-overrides:
|
|||||||
- bits-extra ==0.0.2.0
|
- bits-extra ==0.0.2.0
|
||||||
- bitset-word8 ==0.1.1.2
|
- bitset-word8 ==0.1.1.2
|
||||||
- bitvec ==1.0.3.0
|
- bitvec ==1.0.3.0
|
||||||
- bitwise-enum ==1.0.0.2
|
|
||||||
- blake2 ==0.3.0
|
- blake2 ==0.3.0
|
||||||
- blanks ==0.5.0
|
- blanks ==0.5.0
|
||||||
- blas-carray ==0.1.0.1
|
- blas-carray ==0.1.0.1
|
||||||
@ -520,10 +519,10 @@ default-package-overrides:
|
|||||||
- conduit-extra ==1.3.5
|
- conduit-extra ==1.3.5
|
||||||
- conduit-parse ==0.2.1.0
|
- conduit-parse ==0.2.1.0
|
||||||
- conduit-zstd ==0.0.2.0
|
- conduit-zstd ==0.0.2.0
|
||||||
- conferer ==0.4.1.1
|
- conferer ==1.0.0.0
|
||||||
- conferer-hspec ==0.4.0.1
|
- conferer-aeson ==1.0.0.0
|
||||||
- conferer-source-json ==0.4.0.1
|
- conferer-hspec ==1.0.0.0
|
||||||
- conferer-warp ==0.4.0.1
|
- conferer-warp ==1.0.0.0
|
||||||
- config-ini ==0.2.4.0
|
- config-ini ==0.2.4.0
|
||||||
- ConfigFile ==1.1.4
|
- ConfigFile ==1.1.4
|
||||||
- configurator ==0.3.0.0
|
- configurator ==0.3.0.0
|
||||||
@ -690,6 +689,7 @@ default-package-overrides:
|
|||||||
- doctest-exitcode-stdio ==0.0
|
- doctest-exitcode-stdio ==0.0
|
||||||
- doctest-lib ==0.1
|
- doctest-lib ==0.1
|
||||||
- doldol ==0.4.1.2
|
- doldol ==0.4.1.2
|
||||||
|
- dot ==0.3
|
||||||
- dotenv ==0.8.0.7
|
- dotenv ==0.8.0.7
|
||||||
- dotgen ==0.4.3
|
- dotgen ==0.4.3
|
||||||
- dotnet-timespan ==0.0.1.0
|
- dotnet-timespan ==0.0.1.0
|
||||||
@ -845,6 +845,7 @@ default-package-overrides:
|
|||||||
- focus ==1.0.2
|
- focus ==1.0.2
|
||||||
- focuslist ==0.1.0.2
|
- focuslist ==0.1.0.2
|
||||||
- fold-debounce ==0.2.0.9
|
- fold-debounce ==0.2.0.9
|
||||||
|
- fold-debounce-conduit ==0.2.0.5
|
||||||
- foldable1 ==0.1.0.0
|
- foldable1 ==0.1.0.0
|
||||||
- foldl ==1.4.10
|
- foldl ==1.4.10
|
||||||
- folds ==0.7.5
|
- folds ==0.7.5
|
||||||
@ -937,11 +938,11 @@ default-package-overrides:
|
|||||||
- ghc-prof ==1.4.1.7
|
- ghc-prof ==1.4.1.7
|
||||||
- ghc-source-gen ==0.4.0.0
|
- ghc-source-gen ==0.4.0.0
|
||||||
- ghc-syntax-highlighter ==0.0.6.0
|
- ghc-syntax-highlighter ==0.0.6.0
|
||||||
- ghc-tcplugins-extra ==0.4
|
- ghc-tcplugins-extra ==0.4.1
|
||||||
- ghc-trace-events ==0.1.2.1
|
- ghc-trace-events ==0.1.2.1
|
||||||
- ghc-typelits-extra ==0.4.1
|
- ghc-typelits-extra ==0.4.2
|
||||||
- ghc-typelits-knownnat ==0.7.3
|
- ghc-typelits-knownnat ==0.7.4
|
||||||
- ghc-typelits-natnormalise ==0.7.2
|
- ghc-typelits-natnormalise ==0.7.3
|
||||||
- ghc-typelits-presburger ==0.3.0.1
|
- ghc-typelits-presburger ==0.3.0.1
|
||||||
- ghci-hexcalc ==0.1.1.0
|
- ghci-hexcalc ==0.1.1.0
|
||||||
- ghcid ==0.8.7
|
- ghcid ==0.8.7
|
||||||
@ -995,6 +996,9 @@ default-package-overrides:
|
|||||||
- graphs ==0.7.1
|
- graphs ==0.7.1
|
||||||
- graphviz ==2999.20.1.0
|
- graphviz ==2999.20.1.0
|
||||||
- gravatar ==0.8.0
|
- gravatar ==0.8.0
|
||||||
|
- greskell ==1.2.0.0
|
||||||
|
- greskell-core ==0.1.3.5
|
||||||
|
- greskell-websocket ==0.1.2.5
|
||||||
- groom ==0.1.2.1
|
- groom ==0.1.2.1
|
||||||
- group-by-date ==0.1.0.3
|
- group-by-date ==0.1.0.3
|
||||||
- groups ==0.5.2
|
- groups ==0.5.2
|
||||||
@ -1008,7 +1012,7 @@ default-package-overrides:
|
|||||||
- hadolint ==1.19.0
|
- hadolint ==1.19.0
|
||||||
- hadoop-streaming ==0.2.0.3
|
- hadoop-streaming ==0.2.0.3
|
||||||
- hakyll-convert ==0.3.0.3
|
- hakyll-convert ==0.3.0.3
|
||||||
- half ==0.3
|
- half ==0.3.1
|
||||||
- hall-symbols ==0.1.0.6
|
- hall-symbols ==0.1.0.6
|
||||||
- hamtsolo ==1.0.3
|
- hamtsolo ==1.0.3
|
||||||
- HandsomeSoup ==0.4.2
|
- HandsomeSoup ==0.4.2
|
||||||
@ -1022,7 +1026,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.0
|
- haskeline ==0.8.1.1
|
||||||
- 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
|
||||||
@ -1100,7 +1104,7 @@ default-package-overrides:
|
|||||||
- hoauth2 ==1.16.0
|
- hoauth2 ==1.16.0
|
||||||
- hocon ==0.1.0.4
|
- hocon ==0.1.0.4
|
||||||
- hOpenPGP ==2.9.5
|
- hOpenPGP ==2.9.5
|
||||||
- hopenpgp-tools ==0.23.3
|
- hopenpgp-tools ==0.23.6
|
||||||
- hopfli ==0.2.2.1
|
- hopfli ==0.2.2.1
|
||||||
- hosc ==0.18.1
|
- hosc ==0.18.1
|
||||||
- hostname ==1.0
|
- hostname ==1.0
|
||||||
@ -1136,12 +1140,12 @@ default-package-overrides:
|
|||||||
- HsOpenSSL ==0.11.5.1
|
- HsOpenSSL ==0.11.5.1
|
||||||
- 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.4
|
- hspec ==2.7.5
|
||||||
- hspec-attoparsec ==0.1.0.2
|
- hspec-attoparsec ==0.1.0.2
|
||||||
- hspec-checkers ==0.1.0.2
|
- hspec-checkers ==0.1.0.2
|
||||||
- hspec-contrib ==0.5.1
|
- hspec-contrib ==0.5.1
|
||||||
- hspec-core ==2.7.4
|
- hspec-core ==2.7.5
|
||||||
- hspec-discover ==2.7.4
|
- hspec-discover ==2.7.5
|
||||||
- hspec-expectations ==0.8.2
|
- hspec-expectations ==0.8.2
|
||||||
- hspec-expectations-lifted ==0.10.0
|
- hspec-expectations-lifted ==0.10.0
|
||||||
- hspec-expectations-pretty-diff ==0.7.2.5
|
- hspec-expectations-pretty-diff ==0.7.2.5
|
||||||
@ -1151,6 +1155,7 @@ default-package-overrides:
|
|||||||
- hspec-leancheck ==0.0.4
|
- hspec-leancheck ==0.0.4
|
||||||
- hspec-megaparsec ==2.2.0
|
- hspec-megaparsec ==2.2.0
|
||||||
- hspec-meta ==2.6.0
|
- hspec-meta ==2.6.0
|
||||||
|
- hspec-need-env ==0.1.0.5
|
||||||
- hspec-parsec ==0
|
- hspec-parsec ==0
|
||||||
- hspec-smallcheck ==0.5.2
|
- hspec-smallcheck ==0.5.2
|
||||||
- hspec-tables ==0.0.1
|
- hspec-tables ==0.0.1
|
||||||
@ -1211,7 +1216,7 @@ default-package-overrides:
|
|||||||
- hw-json-simd ==0.1.1.0
|
- hw-json-simd ==0.1.1.0
|
||||||
- hw-json-simple-cursor ==0.1.1.0
|
- hw-json-simple-cursor ==0.1.1.0
|
||||||
- hw-json-standard-cursor ==0.2.3.1
|
- hw-json-standard-cursor ==0.2.3.1
|
||||||
- hw-kafka-client ==4.0.0
|
- hw-kafka-client ==4.0.1
|
||||||
- hw-mquery ==0.2.1.0
|
- hw-mquery ==0.2.1.0
|
||||||
- hw-packed-vector ==0.2.1.0
|
- hw-packed-vector ==0.2.1.0
|
||||||
- hw-parser ==0.1.1.0
|
- hw-parser ==0.1.1.0
|
||||||
@ -1263,7 +1268,7 @@ default-package-overrides:
|
|||||||
- influxdb ==1.9.0
|
- influxdb ==1.9.0
|
||||||
- ini ==0.4.1
|
- ini ==0.4.1
|
||||||
- inj ==1.0
|
- inj ==1.0
|
||||||
- inline-c ==0.9.1.3
|
- inline-c ==0.9.1.4
|
||||||
- inline-c-cpp ==0.4.0.2
|
- inline-c-cpp ==0.4.0.2
|
||||||
- inline-r ==0.10.4
|
- inline-r ==0.10.4
|
||||||
- inliterate ==0.1.0
|
- inliterate ==0.1.0
|
||||||
@ -1399,7 +1404,7 @@ default-package-overrides:
|
|||||||
- libgit ==0.3.1
|
- libgit ==0.3.1
|
||||||
- libgraph ==1.14
|
- libgraph ==1.14
|
||||||
- libjwt-typed ==0.2
|
- libjwt-typed ==0.2
|
||||||
- libmpd ==0.9.2.0
|
- libmpd ==0.9.3.0
|
||||||
- liboath-hs ==0.0.1.2
|
- liboath-hs ==0.0.1.2
|
||||||
- libyaml ==0.1.2
|
- libyaml ==0.1.2
|
||||||
- LibZip ==1.0.1
|
- LibZip ==1.0.1
|
||||||
@ -1461,6 +1466,8 @@ default-package-overrides:
|
|||||||
- markov-chain ==0.0.3.4
|
- markov-chain ==0.0.3.4
|
||||||
- massiv ==0.5.9.0
|
- massiv ==0.5.9.0
|
||||||
- massiv-io ==0.4.0.0
|
- massiv-io ==0.4.0.0
|
||||||
|
- massiv-persist ==0.1.0.0
|
||||||
|
- massiv-serialise ==0.1.0.0
|
||||||
- massiv-test ==0.1.6
|
- massiv-test ==0.1.6
|
||||||
- math-extras ==0.1.1.0
|
- math-extras ==0.1.1.0
|
||||||
- math-functions ==0.3.4.1
|
- math-functions ==0.3.4.1
|
||||||
@ -1889,7 +1896,7 @@ default-package-overrides:
|
|||||||
- quickcheck-classes ==0.6.4.0
|
- quickcheck-classes ==0.6.4.0
|
||||||
- quickcheck-classes-base ==0.6.1.0
|
- quickcheck-classes-base ==0.6.1.0
|
||||||
- quickcheck-higherorder ==0.1.0.0
|
- quickcheck-higherorder ==0.1.0.0
|
||||||
- quickcheck-instances ==0.3.25.1
|
- quickcheck-instances ==0.3.25.2
|
||||||
- quickcheck-io ==0.2.0
|
- quickcheck-io ==0.2.0
|
||||||
- quickcheck-simple ==0.1.1.1
|
- quickcheck-simple ==0.1.1.1
|
||||||
- quickcheck-special ==0.1.0.6
|
- quickcheck-special ==0.1.0.6
|
||||||
@ -1932,7 +1939,7 @@ default-package-overrides:
|
|||||||
- read-editor ==0.1.0.2
|
- read-editor ==0.1.0.2
|
||||||
- read-env-var ==1.0.0.0
|
- read-env-var ==1.0.0.0
|
||||||
- readable ==0.3.1
|
- readable ==0.3.1
|
||||||
- reanimate ==1.1.2.1
|
- reanimate ==1.1.3.1
|
||||||
- reanimate-svg ==0.13.0.0
|
- reanimate-svg ==0.13.0.0
|
||||||
- rebase ==1.6.1
|
- rebase ==1.6.1
|
||||||
- record-dot-preprocessor ==0.2.7
|
- record-dot-preprocessor ==0.2.7
|
||||||
@ -2295,7 +2302,7 @@ default-package-overrides:
|
|||||||
- Taxonomy ==2.1.0
|
- Taxonomy ==2.1.0
|
||||||
- TCache ==0.12.1
|
- TCache ==0.12.1
|
||||||
- tce-conf ==1.3
|
- tce-conf ==1.3
|
||||||
- tdigest ==0.2.1
|
- tdigest ==0.2.1.1
|
||||||
- template-haskell-compat-v0208 ==0.1.5
|
- template-haskell-compat-v0208 ==0.1.5
|
||||||
- temporary ==1.3
|
- temporary ==1.3
|
||||||
- temporary-rc ==1.2.0.3
|
- temporary-rc ==1.2.0.3
|
||||||
@ -2330,7 +2337,7 @@ default-package-overrides:
|
|||||||
- text-short ==0.1.3
|
- text-short ==0.1.3
|
||||||
- text-show ==3.9
|
- text-show ==3.9
|
||||||
- text-show-instances ==3.8.4
|
- text-show-instances ==3.8.4
|
||||||
- text-zipper ==0.10.1
|
- text-zipper ==0.11
|
||||||
- textlocal ==0.1.0.5
|
- textlocal ==0.1.0.5
|
||||||
- tf-random ==0.5
|
- tf-random ==0.5
|
||||||
- tfp ==1.0.1.1
|
- tfp ==1.0.1.1
|
||||||
@ -2457,7 +2464,7 @@ default-package-overrides:
|
|||||||
- uniplate ==1.6.13
|
- uniplate ==1.6.13
|
||||||
- uniprot-kb ==0.1.2.0
|
- uniprot-kb ==0.1.2.0
|
||||||
- uniq-deep ==1.2.0
|
- uniq-deep ==1.2.0
|
||||||
- unique ==0
|
- unique ==0.0.1
|
||||||
- unique-logic ==0.4
|
- unique-logic ==0.4
|
||||||
- unique-logic-tf ==0.5.1
|
- unique-logic-tf ==0.5.1
|
||||||
- unit-constraint ==0.0.0
|
- unit-constraint ==0.0.0
|
||||||
@ -2486,7 +2493,7 @@ default-package-overrides:
|
|||||||
- users ==0.5.0.0
|
- users ==0.5.0.0
|
||||||
- utf8-conversions ==0.1.0.4
|
- utf8-conversions ==0.1.0.4
|
||||||
- utf8-light ==0.4.2
|
- utf8-light ==0.4.2
|
||||||
- utf8-string ==1.0.1.1
|
- utf8-string ==1.0.2
|
||||||
- util ==0.1.17.1
|
- util ==0.1.17.1
|
||||||
- utility-ht ==0.0.15
|
- utility-ht ==0.0.15
|
||||||
- uuid ==1.3.13
|
- uuid ==1.3.13
|
||||||
@ -2536,7 +2543,7 @@ default-package-overrides:
|
|||||||
- wai-cors ==0.2.7
|
- wai-cors ==0.2.7
|
||||||
- wai-enforce-https ==0.0.2.1
|
- wai-enforce-https ==0.0.2.1
|
||||||
- wai-eventsource ==3.0.0
|
- wai-eventsource ==3.0.0
|
||||||
- wai-extra ==3.1.4.1
|
- wai-extra ==3.1.5
|
||||||
- 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
|
||||||
@ -2568,6 +2575,8 @@ default-package-overrides:
|
|||||||
- weigh ==0.0.16
|
- weigh ==0.0.16
|
||||||
- wide-word ==0.1.1.2
|
- wide-word ==0.1.1.2
|
||||||
- wikicfp-scraper ==0.1.0.11
|
- wikicfp-scraper ==0.1.0.11
|
||||||
|
- wild-bind ==0.1.2.6
|
||||||
|
- wild-bind-x11 ==0.2.0.11
|
||||||
- Win32 ==2.6.1.0
|
- Win32 ==2.6.1.0
|
||||||
- Win32-notify ==0.3.0.3
|
- Win32-notify ==0.3.0.3
|
||||||
- windns ==0.1.0.1
|
- windns ==0.1.0.1
|
||||||
@ -2638,7 +2647,7 @@ default-package-overrides:
|
|||||||
- yesod-form ==1.6.7
|
- yesod-form ==1.6.7
|
||||||
- yesod-gitrev ==0.2.1
|
- yesod-gitrev ==0.2.1
|
||||||
- yesod-newsfeed ==1.7.0.0
|
- yesod-newsfeed ==1.7.0.0
|
||||||
- yesod-page-cursor ==2.0.0.0
|
- yesod-page-cursor ==2.0.0.1
|
||||||
- yesod-paginator ==1.1.1.0
|
- yesod-paginator ==1.1.1.0
|
||||||
- yesod-persistent ==1.6.0.5
|
- yesod-persistent ==1.6.0.5
|
||||||
- yesod-sitemap ==1.6.0
|
- yesod-sitemap ==1.6.0
|
||||||
@ -3134,6 +3143,7 @@ broken-packages:
|
|||||||
- Annotations
|
- Annotations
|
||||||
- anonymous-sums
|
- anonymous-sums
|
||||||
- anonymous-sums-tests
|
- anonymous-sums-tests
|
||||||
|
- ansi-terminal-game
|
||||||
- ansigraph
|
- ansigraph
|
||||||
- antagonist
|
- antagonist
|
||||||
- antfarm
|
- antfarm
|
||||||
@ -3193,6 +3203,7 @@ broken-packages:
|
|||||||
- applicative-quoters
|
- applicative-quoters
|
||||||
- applicative-splice
|
- applicative-splice
|
||||||
- approveapi
|
- approveapi
|
||||||
|
- approx
|
||||||
- ApproxFun-hs
|
- ApproxFun-hs
|
||||||
- arb-fft
|
- arb-fft
|
||||||
- arbb-vm
|
- arbb-vm
|
||||||
@ -3200,7 +3211,6 @@ broken-packages:
|
|||||||
- arbor-monad-counter
|
- arbor-monad-counter
|
||||||
- arbor-monad-metric
|
- arbor-monad-metric
|
||||||
- arbor-monad-metric-datadog
|
- arbor-monad-metric-datadog
|
||||||
- arbtt
|
|
||||||
- arch-hs
|
- arch-hs
|
||||||
- archive-libarchive
|
- archive-libarchive
|
||||||
- archiver
|
- archiver
|
||||||
@ -3399,6 +3409,7 @@ broken-packages:
|
|||||||
- basex-client
|
- basex-client
|
||||||
- BASIC
|
- BASIC
|
||||||
- basic
|
- basic
|
||||||
|
- basic-sop
|
||||||
- baskell
|
- baskell
|
||||||
- batchd
|
- batchd
|
||||||
- battlenet
|
- battlenet
|
||||||
@ -3497,6 +3508,7 @@ broken-packages:
|
|||||||
- bindings-K8055
|
- bindings-K8055
|
||||||
- bindings-libftdi
|
- bindings-libftdi
|
||||||
- bindings-libg15
|
- bindings-libg15
|
||||||
|
- bindings-libpci
|
||||||
- bindings-librrd
|
- bindings-librrd
|
||||||
- bindings-libstemmer
|
- bindings-libstemmer
|
||||||
- bindings-libusb
|
- bindings-libusb
|
||||||
@ -3663,7 +3675,9 @@ broken-packages:
|
|||||||
- broker-haskell
|
- broker-haskell
|
||||||
- bronyradiogermany-common
|
- bronyradiogermany-common
|
||||||
- bronyradiogermany-streaming
|
- bronyradiogermany-streaming
|
||||||
|
- brotli
|
||||||
- brotli-conduit
|
- brotli-conduit
|
||||||
|
- brotli-streams
|
||||||
- browscap
|
- browscap
|
||||||
- bsd-sysctl
|
- bsd-sysctl
|
||||||
- bson
|
- bson
|
||||||
@ -3783,6 +3797,7 @@ broken-packages:
|
|||||||
- cache-polysemy
|
- cache-polysemy
|
||||||
- cached
|
- cached
|
||||||
- caching
|
- caching
|
||||||
|
- caching-vault
|
||||||
- cacophony
|
- cacophony
|
||||||
- cafeteria-prelude
|
- cafeteria-prelude
|
||||||
- caffegraph
|
- caffegraph
|
||||||
@ -3949,6 +3964,7 @@ broken-packages:
|
|||||||
- chunky
|
- chunky
|
||||||
- church
|
- church
|
||||||
- church-maybe
|
- church-maybe
|
||||||
|
- churros
|
||||||
- cielo
|
- cielo
|
||||||
- cil
|
- cil
|
||||||
- cinvoke
|
- cinvoke
|
||||||
@ -3956,6 +3972,7 @@ broken-packages:
|
|||||||
- cipher-blowfish
|
- cipher-blowfish
|
||||||
- ciphersaber2
|
- ciphersaber2
|
||||||
- circlehs
|
- circlehs
|
||||||
|
- circular
|
||||||
- citation-resolve
|
- citation-resolve
|
||||||
- citeproc-hs
|
- citeproc-hs
|
||||||
- citeproc-hs-pandoc-filter
|
- citeproc-hs-pandoc-filter
|
||||||
@ -4172,9 +4189,13 @@ broken-packages:
|
|||||||
- conduit-vfs-zip
|
- conduit-vfs-zip
|
||||||
- conf
|
- conf
|
||||||
- confcrypt
|
- confcrypt
|
||||||
|
- conferer-dhall
|
||||||
- conferer-provider-dhall
|
- conferer-provider-dhall
|
||||||
- conferer-provider-json
|
- conferer-provider-json
|
||||||
- conferer-provider-yaml
|
- conferer-provider-yaml
|
||||||
|
- conferer-source-dhall
|
||||||
|
- conferer-source-json
|
||||||
|
- conferer-source-yaml
|
||||||
- conffmt
|
- conffmt
|
||||||
- confide
|
- confide
|
||||||
- config-parser
|
- config-parser
|
||||||
@ -4192,6 +4213,7 @@ broken-packages:
|
|||||||
- conkin
|
- conkin
|
||||||
- conlogger
|
- conlogger
|
||||||
- connection-string
|
- connection-string
|
||||||
|
- connections
|
||||||
- Conscript
|
- Conscript
|
||||||
- consistent
|
- consistent
|
||||||
- console-program
|
- console-program
|
||||||
@ -4348,6 +4370,7 @@ broken-packages:
|
|||||||
- cspmchecker
|
- cspmchecker
|
||||||
- cspretty
|
- cspretty
|
||||||
- css
|
- css
|
||||||
|
- css-easings
|
||||||
- css-selectors
|
- css-selectors
|
||||||
- csv-enumerator
|
- csv-enumerator
|
||||||
- csv-nptools
|
- csv-nptools
|
||||||
@ -4416,6 +4439,7 @@ broken-packages:
|
|||||||
- data-fin
|
- data-fin
|
||||||
- data-fin-simple
|
- data-fin-simple
|
||||||
- data-flagset
|
- data-flagset
|
||||||
|
- data-interval
|
||||||
- data-ivar
|
- data-ivar
|
||||||
- data-kiln
|
- data-kiln
|
||||||
- data-layer
|
- data-layer
|
||||||
@ -4430,6 +4454,7 @@ broken-packages:
|
|||||||
- data-object-yaml
|
- data-object-yaml
|
||||||
- data-pprint
|
- data-pprint
|
||||||
- data-quotientref
|
- data-quotientref
|
||||||
|
- data-r-tree
|
||||||
- data-reify-cse
|
- data-reify-cse
|
||||||
- data-repr
|
- data-repr
|
||||||
- data-result
|
- data-result
|
||||||
@ -4573,11 +4598,15 @@ broken-packages:
|
|||||||
- dgim
|
- dgim
|
||||||
- dgs
|
- dgs
|
||||||
- dhall-check
|
- dhall-check
|
||||||
|
- dhall-docs
|
||||||
- dhall-fly
|
- dhall-fly
|
||||||
|
- dhall-json
|
||||||
|
- dhall-lsp-server
|
||||||
- dhall-nix
|
- dhall-nix
|
||||||
- dhall-nixpkgs
|
- dhall-nixpkgs
|
||||||
- dhall-text
|
- dhall-text
|
||||||
- dhall-to-cabal
|
- dhall-to-cabal
|
||||||
|
- dhall-yaml
|
||||||
- dhcp-lease-parser
|
- dhcp-lease-parser
|
||||||
- dhrun
|
- dhrun
|
||||||
- dia-base
|
- dia-base
|
||||||
@ -4642,6 +4671,7 @@ broken-packages:
|
|||||||
- direct-plugins
|
- direct-plugins
|
||||||
- direct-rocksdb
|
- direct-rocksdb
|
||||||
- directed-cubical
|
- directed-cubical
|
||||||
|
- directory-contents
|
||||||
- direm
|
- direm
|
||||||
- dirfiles
|
- dirfiles
|
||||||
- discogs-haskell
|
- discogs-haskell
|
||||||
@ -4810,6 +4840,7 @@ broken-packages:
|
|||||||
- dzen-utils
|
- dzen-utils
|
||||||
- each
|
- each
|
||||||
- earclipper
|
- earclipper
|
||||||
|
- early
|
||||||
- easy-api
|
- easy-api
|
||||||
- easy-bitcoin
|
- easy-bitcoin
|
||||||
- easyjson
|
- easyjson
|
||||||
@ -4872,6 +4903,8 @@ broken-packages:
|
|||||||
- elm-street
|
- elm-street
|
||||||
- elm-websocket
|
- elm-websocket
|
||||||
- elsa
|
- elsa
|
||||||
|
- elynx
|
||||||
|
- elynx-tree
|
||||||
- emacs-keys
|
- emacs-keys
|
||||||
- emacs-module
|
- emacs-module
|
||||||
- email
|
- email
|
||||||
@ -4942,6 +4975,7 @@ broken-packages:
|
|||||||
- ersatz
|
- ersatz
|
||||||
- ersatz-toysat
|
- ersatz-toysat
|
||||||
- ert
|
- ert
|
||||||
|
- escape-artist
|
||||||
- escoger
|
- escoger
|
||||||
- esotericbot
|
- esotericbot
|
||||||
- EsounD
|
- EsounD
|
||||||
@ -4993,6 +5027,7 @@ broken-packages:
|
|||||||
- exference
|
- exference
|
||||||
- exherbo-cabal
|
- exherbo-cabal
|
||||||
- exif
|
- exif
|
||||||
|
- exigo-schema
|
||||||
- exinst-deepseq
|
- exinst-deepseq
|
||||||
- exinst-hashable
|
- exinst-hashable
|
||||||
- exists
|
- exists
|
||||||
@ -5043,6 +5078,8 @@ broken-packages:
|
|||||||
- FailureT
|
- FailureT
|
||||||
- fake
|
- fake
|
||||||
- fake-type
|
- fake-type
|
||||||
|
- fakedata
|
||||||
|
- fakedata-quickcheck
|
||||||
- faktory
|
- faktory
|
||||||
- falling-turnip
|
- falling-turnip
|
||||||
- fallingblocks
|
- fallingblocks
|
||||||
@ -5144,6 +5181,7 @@ broken-packages:
|
|||||||
- filesystem-enumerator
|
- filesystem-enumerator
|
||||||
- filesystem-trees
|
- filesystem-trees
|
||||||
- fillit
|
- fillit
|
||||||
|
- Fin
|
||||||
- final-pretty-printer
|
- final-pretty-printer
|
||||||
- Finance-Quote-Yahoo
|
- Finance-Quote-Yahoo
|
||||||
- Finance-Treasury
|
- Finance-Treasury
|
||||||
@ -5420,6 +5458,7 @@ broken-packages:
|
|||||||
- generic-binary
|
- generic-binary
|
||||||
- generic-church
|
- generic-church
|
||||||
- generic-enum
|
- generic-enum
|
||||||
|
- generic-enumeration
|
||||||
- generic-lens-labels
|
- generic-lens-labels
|
||||||
- generic-lucid-scaffold
|
- generic-lucid-scaffold
|
||||||
- generic-maybe
|
- generic-maybe
|
||||||
@ -5455,6 +5494,7 @@ broken-packages:
|
|||||||
- geolite-csv
|
- geolite-csv
|
||||||
- geom2d
|
- geom2d
|
||||||
- GeomPredicates-SSE
|
- GeomPredicates-SSE
|
||||||
|
- geos
|
||||||
- Get
|
- Get
|
||||||
- getemx
|
- getemx
|
||||||
- getflag
|
- getflag
|
||||||
@ -5790,6 +5830,7 @@ broken-packages:
|
|||||||
- hack2-handler-mongrel2-http
|
- hack2-handler-mongrel2-http
|
||||||
- hack2-handler-snap-server
|
- hack2-handler-snap-server
|
||||||
- hack2-handler-warp
|
- hack2-handler-warp
|
||||||
|
- hackage-api
|
||||||
- hackage-diff
|
- hackage-diff
|
||||||
- hackage-mirror
|
- hackage-mirror
|
||||||
- hackage-processing
|
- hackage-processing
|
||||||
@ -5985,6 +6026,7 @@ broken-packages:
|
|||||||
- haskell-igraph
|
- haskell-igraph
|
||||||
- haskell-in-space
|
- haskell-in-space
|
||||||
- haskell-kubernetes
|
- haskell-kubernetes
|
||||||
|
- haskell-language-server
|
||||||
- haskell-lsp-client
|
- haskell-lsp-client
|
||||||
- haskell-ml
|
- haskell-ml
|
||||||
- haskell-mpfr
|
- haskell-mpfr
|
||||||
@ -6122,6 +6164,7 @@ broken-packages:
|
|||||||
- hasql-queue
|
- hasql-queue
|
||||||
- hasql-simple
|
- hasql-simple
|
||||||
- hasql-th
|
- hasql-th
|
||||||
|
- hasql-url
|
||||||
- hastache
|
- hastache
|
||||||
- hastache-aeson
|
- hastache-aeson
|
||||||
- haste
|
- haste
|
||||||
@ -6174,6 +6217,7 @@ broken-packages:
|
|||||||
- hCM
|
- hCM
|
||||||
- hcoap
|
- hcoap
|
||||||
- hcom
|
- hcom
|
||||||
|
- hcount
|
||||||
- hcron
|
- hcron
|
||||||
- hCsound
|
- hCsound
|
||||||
- hcube
|
- hcube
|
||||||
@ -6219,6 +6263,7 @@ broken-packages:
|
|||||||
- heckle
|
- heckle
|
||||||
- hedgehog-checkers
|
- hedgehog-checkers
|
||||||
- hedgehog-checkers-lens
|
- hedgehog-checkers-lens
|
||||||
|
- hedgehog-fakedata
|
||||||
- hedgehog-gen-json
|
- hedgehog-gen-json
|
||||||
- hedgehog-generic
|
- hedgehog-generic
|
||||||
- hedgehog-golden
|
- hedgehog-golden
|
||||||
@ -6283,6 +6328,7 @@ broken-packages:
|
|||||||
- hexpress
|
- hexpress
|
||||||
- hexquote
|
- hexquote
|
||||||
- hext
|
- hext
|
||||||
|
- hextream
|
||||||
- heyefi
|
- heyefi
|
||||||
- heyting-algebras
|
- heyting-algebras
|
||||||
- hF2
|
- hF2
|
||||||
@ -6326,6 +6372,7 @@ broken-packages:
|
|||||||
- hid-examples
|
- hid-examples
|
||||||
- hidden-char
|
- hidden-char
|
||||||
- hie-core
|
- hie-core
|
||||||
|
- hiedb
|
||||||
- hieraclus
|
- hieraclus
|
||||||
- hierarchical-clustering-diagrams
|
- hierarchical-clustering-diagrams
|
||||||
- hierarchical-exceptions
|
- hierarchical-exceptions
|
||||||
@ -6348,6 +6395,7 @@ broken-packages:
|
|||||||
- hinduce-classifier
|
- hinduce-classifier
|
||||||
- hinduce-classifier-decisiontree
|
- hinduce-classifier-decisiontree
|
||||||
- hinduce-examples
|
- hinduce-examples
|
||||||
|
- hinit
|
||||||
- hinquire
|
- hinquire
|
||||||
- hinstaller
|
- hinstaller
|
||||||
- hint-server
|
- hint-server
|
||||||
@ -6408,6 +6456,9 @@ broken-packages:
|
|||||||
- hlrdb
|
- hlrdb
|
||||||
- hlrdb-core
|
- hlrdb-core
|
||||||
- hls
|
- hls
|
||||||
|
- hls-explicit-imports-plugin
|
||||||
|
- hls-hlint-plugin
|
||||||
|
- hls-retrie-plugin
|
||||||
- hlwm
|
- hlwm
|
||||||
- hly
|
- hly
|
||||||
- hmark
|
- hmark
|
||||||
@ -6437,7 +6488,6 @@ broken-packages:
|
|||||||
- hmt-diagrams
|
- hmt-diagrams
|
||||||
- hmumps
|
- hmumps
|
||||||
- hnetcdf
|
- hnetcdf
|
||||||
- hnix-store-remote
|
|
||||||
- HNM
|
- HNM
|
||||||
- hnormalise
|
- hnormalise
|
||||||
- ho-rewriting
|
- ho-rewriting
|
||||||
@ -6446,6 +6496,7 @@ broken-packages:
|
|||||||
- hobbes
|
- hobbes
|
||||||
- hobbits
|
- hobbits
|
||||||
- hocilib
|
- hocilib
|
||||||
|
- hocker
|
||||||
- hodatime
|
- hodatime
|
||||||
- HODE
|
- HODE
|
||||||
- hoe
|
- hoe
|
||||||
@ -6460,7 +6511,6 @@ broken-packages:
|
|||||||
- hol
|
- hol
|
||||||
- hold-em
|
- hold-em
|
||||||
- hole
|
- hole
|
||||||
- holmes
|
|
||||||
- Holumbus-Searchengine
|
- Holumbus-Searchengine
|
||||||
- holy-project
|
- holy-project
|
||||||
- homeomorphic
|
- homeomorphic
|
||||||
@ -6509,6 +6559,7 @@ broken-packages:
|
|||||||
- hp2any-graph
|
- hp2any-graph
|
||||||
- hp2any-manager
|
- hp2any-manager
|
||||||
- hpack-convert
|
- hpack-convert
|
||||||
|
- hpack-dhall
|
||||||
- hpaco
|
- hpaco
|
||||||
- hpaco-lib
|
- hpaco-lib
|
||||||
- hpage
|
- hpage
|
||||||
@ -6793,6 +6844,7 @@ broken-packages:
|
|||||||
- hugs2yc
|
- hugs2yc
|
||||||
- hulk
|
- hulk
|
||||||
- HulkImport
|
- HulkImport
|
||||||
|
- hum
|
||||||
- human-parse
|
- human-parse
|
||||||
- human-text
|
- human-text
|
||||||
- humble-prelude
|
- humble-prelude
|
||||||
@ -6806,6 +6858,7 @@ broken-packages:
|
|||||||
- hunt-server
|
- hunt-server
|
||||||
- hup
|
- hup
|
||||||
- hurdle
|
- hurdle
|
||||||
|
- hurl
|
||||||
- hurriyet
|
- hurriyet
|
||||||
- husk-scheme
|
- husk-scheme
|
||||||
- husk-scheme-libs
|
- husk-scheme-libs
|
||||||
@ -6822,6 +6875,7 @@ broken-packages:
|
|||||||
- hw-json-simd
|
- hw-json-simd
|
||||||
- hw-json-simple-cursor
|
- hw-json-simple-cursor
|
||||||
- hw-json-standard-cursor
|
- hw-json-standard-cursor
|
||||||
|
- hw-kafka-avro
|
||||||
- hw-prim-bits
|
- hw-prim-bits
|
||||||
- hw-simd
|
- hw-simd
|
||||||
- hw-uri
|
- hw-uri
|
||||||
@ -7218,6 +7272,7 @@ broken-packages:
|
|||||||
- karps
|
- karps
|
||||||
- katip-elasticsearch
|
- katip-elasticsearch
|
||||||
- katip-kafka
|
- katip-kafka
|
||||||
|
- katip-raven
|
||||||
- katip-rollbar
|
- katip-rollbar
|
||||||
- katip-scalyr-scribe
|
- katip-scalyr-scribe
|
||||||
- katip-syslog
|
- katip-syslog
|
||||||
@ -7261,6 +7316,7 @@ broken-packages:
|
|||||||
- kickchan
|
- kickchan
|
||||||
- kif-parser
|
- kif-parser
|
||||||
- kit
|
- kit
|
||||||
|
- kleene
|
||||||
- kmeans-par
|
- kmeans-par
|
||||||
- kmeans-vector
|
- kmeans-vector
|
||||||
- kmonad
|
- kmonad
|
||||||
@ -7397,6 +7453,7 @@ 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
|
||||||
@ -7429,6 +7486,7 @@ broken-packages:
|
|||||||
- learn
|
- learn
|
||||||
- learn-physics-examples
|
- learn-physics-examples
|
||||||
- Learning
|
- Learning
|
||||||
|
- leb128
|
||||||
- leetify
|
- leetify
|
||||||
- legion
|
- legion
|
||||||
- legion-discovery
|
- legion-discovery
|
||||||
@ -7509,6 +7567,7 @@ broken-packages:
|
|||||||
- linda
|
- linda
|
||||||
- linden
|
- linden
|
||||||
- line-bot-sdk
|
- line-bot-sdk
|
||||||
|
- line-drawing
|
||||||
- linear-algebra-cblas
|
- linear-algebra-cblas
|
||||||
- linear-circuit
|
- linear-circuit
|
||||||
- linear-code
|
- linear-code
|
||||||
@ -7772,6 +7831,8 @@ broken-packages:
|
|||||||
- marvin-interpolate
|
- marvin-interpolate
|
||||||
- masakazu-bot
|
- masakazu-bot
|
||||||
- MASMGen
|
- MASMGen
|
||||||
|
- massiv-persist
|
||||||
|
- massiv-serialise
|
||||||
- master-plan
|
- master-plan
|
||||||
- matchers
|
- matchers
|
||||||
- math-grads
|
- math-grads
|
||||||
@ -7803,6 +7864,7 @@ broken-packages:
|
|||||||
- mcl
|
- mcl
|
||||||
- mcm
|
- mcm
|
||||||
- mcmaster-gloss-examples
|
- mcmaster-gloss-examples
|
||||||
|
- mcmc
|
||||||
- mcmc-samplers
|
- mcmc-samplers
|
||||||
- mcmc-synthesis
|
- mcmc-synthesis
|
||||||
- mcpi
|
- mcpi
|
||||||
@ -8204,6 +8266,7 @@ broken-packages:
|
|||||||
- neko-lib
|
- neko-lib
|
||||||
- Neks
|
- Neks
|
||||||
- nemesis-titan
|
- nemesis-titan
|
||||||
|
- neptune-backend
|
||||||
- nerf
|
- nerf
|
||||||
- nero
|
- nero
|
||||||
- nero-wai
|
- nero-wai
|
||||||
@ -8213,6 +8276,11 @@ broken-packages:
|
|||||||
- nested-sequence
|
- nested-sequence
|
||||||
- NestedFunctor
|
- NestedFunctor
|
||||||
- nestedmap
|
- nestedmap
|
||||||
|
- net-mqtt
|
||||||
|
- net-mqtt-lens
|
||||||
|
- net-mqtt-rpc
|
||||||
|
- net-spider
|
||||||
|
- net-spider-cli
|
||||||
- net-spider-pangraph
|
- net-spider-pangraph
|
||||||
- net-spider-rpl
|
- net-spider-rpl
|
||||||
- net-spider-rpl-cli
|
- net-spider-rpl-cli
|
||||||
@ -8427,6 +8495,7 @@ broken-packages:
|
|||||||
- open-union
|
- open-union
|
||||||
- OpenAFP
|
- OpenAFP
|
||||||
- OpenAFP-Utils
|
- OpenAFP-Utils
|
||||||
|
- openai-hs
|
||||||
- openapi-petstore
|
- openapi-petstore
|
||||||
- openapi-typed
|
- openapi-typed
|
||||||
- openapi3
|
- openapi3
|
||||||
@ -8473,6 +8542,7 @@ broken-packages:
|
|||||||
- orchid-demo
|
- orchid-demo
|
||||||
- order-maintenance
|
- order-maintenance
|
||||||
- order-statistics
|
- order-statistics
|
||||||
|
- ordinal
|
||||||
- Ordinary
|
- Ordinary
|
||||||
- ordrea
|
- ordrea
|
||||||
- oref
|
- oref
|
||||||
@ -8574,6 +8644,7 @@ broken-packages:
|
|||||||
- parcom-lib
|
- parcom-lib
|
||||||
- parconc-examples
|
- parconc-examples
|
||||||
- pareto
|
- pareto
|
||||||
|
- parochial
|
||||||
- parquet-hs
|
- parquet-hs
|
||||||
- Parry
|
- Parry
|
||||||
- parse-help
|
- parse-help
|
||||||
@ -8679,6 +8750,7 @@ broken-packages:
|
|||||||
- persistent-migration
|
- persistent-migration
|
||||||
- persistent-mongoDB
|
- persistent-mongoDB
|
||||||
- persistent-mysql-haskell
|
- persistent-mysql-haskell
|
||||||
|
- persistent-odbc
|
||||||
- persistent-protobuf
|
- persistent-protobuf
|
||||||
- persistent-ratelimit
|
- persistent-ratelimit
|
||||||
- persistent-relational-record
|
- persistent-relational-record
|
||||||
@ -8806,6 +8878,7 @@ broken-packages:
|
|||||||
- pocket-dns
|
- pocket-dns
|
||||||
- point-octree
|
- point-octree
|
||||||
- pointedalternative
|
- pointedalternative
|
||||||
|
- pointfree-fancy
|
||||||
- pointful
|
- pointful
|
||||||
- pointless-haskell
|
- pointless-haskell
|
||||||
- pointless-lenses
|
- pointless-lenses
|
||||||
@ -8836,6 +8909,7 @@ broken-packages:
|
|||||||
- polyseq
|
- polyseq
|
||||||
- polytypeable
|
- polytypeable
|
||||||
- polytypeable-utils
|
- polytypeable-utils
|
||||||
|
- pomaps
|
||||||
- pomodoro
|
- pomodoro
|
||||||
- pomohoro
|
- pomohoro
|
||||||
- ponder
|
- ponder
|
||||||
@ -8845,6 +8919,7 @@ broken-packages:
|
|||||||
- pool-conduit
|
- pool-conduit
|
||||||
- pop3-client
|
- pop3-client
|
||||||
- popenhs
|
- popenhs
|
||||||
|
- popkey
|
||||||
- poppler
|
- poppler
|
||||||
- porcupine-core
|
- porcupine-core
|
||||||
- porcupine-http
|
- porcupine-http
|
||||||
@ -8975,7 +9050,6 @@ broken-packages:
|
|||||||
- prof-flamegraph
|
- prof-flamegraph
|
||||||
- prof2dot
|
- prof2dot
|
||||||
- prof2pretty
|
- prof2pretty
|
||||||
- profiteur
|
|
||||||
- profunctor-monad
|
- profunctor-monad
|
||||||
- progress
|
- progress
|
||||||
- progress-meter
|
- progress-meter
|
||||||
@ -9003,7 +9077,9 @@ broken-packages:
|
|||||||
- prosidyc
|
- prosidyc
|
||||||
- prosper
|
- prosper
|
||||||
- proteaaudio
|
- proteaaudio
|
||||||
|
- proteaaudio-sdl
|
||||||
- proteome
|
- proteome
|
||||||
|
- proto-lens-arbitrary
|
||||||
- proto-lens-combinators
|
- proto-lens-combinators
|
||||||
- proto-lens-descriptors
|
- proto-lens-descriptors
|
||||||
- proto3-suite
|
- proto3-suite
|
||||||
@ -9012,6 +9088,7 @@ broken-packages:
|
|||||||
- protocol-buffers-descriptor-fork
|
- protocol-buffers-descriptor-fork
|
||||||
- protocol-buffers-fork
|
- protocol-buffers-fork
|
||||||
- protolude-lifted
|
- protolude-lifted
|
||||||
|
- proton
|
||||||
- proton-haskell
|
- proton-haskell
|
||||||
- prototype
|
- prototype
|
||||||
- prove-everywhere-server
|
- prove-everywhere-server
|
||||||
@ -9043,6 +9120,7 @@ broken-packages:
|
|||||||
- pure-io
|
- pure-io
|
||||||
- pure-priority-queue
|
- pure-priority-queue
|
||||||
- pure-priority-queue-tests
|
- pure-priority-queue-tests
|
||||||
|
- pure-zlib
|
||||||
- purescheme-wai-routing-core
|
- purescheme-wai-routing-core
|
||||||
- purescript
|
- purescript
|
||||||
- purescript-iso
|
- purescript-iso
|
||||||
@ -9112,6 +9190,7 @@ broken-packages:
|
|||||||
- quickcheck-report
|
- quickcheck-report
|
||||||
- quickcheck-state-machine
|
- quickcheck-state-machine
|
||||||
- quickcheck-state-machine-distributed
|
- quickcheck-state-machine-distributed
|
||||||
|
- quickcheck-string-random
|
||||||
- quickcheck-webdriver
|
- quickcheck-webdriver
|
||||||
- QuickCheckVariant
|
- QuickCheckVariant
|
||||||
- QuickPlot
|
- QuickPlot
|
||||||
@ -9204,6 +9283,7 @@ broken-packages:
|
|||||||
- raz
|
- raz
|
||||||
- razom-text-util
|
- razom-text-util
|
||||||
- rbr
|
- rbr
|
||||||
|
- rbst
|
||||||
- rc
|
- rc
|
||||||
- rclient
|
- rclient
|
||||||
- rdioh
|
- rdioh
|
||||||
@ -9277,6 +9357,7 @@ broken-packages:
|
|||||||
- reflex-fsnotify
|
- reflex-fsnotify
|
||||||
- reflex-gadt-api
|
- reflex-gadt-api
|
||||||
- reflex-ghci
|
- reflex-ghci
|
||||||
|
- reflex-gi-gtk
|
||||||
- reflex-gloss
|
- reflex-gloss
|
||||||
- reflex-gloss-scene
|
- reflex-gloss-scene
|
||||||
- reflex-libtelnet
|
- reflex-libtelnet
|
||||||
@ -9463,6 +9544,7 @@ broken-packages:
|
|||||||
- roc-cluster-demo
|
- roc-cluster-demo
|
||||||
- rock
|
- rock
|
||||||
- rocksdb-haskell
|
- rocksdb-haskell
|
||||||
|
- rocksdb-query
|
||||||
- roku-api
|
- roku-api
|
||||||
- rollbar
|
- rollbar
|
||||||
- rollbar-cli
|
- rollbar-cli
|
||||||
@ -9478,6 +9560,7 @@ broken-packages:
|
|||||||
- rope
|
- rope
|
||||||
- rose-trees
|
- rose-trees
|
||||||
- rose-trie
|
- rose-trie
|
||||||
|
- rosebud
|
||||||
- roshask
|
- roshask
|
||||||
- rosmsg
|
- rosmsg
|
||||||
- rosmsg-bin
|
- rosmsg-bin
|
||||||
@ -9520,6 +9603,7 @@ broken-packages:
|
|||||||
- runhs
|
- runhs
|
||||||
- runmany
|
- runmany
|
||||||
- runtime-arbitrary
|
- runtime-arbitrary
|
||||||
|
- rv
|
||||||
- rws
|
- rws
|
||||||
- RxHaskell
|
- RxHaskell
|
||||||
- s-expression
|
- s-expression
|
||||||
@ -9627,6 +9711,7 @@ broken-packages:
|
|||||||
- scp-streams
|
- scp-streams
|
||||||
- scrabble-bot
|
- scrabble-bot
|
||||||
- scrapbook
|
- scrapbook
|
||||||
|
- scrapbook-core
|
||||||
- scrape-changes
|
- scrape-changes
|
||||||
- ScratchFs
|
- ScratchFs
|
||||||
- script-monad
|
- script-monad
|
||||||
@ -9694,6 +9779,7 @@ broken-packages:
|
|||||||
- serv-wai
|
- serv-wai
|
||||||
- servant-aeson-specs
|
- servant-aeson-specs
|
||||||
- servant-auth-cookie
|
- servant-auth-cookie
|
||||||
|
- servant-auth-docs
|
||||||
- servant-auth-hmac
|
- servant-auth-hmac
|
||||||
- servant-auth-token
|
- servant-auth-token
|
||||||
- servant-auth-token-acid
|
- servant-auth-token-acid
|
||||||
@ -9704,6 +9790,8 @@ broken-packages:
|
|||||||
- servant-auth-wordpress
|
- servant-auth-wordpress
|
||||||
- servant-avro
|
- servant-avro
|
||||||
- servant-cassava
|
- servant-cassava
|
||||||
|
- servant-checked-exceptions
|
||||||
|
- servant-checked-exceptions-core
|
||||||
- servant-cli
|
- servant-cli
|
||||||
- servant-client-js
|
- servant-client-js
|
||||||
- servant-client-namedargs
|
- servant-client-namedargs
|
||||||
@ -9711,6 +9799,7 @@ broken-packages:
|
|||||||
- servant-db
|
- servant-db
|
||||||
- servant-db-postgresql
|
- servant-db-postgresql
|
||||||
- servant-dhall
|
- servant-dhall
|
||||||
|
- servant-docs
|
||||||
- servant-docs-simple
|
- servant-docs-simple
|
||||||
- servant-ede
|
- servant-ede
|
||||||
- servant-ekg
|
- servant-ekg
|
||||||
@ -9722,6 +9811,7 @@ broken-packages:
|
|||||||
- servant-github
|
- servant-github
|
||||||
- servant-haxl-client
|
- servant-haxl-client
|
||||||
- servant-hmac-auth
|
- servant-hmac-auth
|
||||||
|
- servant-http-streams
|
||||||
- servant-http2-client
|
- servant-http2-client
|
||||||
- servant-iCalendar
|
- servant-iCalendar
|
||||||
- servant-jquery
|
- servant-jquery
|
||||||
@ -9730,6 +9820,7 @@ broken-packages:
|
|||||||
- servant-kotlin
|
- servant-kotlin
|
||||||
- servant-matrix-param
|
- servant-matrix-param
|
||||||
- servant-mock
|
- servant-mock
|
||||||
|
- servant-multipart
|
||||||
- servant-namedargs
|
- servant-namedargs
|
||||||
- servant-nix
|
- servant-nix
|
||||||
- servant-openapi3
|
- servant-openapi3
|
||||||
@ -9744,6 +9835,7 @@ broken-packages:
|
|||||||
- servant-py
|
- servant-py
|
||||||
- servant-quickcheck
|
- servant-quickcheck
|
||||||
- servant-rawm-client
|
- servant-rawm-client
|
||||||
|
- servant-rawm-docs
|
||||||
- servant-reason
|
- servant-reason
|
||||||
- servant-reflex
|
- servant-reflex
|
||||||
- servant-router
|
- servant-router
|
||||||
@ -9779,6 +9871,7 @@ broken-packages:
|
|||||||
- Set
|
- Set
|
||||||
- set-of
|
- set-of
|
||||||
- set-with
|
- set-with
|
||||||
|
- setdown
|
||||||
- setgame
|
- setgame
|
||||||
- setoid
|
- setoid
|
||||||
- setters
|
- setters
|
||||||
@ -9839,7 +9932,10 @@ broken-packages:
|
|||||||
- show-prettyprint
|
- show-prettyprint
|
||||||
- showdown
|
- showdown
|
||||||
- Shpadoinkle-backend-pardiff
|
- Shpadoinkle-backend-pardiff
|
||||||
|
- Shpadoinkle-backend-snabbdom
|
||||||
- Shpadoinkle-backend-static
|
- Shpadoinkle-backend-static
|
||||||
|
- Shpadoinkle-developer-tools
|
||||||
|
- Shpadoinkle-disembodied
|
||||||
- Shpadoinkle-examples
|
- Shpadoinkle-examples
|
||||||
- Shpadoinkle-html
|
- Shpadoinkle-html
|
||||||
- Shpadoinkle-router
|
- Shpadoinkle-router
|
||||||
@ -9852,6 +9948,7 @@ broken-packages:
|
|||||||
- sifflet
|
- sifflet
|
||||||
- sifflet-lib
|
- sifflet-lib
|
||||||
- sigma-ij
|
- sigma-ij
|
||||||
|
- sign
|
||||||
- signable
|
- signable
|
||||||
- signals
|
- signals
|
||||||
- signed-multiset
|
- signed-multiset
|
||||||
@ -9915,6 +10012,7 @@ broken-packages:
|
|||||||
- sized-vector
|
- sized-vector
|
||||||
- sizes
|
- sizes
|
||||||
- sjsp
|
- sjsp
|
||||||
|
- SJW
|
||||||
- skeletal-set
|
- skeletal-set
|
||||||
- skeleton
|
- skeleton
|
||||||
- skeletons
|
- skeletons
|
||||||
@ -9938,6 +10036,7 @@ broken-packages:
|
|||||||
- slot-lambda
|
- slot-lambda
|
||||||
- sloth
|
- sloth
|
||||||
- slug
|
- slug
|
||||||
|
- slynx
|
||||||
- small-bytearray-builder
|
- small-bytearray-builder
|
||||||
- smallarray
|
- smallarray
|
||||||
- smallcheck-kind-generics
|
- smallcheck-kind-generics
|
||||||
@ -10004,6 +10103,7 @@ broken-packages:
|
|||||||
- snaplet-mongodb-minimalistic
|
- snaplet-mongodb-minimalistic
|
||||||
- snaplet-mysql-simple
|
- snaplet-mysql-simple
|
||||||
- snaplet-oauth
|
- snaplet-oauth
|
||||||
|
- snaplet-persistent
|
||||||
- snaplet-postgresql-simple
|
- snaplet-postgresql-simple
|
||||||
- snaplet-postmark
|
- snaplet-postmark
|
||||||
- snaplet-purescript
|
- snaplet-purescript
|
||||||
@ -10125,6 +10225,7 @@ broken-packages:
|
|||||||
- sql-simple-sqlite
|
- sql-simple-sqlite
|
||||||
- sqlcipher
|
- sqlcipher
|
||||||
- sqlite
|
- sqlite
|
||||||
|
- sqlite-simple-errors
|
||||||
- sqlite-simple-typed
|
- sqlite-simple-typed
|
||||||
- sqlvalue-list
|
- sqlvalue-list
|
||||||
- sqsd-local
|
- sqsd-local
|
||||||
@ -10156,6 +10257,7 @@ broken-packages:
|
|||||||
- stack-run-auto
|
- stack-run-auto
|
||||||
- stack-type
|
- stack-type
|
||||||
- stack-wrapper
|
- stack-wrapper
|
||||||
|
- stack2cabal
|
||||||
- stack2nix
|
- stack2nix
|
||||||
- stackage
|
- stackage
|
||||||
- stackage-build-plan
|
- stackage-build-plan
|
||||||
@ -10256,6 +10358,7 @@ broken-packages:
|
|||||||
- streaming-utils
|
- streaming-utils
|
||||||
- streaming-with
|
- streaming-with
|
||||||
- streamly-archive
|
- streamly-archive
|
||||||
|
- streamly-lmdb
|
||||||
- streamproc
|
- streamproc
|
||||||
- strelka
|
- strelka
|
||||||
- strict-base-types
|
- strict-base-types
|
||||||
@ -10267,10 +10370,12 @@ broken-packages:
|
|||||||
- strictly
|
- strictly
|
||||||
- string-isos
|
- string-isos
|
||||||
- string-quote
|
- string-quote
|
||||||
|
- string-random
|
||||||
- string-typelits
|
- string-typelits
|
||||||
- stringlike
|
- stringlike
|
||||||
- stringtable-atom
|
- stringtable-atom
|
||||||
- stripe
|
- stripe
|
||||||
|
- stripe-hs
|
||||||
- stripe-http-streams
|
- stripe-http-streams
|
||||||
- stripe-scotty
|
- stripe-scotty
|
||||||
- stripe-wreq
|
- stripe-wreq
|
||||||
@ -10329,6 +10434,7 @@ broken-packages:
|
|||||||
- svg2q
|
- svg2q
|
||||||
- svgcairo
|
- svgcairo
|
||||||
- SVGFonts
|
- SVGFonts
|
||||||
|
- svgone
|
||||||
- svgutils
|
- svgutils
|
||||||
- svm-light-utils
|
- svm-light-utils
|
||||||
- svm-simple
|
- svm-simple
|
||||||
@ -10359,6 +10465,7 @@ broken-packages:
|
|||||||
- symantic-http-server
|
- symantic-http-server
|
||||||
- symantic-http-test
|
- symantic-http-test
|
||||||
- symantic-lib
|
- symantic-lib
|
||||||
|
- symantic-parser
|
||||||
- symantic-xml
|
- symantic-xml
|
||||||
- symbiote
|
- symbiote
|
||||||
- symbolic-link
|
- symbolic-link
|
||||||
@ -10397,6 +10504,7 @@ broken-packages:
|
|||||||
- t3-server
|
- t3-server
|
||||||
- ta
|
- ta
|
||||||
- table
|
- table
|
||||||
|
- table-layout
|
||||||
- table-tennis
|
- table-tennis
|
||||||
- tableaux
|
- tableaux
|
||||||
- Tables
|
- Tables
|
||||||
@ -10445,6 +10553,7 @@ broken-packages:
|
|||||||
- tasty-laws
|
- tasty-laws
|
||||||
- tasty-lens
|
- tasty-lens
|
||||||
- tasty-mgolden
|
- tasty-mgolden
|
||||||
|
- tasty-silver
|
||||||
- tasty-stats
|
- tasty-stats
|
||||||
- tateti-tateti
|
- tateti-tateti
|
||||||
- Taxonomy
|
- Taxonomy
|
||||||
@ -10493,6 +10602,7 @@ broken-packages:
|
|||||||
- tensorflow-logging
|
- tensorflow-logging
|
||||||
- tensorflow-opgen
|
- tensorflow-opgen
|
||||||
- tensorflow-ops
|
- tensorflow-ops
|
||||||
|
- term-rewriting
|
||||||
- termbox-banana
|
- termbox-banana
|
||||||
- termbox-bindings
|
- termbox-bindings
|
||||||
- terminal-text
|
- terminal-text
|
||||||
@ -10582,9 +10692,9 @@ broken-packages:
|
|||||||
- thih
|
- thih
|
||||||
- thimk
|
- thimk
|
||||||
- Thingie
|
- Thingie
|
||||||
|
- thock
|
||||||
- thorn
|
- thorn
|
||||||
- threadmanager
|
- threadmanager
|
||||||
- threadscope
|
|
||||||
- threepenny-editors
|
- threepenny-editors
|
||||||
- threepenny-gui-contextmenu
|
- threepenny-gui-contextmenu
|
||||||
- threepenny-gui-flexbox
|
- threepenny-gui-flexbox
|
||||||
@ -10646,6 +10756,7 @@ broken-packages:
|
|||||||
- tkhs
|
- tkhs
|
||||||
- tkyprof
|
- tkyprof
|
||||||
- tls-extra
|
- tls-extra
|
||||||
|
- tlynx
|
||||||
- tmp-postgres
|
- tmp-postgres
|
||||||
- tn
|
- tn
|
||||||
- to-haskell
|
- to-haskell
|
||||||
@ -10667,6 +10778,8 @@ broken-packages:
|
|||||||
- tomato-rubato-openal
|
- tomato-rubato-openal
|
||||||
- toml
|
- toml
|
||||||
- tonatona-google-server-api
|
- tonatona-google-server-api
|
||||||
|
- tonatona-persistent-postgresql
|
||||||
|
- tonatona-persistent-sqlite
|
||||||
- tonatona-servant
|
- tonatona-servant
|
||||||
- too-many-cells
|
- too-many-cells
|
||||||
- toodles
|
- toodles
|
||||||
@ -10760,6 +10873,7 @@ broken-packages:
|
|||||||
- tsvsql
|
- tsvsql
|
||||||
- tsweb
|
- tsweb
|
||||||
- ttask
|
- ttask
|
||||||
|
- ttn-client
|
||||||
- tttool
|
- tttool
|
||||||
- tubes
|
- tubes
|
||||||
- tuntap
|
- tuntap
|
||||||
@ -10888,15 +11002,25 @@ broken-packages:
|
|||||||
- unicode-prelude
|
- unicode-prelude
|
||||||
- unicode-show
|
- unicode-show
|
||||||
- unicode-symbols
|
- unicode-symbols
|
||||||
|
- unicode-tricks
|
||||||
- uniform-io
|
- uniform-io
|
||||||
- union
|
- union
|
||||||
- union-map
|
- union-map
|
||||||
|
- uniprot-kb
|
||||||
- uniqueid
|
- uniqueid
|
||||||
- uniquely-represented-sets
|
- uniquely-represented-sets
|
||||||
- units-attoparsec
|
- units-attoparsec
|
||||||
- unittyped
|
- unittyped
|
||||||
- unitym-yesod
|
- unitym-yesod
|
||||||
- universal-binary
|
- universal-binary
|
||||||
|
- universe
|
||||||
|
- universe-base
|
||||||
|
- universe-dependent-sum
|
||||||
|
- universe-instances-base
|
||||||
|
- universe-instances-extended
|
||||||
|
- universe-instances-trans
|
||||||
|
- universe-reverse-instances
|
||||||
|
- universe-some
|
||||||
- universe-th
|
- universe-th
|
||||||
- unix-fcntl
|
- unix-fcntl
|
||||||
- unix-handle
|
- unix-handle
|
||||||
@ -11210,6 +11334,7 @@ broken-packages:
|
|||||||
- whitespace
|
- whitespace
|
||||||
- whois
|
- whois
|
||||||
- why3
|
- why3
|
||||||
|
- wide-word
|
||||||
- WikimediaParser
|
- WikimediaParser
|
||||||
- wikipedia4epub
|
- wikipedia4epub
|
||||||
- wild-bind-indicator
|
- wild-bind-indicator
|
||||||
@ -11237,6 +11362,7 @@ broken-packages:
|
|||||||
- woffex
|
- woffex
|
||||||
- wol
|
- wol
|
||||||
- wolf
|
- wolf
|
||||||
|
- word
|
||||||
- word2vec-model
|
- word2vec-model
|
||||||
- WordAlignment
|
- WordAlignment
|
||||||
- wordchoice
|
- wordchoice
|
||||||
@ -11457,6 +11583,7 @@ broken-packages:
|
|||||||
- yesod-mangopay
|
- yesod-mangopay
|
||||||
- yesod-markdown
|
- yesod-markdown
|
||||||
- yesod-media-simple
|
- yesod-media-simple
|
||||||
|
- yesod-page-cursor
|
||||||
- yesod-paginate
|
- yesod-paginate
|
||||||
- yesod-pagination
|
- yesod-pagination
|
||||||
- yesod-paypal-rest
|
- yesod-paypal-rest
|
||||||
@ -11523,6 +11650,7 @@ broken-packages:
|
|||||||
- yu-tool
|
- yu-tool
|
||||||
- yu-utils
|
- yu-utils
|
||||||
- yuuko
|
- yuuko
|
||||||
|
- yx
|
||||||
- yxdb-utils
|
- yxdb-utils
|
||||||
- Z-Data
|
- Z-Data
|
||||||
- Z-IO
|
- Z-IO
|
||||||
|
@ -94,16 +94,6 @@ self: super: builtins.intersectAttrs super {
|
|||||||
# Won't find it's header files without help.
|
# Won't find it's header files without help.
|
||||||
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
|
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
|
||||||
|
|
||||||
# profiling is disabled to allow C++/C mess to work, which is fixed in GHC 8.8
|
|
||||||
cachix = overrideSrc (disableLibraryProfiling super.cachix) {
|
|
||||||
src = (pkgs.fetchFromGitHub {
|
|
||||||
owner = "cachix";
|
|
||||||
repo = "cachix";
|
|
||||||
rev = "1471050f5906ecb7cd0d72115503d07d2e3beb17";
|
|
||||||
sha256 = "1lkrmhv5x9dpy53w33kxnhv4x4qm711ha8hsgccrjmxaqcsdm59g";
|
|
||||||
}) + "/cachix";
|
|
||||||
version = "0.5.1";
|
|
||||||
};
|
|
||||||
hercules-ci-agent = disableLibraryProfiling super.hercules-ci-agent;
|
hercules-ci-agent = disableLibraryProfiling super.hercules-ci-agent;
|
||||||
|
|
||||||
# avoid compiling twice by providing executable as a separate output (with small closure size)
|
# avoid compiling twice by providing executable as a separate output (with small closure size)
|
||||||
@ -808,4 +798,7 @@ self: super: builtins.intersectAttrs super {
|
|||||||
|
|
||||||
# tests depend on a specific version of solc
|
# tests depend on a specific version of solc
|
||||||
hevm = dontCheck (doJailbreak super.hevm);
|
hevm = dontCheck (doJailbreak super.hevm);
|
||||||
|
|
||||||
|
# waiting for https://github.com/haskell/ThreadScope/pull/115
|
||||||
|
threadscope = doJailbreak super.threadscope;
|
||||||
}
|
}
|
||||||
|
2026
pkgs/development/haskell-modules/hackage-packages.nix
generated
2026
pkgs/development/haskell-modules/hackage-packages.nix
generated
File diff suppressed because it is too large
Load Diff
@ -25,6 +25,8 @@ self: super: {
|
|||||||
hls-tactics-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-tactics-plugin.nix { };
|
hls-tactics-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-tactics-plugin.nix { };
|
||||||
hls-explicit-imports-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-explicit-imports-plugin.nix { };
|
hls-explicit-imports-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-explicit-imports-plugin.nix { };
|
||||||
hls-retrie-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-retrie-plugin.nix { };
|
hls-retrie-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-retrie-plugin.nix { };
|
||||||
|
hls-class-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-class-plugin.nix { };
|
||||||
|
hls-eval-plugin = self.callPackage ../tools/haskell/haskell-language-server/hls-eval-plugin.nix { };
|
||||||
|
|
||||||
nix-output-monitor = self.callPackage ../../tools/nix/nix-output-monitor { };
|
nix-output-monitor = self.callPackage ../../tools/nix/nix-output-monitor { };
|
||||||
|
|
||||||
|
@ -2,21 +2,23 @@
|
|||||||
, bytestring, containers, data-default, deepseq, directory, extra
|
, bytestring, containers, data-default, deepseq, directory, extra
|
||||||
, fetchgit, filepath, floskell, fourmolu, ghc, ghc-boot-th
|
, fetchgit, filepath, floskell, fourmolu, ghc, ghc-boot-th
|
||||||
, ghc-paths, ghcide, gitrev, hashable, haskell-lsp, hie-bios
|
, ghc-paths, ghcide, gitrev, hashable, haskell-lsp, hie-bios
|
||||||
, hls-explicit-imports-plugin, hls-hlint-plugin, hls-plugin-api
|
, hls-class-plugin, hls-eval-plugin, hls-explicit-imports-plugin
|
||||||
, hls-retrie-plugin, hls-tactics-plugin, hslogger, hspec
|
, hls-hlint-plugin, hls-plugin-api, hls-retrie-plugin
|
||||||
, hspec-core, lens, lsp-test, mtl, optparse-applicative
|
, hls-tactics-plugin, hslogger, hspec, hspec-core
|
||||||
|
, hspec-expectations, lens, lsp-test, mtl, optparse-applicative
|
||||||
, optparse-simple, ormolu, process, regex-tdfa, safe-exceptions
|
, optparse-simple, ormolu, process, regex-tdfa, safe-exceptions
|
||||||
, shake, stdenv, stm, stylish-haskell, tasty, tasty-ant-xml
|
, shake, stdenv, stm, stylish-haskell, tasty, tasty-ant-xml
|
||||||
, tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun
|
, tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun
|
||||||
, temporary, text, time, transformers, unordered-containers, yaml
|
, temporary, text, transformers, unordered-containers, with-utf8
|
||||||
|
, yaml
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "haskell-language-server";
|
pname = "haskell-language-server";
|
||||||
version = "0.7.1.0";
|
version = "0.8.0.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/haskell/haskell-language-server.git";
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
@ -29,19 +31,20 @@ mkDerivation {
|
|||||||
executableHaskellDepends = [
|
executableHaskellDepends = [
|
||||||
aeson base binary brittany bytestring containers deepseq directory
|
aeson base binary brittany bytestring containers deepseq directory
|
||||||
extra filepath floskell fourmolu ghc ghc-boot-th ghc-paths ghcide
|
extra filepath floskell fourmolu ghc ghc-boot-th ghc-paths ghcide
|
||||||
gitrev hashable haskell-lsp hie-bios hls-explicit-imports-plugin
|
gitrev hashable haskell-lsp hie-bios hls-class-plugin
|
||||||
hls-hlint-plugin hls-plugin-api hls-retrie-plugin
|
hls-eval-plugin hls-explicit-imports-plugin hls-hlint-plugin
|
||||||
hls-tactics-plugin hslogger lens mtl optparse-applicative
|
hls-plugin-api hls-retrie-plugin hls-tactics-plugin hslogger lens
|
||||||
optparse-simple ormolu process regex-tdfa safe-exceptions shake
|
mtl optparse-applicative optparse-simple ormolu process regex-tdfa
|
||||||
stylish-haskell temporary text time transformers
|
safe-exceptions shake stylish-haskell temporary text transformers
|
||||||
unordered-containers
|
unordered-containers with-utf8
|
||||||
];
|
];
|
||||||
testHaskellDepends = [
|
testHaskellDepends = [
|
||||||
aeson base blaze-markup bytestring containers data-default
|
aeson base blaze-markup bytestring containers data-default
|
||||||
directory extra filepath haskell-lsp hie-bios hls-plugin-api
|
directory extra filepath haskell-lsp hie-bios hls-plugin-api
|
||||||
hslogger hspec hspec-core lens lsp-test process stm tasty
|
hslogger hspec hspec-core hspec-expectations lens lsp-test process
|
||||||
tasty-ant-xml tasty-expected-failure tasty-golden tasty-hunit
|
stm tasty tasty-ant-xml tasty-expected-failure tasty-golden
|
||||||
tasty-rerun temporary text transformers unordered-containers yaml
|
tasty-hunit tasty-rerun temporary text transformers
|
||||||
|
unordered-containers yaml
|
||||||
];
|
];
|
||||||
testToolDepends = [ ghcide ];
|
testToolDepends = [ ghcide ];
|
||||||
homepage = "https://github.com/haskell/haskell-language-server#readme";
|
homepage = "https://github.com/haskell/haskell-language-server#readme";
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
{ mkDerivation, aeson, base, containers, fetchgit, ghc
|
||||||
|
, ghc-exactprint, ghcide, haskell-lsp, hls-plugin-api, lens, shake
|
||||||
|
, stdenv, text, transformers, unordered-containers
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "hls-class-plugin";
|
||||||
|
version = "0.1.0.0";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
postUnpack = "sourceRoot+=/plugins/hls-class-plugin; echo source root reset to $sourceRoot";
|
||||||
|
libraryHaskellDepends = [
|
||||||
|
aeson base containers ghc ghc-exactprint ghcide haskell-lsp
|
||||||
|
hls-plugin-api lens shake text transformers unordered-containers
|
||||||
|
];
|
||||||
|
description = "Explicit imports plugin for Haskell Language Server";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
{ mkDerivation, aeson, base, containers, deepseq, Diff, directory
|
||||||
|
, extra, fetchgit, filepath, ghc, ghc-boot-th, ghc-paths, ghcide
|
||||||
|
, hashable, haskell-lsp, haskell-lsp-types, hls-plugin-api
|
||||||
|
, parser-combinators, pretty-simple, QuickCheck, safe-exceptions
|
||||||
|
, shake, stdenv, temporary, text, time, transformers
|
||||||
|
, unordered-containers
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "hls-eval-plugin";
|
||||||
|
version = "0.1.0.0";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
postUnpack = "sourceRoot+=/plugins/hls-eval-plugin; echo source root reset to $sourceRoot";
|
||||||
|
libraryHaskellDepends = [
|
||||||
|
aeson base containers deepseq Diff directory extra filepath ghc
|
||||||
|
ghc-boot-th ghc-paths ghcide hashable haskell-lsp haskell-lsp-types
|
||||||
|
hls-plugin-api parser-combinators pretty-simple QuickCheck
|
||||||
|
safe-exceptions shake temporary text time transformers
|
||||||
|
unordered-containers
|
||||||
|
];
|
||||||
|
description = "Eval plugin for Haskell Language Server";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
}
|
@ -7,8 +7,8 @@ mkDerivation {
|
|||||||
version = "0.1.0.0";
|
version = "0.1.0.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/haskell/haskell-language-server.git";
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
postUnpack = "sourceRoot+=/plugins/hls-explicit-imports-plugin; echo source root reset to $sourceRoot";
|
postUnpack = "sourceRoot+=/plugins/hls-explicit-imports-plugin; echo source root reset to $sourceRoot";
|
||||||
|
@ -10,8 +10,8 @@ mkDerivation {
|
|||||||
version = "0.1.0.0";
|
version = "0.1.0.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/haskell/haskell-language-server.git";
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
postUnpack = "sourceRoot+=/plugins/hls-hlint-plugin; echo source root reset to $sourceRoot";
|
postUnpack = "sourceRoot+=/plugins/hls-hlint-plugin; echo source root reset to $sourceRoot";
|
||||||
|
@ -8,8 +8,8 @@ mkDerivation {
|
|||||||
version = "0.1.0.0";
|
version = "0.1.0.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/haskell/haskell-language-server.git";
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
postUnpack = "sourceRoot+=/plugins/hls-retrie-plugin; echo source root reset to $sourceRoot";
|
postUnpack = "sourceRoot+=/plugins/hls-retrie-plugin; echo source root reset to $sourceRoot";
|
||||||
|
@ -10,8 +10,8 @@ mkDerivation {
|
|||||||
version = "0.5.1.0";
|
version = "0.5.1.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/haskell/haskell-language-server.git";
|
url = "https://github.com/haskell/haskell-language-server.git";
|
||||||
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
sha256 = "0p6fqs07lajbi2g1wf4w3j5lvwknnk58n12vlg48cs4iz25gp588";
|
||||||
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
rev = "eb58f13f7b8e4f9bc771af30ff9fd82dc4309ff5";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
postUnpack = "sourceRoot+=/plugins/tactics; echo source root reset to $sourceRoot";
|
postUnpack = "sourceRoot+=/plugins/tactics; echo source root reset to $sourceRoot";
|
||||||
|
@ -41,11 +41,10 @@ hls_new_version=$hls_latest_release
|
|||||||
|
|
||||||
echo "Updating haskell-language-server from old version $hls_old_version to new version $hls_new_version."
|
echo "Updating haskell-language-server from old version $hls_old_version to new version $hls_new_version."
|
||||||
echo "Running cabal2nix and outputting to ${hls_derivation_file}..."
|
echo "Running cabal2nix and outputting to ${hls_derivation_file}..."
|
||||||
|
|
||||||
cabal2nix --revision "$hls_new_version" "https://github.com/haskell/haskell-language-server.git" > "$hls_derivation_file"
|
cabal2nix --revision "$hls_new_version" "https://github.com/haskell/haskell-language-server.git" > "$hls_derivation_file"
|
||||||
cabal2nix --revision "$hls_new_version" --subpath plugins/tactics "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-tactics-plugin.nix"
|
cabal2nix --revision "$hls_new_version" --subpath plugins/tactics "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-tactics-plugin.nix"
|
||||||
cabal2nix --revision "$hls_new_version" --subpath plugins/hls-hlint-plugin "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-hlint-plugin.nix"
|
for plugin in "hls-hlint-plugin" "hls-explicit-imports-plugin" "hls-retrie-plugin" "hls-class-plugin" "hls-eval-plugin"; do
|
||||||
cabal2nix --revision "$hls_new_version" --subpath plugins/hls-explicit-imports-plugin "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-explicit-imports-plugin.nix"
|
cabal2nix --revision "$hls_new_version" --subpath plugins/$plugin "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/$plugin.nix"
|
||||||
cabal2nix --revision "$hls_new_version" --subpath plugins/hls-retrie-plugin "https://github.com/haskell/haskell-language-server.git" > "${script_dir}/hls-retrie-plugin.nix"
|
done
|
||||||
|
|
||||||
echo "Finished."
|
echo "Finished."
|
||||||
|
@ -1,35 +1,36 @@
|
|||||||
{ mkDerivation, aeson, aeson-pretty, ansi-terminal, async-pool
|
{ mkDerivation, aeson, aeson-pretty, ansi-terminal, async-pool
|
||||||
, base, bower-json, bytestring, Cabal, containers, dhall, directory
|
, base, bower-json, bytestring, Cabal, containers, cryptonite
|
||||||
, either, exceptions, extra, fetchgit, file-embed, filepath, foldl
|
, dhall, directory, either, exceptions, extra, fetchgit, file-embed
|
||||||
, fsnotify, generic-lens, github, Glob, hpack, hspec
|
, filepath, foldl, fsnotify, generic-lens, github, Glob, hpack
|
||||||
, hspec-discover, hspec-megaparsec, http-client, http-conduit
|
, hspec, hspec-discover, hspec-megaparsec, http-client
|
||||||
, http-types, lens-family-core, megaparsec, mtl, network-uri
|
, http-conduit, http-types, lens-family-core, megaparsec, mtl
|
||||||
, open-browser, optparse-applicative, prettyprinter, process
|
, network-uri, open-browser, optparse-applicative, prettyprinter
|
||||||
, QuickCheck, retry, rio, rio-orphans, safe, semver-range, stdenv
|
, process, QuickCheck, retry, rio, rio-orphans, safe, semver-range
|
||||||
, stm, stringsearch, tar, template-haskell, temporary, text, time
|
, stdenv, stm, stringsearch, tar, template-haskell, temporary, text
|
||||||
, transformers, turtle, unliftio, unordered-containers, utf8-string
|
, time, transformers, turtle, unliftio, unordered-containers
|
||||||
, vector, versions, with-utf8, zlib
|
, utf8-string, vector, versions, with-utf8, zlib
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "spago";
|
pname = "spago";
|
||||||
version = "0.18.0";
|
version = "0.19.0";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/purescript/spago.git";
|
url = "https://github.com/purescript/spago.git";
|
||||||
sha256 = "03ww7qhrggwsbm0kcnvcr3ifb8rm860ajimzr81isiw46ykwrl38";
|
sha256 = "182a9pkv64rbyqrig470cmql4ingf5vpxh11xkxqq2baxym3vwip";
|
||||||
rev = "a4d39c21cae2f2c6d43fa204853c8e17c72904d2";
|
rev = "960a310d6efca3bb40009eb06d88382e4670ccef";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
libraryHaskellDepends = [
|
libraryHaskellDepends = [
|
||||||
aeson aeson-pretty ansi-terminal async-pool base bower-json
|
aeson aeson-pretty ansi-terminal async-pool base bower-json
|
||||||
bytestring Cabal containers dhall directory either exceptions
|
bytestring Cabal containers cryptonite dhall directory either
|
||||||
file-embed filepath foldl fsnotify generic-lens github Glob
|
exceptions file-embed filepath foldl fsnotify generic-lens github
|
||||||
http-client http-conduit http-types lens-family-core megaparsec mtl
|
Glob http-client http-conduit http-types lens-family-core
|
||||||
network-uri open-browser optparse-applicative prettyprinter process
|
megaparsec mtl network-uri open-browser optparse-applicative
|
||||||
retry rio rio-orphans safe semver-range stm stringsearch tar
|
prettyprinter process retry rio rio-orphans safe semver-range stm
|
||||||
template-haskell temporary text time transformers turtle unliftio
|
stringsearch tar template-haskell temporary text time transformers
|
||||||
unordered-containers utf8-string vector versions with-utf8 zlib
|
turtle unliftio unordered-containers utf8-string vector versions
|
||||||
|
with-utf8 zlib
|
||||||
];
|
];
|
||||||
libraryToolDepends = [ hpack ];
|
libraryToolDepends = [ hpack ];
|
||||||
executableHaskellDepends = [ base text turtle with-utf8 ];
|
executableHaskellDepends = [ base text turtle with-utf8 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user