nixpkgs/pkgs/development/libraries/haskell/hspec/default.nix

32 lines
1.0 KiB
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, ansiTerminal, async, deepseq, filepath, ghcPaths
2013-04-01 08:00:40 +00:00
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
, random, setenv, silently, stringbuilder, tfRandom, time
, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
version = "1.12.2";
sha256 = "1ika9qqw8y9j95db9xgjsfj9s9jb56hq962mwbpx1pl5d15m5262";
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-06-11 01:26:41 +00:00
ansiTerminal async deepseq filepath hspecExpectations HUnit
QuickCheck quickcheckIo random setenv tfRandom time transformers
];
testDepends = [
ansiTerminal async deepseq filepath ghcPaths hspecExpectations
hspecMeta HUnit QuickCheck quickcheckIo random setenv silently
stringbuilder tfRandom time transformers
];
2013-04-06 09:13:19 +00:00
doCheck = false;
meta = {
2013-07-01 09:04:04 +00:00
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
2013-07-01 09:04:04 +00:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})