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

24 lines
704 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, hspecCore, hspecDiscover, hspecExpectations, hspecMeta
2014-11-23 19:45:21 +00:00
, HUnit, QuickCheck, stringbuilder, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
2014-11-23 19:45:21 +00:00
version = "2.0.2";
sha256 = "19zxsadp1xwxdyp6zksaz4czdnmjd0x3gmbh7pqv6l4dxmd0545a";
buildDepends = [
2014-11-23 19:45:21 +00:00
hspecCore hspecDiscover hspecExpectations HUnit QuickCheck
transformers
];
2014-11-23 19:45:21 +00:00
testDepends = [ hspecCore hspecMeta stringbuilder ];
2013-04-06 10:13:19 +01:00
doCheck = false;
meta = {
2013-07-01 10:04:04 +01:00
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
2013-07-01 10:04:04 +01:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})