22 lines
623 B
Nix
22 lines
623 B
Nix
{ cabal, ansiTerminal, filepath, hspecExpectations, HUnit
|
|
, QuickCheck, setenv, silently, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hspec";
|
|
version = "1.4.2";
|
|
sha256 = "0qlm6p5i1fkgyca704bsjc1nm1ks19pfq6l3vmzsszjzbdl8p5cq";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv
|
|
silently time transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://hspec.github.com/";
|
|
description = "Behavior-Driven Development for Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|