3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/hspec/default.nix

30 lines
962 B
Nix
Raw Normal View History

2013-04-01 16:18:47 +01:00
{ cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths
2013-04-01 09:00:40 +01:00
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
2013-04-01 16:18:47 +01:00
, random, setenv, silently, time, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
2013-04-06 10:13:19 +01:00
version = "1.5.3";
sha256 = "138qjfw3kq87dvmb2ig1nsnrjpyqayvbqrjkmswn0sg8qh5cgbgb";
isLibrary = true;
isExecutable = true;
buildDepends = [
2013-04-01 16:18:47 +01:00
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
quickcheckIo random setenv time transformers
];
testDepends = [
2013-04-01 16:18:47 +01:00
ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations
hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time
transformers
];
2013-04-06 10:13:19 +01:00
doCheck = false;
meta = {
homepage = "http://hspec.github.com/";
2012-11-16 14:59:15 +00:00
description = "Behavior-Driven Development for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})