about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-12-02 19:58:49 +0100
committerPeter Simons <simons@cryp.to>2013-12-02 20:28:20 +0100
commitfc4d3254f8d761536a1ce708e276317c826d3f2f (patch)
tree51a178dc15b9ace4c8c11cddb070910f3f9b69c9 /pkgs
parenta22e8fd6c0038831f3ff4b0dffe7d6285f1f8aa5 (diff)
downloadnixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar.gz
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar.bz2
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar.lz
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar.xz
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.tar.zst
nixlib-fc4d3254f8d761536a1ce708e276317c826d3f2f.zip
haskell-scientific: re-generate with cabal2nix
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/scientific/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/scientific/default.nix b/pkgs/development/libraries/haskell/scientific/default.nix
index c52784826ac5..42d1c4b86122 100644
--- a/pkgs/development/libraries/haskell/scientific/default.nix
+++ b/pkgs/development/libraries/haskell/scientific/default.nix
@@ -8,6 +8,7 @@ cabal.mkDerivation (self: {
   sha256 = "1x3c8z1d7nhr1z5dlbs60pxfrgclfbwjhrkpvr0jnz0fpy2m9x5r";
   buildDepends = [ deepseq hashable text ];
   testDepends = [ smallcheck tasty tastySmallcheck text ];
+  doCheck = false;
   meta = {
     homepage = "https://github.com/basvandijk/scientific";
     description = "Arbitrary-precision floating-point numbers represented using scientific notation";
@@ -15,5 +16,4 @@ cabal.mkDerivation (self: {
     platforms = self.ghc.meta.platforms;
     maintainers = [ self.stdenv.lib.maintainers.ocharles ];
   };
-  doCheck = false;
 })