From db85ee9e7772c3b56ed327588b34308ddf54743d Mon Sep 17 00:00:00 2001 From: Cray Elliott <MP2E@archlinux.us> Date: Thu, 15 Jan 2015 21:04:00 -0800 Subject: [PATCH] Add haskellngPackages.cabal2nix missing dependencies added QuickCheck, deepseq-generics and hspec --- pkgs/development/haskell-modules/configuration-common.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c32778e4f43..7fd4ec1b333 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -131,9 +131,10 @@ self: super: { isLibrary = false; isExecutable = true; buildDepends = with self; [ - aeson base bytestring Cabal containers deepseq directory filepath - hackage-db monad-par monad-par-extras mtl pretty process - regex-posix SHA split transformers utf8-string + aeson base bytestring Cabal containers deepseq deepseq-generics + directory filepath hackage-db hspec monad-par monad-par-extras + mtl pretty process regex-posix SHA split transformers + utf8-string QuickCheck ]; testDepends = with self; [ base doctest ]; homepage = "http://github.com/NixOS/cabal2nix";