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

31 lines
1000 B
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
2014-03-20 21:26:14 +00:00
, random, setenv, silently, tfRandom, time, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
version = "1.11.3";
sha256 = "0kq2cds8khwq7nl60pvgk8v6s2fizfkpdplc1p0mj8zyr9gyz7i0";
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
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;
};
})