From 345dc3e5b4bd6ba4b7a9f8e9b7d669749c8cf907 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Sep 2015 09:55:30 +0200 Subject: [PATCH] haskell-hmatrix-gsl-stats: fix build of LTS version 0.4.1 * pkgs/development/haskell-modules/configuration-common.nix: --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cd0097eb166..04083a742e3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -899,4 +899,9 @@ self: super: { cryptonite = dontCheck super.cryptonite; cryptonite_0_6 = dontCheck super.cryptonite_0_6 ; + # https://github.com/fpco/stackage/issues/843 + hmatrix-gsl-stats_0_4_1 = overrideCabal super.hmatrix-gsl-stats_0_4_1 (drv: { + postUnpack = "rm */Setup.lhs"; + }); + }