haskellPackages.numerals: Disable version checks

We could also be using fetchFromGithub but the repo looks stale enough that it
doesn't really matter, plus the upper bounds for almost all the dependencies
doesn't exist anymore.
main
Deniz Alp 2 years ago committed by sternenseemann
parent 6a6a2cdbe9
commit e6cde9b47a
  1. 7
      pkgs/development/haskell-modules/configuration-common.nix
  2. 1
      pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
  3. 2
      pkgs/development/haskell-modules/hackage-packages.nix

@ -63,6 +63,12 @@ self: super: {
# works fine there.
fakedata = dontCheck super.fakedata;
# The latest release on hackage has an upper bound on containers which
# breaks the build, though it works with the version of containers present
# and the upper bound doesn't exist in code anymore:
# > https://github.com/roelvandijk/numerals
numerals = doJailbreak (dontCheck super.numerals);
# This test keeps being aborted because it runs too quietly for too long
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
@ -307,7 +313,6 @@ self: super: {
network-dbus = dontCheck super.network-dbus;
notcpp = dontCheck super.notcpp;
ntp-control = dontCheck super.ntp-control;
numerals = dontCheck super.numerals;
odpic-raw = dontCheck super.odpic-raw; # needs a running oracle database server
opaleye = dontCheck super.opaleye;
openpgp = dontCheck super.openpgp;

@ -3437,7 +3437,6 @@ broken-packages:
- numbered-semigroups
- NumberSieves
- NumberTheory
- numerals
- numerals-base
- numeric-qq
- numeric-ranges

@ -199469,8 +199469,6 @@ self: {
benchmarkHaskellDepends = [ base criterion ];
description = "Convert numbers to number words";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
broken = true;
}) {};
"numerals-base" = callPackage

Loading…
Cancel
Save