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

24 lines
733 B
Nix
Raw Normal View History

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