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