haskell.compiler.ghcHEAD: increase Hydra timeout because Darwin builds were timing out

Building `haskell.compiler.ghcHEAD` on Hydra on Darwin seemed to cause
frequent timeouts.

Here's an example of a timeout: https://hydra.nixos.org/build/149762652

This commit raises the timeout time on Hydra for ghcHEAD. The other
GHC derivations have this set, so it makes sense to set this here
as well.

+1
+1
pkgs/development/compilers/ghc/head.nix
··· 311 311 homepage = "http://haskell.org/ghc"; 312 312 description = "The Glasgow Haskell Compiler"; 313 313 maintainers = with lib.maintainers; [ marcweber andres peti ]; 314 + timeout = 24 * 3600; 314 315 inherit (ghc.meta) license platforms; 315 316 # ghcHEAD times out on aarch64-linux on Hydra. 316 317 hydraPlatforms = builtins.filter (p: p != "aarch64-linux") ghc.meta.platforms;