From 4741e9e051ada73c890fe997e26e7f991dc6061b Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 30 Jul 2016 12:45:23 +0200 Subject: [PATCH] haskellPackages.Glob: remove superfluous override MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The override is already in the 7.10.x file, and we’d like to explicitely override for every version that needs it. --- pkgs/development/haskell-modules/configuration-common.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 45e74a8ad318..1cd4e15b4e91 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -946,9 +946,4 @@ self: super: { url = "https://github.com/commercialhaskell/stack/commit/7f7f1a5f67f4ecdd1f3009495f1ff101dd38047e.patch"; sha256 = "1yh2g45mkfpwxq0vyzcbc4nbxh6wmb2xpp0k7r5byd8jicgvli29"; }); - - # Glob depends conditionally on semigroups for GHC < 8 - Glob = if pkgs.lib.versionAtLeast self.ghc.version "8.0" - then super.Glob - else addBuildDepend super.Glob self.semigroups; }