From 2ccf46a9cdf6664f2f5fcdf18f249ec5184eca66 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 9 Nov 2012 11:38:36 +0100 Subject: [PATCH] haskell-hspec: update to version 1.4.0 --- pkgs/development/libraries/haskell/hspec/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec/default.nix b/pkgs/development/libraries/haskell/hspec/default.nix index d525f2a6e0b8..111228326dd9 100644 --- a/pkgs/development/libraries/haskell/hspec/default.nix +++ b/pkgs/development/libraries/haskell/hspec/default.nix @@ -1,16 +1,16 @@ { cabal, ansiTerminal, filepath, hspecExpectations, HUnit -, QuickCheck, silently, time, transformers +, QuickCheck, setenv, silently, time, transformers }: cabal.mkDerivation (self: { pname = "hspec"; - version = "1.3.0.1"; - sha256 = "1xgj1yg49vb524blswclr0yw4pvfpbmjyh0b62fac14mawl89v36"; + version = "1.4.0"; + sha256 = "0dg7dcbqi8s0p796w1rr00pv0sfkvnd23k297n3hajdaxp30mv62"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck silently - time transformers + ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv + silently time transformers ]; meta = { homepage = "http://hspec.github.com/";