Add haskellngPackages.cabal2nix missing dependencies

added QuickCheck, deepseq-generics and hspec
This commit is contained in:
Cray Elliott 2015-01-15 21:04:00 -08:00
parent 06f7226541
commit db85ee9e77
1 changed files with 4 additions and 3 deletions

View File

@ -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";