From efe69803033699d5daa034e1acb6e48fb0089c21 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 2 Dec 2011 11:47:08 +0000 Subject: [PATCH] haskell-criterion: updated to version 0.6.0.0 svn path=/nixpkgs/trunk/; revision=30691 --- .../libraries/haskell/criterion/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/haskell/criterion/default.nix b/pkgs/development/libraries/haskell/criterion/default.nix index 41957fe4e20..e8d1c4f901b 100644 --- a/pkgs/development/libraries/haskell/criterion/default.nix +++ b/pkgs/development/libraries/haskell/criterion/default.nix @@ -1,17 +1,17 @@ -{ cabal, aeson, deepseq, mtl, mwcRandom, parsec, statistics, time -, vector, vectorAlgorithms +{ cabal, aeson, deepseq, hastache, mtl, mwcRandom, parsec +, statistics, time, transformers, vector, vectorAlgorithms }: cabal.mkDerivation (self: { pname = "criterion"; - version = "0.5.1.1"; - sha256 = "0gxl6xym01lvblkdsqigx4p13nc9y7hcvyrqz0kvnvcf2f9x4qvp"; + version = "0.6.0.0"; + sha256 = "0yi6gx9zrmljhhdfqpaylri8x71q2yzyhwwn1c377xngrskpydr9"; buildDepends = [ - aeson deepseq mtl mwcRandom parsec statistics time vector - vectorAlgorithms + aeson deepseq hastache mtl mwcRandom parsec statistics time + transformers vector vectorAlgorithms ]; meta = { - homepage = "http://bitbucket.org/bos/criterion"; + homepage = "https://github.com/bos/criterion"; description = "Robust, reliable performance measurement and analysis"; license = self.stdenv.lib.licenses.bsd3; platforms = self.ghc.meta.platforms;