summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/statistics/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/statistics/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/statistics/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/libraries/haskell/statistics/default.nix b/pkgs/development/libraries/haskell/statistics/default.nix
index 18347fc374e0..ad18f9cbd981 100644
--- a/pkgs/development/libraries/haskell/statistics/default.nix
+++ b/pkgs/development/libraries/haskell/statistics/default.nix
@@ -1,17 +1,16 @@
-{ cabal, aeson, deepseq, erf, monadPar, mwcRandom, primitive, time
-, vector, vectorAlgorithms
+{ cabal, deepseq, erf, monadPar, mwcRandom, primitive, vector
+, vectorAlgorithms
 }:
 
 cabal.mkDerivation (self: {
   pname = "statistics";
-  version = "0.9.0.0";
-  sha256 = "1rwp9gkjs011lxzhkajiljs6x2a4xc8cg558kpfy9xj4q1lk43x7";
+  version = "0.10.0.1";
+  sha256 = "0bn131yzq3qk4dpr78i3ndsxyn7hars9jw9krfsxmin9pqr114sw";
   buildDepends = [
-    aeson deepseq erf monadPar mwcRandom primitive time vector
-    vectorAlgorithms
+    deepseq erf monadPar mwcRandom primitive vector vectorAlgorithms
   ];
   meta = {
-    homepage = "http://bitbucket.org/bos/statistics";
+    homepage = "https://github.com/bos/statistics";
     description = "A library of statistical types, data, and functions";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;