mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close, almost TOO close. But we still have a long journey ahead. .---- yesod-test -------. | | | | | | : wai-test html-conduit -. : | | : | filesystem-conduit : | . | . tagstream-conduit . ,-.,-.,-.-,-.-,.-,-.,-.,-. ( down with the s^Hhspec! ) ,--. ,'`-'-`-'`-'-`-'--'-`-'-`-' |o o| `-'\. [|]-' \.-` .'. `\ | | '` | | | | \| hspec Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
fb5c721cbe
commit
ecceb38bfb
2 changed files with 23 additions and 0 deletions
21
pkgs/development/libraries/haskell/hspec/default.nix
Normal file
21
pkgs/development/libraries/haskell/hspec/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ cabal, ansiTerminal, filepath, hspecExpectations, HUnit
|
||||
, QuickCheck, silently, time, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hspec";
|
||||
version = "1.3.0";
|
||||
sha256 = "0kl9mdksy8bifb37dfb9y8mnnjlq0x1h970cgzv9idq61gafii4n";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
ansiTerminal filepath hspecExpectations HUnit QuickCheck 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;
|
||||
};
|
||||
})
|
|
@ -940,6 +940,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
hsloggerTemplate = callPackage ../development/libraries/haskell/hslogger-template {};
|
||||
|
||||
hspec = callPackage ../development/libraries/haskell/hspec {};
|
||||
|
||||
hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {};
|
||||
|
||||
hsyslog = callPackage ../development/libraries/haskell/hsyslog {};
|
||||
|
|
Loading…
Reference in a new issue