hasura-graphql-engine: mark as broken

`graphql-engine` and `graphql-parser` appear to need to be updated for
aeson-2.0.

+10
+5
pkgs/development/misc/haskell/hasura/graphql-engine.nix
··· 96 96 description = "GraphQL API over Postgres"; 97 97 license = lib.licenses.asl20; 98 98 maintainers = with lib.maintainers; [ lassulus ]; 99 + 100 + # Needs to be updated for aeson-2.0 101 + # https://github.com/hasura/graphql-engine/issues/8369 102 + hydraPlatforms = lib.platforms.none; 103 + broken = true; 99 104 }
+5
pkgs/development/misc/haskell/hasura/graphql-parser.nix
··· 29 29 description = "A native Haskell GraphQL parser"; 30 30 license = lib.licenses.bsd3; 31 31 maintainers = with lib.maintainers; [ lassulus ]; 32 + 33 + # Needs to be updated for aeson-2.0 34 + # https://github.com/hasura/graphql-engine/issues/8369 35 + hydraPlatforms = lib.platforms.none; 36 + broken = true; 32 37 }