From ad135c658d400c2476736226a57968ddc09c977b Mon Sep 17 00:00:00 2001 From: Gergely Risko Date: Mon, 29 Sep 2014 17:18:43 +0200 Subject: [PATCH] Don't depend specific version of binary in the bmp package This was added a long time ago, because bmp required binary 0.7.1.0 at least. But that binary is now the default and requiring a specific binary just causes issues with setups where the end result is to have two version of binary in the wrapped package db. --- pkgs/top-level/haskell-packages.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 45feb3fcf0f..943dd6e2f15 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -293,9 +293,7 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in bloomfilter = callPackage ../development/libraries/haskell/bloomfilter {}; - bmp = callPackage ../development/libraries/haskell/bmp { - binary = self.binary_0_7_2_1; - }; + bmp = callPackage ../development/libraries/haskell/bmp {}; Boolean = callPackage ../development/libraries/haskell/Boolean {};