mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
Disable 'doCheck' in more packages to avoid infinite evaluation loops.
This commit is contained in:
parent
e3bf440ae9
commit
3ac39413ac
|
@ -13,6 +13,7 @@ cabal.mkDerivation (self: {
|
|||
baseCompat deepseq filepath ghcPaths hspec HUnit QuickCheck setenv
|
||||
silently stringbuilder syb transformers
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/sol/doctest-haskell#readme";
|
||||
description = "Test interactive Haskell examples";
|
||||
|
|
|
@ -6,6 +6,7 @@ cabal.mkDerivation (self: {
|
|||
sha256 = "1ppcbfmcgrd1lwswa293fxwny6khhg4blygfbcsawrvgc5ji0q74";
|
||||
buildDepends = [ HUnit ];
|
||||
testDepends = [ hspec HUnit markdownUnlit silently ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/sol/hspec-expectations#readme";
|
||||
description = "Catchy combinators for HUnit";
|
||||
|
|
|
@ -5,6 +5,7 @@ cabal.mkDerivation (self: {
|
|||
version = "0.1.0.3";
|
||||
sha256 = "1c0yclil152hv06c2sbgam9amd63nnzh7a4xsnxb05wgy93qs2mg";
|
||||
buildDepends = [ deepseq HUnit ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/simonmar/monad-par";
|
||||
description = "A library for parallel programming based on a monad";
|
||||
|
|
|
@ -17,6 +17,7 @@ cabal.mkDerivation (self: {
|
|||
mwcRandom QuickCheck testFramework testFrameworkHunit
|
||||
testFrameworkQuickcheck2 testFrameworkTh time
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/simonmar/monad-par";
|
||||
description = "A library for parallel programming based on a monad";
|
||||
|
|
|
@ -11,6 +11,7 @@ cabal.mkDerivation (self: {
|
|||
HUnit QuickCheck statistics testFramework testFrameworkHunit
|
||||
testFrameworkQuickcheck2 vector
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/bos/mwc-random";
|
||||
description = "Fast, high quality pseudo random number generation";
|
||||
|
|
|
@ -5,6 +5,7 @@ cabal.mkDerivation (self: {
|
|||
version = "0.1.0";
|
||||
sha256 = "04w42bpfbrs5crjp19zzi9dg61xpz4wvmjs2vc7q7qxblyhdfdsy";
|
||||
testDepends = [ hspec QuickCheck ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
description = "A cross-platform library for setting environment variables";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
|
|
|
@ -10,6 +10,7 @@ cabal.mkDerivation (self: {
|
|||
testDepends = [
|
||||
criterion deepseq HUnit mersenneRandomPure64 QuickCheck random
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/uuid/";
|
||||
description = "For creating, comparing, parsing and printing Universally Unique Identifiers";
|
||||
|
|
Loading…
Reference in a new issue