From cd32f53cb1c0a6ead3c228c08f73bc1e1ab95b7b Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Tue, 22 Jun 2021 00:59:19 +0200 Subject: [PATCH] haskellPackages.blucontrol: Remove obsolete override --- .../haskell-modules/configuration-common.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 73acb6bbb294..17817f17e45a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1946,16 +1946,4 @@ EOT # Break out of "Cabal < 3.2" constraint. stylish-haskell = doJailbreak super.stylish-haskell; - # Upgrade blucontrol ahead of hackage snapshot to 0.5.1.1 - # for relaxed bounds on X11 - blucontrol = let patchedVersion = "0.5.1.1"; in - assert pkgs.lib.versionOlder super.blucontrol.version patchedVersion; - overrideSrc super.blucontrol { - version = patchedVersion; - src = pkgs.fetchurl { - url = "https://hackage.haskell.org/package/blucontrol-${patchedVersion}/blucontrol-${patchedVersion}.tar.gz"; - sha256 = "0v3ifwxjbxm86ybn5daqqfdm4nmbfzlbkyc19d4nawnzjyf8v2p9"; - }; - }; - } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super