29 lines
902 B
Nix
29 lines
902 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.8.3";
|
|
sha256 = "0k5l8r54nc0q5x3czdfxkwa606qnli3a6qm2xd3r5yl5bnz6hzh8";
|
|
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.io/";
|
|
description = "Behavior-Driven Development for Haskell";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|