1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/hspec/default.nix

29 lines
902 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";
2014-02-10 10:06:11 +00:00
version = "1.8.3";
sha256 = "0k5l8r54nc0q5x3czdfxkwa606qnli3a6qm2xd3r5yl5bnz6hzh8";
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 = {
2013-07-01 10:04:04 +01:00
homepage = "http://hspec.github.io/";
2012-11-16 14:59:15 +00:00
description = "Behavior-Driven Development for Haskell";
2013-07-01 10:04:04 +01:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})