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

22 lines
625 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";
version = "1.4.2.3";
sha256 = "1ax9dzha67xrq9lhs6880rk1yid91gxk43bbni6xfsk5zdbivgr7";
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;
};
})