haskell-hspec: update to version 1.5.2

This commit is contained in:
Peter Simons 2013-04-01 17:18:47 +02:00
parent 5d01b76912
commit fe1dde269c

View File

@ -1,21 +1,22 @@
{ cabal, ansiTerminal, doctest, filepath, ghcPaths { cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo , hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
, setenv, silently, time, transformers , random, setenv, silently, time, transformers
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "hspec"; pname = "hspec";
version = "1.5.1"; version = "1.5.2";
sha256 = "0iz34hgwir07g2qv3zdkg5k5wrv68qd0c77xkpfcs653fi28i91a"; sha256 = "1bndznbq7qyqr4j4mnsxf3dabmjyzah0bsiyynrc00ay1pf033l8";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
ansiTerminal filepath hspecExpectations HUnit QuickCheck ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
quickcheckIo setenv time transformers quickcheckIo random setenv time transformers
]; ];
testDepends = [ testDepends = [
ansiTerminal doctest filepath ghcPaths hspecExpectations hspecMeta ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations
HUnit QuickCheck quickcheckIo setenv silently time transformers hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time
transformers
]; ];
meta = { meta = {
homepage = "http://hspec.github.com/"; homepage = "http://hspec.github.com/";