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

23 lines
698 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, hspecCore, hspecDiscover, hspecExpectations, hspecMeta
, QuickCheck, stringbuilder, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
version = "2.0.1";
sha256 = "05kwxn5sws8gc1v8im2pyirrj5bzc6lnj22q2klgj4mg3apjd0jb";
buildDepends = [
hspecCore hspecDiscover hspecExpectations QuickCheck transformers
];
testDepends = [ hspecCore hspecMeta QuickCheck 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;
};
})