From 6e3f66185d28ba02b271d66baefccedd47589bc4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 14 Feb 2012 16:58:53 +0000 Subject: [PATCH] haskell-packages.nix: allow packages to be built with a version of 'filepath' other than the one shipped with the compiler svn path=/nixpkgs/trunk/; revision=32287 --- pkgs/top-level/haskell-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 3f860fe94444..9e9734d7355f 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -658,7 +658,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); explicitException = callPackage ../development/libraries/haskell/explicit-exception {}; - filepath = callPackage ../development/libraries/haskell/filepath {}; + filepath_1_3_0_0 = callPackage ../development/libraries/haskell/filepath {}; + filepath = null; # a core package in recent GHCs extensibleExceptions_0_1_1_0 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.0.nix {}; extensibleExceptions_0_1_1_2 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.2.nix {};