Merge pull request #173328 from neilmayhew/haskell-polynomial

haskellPackages.polynomial: Fix build failures for ghc 9
main
Dennis Gosnell 2 years ago committed by GitHub
commit be97d92fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      pkgs/development/haskell-modules/configuration-common.nix
  2. 1
      pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
  3. 3
      pkgs/development/haskell-modules/hackage-packages.nix

@ -2657,4 +2657,17 @@ self: super: {
sha256 = "sha256-O+v/OxvqnlWX3HaDvDIBZnJ+Og3xs/SJqI3gaouU3ZI=";
}) super.records-sop;
# Fix build failures for ghc 9 (https://github.com/mokus0/polynomial/pull/20)
polynomial = appendPatch (fetchpatch {
name = "haskell-polynomial.20.patch";
url = "https://github.com/mokus0/polynomial/pull/20.diff";
sha256 = "1bwivimpi2hiil3zdnl5qkds1inyn239wgxbn3y8l2pwyppnnfl0";
})
(overrideCabal (drv: {
revision = null;
editedCabalFile = null;
doCheck = false; # Source dist doesn't include the checks
})
super.polynomial);
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

@ -3935,7 +3935,6 @@ broken-packages:
- poly-control
- polydata-core
- polynom
- polynomial
- polynomial-algebra
- polysemy-check
- polysemy-keyed-state

@ -215436,8 +215436,6 @@ self: {
];
description = "Polynomials";
license = lib.licenses.publicDomain;
hydraPlatforms = lib.platforms.none;
broken = true;
}) {};
"polynomial-algebra" = callPackage
@ -258116,6 +258114,7 @@ self: {
description = "Squeal PostgreSQL Library";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
maintainers = with lib.maintainers; [ erictapen ];
}) {};
"squeal-postgresql-ltree" = callPackage

Loading…
Cancel
Save