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

22 lines
623 B
Nix
Raw Normal View History

{ cabal, ansiTerminal, filepath, hspecExpectations, HUnit
2012-11-09 11:38:36 +01:00
, QuickCheck, setenv, silently, time, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec";
2013-01-30 11:29:40 +01:00
version = "1.4.4";
sha256 = "09wrvdlqzpa3vjcnirnzpj8nsvqnn5xbilnxaqmjm2agbl8xfj5r";
isLibrary = true;
isExecutable = true;
buildDepends = [
2012-11-09 11:38:36 +01:00
ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv
silently time transformers
];
meta = {
homepage = "http://hspec.github.com/";
2012-11-16 15:59:15 +01:00
description = "Behavior-Driven Development for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})