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

24 lines
719 B
Nix
Raw Normal View History

{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit
, QuickCheck, quickcheckIo, random, setenv, tfRandom, time
, transformers
2013-02-24 21:11:11 +00:00
}:
cabal.mkDerivation (self: {
pname = "hspec-meta";
2014-05-02 06:57:46 +00:00
version = "1.9.5";
sha256 = "0y39z9r5icz62dd7hvr3lwdcqas526w4m5rcd1468fp7rlz3402j";
2013-02-24 21:11:11 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
quickcheckIo random setenv tfRandom time transformers
2013-02-24 21:11:11 +00:00
];
doCheck = false;
meta = {
homepage = "http://hspec.github.io/";
2013-02-24 21:11:11 +00:00
description = "A version of Hspec which is used to test Hspec itself";
license = self.stdenv.lib.licenses.mit;
2013-02-24 21:11:11 +00:00
platforms = self.ghc.meta.platforms;
};
})