Moved the cabal build driver function from development/libraries/haskell/cabal to build-support/cabal.

This change also resolves the "cabal" vs. "Cabal" ambiguity on file systems
that don't distinguish case.

svn path=/nixpkgs/trunk/; revision=32401
This commit is contained in:
Peter Simons 2012-02-19 17:03:35 +00:00
parent 3b02e6f70d
commit cecff49b34
2 changed files with 1 additions and 1 deletions

View file

@ -121,7 +121,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
# This is the Cabal builder, the function we use to build most Haskell
# packages. It isn't the Cabal library, which is spelled "Cabal".
cabal = callPackage ../development/libraries/haskell/cabal/cabal.nix {
cabal = callPackage ../build-support/cabal {
enableLibraryProfiling = enableLibraryProfiling;
};