Merge pull request #2911 from sol/master

Update haskell-hspec2 to version 0.3.1
This commit is contained in:
John Wiegley 2014-06-12 00:21:42 -05:00
commit bd66edeb4f
1 changed files with 7 additions and 9 deletions

View File

@ -1,24 +1,22 @@
{ cabal, ansiTerminal, async, deepseq, doctest, filepath, ghcPaths { cabal, ansiTerminal, async, deepseq, doctest, filepath, ghcPaths
, hspecExpectations, hspecMeta, HUnit, ioMemoize, QuickCheck , hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
, quickcheckIo, random, setenv, silently, tfRandom, time , random, setenv, silently, tfRandom, time, transformers
, transformers
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "hspec2"; pname = "hspec2";
version = "0.3.0"; version = "0.3.1";
sha256 = "0ia19jraz2di31c48lh0kswkb2573jxm7msf33i8d5a5yq8y9wwp"; sha256 = "09zzlq3gy10y2bdsmmbdylkscfa3vlwgbc0h0g113rk6zs1l1qs6";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
ansiTerminal async deepseq filepath hspecExpectations HUnit ansiTerminal async deepseq filepath hspecExpectations HUnit
ioMemoize QuickCheck quickcheckIo random setenv tfRandom time QuickCheck quickcheckIo random setenv tfRandom time transformers
transformers
]; ];
testDepends = [ testDepends = [
ansiTerminal async deepseq doctest filepath ghcPaths ansiTerminal async deepseq doctest filepath ghcPaths
hspecExpectations hspecMeta HUnit ioMemoize QuickCheck quickcheckIo hspecExpectations hspecMeta HUnit QuickCheck quickcheckIo random
random setenv silently tfRandom time transformers setenv silently tfRandom time transformers
]; ];
meta = { meta = {
homepage = "http://hspec.github.io/"; homepage = "http://hspec.github.io/";