3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
29 lines
904 B
Nix
29 lines
904 B
Nix
{ cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths
|
|
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
|
|
, random, setenv, silently, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hspec";
|
|
version = "1.5.4";
|
|
sha256 = "18c7mj2qh0q7ksb9sa7jhpfzsbbsfbv3gpkjpz1fx17bd3h8vkld";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
|
|
quickcheckIo random setenv time transformers
|
|
];
|
|
testDepends = [
|
|
ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations
|
|
hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time
|
|
transformers
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://hspec.github.com/";
|
|
description = "Behavior-Driven Development for Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|