From 759631e28b80b6c4f6254781b708c2bf07a4c0cf Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 22 Feb 2022 12:28:11 +0100 Subject: [PATCH] haskellPackages.heterocephalus: drop obsolete override 1.0.5.5 made its way into our branch. --- .../haskell-modules/configuration-common.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9fbc45de14aa..9592ba5de348 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1078,20 +1078,6 @@ self: super: { # dontCheck: The test suite tries to mess with ALSA, which doesn't work in the build sandbox. xmobar = dontCheck super.xmobar; - # Pick GHC 9.0 compatibility patch from 1.0.5.5 release - heterocephalus = assert super.heterocephalus.version == "1.0.5.4"; - overrideCabal (drv: { - patches = drv.patches or [] ++ [ - (pkgs.fetchpatch { - url = "https://github.com/arowM/heterocephalus/commit/3d55a4031f2e555d42a3f418acd5013609f528a1.patch"; - sha256 = "1apyn9pfzs8amaph80rnn0w8svs4g1cdw8d4f8i4md64yl0cf3r3"; - }) - ]; - libraryHaskellDepends = drv.libraryHaskellDepends or [] ++ [ - self.template-haskell-compat-v0208 - ]; - }) super.heterocephalus; - # https://github.com/mgajda/json-autotype/issues/25 json-autotype = dontCheck super.json-autotype;