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 20:45:21 +01:00
, HUnit, QuickCheck, stringbuilder, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
2014-11-23 20:45:21 +01:00
version = "2.0.2";
sha256 = "19zxsadp1xwxdyp6zksaz4czdnmjd0x3gmbh7pqv6l4dxmd0545a";
buildDepends = [
2014-11-23 20:45:21 +01:00
hspecCore hspecDiscover hspecExpectations HUnit QuickCheck
transformers
];
2014-11-23 20:45:21 +01:00
testDepends = [ hspecCore hspecMeta stringbuilder ];
2013-04-06 11:13:19 +02:00
doCheck = false;
meta = {
2013-07-01 11:04:04 +02:00
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
2013-07-01 11:04:04 +02:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})