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

32 lines
1 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 09:00:40 +01:00
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
, random, setenv, silently, stringbuilder, tfRandom, time
, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
version = "1.12.3";
sha256 = "0lqihgsk46lwm4k2nc81pbi1gdfk7qnmjli90bvf4pbbhg5igjkn";
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-06-11 02:26:41 +01: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 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;
};
})