From e2a1c15772f75c65420a34cb248f96ec25340a34 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 14 Apr 2013 22:03:32 +0200 Subject: [PATCH] haskell-statistics: patch to fix Haddock build --- pkgs/development/libraries/haskell/statistics/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/haskell/statistics/default.nix b/pkgs/development/libraries/haskell/statistics/default.nix index 5aa308a0e0ec..4e76277394ba 100644 --- a/pkgs/development/libraries/haskell/statistics/default.nix +++ b/pkgs/development/libraries/haskell/statistics/default.nix @@ -1,7 +1,7 @@ { cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar , mwcRandom, primitive, QuickCheck, testFramework , testFrameworkHunit, testFrameworkQuickcheck2, vector -, vectorAlgorithms +, vectorAlgorithms, fetchurl }: cabal.mkDerivation (self: { @@ -18,6 +18,10 @@ cabal.mkDerivation (self: { vectorAlgorithms ]; doCheck = false; + patches = [ + (fetchurl { url = "https://github.com/bos/statistics/commit/6b88143c9f931dd4fa95c1f083999ae12dd01b55.patch"; + sha256 = "0bl10qhp73cijxlpkjfmnkbl49jlj85xxvyhlca6jw7awcka6d2l"; }) + ]; meta = { homepage = "https://github.com/bos/statistics"; description = "A library of statistical types, data, and functions";